.choices {
    position: relative;
    outline: none;
}

.choices:focus .choices__inner {
    border-color: #1570EF;
}

.choices input[type="search"] {
    display: none;
}

.choices__inner {
    position: relative;
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    min-height: 48px;
    padding: 12px 44px 12px 16px;
    border: 1px solid #ACB4C2;
    border-radius: 8px;
    background-color: white;
    cursor: pointer;
    transition: background-color .2s, border .2s;
}

.choices__inner .choices__list {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
}

.choices:hover .choices__inner {
    border-color: #1570EF;
}

.is-open .choices__inner {
    border-color: #1570EF;
}

.choices__inner:after {
    content: "";
    position: absolute;
    height: 20px;
    width: 20px;
    top: 50%;
    right: 16px;
    margin-top: unset;
    border: unset;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='28' viewBox='0 0 28 28' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M9.57192 21.9281C9.05936 21.4155 9.05936 20.5845 9.57192 20.0719L15.6438 14L9.57192 7.92808C9.05936 7.41551 9.05936 6.58449 9.57192 6.07192C10.0845 5.55936 10.9155 5.55936 11.4281 6.07192L18.4281 13.0719C18.9406 13.5845 18.9406 14.4155 18.4281 14.9281L11.4281 21.9281C10.9155 22.4406 10.0845 22.4406 9.57192 21.9281Z' fill='%237E7E81'/%3E%3C/svg%3E");
    background-size: 20px 20px;
    transform: translateY(-50%) rotateZ(90deg);
    transition: all .2s;
}

.is-open .choices__inner:after {
    transform: translateY(-50%) rotateZ(-90deg);
}

.choices__list_single {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #101828;
}

.choices__list_dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    border: 1px solid #ACB4C2;
    border-radius: 8px;
    background-color: white;
    visibility: hidden;
    opacity: 0;
    transition: all .2s;
    z-index: 10000;
    overflow: hidden;
}

.is-flipped .choices__list_dropdown {
    top: auto;
    bottom: calc(100% + 8px);
}

.choices .choices__list_dropdown .choices__placeholder {
    display: none;
}

.is-active.choices__list_dropdown {
    visibility: visible;
    opacity: 1;
}

.choices__list[role='listbox'] {
    overflow-y: auto;
    max-height: 200px;
}

.choices__list[role='listbox']::-webkit-scrollbar {
    background-color: transparent;
    width: 2px;
}

.choices__list[role='listbox']::-webkit-scrollbar-button {
    display: none;
}

.choices__list[role='listbox']::-webkit-scrollbar-thumb {
    border-radius: 10000px;
    background-color: #1570EF;
}

.choices__list[role='listbox']::-webkit-scrollbar-track {
    background-color: transparent;
    border-radius: 10000px;
}

.choices__item {
    text-align: start;
    font-family: "Inter", sans-serif;
    color: #101828;
    cursor: pointer;
}

.choices__item_choice[data-value="-1"] {
    display: none;
}

.choices__item_selectable[data-value="-1"] {
    color: #98A2B3;
}

.choices__item_choice {
    position: relative;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    padding: 12px 48px 12px 16px;
}

.choices__item.is-highlighted:hover {
    background-color: #EFF8FF;
}

.choices__item_choice.is-highlighted {
    background-color: #EFF8FF;
}

.choices__list[role='listbox'] .choices__item.is-selected {
    color: #1570EF;
}

.choices__item_choice:after {
    content: "";
    position: absolute;
    height: 24px;
    width: 24px;
    top: 50%;
    right: 16px;
    margin-top: unset;
    border: unset;
    pointer-events: none;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjQiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTIwIDZMOSAxN0w0IDEyIiBzdHJva2U9IiMxNTcwRUYiIHN0cm9rZS13aWR0aD0iMS42IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==);
    background-size: 24px 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-50%);
    transition: opacity .2s;
}

.is-open .is-selected.choices__item_choice:after {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 1439px) {
    select {
        position: relative;
        display: grid;
        grid-auto-flow: column;
        align-items: center;
        padding: 12px 44px 12px 16px !important;
        min-height: 48px;
        max-width: 800px;
        width: 100%;
        font-family: "Inter", sans-serif !important;
        font-size: 16px !important;
        font-weight: 400 !important;
        color: #101828 !important;
        border: 1px solid #ACB4C2;
        border-radius: 8px;
        background-color: white;
        cursor: pointer;
        transition: background-color .2s, border .2s;
        outline: none;
        overflow: hidden;

        background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHZpZXdCb3g9IjAgMCAyMCAyMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHBhdGggZD0iTTUgNy41TDEwIDEyLjVMMTUgNy41IiBzdHJva2U9IiM5OEEyQjMiIHN0cm9rZS13aWR0aD0iMS42IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+Cg==);
        background-size: 20px 20px;
        background-position: calc(100% - 16px) 50%;
        background-repeat: no-repeat;

        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
    }
}
