.neo-select {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.neo-select__trigger {
    width: 100%;
    height: 44px;
    padding: 0 12px 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: .2s;
    border-radius: 20px;
    border: 1px solid var(--main-black-80);
    background-color: var(--main-blue-light);
}

.neo-select.is-open .neo-select__trigger {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.neo-select__value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    color: var(--main-blue-dark__80);
    font-weight: 700;
    font-size: 0.875rem;
}

.neo-select__arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    width: 10px;
    height: 10px;
    transform: translateY(-60%) rotate(45deg);
    border-right: 2px solid var(--main-blue, #1e5aa7);
    border-bottom: 2px solid var(--main-blue, #1e5aa7);
    transition: .2s;
    pointer-events: none;
}

.neo-select.is-open .neo-select__arrow {
    transform: translateY(-40%) rotate(-135deg);
}

.neo-select__dropdown {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-radius: 0;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    border: 1px solid rgba(22, 71, 133, .14);
    margin: 0;
    list-style: none;
    max-height: 260px;
    overflow: auto;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: .2s;
    z-index: 50;
    overflow-y: auto;
    overscroll-behavior: contain;
}

.neo-select.is-open .neo-select__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.neo-select__option {
    padding: 10px 12px;
    cursor: pointer;
    transition: .15s;
    color: var(--main-blue-dark__80);
    font-weight: 700;
    font-size: 0.875rem;
    background-color: var(--main-blue-light);
}

.neo-select__option:hover,
.neo-select__option.is-selected {
    background: var(--main-blue-secondary);
    color: #fff;
}

@media (max-width: 768px) {
    .neo-select {
        min-width: 100%;
    }
}