.select {
    position: relative;
    font-size: 16px;
    line-height: 19px;
    color: #939393;
    width: 100%;
    margin-right: 0;
}
.select__btn {
    display: flex;
    align-items: center;
    background: #F1F6F7;
    border-radius: 5px;
    padding: 0 22px 0 20px;
    height: 42px;
    width: min-content;
}

.select__text {
    display: flex;
    align-items: center;
}
.select__text img {
    display: block;
    margin-right: 18px;
    width: 22px;
    height: 22px;
    border-radius: 4px;
}

.select__btn {
    position: relative;
    z-index: 1;
    width: 100%;
    justify-content: space-between;
    cursor: pointer;
}

.select__modal {
    position: absolute;
    top: 100%;
    background: #f1f6f7;
    width: 100%;
    padding: 0 6px 0 6px;
    display: none;
} 
.select__modal-item {
    border-top: 1px solid #D9E7EA;
    height: 40px;
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #263238;
    font-weight: 300;
    text-transform: initial;
}
.select__modal-item img {
    display: block;
    margin-right: 18px;
    max-width: 22px;
    border-radius: 4px;
    height: 22px;
width: 25px;
}

.select__modal-item.active {
    display: none;
}

@media(min-width:480px) {
    .select__modal-item:hover {
        color: #FF7475;
    }
}
.select.active {
    z-index: 2;
}
.select.active .select__icon {
    transform: rotate(90deg);
}
.select.active .select__modal {
    display: block;
    box-shadow: 14px 10px 21px rgb(58 58 58 / 25%);
    border-radius: 5px;
    padding-top: 42px;
    top: 0px;
    z-index: 0;
}



.select__modal-wrap {
    max-height: 192px;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #D9E7EA transparent;
    padding: 0 15px;
}

/* для Chrome/Edge/Safari */
.select__modal-wrap::-webkit-scrollbar {
    height: 12px;
    width: 8px;
}
.select__modal-wrap::-webkit-scrollbar-track {
    background: transparent;
}
.select__modal-wrap::-webkit-scrollbar-thumb {
    background: #D9E7EA;
    border-radius: 100px;
    border: 3px solid transparent;
}
