.ui.selection.dropdown{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    border: 0.07em solid var(--light-gray-border) !important;
    box-shadow: unset !important;
    font-size: 1em !important;
    padding: 0.8em 1.3em !important;
    border-radius: 0.2em !important;
    min-width: 11em !important;
}

.ui.selection.dropdown svg{
    font-size: 0.85em !important;
    vertical-align: middle !important;
}

.ui.selection.dropdown .text{
    font-size: 1.1em !important;
    margin-right: 1em;
    line-height: 1.6;
}

.ui.selection.dropdown .default.text{
    color: var(--light-gray-txt-color) !important;
}

.ui.selection.dropdown .text{
    color: var(--dark-txt-color) !important;
}

.ui.selection.dropdown .menu{
    border: 0.07em solid var(--light-gray-border) !important;
    box-shadow: unset !important;
    min-width: unset;
}

.ui.selection.dropdown .menu div{
    color: var(--dark-txt-color);
    font-size: 1.1em;
    display: block;
    border-color: #f1f1f1 !important;
    padding: 0.8em 1.1em 0.8em 1.1em !important;
    transition: all 0.3s ease !important;
}

.ui.selection.dropdown .menu .active.item{
    font-weight: inherit !important;
    background-color: var(--blue-back-color) !important;
    color: var(--white-txt-color) !important;
}

.ui.selection.dropdown .menu > .item:hover{
    background-color: var(--blue-back-color) !important;
    color: var(--white-txt-color) !important;
}

@media screen and (max-width: 991px){
    .ui.selection.dropdown .menu{
        max-height: 15em !important;
    }
}