.select {
    position: relative;
    width: 396px;
}
    .selectBtn {
        cursor: pointer;
        position: relative;
        user-select: none;
        background: #fff;
        border: 1px solid #FAA63E;
        border-radius: 32px;
        padding: 16px;
        transition: 0s;
        font-weight: bold;
    }
        .selectBtn:after {
             content: "";
             position: absolute;
             top: 45%;
             right: 15px;
             width: 6px;
             height: 6px;
             transform: translateY(-50%) rotate(45deg);
             border-right: 2px solid #FAA63E;
             border-bottom: 2px solid #FAA63E;
             transition: 0s;
         }
.selectBtn.toggle {
    border-radius: 32px 32px 0 0;
    border-bottom: 0;
}
.selectBtn.toggle:after {
             transform: translateY(-50%) rotate(-135deg);
         }

    .selectDropdown {
        position: absolute;
        top: 100%;
        width: 100%;
        border-radius: 0 0 32px 32px;
        overflow: auto;
        z-index: 6 !important;
        background: #fff;
        transform: scale(1, 0);
        transform-origin: top center;
        visibility: hidden;
        transition: 0s;
        border: 1px solid #FAA63E;
        max-height: 338px; 
    }
    .header-container .selectDropdown {
        padding-bottom: 8px;
    }
.selectDropdown::-webkit-scrollbar {
    width: 5px;
}
.selectDropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
    margin-bottom: 29px;
}
.selectDropdown::-webkit-scrollbar-thumb {
    background: #a5a4a4;
}
.selectDropdown::-webkit-scrollbar-thumb:hover {
    background: #999;
} 
    
    
        .option {
            padding: 8px 16px;
            cursor: pointer;
            font-weight: bold;
        }
        .selectDropdown > div:nth-child(1) {
            padding-top: 0;
        }
.option:hover {
                 background: #f8f8f8;
             }

.selectDropdown.toggle {
             visibility: visible;
             transform: scale(1,1);
    border-top: 0;
         }



.search-lang .select {
    width: 80px;
    height: 40px;
}
.search-lang .selectBtn {
    font-weight: 400;
    font-size: 13px;
    height: 100%;
    padding-top: 10px;
    background: transparent;
}
.search-lang .selectBtn:after {
    width: 4px;
    height: 4px;
    top: 17px;
}

.search-lang .option {
    cursor: pointer;
    font-weight: 400;
    font-size: 13px;
}

.search-lang .selectDropdown {
    border-radius: 0 0 16px 16px;
}
.search-lang .selectBtn.toggle {
    border-radius: 20px 20px 0 0;
    background: #fff;
}
@media (max-width: 767px) {
    .selectBtn {
        font-size: 14px;
        padding: 8px 16px;
    }
    .select {
        width: 100%;
    }
    .option {
        font-size: 14px;
    }
}

