
.dropdown {}

.dropdown.dropdown-show {
    animation: fadeIn 0.15s forwards;
}

.dropdown.dropdown-hide {
    animation: fadeOut 0.15s forwards;
}

.dropdown-option{
    display: flex;
    justify-content: left;
    align-items: center;
    color: #2A2A2A;
    font-size: 14px;
    font-weight: 400;
    padding: 7px 18px;
    overflow-x: hidden;
    text-overflow: ellipsis;
}

.dropdown-icon{
    width: 13px;
    height: 13px;
    opacity: 100%;
    align-self: center;
    padding-right: 12px;
    cursor: pointer;
    display: flex;
}

.dropdown-selected {
    opacity: 100% !important;
    background-color: #F8F8F8;
}
.dropdown-selected:active { background-color: #EBEBEB; }

.red.dropdown-selected {
    opacity: 100% !important;
    background-color: #FCEDEC !important;
}
.red.dropdown-selected:active { background-color: #F9DBD9 !important; }

.green.dropdown-selected {
    opacity: 100% !important;
    background-color: #F1F7F2 !important;
}

.green.dropdown-selected:active { background-color: #E3EEE5 !important; }

.dropdown-group-header {
    font-size: 11px;
    color: #A2A2A2;
    font-weight: 500;
    padding: 7px 18px;
}