/* Кастомный селект */
.t-input-block:has(.custom-dropdown){
    overflow: visible !important;
}

.custom-select{
    display: flex;
    align-items: center;
}

.custom-dropdown{
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10;
    top: calc(100% + 6px);
    background-color: white;
    box-shadow: 0px 4px 20px 0px #0000001A, 0px 0px 6px 0px #0000001A;
    padding: 4px;
    border-radius: 6px;
    box-sizing: border-box;
    transition: .3s opacity;
}

.custom-dropdown:not(.custom-dropdown_opened){
    opacity: 0;
    pointer-events: none;
}

.custom-dropdown__option{
    height: 44px;
    padding: 0 10px;
    line-height: 44px;
    transition: .3s background-color;
    border-radius: 4px;
    cursor: pointer;
    box-sizing: border-box;
    font-family: Montserrat, Arial, sans-serif;
    font-size: 15px;
    font-weight: 500;
}

.custom-dropdown__option:not(:last-child){
    border-bottom: 1px solid #F0F1FA;
}

.custom-dropdown__option:hover{
    background-color: #F0F1FA;
}

@media (max-width: 767px){
    .custom-dropdown__option{
        line-height: 34px;
        height: 34px;
        font-size: 12px;
        padding: 0 5px;
    }
}
/* End Кастомный селект */