.custom-select {
    position: relative;
    user-select: none;
    display: flex;
    gap: 24px;
    width: 191px;
}

.custom-select.open .custom-select__dropdown{
    opacity: 1;
    visibility: visible;
}

.custom-select.open .custom-select__selected svg{
    transform: rotate(-180deg);
}

.custom-select__selected {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid #E8E8E8;
    width: 100%;
    justify-content: space-between;
    cursor: pointer;
}

.custom-select__selected span,
.custom-select__name,
.custom-select__item{
    font-family: "Open Sans";
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
}


.custom-select__selected span{
    color: #0A0A0A;
}

.custom-select__selected svg{
    transition: all .3s ease-in;
}

.custom-select__name{
    color: #6C6C6C;
    padding-bottom: 8px;
}

.custom-select__dropdown {
    position: absolute;
    transition: all .3s ease-in;
    top: 40px;
    left: 0;
    right: 0;
    border: 2px solid #E8E8E8;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    background: #FFF;
}

.custom-select__item {
    padding: 8px 12px;
    color: #0A0A0A;
    cursor: pointer;
    transition: all .3s ease-in;
}

.custom-select__item:hover {
    background: #E8E8E8;
}