@font-face {
    font-family: 'Inter';
    font-weight: normal;
    src: url('/static/photonic/fonts/inter.woff2') format('woff2'),
         url('/static/photonic/fonts/inter.woff') format('woff')
}

@font-face {
    font-family: 'Inter';
    font-weight: bold;
    src: url('/static/photonic/fonts/inter-bold.woff2') format('woff2'),
         url('/static/photonic/fonts/inter-bold.woff') format('woff')
}

@font-face {
    font-family: 'Roboto Slab';
    src: url('/static/photonic/fonts/roboto-slab.woff2') format('woff2'),
         url('/static/photonic/fonts/roboto-slab.woff') format('woff')
}

:root {
    --bs-font-sans-serif: "Inter", "Segoe UI", "Roboto", "Helvetica Neue", "Arial", "Noto Sans", "Liberation Sans", "sans-serif";
}

html {
    overscroll-behavior: none !important;
}

body {
    color: #282F33;
    background-color: #fff;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    overflow-y: auto;
    overflow-x: hidden !important;
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

body::-webkit-scrollbar {
    display: none;
}

main h1 {
    display: block;
    width: 100%;
    background: #2980b9;
    color: #ffffff;
    font-size: 2rem;
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 8px;
    line-height: 2rem;
    text-transform: uppercase;
    margin-top: 0px;
    margin-bottom: 5px;
}

#sidebar h1 {
    display: block;
    font-size: inherit;
    width: 100%;
    color: #55a5d9;
    text-transform: uppercase;
    padding-left: 5px;
    margin-bottom: 0px;
    font-weight: bold;
    margin-top: 5px;
}

h2 {
    margin-top: 0px;
    display: block;
    border-bottom: 1px solid #D5D5D5;
    margin-bottom: 1rem;
    font-family: "Roboto Slab", Georgia, "Times New Roman", Times, serif;
}

div.login-container {
    z-index: 1001;
    background-color: #37517e;
    position: fixed;
    text-align: center;
    top: 56px;
    bottom: 0px;
    right: 0px;
    left: 0px;
}

div.accept-cookies {
    position: fixed;
    top: 56px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    background: rgba(0, 0, 0, 0.3);
}

div.accept-cookies > div {
    position: absolute;
    background-color: #2b3743;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    color: #fff;
    top: 50%;
    left: 0;
    right: 0;
    padding: 2rem;
    transform: translate(0%, -50%);
}

div.accept-cookies > div a {
    color: rgb(181, 29, 29);
    text-decoration: underline;
}

div.accept-cookies > div a:hover {
    color: rgb(255, 44, 44);
    text-decoration: underline;
}

div.login-container > div {
    position: absolute;
    text-align: left;
    width: 100%;
    min-width: 200px;
    max-width: 500px;
    background-color: #fafafa;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* fix select 2 autoscale bug, select2 has inline css of 1122px. bug bug bug */
.select2 {
    width: 100% !important;
}


.select2-dropdown {
  z-index: 100000;
}

/* Fixes XDSOFT Datetime Picker z-index being set to high */
.xdsoft_datetimepicker, .xdsoft_label {
  z-index: 100000 !important;
}

.tooltip > .tooltip-inner {
  background-color: #ffc107;
  color: #333;
}

header {
    display: flex;
    position: fixed;
    align-items:center;
    padding: 0px;
    margin: 0px;
    height: 56px;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1001;
    font-size: 1rem;
    border-bottom: 1px solid #efefef;
}

header .select2-container--default .select2-selection--single {
    border-radius: 15px !important;
}

header div.header-brand {
    padding-left: 5px;
    padding-right: 1rem;
    display: flex;
    align-items: center;
    height: 100%;
}

header div.header-brand img {
    height: 50px;
}

header div.header-tenant {
    padding-left: 5px;
    padding-right: 5px;
    display: flex;
    flex-grow: 1;
    flex-shrink: 0;
    width: auto;
}


div.header-links {
    margin-right: 5px;
    justify-content: space-between;
}

header a {
    display: flex;
    align-items:center;
    float: right;
    padding-left: 5px;
    padding-right: 5px;
    white-space: nowrap;
    line-height: inherit;
    color: #999;
}


header a .feather {
    color: #999;
    margin-right: 0.3rem;
    height: 56px;
}


header a:hover {
    text-decoration: none;
}


div.application {
    width: 100%;
    padding-top: 56px;
    padding-bottom: 2rem;
}

main h1 i {
    display: none !important;
}

h1 i {
    line-height: 30px;
    font-size: 1rem;
    float: right;
    font-weight: bold;
    color: #fff;
    line-height: unset !important;
}

div.nebula-window h1 {
    background: #37517e;
    margin-top: 0px;
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 8px;
    padding-right: 8px;
    margin-bottom: 4px;
    display: block;
    width: 100%;
    color: #fff;
    line-height: 30px;
    font-size: 1rem;
    text-transform: uppercase;
}

#sidebar {
    z-index: 1000;
    position: fixed;
    display: block;
    top: 56px;
    left: 0px;
    padding-left: 0px;
    padding-right: 0px;
    bottom: 0rem;
    padding-top: 6px;
    padding-bottom: 6px;
    float: left;
    box-sizing: border-box;
    width: 300px;
    overflow-y: scroll;
    overflow-x: hidden;
    border-right: 1px solid #efefef;
    font-size: 0.875rem;
}

/* Hide scrollbar for Chrome, Safari and Opera */
#sidebar::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#sidebar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

div.sidebar span.select2-selection {
    border-top: 1px solid #ddd !important;
    border-bottom: 1px solid #ddd !important;
    border-left: 0px solid #ddd !important;
    border-right: 0px solid #ddd !important;
}

div.sidebar span.select2-dropdown {
    border-color: #ddd !important;
}

div.sidebar a.btn {
    width: 100%;
}

div.sidebar span.select2,
div.sidebar input {
    margin-bottom: 5px;
}

div.sidebar span.select2-selection,
div.sidebar span.select2-dropdown,
div.sidebar input {
    width: 100%;
    border-left: 0px;
    border-right: 0px;
    border-radius: 0px;
}

input, select, textarea {
    display: inline-block;
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 0px;
    margin-top: 0px;
    border: 1px solid #ddd;
    padding-left: 5px;
    padding-right: 5px;
    border-radius: 4px;
}

input:disabled {
    background-color: #efefef;
    color: #333;
}

label {
    color: #3498db;
}


main {
    box-sizing: border-box;
    display: block;
    margin-top: 0px;
    margin-left: 300px;
    box-sizing: border-box;
    padding-top: 0px;
    padding-bottom: 6px;
    padding-left: 0px;
    padding-right: 0px;
}

div.view {
    padding-left: 0px;
    padding-right: 0px;
}

div.view div.row {
    margin-left: 0px;
    margin-right: 0px;
}

section {
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
}

div.buttons {
    display: block;
    margin-top: 5px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
    background-color: #f8f9fa !important;
    border-top: 1px solid #ddd !important;
    border-bottom: 1px solid #ddd !important;
    text-align: right !important;
}

div.view_header {
    display: block;
    margin-bottom: 5px !important;
    margin-top: 5px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
    background-color: #f5f5f5 !important;
    border-top: 1px solid #ddd !important;
    border-bottom: 1px solid #ddd !important;
    text-align: right !important;
}

div.view_header > div {
    display: inline-block;
    background-color: #000;
    color: #fff;
    border-radius: 8px;
    padding-left: 4px;
    padding-right: 4px;
}

div.view_header > div button, div.view_header > div a {
    display: inline-block;
    padding: 4px;
    color: #f7f7f7;
    margin-left: 4px;
    margin-right: 4px;
    border-left: 1px #000;
    border-right: 1px #000;
}

div.view_header > div button:hover, div.view_header > div a:hover {
    background-color: #2b2b2b;
    color: #f7f7f7;
}

div.view_footer {
    display: block;
    margin-top: 5px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    padding-left: 5px !important;
    padding-right: 5px !important;
    background-color: #f5f5f5 !important;
    border-top: 1px solid #ddd !important;
    border-bottom: 1px solid #ddd !important;
    text-align: right !important;
}

.toggler-icon {
    display: none;
}

.hidden {
    display: none
}

div.confirm {
    font-size: 1.4rem;
}

div.modal {
    display: flex;
    justify-content: center;
    position: fixed;
    overflow: hidden;
    padding-top: 56px;
    padding-bottom: 2rem;
    z-index: 100000;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.3);
}


div.modal > div {
    display: block;
    position: absolute;
    top: 4rem;
    min-width: 200px;
    max-width: 1000px;
    width: 100%;
    overflow: auto;
}

div.modal > div > div > div {
    display: block;
    position: relative;
    overflow: auto;
}

form {
    width: 100%;
}


div.loading {
    background: rgba(0, 0, 0, 0.3);
    z-index: 200000;
    height: 100%;
    width: 100%;
    background-image: url('images/loader.gif');
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
}


#popup {
    z-index: 100002;
    width: 300px;
    position: fixed;
    top: 50px;
    left: auto;
    right: 10px;
}


div.popup {
    border-color: #D8D8D8;
    border-style: solid;
    border-width: 1px;
    margin-bottom: 10px;
    margin-left: 0px;
    margin-right: 0px;
    margin-top: 0px;
    padding-bottom: 5px;
    padding-left: 5px;
    padding-right: 5px;
    padding-top: 5px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}


div.error {
    background-color: #f4e2e3;
    color: #9a6e6f;
    display: none;
}


div.warning {
    background-color: #fff4c3;
    color: #b09100;
    display: none;
}


div.info {
    background-color: #deeff7;
    color: #6d8a98;
    display: none;
}


div.success {
    background-color: #e2f2dd;
    color: #598766;
    display: none;
}


div.box {
    width: auto;
    border-style: solid;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 2px;
    padding-right: 2px;
    border-color: #e3e3e3;
    background-color: #f5f5f5;
    border-width: 1px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    border-radius: 3px;
    margin-bottom: 5px;
    font-size: 1rem;
    min-height: 1rem;
}

div.error-text {
    width: auto;
    border-style: solid;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-color: #c97201;
    background-color: #ff9a16;
    color: #ffffff;
    border-width: 1px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    border-radius: 10px;
    font-size: 1rem;
    min-height: 1rem;
}


p.box {
    width: auto;
    border-style: solid;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-left: 4px;
    padding-right: 4px;
    border-color: #e3e3e3;
    background-color: #85C1E9;
    border-width: 1px;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    border-radius: 3px;
    margin-top: 3px;
    margin-bottom: 3px;
    font-size: 1rem;
    min-height: 1rem;
}

div.view-file {
    overflow: hidden;
    border: 1px solid #ddd;
    background-color: #e9ecef;
}

div.generic-table {
    width: 100%;
    display: table;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

div.generic-table > div, div.generic-table > form {
    display: table-row;
}

div.generic-table > div.thead {
    font-weight: bold;
}

div.generic-table > div > div, div.generic-table > form > div {
    display: table-cell;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.2rem;
    padding-right: 0.2rem;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: rgb(222, 226, 230);
    vertical-align: middle;
}

table.dataTable .feather {
    height: 1.3rem;
}

div.photonicChart {
    height: 300px;
}

div.photonicChartLegend {
    display: table;
    width: 100%;
}

div.photonicChartLegend div {
    display: table-row;
    border-bottom: 1px solid #ddd !important;
}

div.photonicChartLegend div div {
    display: table-cell;
    padding-left: 5px;
    padding-right: 5px;
}

h2.photonicChartTitle {
    text-align: center;
}

span.billdoc_label {
    text-align: right;
    vertical-align: top;
    width: 8rem;
    display: inline-block;
}

span.billdoc_value {
    vertical-align: top;
    width: 200px;
    display: inline-block;

}

ul.sortable { list-style-type: none; margin: 0; padding: 0; width: 100%; }
li.sortable { margin: 3px 3px 3px 0; padding: 1px; float: left; width: 440px; height: 260px; text-align: center; }

div.events {
    display: table;
    vertical-align: top;
    font-family: "Roboto Mono", "Consolas", "Menlo", "Courier", monospace;
    font-size: 1rem;
    text-align: left;
    color: #fff;
    width: 100%;
    overflow-wrap: anywhere;
    word-wrap: anywhere;
    background-color: #000000;
}

div.events > div {
    display: table-row;
    overflow-wrap: anywhere;
    word-wrap: anywhere;
}

div.events > div:hover {
    background-color: #21211f;
}

div.events > div > div {
    display: table-cell;
    overflow-wrap: anywhere;
    word-wrap: anywhere;
    word-break: break-word;
}

div.eventTimestamp {
    text-align: right;
    font-size: 1rem;
    width: 230px;
    min-width: 230px;
    padding-left: 5px;
    padding-right: 10px;
}

div.eventEmergancy {
    color: #e5e7e9;
    background-color: #c9302c;
    width: 5px;
}

div.eventAlert {
    color: #e5e7e9;
    background-color: #c9302c;
    width: 5px;
}

div.eventCritical {
    color: #e5e7e9;
    background-color: #c9302c;
    width: 5px;
}

div.eventError {
    color: #e5e7e9;
    background-color: #d35400;
    width: 5px;
}

div.eventWarning {
    color: #fff;
    background-color: #dc7633;
    width: 5px;
}

div.eventNotice {
    color: #fff;
    background-color: #31b0d5;
    width: 5px;
}

div.eventInfo {
    color: #fff;
    background-color: #449d44;
    width: 5px;
}

div.eventDebug {
    color: #fff;
    background-color: #000000;
    width: 5px;
}

div.eventMessage {
    color: #fff;
    font-family: "Roboto Mono", "Consolas", "Menlo", "Courier", monospace;
    font-size: 1rem;
    overflow-wrap: anywhere;
    word-wrap: anywhere;
    background-color: #000000;
}

table {
    width: 100%;
    margin-bottom: 5px;
}

footer {
    display: none;
    align-items: center;
    justify-content: flex-end;
    left: 0px;
    right: 0px;
    bottom: 0px;
    clear: both;
    font-size: 2rem;
    margin-bottom: 0px;
    margin-top: 0px;
    padding: 0;
    position: fixed;
    z-index: 1002;
    width: 100%;
    line-height: 2rem;
    height: 3.5rem;
}

div.footer-icon {
    float: right;
    text-align: center;
    padding-top: 3px;
    padding-left: 5px;
    padding-right: 5px;
}

div.footer-icon span {
    display: block;
    font-size: 0.8rem;
    line-height: 0.8rem;
}


a {
    text-decoration: none;
    color: #808B96;
}

a:hover {
    text-decoration: none;
    color: #333;
}

.paginate_btn:focus, .page-link:focus, button:focus, a:focus {
         outline: none !important;
         box-shadow: none;
}
input:focus {
         outline: none !important;
         box-shadow: none;
}
.toggler-icon:focus {
         outline: none !important;
         box-shadow: none;
}

button.alert-close {
    color: #808B96;
    background-color: inherit !important;
    padding: 0px;
    margin: 0px;
    border: 0px;
}

button.alert-close:hover {
    color: #333;
    background-color: inherit !important;
    padding: 0px;
    margin: 0px;
    border: 0px;
}

.nebula-table-footer {
    padding-top: 0.5em;
    padding-left: 1em;
    padding-right: 1em;
    padding-bottom: 0.5em;
    color: #333333;
}

.nebula-paginate_button {
    box-sizing: border-box;
    display: inline-block;
    min-width: 1.5em;
    padding-top: 0.5em;
    padding-left: 1em;
    padding-right: 1em;
    padding-bottom: 0.5em;
    margin-left: 2px;
    text-align: center;
    text-decoration: none !important;
    text-decoration-line: none;
    text-decoration-style: solid;
    text-decoration-color: currentColor;
    text-decoration-thickness: auto;
    cursor: pointer;
    color: #333 !important;
    border: 1px solid transparent;
    border-radius: 2px;
}

.nebula-paginate_button:hover {
    color: white !important;
    border: 1px solid #111;
    background: linear-gradient(to bottom, #585858 0%, #111 100%);
}

.nebula-paginate_button.current, .nebula-paginate_button.current:hover {
    border: 1px solid #979797;
    color: #333 !important;
    background: linear-gradient(to bottom, #fff 0%, #dcdcdc 100%);
}

table.nebula-table {
    width: 100%;
    color: #333333;
    border-top: 1px;
    border-bottom: 1px;
    border-left: 0px;
    border-right: 0px;
    border-style: solid;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    border-radius: 3px;
    border-color: #e3e3e3;
}

table.dataTable tbody tr:hover td {
    background-color: #ffa !important;
    cursor: pointer;
}

div.dataTables_scrollBody {
    border-left: 0px !important;
}

table.nebula-table > thead {
    background-color: #f2f2f2;
    color: #333333;
    border-bottom: 2px solid #d9d9d9;
}

table.nebula-table > thead th {
    border-bottom: unset !important;
    padding: 8px 10px;
}

table.nebula-table > tbody td {
    padding: 8px 10px;
}

table.nebula-table > tbody > tr:hover {
    background-color: #BBBBBB;
    cursor: pointer;
}

div.view-tabs {
    border: 1px solid #c5c5c5;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    background: #fff;
    color: #333;
    font-family: Arial,Helvetica,sans-serif;
    font-size: 1em;
    position: relative;
    padding: 0px;
    box-sizing: border-box;
    margin-bottom: 5px;
    margin-left: 5px;
    margin-right: 5px;
}

div.view-tabs > ul {
    margin-top: 3px;
    margin-left: 5px;
    margin-right: 5px;
    margin-bottom: 2px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    padding-top: 2px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    border: 0px;
    color: #333;
    font-weight: bold;
    outline: 0;
    line-height: 1.3;
    text-decoration: none;
    font-size: 100%;
    list-style: none;
    font-family: Arial,Helvetica,sans-serif;
}

div.view-tabs > ul > li {
    display: inline-block;
    list-style: none;
    float: left;
    position: relative;
    top: 0;
    margin: 3px 3px 0 0;
    border-bottom-width: 0;
    white-space: nowrap;
    border: 1px solid #c5c5c5;
    background: #fff;
    color: #333;
    font-weight: normal;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
    line-height: 1.3;
    font-size: 100%;
    font-family: Arial,Helvetica,sans-serif;
    text-align: left;
    padding: 0.375rem .75rem;
}

div.view-tabs > ul > li a {
    color: #333;
}

div.view-tabs > ul > li.selected {
    border: 1px solid #003eff;
    background: #007fff;
    color: #fff;
}

div.view-tabs > ul > li.selected a {
    color: #fff;
}

div.view-tabs > ul::after  {
    content: '';
    display: table;
    clear: both;
}

nav {
    padding-right: 3px;
}

nav li a:not([data-dropdown]) i {
    display: none;
}

nav li a[data-dropdown][data-open^="true"] {
    font-weight: bold;
}

nav ul {
    box-sizing: border-box;
    display: block;
    list-style: none;
    width: 100%;
    padding: 0px;
    margin: 0px;
}

nav ul ul {
    display: none;
    box-sizing: border-box;
    border-top: 0px;
    border-bottom: 0px;
    border-right: 0px;
    border-left: 0px;
    padding-left: 0px;
}

nav a {
    color: #333;
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    text-align: left;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    width: 100%;
    border: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-right: 0.75rem;
    padding-left: 25px;
    border-radius: .25rem;
    text-decoration: none;
}

nav ul ul a {
    padding-left: 35px;
}

nav ul ul ul a {
    padding-left: 45px;
}

nav ul ul ul ul a {
    padding-left: 55px;
}

nav a.active {
    background: #6ab0de;
    color: #ffffff;
}

nav a.active:hover {
    background: #6ab0de;
    color: #ffffff;
}

nav a:hover {
    background-color: #efefef;
}

nav ul ul a:hover {
    background: linear-gradient(
        to right,
        #ddd 2px,
        #efefef 2px
    );
}

nav ul ul a {
    box-sizing: border-box;
    cursor: pointer;
    display: inline-block;
    text-align: left;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    width: 100%;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 0.75rem;
    font-size: 0.8rem;
    line-height: 1.2rem;
    border-radius: .25rem;
}

div.section-title {
    margin-top: 2px;
    padding-left: 0px;
    padding-right: 4px;
    margin-bottom: 4px;
    display: block;
    width: 100%;
    color: #427FA2;
    line-height: 1.5rem;
    height: 1.6rem;
    text-transform: uppercase;
}

div.section-title i {
    line-height: 1.5rem;
    float: right;
}

div.nebula-window {
    display: flex;
    justify-content: center;
    position: fixed;
    overflow: hidden;
    padding-top: 56px;
    padding-bottom: 2rem;
    z-index: 100000;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}

div.nebula-window > div {
    display: block;
    position: absolute;
    top: 25px;
    min-width: 200px;
    max-width: 1000px;
    width: 100%;
    overflow: hidden;
    background-color: #fff;
    border: 0px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
    padding-left: 0px;
    padding-right: 0px;
}

div.nebula-window > div > div > div.view_content {
    max-height: 70vh;
    overflow: auto;
}

div.view_content {
    width: 100%;
}

table.nebulaDataTable td {
    white-space: nowrap !important;
    max-width: 450px !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

#topBtn {
    display: none; /* Hidden by default */
    position: fixed; /* Fixed/sticky position */
    bottom: 3px; /* Place the button at the bottom of the page */
    right: 20px; /* Place the button 20px from the right */
    z-index: 99; /* Make sure it does not overlap */
    border: none; /* Remove borders */
    outline: none; /* Remove outline */
    background-color: rgba(255, 0, 0, 0.742); /* Set a background color */
    color: white; /* Text color */
    cursor: pointer; /* Add a mouse pointer on hover */
    padding: 8px; /* Some padding */
    border-radius: 10px; /* Rounded corners */
    font-size: 1.2rem; /* Increase font size */
    line-height: 1rem;
  }

@media screen and (max-width: 900px) {
    #topBtn {
        bottom: 4rem;
    }
    header {
        z-index: 1000;
    }
    header div.header-tenant {
        display: none;
    }
    div.sidebar div.header-tenant {
        display: block !important;
    }

    #sidebar {
        border-top: 1px solid #efefef;
        border-right: 1px solid #efefef;
        border-bottom: 1px solid #efefef;
        display: none;
        background-color: #ffffff;
        bottom: 3.5rem;
        z-index: 1003;
    }

    .header-links {
        display: none;
    }

    .toggler-icon {
        display: inline-block;
    }
    main {
        margin-left: 0px;
        margin-bottom: 3.5rem;
    }
    div.login-container {
        bottom: 3rem;
    }
    footer {
        display: flex;
    }
    li.paginate_button.previous {
        display: inline;
    }

    li.paginate_button.next {
        display: inline;
    }

    li.paginate_button {
        display: none;
    }

    main h1 {
        padding-left: 4px !important;
    }
}

div.nebula-window > div.nebula-window-bg {
    background: rgba(0, 0, 0, 0.359);
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: unset;
    border: unset;
    max-width: unset;
}

img.qrcode {
    max-width: 250px;
    width: 100%;
}

/* SELECT 2 SAME SIZE AS BOOTSTRAP5 TEXT BOXES.. HACKED */
span.select2-selection {
    border: 1px solid #ddd !important;
    height: 2.300rem !important;
}
span.select2-dropdown {
    border-color: #ddd !important;
}

.prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.nebulaConfirm {
    color: var(--bs-danger-text-emphasis) !important;
    background-color: var(--bs-danger-bg-subtle) !important;
}

label i {
    color: #282F33;
    font-size: .8rem;
    padding-left: 5px;
}