.dropdown-container {
    position: relative;
}

.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 var(--hm-slate);
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    top: 45%;
    right: 5%;
}

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

.dropdown-container:hover:after {
    border-top-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: 4px 8px 4px 32px;
    font-family: 'Roboto', Arial, sans-serif;
    color: var(--hm-licorice);
}

.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;
}