@import url(font.css);

html,
body {
    font-family: 'Prompt', sans-serif;
    font-size: 15px;
}

a,
a:hover,
a:active {
    text-decoration: none;
    color: initial;
}

.nav-content {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding-left: var(--tblr-gutter-x, 1.5rem);
    padding-right: var(--tblr-gutter-x, 1.5rem);
}

.nav-alert svg {
    height: 18px;
    width: 18px;
}

.box-input {
    height: 80px;
}

.select2-container .select2-selection--single {
    height: 36px;
    border-radius: 4px;
    line-height: 36px;
}

.theme-dark .select2-container .select2-selection--single {
    background-color: #1b2434;
    color: #f8fafc;
    border-color: #2c3c56;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 36px;
}
.theme-dark .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #f8fafc;
    line-height: 36px;
}

.theme-dark .select2-search--dropdown,.theme-dark .select2-dropdown {
    background-color: #1b2434;
    color: #f8fafc;
    border-color: #2c3c56;
}
.select2-dropdown
.theme-dark .select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: #1b2434;
    color: #f8fafc;
    border-color: #2c3c56;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 5px;
}

.theme-dark .select2-container--default .select2-search--dropdown .select2-search__field {
    background-color: #1b2434;
    color: #f8fafc;
    border-color: #2c3c56;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #d9dbde;
    
    border-radius: 4px;
}
.modal {
    background-color: rgb(0, 0, 0, 0.6);
}

.pointer {
    cursor: pointer;
}

.theme-dark .note-toolbar,.theme-dark .note-btn {
    background-color: inherit;
    color: white;
}
.theme-dark .note-editor.note-frame {
    border-color: #2c3c56;
}
.theme-dark .note-editable,.theme-dark .note-editable p {
    color: white;
    background-color: #1b2434;
}
.note-toolbar .dropdown-toggle:after {
    display: none !important;
}
.theme-dark .image-uploader {
    border-color: #2c3c56;
    background-color: #1b2434;
}
#loading {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 99999999999;
    display: none;
}
#loading.active {
    display: block;
}
#loading .loading{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
}
#loading .loading .spinner-border{
    width: 5.5rem;
    height: 5.5rem;
}