﻿.selector-dropdown--selected {
    position: relative;
    padding: 12px 16px;
    margin-bottom: 30px;
    font-weight: 500;
}

.selector-dropdown:focus-within .selector-dropdown--selected {
    padding: 11px 15px;
    border-width: 2px;
    outline: none;
}

.selector-dropdown {
    position: relative;
    user-select: none;
    width: 75%;
    min-width: 400px;
}

.main-content-container .selector-dropdown--dropdown {
    margin: 0;
    padding-left: 0;
}

.main-content-container li.selector-dropdown--option::before {
    content: none;
}

.selector-dropdown--clear {
    position: absolute;
    right: 0;
    top: 0;
    aspect-ratio: 1/1;
    height: 100%;
    background: none;
    border: none;
    cursor: pointer;
    background-image: url('/img/icon-multiply.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
}

.selector-dropdown--dropdown {
    position: absolute;
    left: 0;
    top: 100%;
}

.selector-dropdown--option {
    position: relative;
    font-weight: 400;
    width: 100%;
    position: relative;
}

.selector-dropdown--placeholder::after {
    content: '';
    width: 18px;
    height: 18px;
    top: 50%;
    transform: translateY(-50%);
    right: 12px;
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
}

.selector-dropdown.closed .selector-dropdown--placeholder::after {
    background-image: url('/img/chevron-down.svg');
}

.selector-dropdown.open .selector-dropdown--placeholder::after {
    background-image: url('/img/chevron-up.svg');
}

.selector-dropdown--option {
    cursor: pointer;
    font-weight: 500;
    width: 100%;
    padding: 10px 32px 10px 6px;
}

.selector-dropdown--option:first-child:{
    padding-top:20px;        
}

.main-content-container .selector-dropdown--option {
    margin-bottom: 0;
}

.selector-dropdown--option.selected {
    background-color: #c5cdd2;
}

.selector-dropdown--selected {
    cursor: pointer;
    min-height: calc(2*12px + 1.5em);
    line-height: 1.5;
    border-radius: 4px;
    border: 1px solid #002235;
    background: white;
}

.selector-dropdown--dropdown {
    width: 100%;
    padding-top: 5px;
    border-radius: 4px;
    border: 1px solid #002235;
    background: white;
    z-index: 2;
    padding-inline-start: 10px;
}

.selector-dropdown--placeholder {
    color: #464546;
}
