.custom-select {
    position: relative;
    /*max-width: 290px;*/
    width: 100%;
    border: 1px solid rgba(237, 185, 185, 1);
    border-radius: 6px;
}

.select__search__wrapper {
    display: flex;
    padding: 14px 15px;
    justify-content: space-between;
    align-items: center;
}

.select__search {
    width: 100%;
    border: none;
    font-size: 16px;
    font-weight: 400;
    line-height: 19.5px;
    color:rgba(237, 185, 185, 1);
    background: transparent;
    pointer-events: none;

}

.select__search:checked {
    background: transparent;
    outline: none;
    border: none;
}

.select__search::placeholder {
    outline: none;
    border: none;
    color:rgba(237, 185, 185, 1);
}

.select__search:focus {
    outline: none;
    border: none;
}

.options {
    display: none;
    border: 1px solid rgba(237, 185, 185, 1);
    max-height: 266px;
    padding: 16px 15px;
    border-radius: 6px;
    overflow-x: auto;
    position: absolute;
    max-width: 100%;
    width: 100%;
    top: 50px;
    left: 0;
    background: white;
    z-index: 14;
}

.options.active {
    display: block;
}

/* width */
.options::-webkit-scrollbar {
    width: 2px;
}

/* Track */
.options::-webkit-scrollbar-track {
    background: rgba(217, 217, 217, 1);

}

/* Handle */
.options::-webkit-scrollbar-thumb {
    background: var(--pink);
}

/*!* Handle on hover *!*/
/*.options::-webkit-scrollbar-thumb:hover {*/
/*    background: #555;*/
/*}*/

.option {
    padding: 5px 0px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    line-height: 26px;
   color: var(--black)
}
.option:hover {
    color: rgba(234, 31, 128, 0.5);
}

.option.active {
    color: var(--pink);
}
.select__nothing {
    font-size: 14px;
    font-weight: 500;
    line-height: 17.07px;
}
.select__arrow {
    cursor: pointer;
}

.select__arrow.active {
    transform: rotate(180deg);
}