:root{
    --alertColor: red;
    --errorColor: #b74747;
    --backgroundFormColor: #000000;
    --cardBorder: 1px solid #000000;
    --backgroundColor: #212121;
    --backgroundDialogColor: #272727;
    --backgroundModalColor: #313131;
    --backgroundListItemColor: #313131;
    --backgroundListItemColorSecondary: #414141;
    --border: 1px solid #949494;
    
    --emphasisPrimaryTextColor: #20a09a;
    
    --primaryTextColor: #fff;
    --secondaryTextColor: #dedede;
    --tertiaryTextColor: #bdbdbd;
    --roleTextColor: indianred;
    --permissionTextColor: #20a09a;
    --resourceTextColor: #8d8d8d;
    
    --selectedColor: #007bff;
    --selectActiveColor: #385573;
    --selectHoverColor: #456a90;
    --closeButtonColor: #e6e6e6;
}
*{
    user-select: none;
}
body {
    background-color: var(--backgroundColor);
    color: var(--primaryTextColor);
}
hr {
    background-color: var(--secondaryTextColor);
}
.hidden {
    display: none;
}
.text-sm {
    font-size: 0.9em;
}
.text-normal {
    font-size: 1em;
}
.text-lg {
    font-size: 1.25em;
}
.text-xl {
    font-size: 1.5em;
}
.user-select-all {
    user-select: all;
}
.emphasis-primary {
    color: var(--emphasisPrimaryTextColor)
}
.list-title-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--primaryTextColor);
    font-size: 20px;
}
.list-panel {
    margin-left: 30px;
    margin-right: 30px;
}
.list-element {
    display: flex;
    align-items: center;
}
input[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: searchfield-cancel-button;
}
.dropzone {
    background: var(--backgroundModalColor);
}
.card {
    color: var(--primaryTextColor);
    background-color: var(--backgroundModalColor);
    border: var(--cardBorder);
}
.card-header {
    cursor: pointer;
}
.card-body {
    background-color: var(--backgroundColor);
}
.modal-header{
    border-bottom: var(--border);
    color: var(--primaryTextColor);
}
.modal-footer{
    border-top: var(--border);
    color: var(--primaryTextColor);
}
.modal-content {
    background-color: var(--backgroundDialogColor);
}
.modal-body{
    color: var(--secondaryTextColor);
}
.close {
    text-shadow: none;
    color: var(--closeButtonColor);
}
.close:active{
    color: var(--alertColor) !important;
}
.close:focus{
    outline: none;
}
.form-control{
    background-color: var(--backgroundFormColor);
    color: var(--primaryTextColor);
    border: none;
}
.form-control:hover{
    filter:brightness(.8);
}
.form-control:active, .form-control:focus{
    background-color: var(--backgroundFormColor);
    color: var(--primaryTextColor);
    border: none;
}
.form-control.inline-select {
    display: initial;
    width: initial;
}
.form-control.secondary-select {
    background-color: var(--backgroundModalColor);
}
.custom-select{
    background-color: var(--backgroundFormColor);
    color: var(--primaryTextColor);
    border: none;
}
.list-group-item {
    color: var(--primaryTextColor) !important;
    background-color: var(--backgroundListItemColor);
}
.list-group-item:hover {
    background-color: var(--selectHoverColor);
    cursor: pointer;
}
.list-group-item.active:hover {
    background-color: var(--selectedColor);
}
.list-group-item-action:active {
    background-color: var(--selectActiveColor);
}
.list-group-item-no-hover:hover, .list-group-item-no-hover:active {
    background-color: var(--backgroundListItemColor);
    cursor: initial;
}
@font-face {
    font-family: 'Quicksand';
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Quicksand-Regular.ttf);
}
body {
    font-family: 'Quicksand', sans-serif;
}
.error {
    background-color: var(--errorColor) !important;
}
.form-error {
    color: var(--alertColor) !important;
}
.nav {
    overflow: hidden;
    display: block;
    background-color: var(--backgroundModalColor);
    padding: 0;
    margin-bottom: 20px;
}
.nav a {
    float: left;
    color: var(--secondaryTextColor);
    text-align: center;
    padding: 8px 10px;
    text-decoration: none;
    font-size: 12px;
}
.nav-dropdown {
    float: left;
    overflow: hidden;
}
.nav-dropdown .nav-dropdown-button {
    font-size: 12px;
    border: none;
    outline: none;
    color: var(--primaryTextColor);
    padding: 8px 10px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}
.nav a:hover, .nav-dropdown:hover .nav-dropdown-button {
    background: var(--backgroundListItemColor);
    color: var(--primaryTextColor);
}
.nav a.nav-selected, .nav button.nav-selected {
    background-color: var(--backgroundFormColor)
}
.nav a.nav-dropdown-selected {
    background-color: var(--backgroundModalColor);
}
.nav-dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--backgroundListItemColorSecondary);
    min-width: 160px;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
}
.nav-dropdown-content a {
    float: none;
    color: var(--primaryTextColor);
    padding: 8px 10px;
    text-decoration: none;
    display: block;
    text-align: left;
}
.nav-dropdown-content a:hover {
    background: var(--backgroundListItemColor);
}
.nav-dropdown:hover .nav-dropdown-content {
    display: block;
}
.flex-grow-0 {
    flex-grow: 0;
}
.flex-grow-1 {
    flex-grow: 1;
}
.flex-grow-2 {
    flex-grow: 2;
}
.flex-grow-3 {
    flex-grow: 3;
}
.flex-grow-4 {
    flex-grow: 4;
}
.flex-grow-5 {
    flex-grow: 5;
}
.flex-grow-6 {
    flex-grow: 6;
}
.flex-grow-7 {
    flex-grow: 7;
}
.flex-grow-8 {
    flex-grow: 8;
}
.flex-grow-9 {
    flex-grow: 9;
}
.flex-basis-0 {
    flex-basis: 0;
}
.text-size-info {
    font-size: 12px;
}