.aria-combobox {
    position: relative;
    width: 100%;
    margin-bottom: 22px;
    z-index: 1;
}

.aria-combobox--open {
    z-index: 20;
}

.aria-combobox__label {
    display: block;
    color: #6a1b9a;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    line-height: 1.3;
}

.aria-combobox__control {
    position: relative;
    display: flex;
    align-items: center;
}

.aria-combobox__input {
    flex: 1 1 auto;
    width: 100%;
    height: 2.4rem;
    margin: 0;
    padding: 0 56px 0 0;
    border: none;
    border-bottom: 1px solid #9e9e9e;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    color: #212121;
    font-size: 15px;
    box-sizing: border-box;
}

.aria-combobox__input:focus {
    border: none !important;
    border-bottom: 1px solid #9e9e9e !important;
    box-shadow: none !important;
    outline: none !important;
}

.aria-combobox__input::placeholder {
    color: #616161;
    opacity: 1;
}

.aria-combobox--error .aria-combobox__input {
    border-bottom-color: #b71c1c;
}

.aria-combobox--error .aria-combobox__input:focus {
    border-bottom-color: #b71c1c !important;
    box-shadow: none !important;
    outline: none !important;
}

.aria-combobox__clear,
.aria-combobox__toggle {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    padding: 0;
    margin: 0;
    border: none;
    background: transparent;
    color: #424242;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}

.aria-combobox__clear:focus,
.aria-combobox__toggle:focus {
    outline: 2px solid #1976d2;
    outline-offset: 1px;
}

.aria-combobox__clear .material-icons,
.aria-combobox__toggle .material-icons {
    font-size: 20px;
    line-height: 1;
}

.aria-combobox__clear {
    right: 28px;
}

.aria-combobox__toggle {
    right: 0;
}

.aria-combobox__listbox {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% - 10px);
    max-height: 220px;
    overflow-y: auto;
    margin: 0;
    padding: 4px 0;
    list-style: none;
    background: #fff;
    border: 1px solid #bdbdbd;
    border-radius: 2px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
    z-index: 30;
}

.aria-combobox__option {
    padding: 10px 14px;
    color: #212121;
    font-size: 14px;
    line-height: 1.3;
    cursor: pointer;
}

.aria-combobox__option--empty {
    color: #616161;
    cursor: default;
}

.aria-combobox__option--active,
.aria-combobox__option:hover {
    background: #f3e5f5;
}

.aria-combobox__option--selected {
    font-weight: 600;
    color: #4a148c;
}

.aria-combobox__error {
    margin-top: 6px;
    color: #b71c1c;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
}

.aria-combobox .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
