
/* Switch unit to EM */

.dropdown-menu {
    min-width: 10em;
    padding: .5em 0;
    font-size: 1em;
    border-radius: 0;
    background-color: rgb(19 24 29);
    box-shadow: 3px 3px 6px black;
    background-clip: unset;
}
.dropdown-item {
    padding: .25em 1em;
    cursor: pointer;
    color: white;
}
.dropdown-item:focus,
.dropdown-item:hover,
.dropdown-item:active {
    background-color: rgba(78, 155, 255, 0.15);
    color: white;
}
.dropdown-item:active {
    background-color: rgba(78, 155, 255, 0.25);
}
.dropdown-divider {
    border-top: solid 1px rgb(255,255,255,0.2);
    margin: .5em 0;
}

.progress {
    height: 1em;
    font-size: .75em;
    border-radius: .25em;
}

.small, small {
    font-size: .8em;
}