@media screen {
    
    .stat-anacom-search-container {
        padding-top: 40px;   
padding-bottom: 90px;
        
    }

    .stat-anacom-search-container .stat-anacom-search-filters {
        display: flex;
        gap: 32px;
        margin-bottom: 32px;
        flex-wrap: wrap;
    }

    .stat-anacom-search-container .stat-anacom-search-results {
        outline: 0;
        padding-left: 0;
        display: flex;
        gap: 32px;
        flex-direction: column;
    }

    .stat-anacom-search-container .stat-anacom-search-results .highlight {
        color: var(--textInputDark);
        background-color: #FFE699;
    }

    .stat-anacom-search-container .stat-anacom-search-result {
        background-color: var(--neutro50);
        border-radius: 8px;
        padding: 32px;
        display: flex;
        gap: 32px;
    }

    .stat-anacom-search-container .stat-anacom-search-result > .stat-anacom-result-icon {
        background-color: var(--neutro200);
        border-radius: 8px;
        position: relative;
        width: 40px;
        height: 40px;
    }

    .stat-anacom-search-container .stat-anacom-search-result > .stat-anacom-result-icon > img {
        position: absolute;
        margin: auto;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .stat-anacom-search-container .stat-anacom-search-result > .stat-anacom-result-info {
        flex: 1;
    }

    .stat-anacom-search-container .stat-anacom-search-keywords {
        display: flex;
        gap: 14px;
        flex-wrap: wrap;
        margin-top: 26px;
    }

    .stat-anacom-search-container .stat-anacom-search-keywords > .stat-anacom-search-keyword {
        background-color: #FFE699;
        border-radius: 100px;
        padding: 4px 16px 4px 16px;
        font-family: var(--notosans);
        font-size: 14px;
        font-weight: 400;
        line-height: 24px;
        margin: 0;
    }

    .stat-anacom-dropdown-search {
        display: inline-block;
        position: relative;
        margin-bottom: 10px;
    }

    .stat-anacom-dropdown-search > .stat-anacom-dropdown-btn {
        border: 1px solid var(--neutro200);
        color: var(--textInputDark);
        font-size: 16px;
        line-height: 28px;
        font-weight: 400;
        padding: 16px;
        cursor: pointer;
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
        align-items: center;
        width: 280px;
        background-color: transparent;
        margin: 0px !important;
        outline: 0;
    }

    .stat-anacom-dropdown-search > .stat-anacom-dropdown-btn:hover,
    .stat-anacom-dropdown-search > .stat-anacom-dropdown-btn:active,
    .stat-anacom-dropdown-search > .stat-anacom-dropdown-btn:focus {
        background-color: transparent !important;
        border: 1px solid var(--neutro200) !important;
        color: var(--textInputDark) !important;
    }

    .stat-anacom-dropdown-search > .stat-anacom-dropdown-btn::before {
        content: url('STAT_icn_menuArrow.svg');
        margin-left: 8px;
        transform: rotate(0deg);
        transition: all .5s ease-in-out;
        filter: brightness(0) saturate(100%) invert(44%) sepia(10%) saturate(998%) hue-rotate(182deg) brightness(97%) contrast(87%);
    }

    .stat-anacom-dropdown-search > .stat-anacom-dropdown-btn.show::before {
        transform: rotate(180deg);
    }

    .stat-anacom-dropdown-search > .stat-anacom-dropdown-btn::after {
        display: none;
    }

    .stat-anacom-dropdown-search > .stat-anacom-dropdown-content {
        display: none;
        position: absolute;
        background: var(--neutro);
        z-index: 5;
        width: 100%;
        max-height: 300px;
        overflow-y: auto;
        -webkit-box-shadow: 0px 16px 16px 0px rgba(0,0,0,0.16);
        -moz-box-shadow: 0px 16px 16px 0px rgba(0,0,0,0.16);
        box-shadow: 0px 16px 16px 0px rgba(0,0,0,0.16);
        padding: 0px;
    }

    .stat-anacom-dropdown-search > .stat-anacom-dropdown-content::-webkit-scrollbar {
        width: 5px;
    }

    .stat-anacom-dropdown-search > .stat-anacom-dropdown-content::-webkit-scrollbar-thumb {
        background: var(--neutro200);
        border-radius: 6.25rem;
    }


    .stat-anacom-dropdown-search > .stat-anacom-dropdown-content.show {
        display: block;
        transform: translate(0px, 66px) !important;
    }

    .stat-anacom-dropdown-search > .stat-anacom-dropdown-content .stat-anacom-dropdown-item {
        color: var(--textInputDark);
        font-size: 16px;
        line-height: 28px;
        font-weight: 400;
        text-decoration: none !important;
        display: block;
        border: none;
        background-color: transparent;
        width: 100%;
        text-align: left;
        cursor: pointer;
    }

    .stat-anacom-dropdown-search > .stat-anacom-dropdown-content .stat-anacom-dropdown-item:hover {
        background-color: var(--neutro200);
    }

    .stat-anacom-dropdown-search > .stat-anacom-dropdown-content .stat-anacom-dropdown-item:hover {
        border: none;
    }

    .stat-anacom-dropdown-search > .stat-anacom-dropdown-content .stat-anacom-dropdown-item a {
        text-decoration: none !important;
        background-color: transparent;
        border: none;
        outline: 0;
        margin: 0px;
        padding: 16px;
        color: var(--textInputDark);
    }

    .stat-anacom-dropdown-search > .stat-anacom-dropdown-content > .active > a,
    .stat-anacom-dropdown-search > .stat-anacom-dropdown-content > .active > a:hover,
    .stat-anacom-dropdown-search > .stat-anacom-dropdown-content > .active > a:focus {
        background-color: transparent;
        color: var(--textInputDark);
    }

    @media (max-width:992px) {
        .stat-anacom-search-container .stat-anacom-search-result {
            flex-direction: column;
            gap: 16px;
        }
    }

    @media (max-width:575px) {
        .stat-anacom-search-container .stat-anacom-search-filters {
            flex-direction: column;
            gap: 16px;
            margin-bottom: 32px;
        }    

        .stat-anacom-search-container .stat-anacom-search-filters .stat-anacom-dropdown-btn {
            width: 100%;
        }
    }
}