.dropdown-container {
    position: relative;
    color: var(--hm-slate);
}

.dropdown-list-field {
    position: relative;
    padding: 7px 11px;
    background-color: var(--hm-light50);
    cursor: pointer;
    border: 1px solid var(--hm-light);
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    text-align: left;
    color: var(--hm-slate);
    width: 100%;
}

.field-selected {
    color: var(--hm-licorice);
}

.dropdown-container:after {
    content: '';
    position: absolute;
    border-top: 4px solid currentColor;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    top: 45%;
    right: 5%;
    pointer-events: none;
}

.dropdown-list-field:after {
    display: none;
}

.dropdown-list-field:hover {
    border-color: var(--hm-yellow50);
}

.dropdown-container:hover:after {
    color: var(--hm-gunmetal);
}

.dropdown-list-items-container {
    overflow: auto;
    max-height: 250px;
    z-index: 1000;
    border: 1px solid var(--hm-light);
    position: fixed;
    width: 100%;
    left: 0;
    top: 36px;
    background-color: var(--hm-white);
}

.dropdown-list-item {
    cursor: pointer;
    position: relative;
    padding: 6px 8px 6px 32px;
    min-height: 24px;
    display: flex;
    align-items: center;
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--hm-licorice);
    box-sizing: border-box;
}

.dropdown-list-item:hover,
.item-is-active {
    background-color: var(--hm-light50);
}

.item-is-active:before {
    content: '';
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    background-image: url(/images/list_on.svg);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    left: 8px;
    top: 50%;
    margin-top: -8px;
}

.dropdown-list-item--all {
    font-family: 'R500', sans-serif;
    color: var(--hm-licorice);
    border-bottom: 1px solid var(--hm-light);
    background-color: var(--hm-light25);
    padding-left: 32px;
}

.dropdown-list-item--all:before {
    content: '';
    display: block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 8px;
    top: 50%;
    margin-top: -8px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-image: none;
}

.dropdown-list-item--all-checked:before {
    background-image: url(/images/list_on.svg);
}

.dropdown-list-item--all-partial:before {
    background-image: url(/images/list_off.svg);
}

.dropdown-list-item--empty {
    cursor: default;
    color: var(--hm-slate);
    font-style: italic;
    padding-left: 12px;
    justify-content: center;
}

.dropdown-list-item--empty:hover {
    background-color: transparent;
}

.dropdown-list-item--empty:before {
    display: none;
}
