* {
    box-sizing: border-box;
}

html {
    font-size: 10px;
}
body {
    font-family: Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
    font-size: 13px;
    line-height: 1.5384616;
    color: #333333;
    background-color: #f5f5f5;
}

a {
    color: #1e88e5;
    text-decoration: none;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-weight: 400;
    line-height: 1.5;
    color: inherit;
    margin-bottom: 10px;
}

h1 {
    font-size: 25px;
    margin-top: 20px;
}
h2 {
    font-size: 23px;
    margin-top: 20px;
}
h3 {
    font-size: 21px;
    margin-top: 20px;
}
h4 {
    font-size: 19px;
    margin-top: 10px;
}

h5,
h6 {
    font-size: 15px;
    margin-top: 10px;
}

p {
    margin: 0 0 10px;
}

th {
    text-align: left;
    padding: 0;
}

ul {
    margin-top: 0;
    margin-bottom: 10px;
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    white-space: nowrap;
    border-radius: 3px;
}

html,
body,
#appDiv,
.page-container {
    width: 100%;
    margin: 0px;
}
#appDiv {
    height: 100vh;
}
.page-container {
    padding-bottom: 0px;
}
#appDiv > div {
    height: 100vh;
    position: relative;
}

#appDiv {
    overscroll-behavior: none;
}

input:active {
    outline: none;
}

button:focus {
    outline: none;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Chrome/Safari/Opera */
    -khtml-user-select: none; /* Konqueror */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  not supported by any browser */
}

.fixedDataTableLayout_main:focus {
    outline: none !important;
}

/* 
This class name is used for auto-sizing columns in a fixed data table.
maxWidth is added so that the element's scrollWidth property always has a maximum width based on the element's content.
whiteSpace is added to prevent the element's content from wrapping, which would mess up the element's width.
*/
.auto_fit {
    max-width: fit-content !important;
    white-space: nowrap !important;
}

.ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mui-base-button {
display: inline-block;
padding: 6px 16px; /* Mimic MUI padding */
font-size: 12px;
font-weight: 500;
line-height: 1.75;
letter-spacing: 0.02857em;
text-transform: uppercase;
color: white;
background-color: #1976d2; 
border: none;
border-radius: 4px;
cursor: pointer;
outline: none;
transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.mui-base-button:hover {
background-color: #429AFF; /* lighter shade on hover */
color: white;
}

.mui-base-button:disabled {
background-color: rgba(0, 0, 0, 0.12);
color: rgba(0, 0, 0, 0.26);
cursor: not-allowed;
box-shadow: none;
}

.ace_event_type {
    color: #900000;
    font-weight: bold;
    opacity: 0.5;
}
.ace_editor,
.hex-table {
    font-family: 'Roboto Mono', monospace !important;
}
.ace_editor.ace_autocomplete .ace_completion-highlight {
    text-shadow: none !important;
    font-weight: bold;
}

.monaco-aria-container {
    display: none;
}

.disabled .monaco-editor,
.disabled .monaco-editor-background,
.disabled .monaco-editor .inputarea.ime-input,
.disabled .monaco-editor .margin,
.disabled .monaco-editor .view-lines {
    background-color: #e0e0e0;
    cursor: not-allowed;
}

.darkTheme .disabled .monaco-editor,
.darkTheme .disabled .monaco-editor-background,
.darkTheme .disabled .monaco-editor .inputarea.ime-input,
.darkTheme .disabled .monaco-editor .margin,
.darkTheme .disabled .monaco-editor .view-lines {
    background-color: #787878;
    cursor: not-allowed;
}

.text-lowercase {
    text-transform: lowercase;
}
.text-uppercase {
    text-transform: uppercase;
}
.text-capitalize {
    text-transform: capitalize;
}
.text-muted {
    color: #a3a3a3 !important;
}

.spinner {
    display: inline-block;
    -webkit-animation: rotation 1s linear infinite;
    -o-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
/*************** SEARCH PAGE ****************/
.cellButton {
    display: inline-block;
}
.cellButtonHighlight {
    cursor: pointer;
    background-color: transparent;
    line-height: 1em;
}
.cellButtonHighlight:hover {
    text-decoration: underline;
    height: 100%;
    margin-top: -8px;
    padding-top: 8px;
    margin-bottom: -8px;
    padding-bottom: 8px;
}

/************ SAML ERROR PAGE ***************/
.error-container {
    padding: 20px;
    width: 100vw;
    height: 100vh;
}

.error-container .page-container {
    background-color: #FFFFFF;
    border: 1px solid #C4C4C4;
    position: relative;
    height: 100%;
}

.error-container .page-container .page-content {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.error-container .page-container .page-content img {
    margin-bottom: 26px;
}

.error-container .page-container .page-content p {
    margin-bottom: 0px;
    font-size: 14px;
}

/************ LOGIN & RESET PAGE ************/
#login {
    position: absolute;
    top: 15%;
    left: 50%;
}
#login img {
    width: 800px;
    margin-left: -400px;
    margin-bottom: 50px;
}
#login table {
    width: 400px;
    margin-left: -250px;
}
#login h4 {
    margin-left: -250px;
    margin-bottom: 20px;
}
#login h5 {
    margin-left: -250px;
    margin-bottom: 20px;
}
#login td {
    padding: 5px;
}
#login td:first-child {
    text-align: right;
}
#login button {
    width: 100px;
}
#login tr:nth-last-child(2) td {
    height: 35px;
}
#login tr:nth-last-child(2) span {
    display: inline-block;
    color: red;
    padding-top: 5px;
}

.loginContent {
    margin-top: 130px;
}
.loginPanel {
    box-shadow: 0 10px 15px rgba(55, 71, 79, 0.1);
    border-color: #f5f5f5;
}
.loginInput {
    height: 45px;
    font-size: 16px;
    font-weight: 300;
}
.loginButton {
    background-color: #4c4c4c;
    border-color: #4c4c4c;
    display: block;
    width: 100%;
    position: relative;
    border-radius: 2px;
    color: #fff;
    border: 1px solid transparent;
    padding: 7px 12px;
}
.loginButton:hover {
    background-color: #6f6f6f;
    border-color: #6f6f6f;
}
.loginButton:disabled {
    background:  #cccccc;
    cursor: not-allowed;
}
.login-container .password-wrapper {
    position: relative;
}
.login-container .toggle-password {
    cursor: pointer;
}
.login-container input:-webkit-autofill,
.login-container input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s;
}
.login-container .horizontal-divider {
    width: 278;
    text-align: center;
    border-bottom: 1px solid #4C825C;
    line-height: 0.1em;
    height: 1px;
    margin-bottom: 20px;
}
.login-container .horizontal-divider span {
    background: #ffffff;
    padding: 0 10px;
}

/************ LOADING SPINNER ************/
.loading-container img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 192px;
    height: 144px;
}
.req {
    color: #d32f2f;
}

/*************** JGROWL ****************/
.jGrowl {
    z-index: 10000;
}
.jGrowl.top-right {
    top: 80px;
}

/************ MODAL DIALOGS ************/
.modalDialog {
    min-width: 400px;
    height: 250px;
    position: fixed;
    margin-top: -150px;
    top: 30%;
    left: 50%;
    transform: translate(-50%, 0%);
    z-index: 10;
    background-color: white;
    background-color: transparent;
}
.modalDialog .panel {
    box-shadow: 0px 0px 10px #999;
}
.modalDialog > .sectionContainer {
    margin: 0px !important;
    height: 250px;
}
.modalDialog.form table {
    table-layout: fixed;
    min-width: 370px;
}
.modalDialog.form td {
    padding: 5px;
}
.modalDialog.form td:first-child {
    min-width: 100px;
}
.modalDialog.form tr:nth-last-child(2) td span {
    width: 100%;
    text-overflow: ellipsis;
    color: red;
    display: inline-block;
    height: 35px;
    overflow: hidden;
}

.modalDialogLarge {
    height: 400px;
}
.modalDialogLarge > .sectionContainer {
    height: 400px;
}

.modalDialogPassword td:first-child {
    width: 130px;
}

/************ PAGE CONTAINER ************/
.loadingPage {
    position: fixed;
    top: 10%;
    left: 50%;
}
.loadingPage h2 {
    margin-left: -60px;
}

.page-title {
    padding: 15px 0px 20px 0;
}

.navbar {
    z-index: 3000;
}
.navbar-inverse {
    background-color: #373a3c;
    z-index: 11000;
}

/*
.navbar-inverse .navbar-nav > li:hover, 
.navbar-inverse .navbar-nav > li:hover > a,
.navbar-inverse .navbar-nav > li:focus > a,
.navbar-inverse .navbar-nav > li:focus, */
.navbar-inverse .navbar-nav > .active,
.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    color: #333333;
    background-color: #e4e4e4;
}

.navbar-inverse .navbar-nav > .active > a,
.navbar-inverse .navbar-nav > .active > a:hover,
.navbar-inverse .navbar-nav > .active > a:focus {
    padding-bottom: 13px;
    margin-bottom: -1px;
}

.navbar-header {
    min-width: 250px;
}
.navbar-default {
    background-color: #e4e4e4;
    border-bottom: 0;
}
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    color: #333333;
    background-color: #f5f5f5;
    box-shadow: none;
    -webkit-box-shadow: none;
}

.sidebar {
    z-index: 2000;
}

@media (min-width: 769px) {
    .page-header {
        box-shadow: 0px 3px 6px #ddd;
        position: fixed;
        right: 0px;
        z-index: 1000;
    }
}

.pagecontent-dark {
    background-color: #263238;
}
.pagecontent-dark .content,
.pagecontent-dark .content-wrapper {
    padding: 0px !important;
    margin: 0px !important;
}

.content-wrapper {
    padding-bottom: 0px !important;
}

/************ DATATABLES ************/
table {
    border-collapse: collapse;
}
.datatable-header {
    display: none;
}
.dataTables_filter label {
    margin-right: 20px;
}
.dataTables_filter input {
    margin: 0 0px 0px 10px;
}

table.datatable-selection-single tr:hover {
    cursor: pointer;
}

.table {
    white-space: nowrap;
    position: relative;
    table-layout: fixed;
}
.table tbody > tr.selected,
table.dataTable tbody > tr > .selected {
    background-color: rgb(222, 237, 244) !important;
}

.table .dt-cell {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 7px !important;
}
.table .dt-link {
    color: black;
    text-decoration: none;
}
.table .dt-link:hover {
    text-decoration: underline;
}

table.table.dataTable tr:hover td {
    background-color: rgb(222, 237, 244) !important;
}

/************ MARKDOWN ************/
.releasenotes h1 {
    font-size: 20px;
    color: #666666;
    font-weight: 600;
    margin-top: 0px;
    margin-bottom: 10px;
}
.releasenotes ul {
    margin-bottom: 30px;
    list-style: none;
}
.markdown span {
    display: inline-block;
    width: 110px;
    font-weight: bold;
    text-align: right;
    margin-right: 10px;
    color: #444;
    margin-left: -10px;
}
.markdown table {
    border: 1px solid #ddd;
    padding: 0px;
    margin: 0px;
}
.markdown table th,
.markdown table td {
    border: 1px solid #ddd;
    padding: 5px 10px 5px 10px;
}
.markdown table th {
    background-color: #eee;
}
.markdown img {
    max-width: 100%;
}

/************ PANELS ************/
.panel-title-link {
    display: inline-block;
    color: black;
}
.panel-title-link:hover {
    text-decoration: underline;
    cursor: pointer;
    color: black;
}
.panel.bg-grey-100 {
    background-color: #f0f0f0;
    border-color: #ddd;
    color: #333;
}
.panel.bg-grey-100 .panel-title,
.panel.bg-grey-100 .text-muted {
    color: #333;
}
.panel-muted .panel-title-link,
.panel-muted .panel-title,
.panel-muted .panel-heading,
.panel-muted.bg-grey-100,
.panel-muted.bg-grey-100 .panel-title,
.panel-muted.bg-grey-100 .text-muted {
    color: #999999;
}
.panel-muted .panel-title-link:hover {
    text-decoration: underline;
    cursor: pointer;
    color: #333333;
}

/************ TABBED SECTIONS ************/
.tabbedSections > .panel {
    border: none;
    box-shadow: none;
}

@media (min-width: 769px) {
    .nav-tabs.nav-tabs-highlight > li.active > a,
    .nav-tabs.nav-tabs-highlight > li.active > a:hover,
    .nav-tabs.nav-tabs-highlight > li.active > a:focus {
        border-top-color: #26a69a;
    }
}

/************ INPUTS ************/
.token-field-no-border > div {
    border: 1px solid transparent;
    background-color: transparent;
}
.bootstrap-tagsinput-custom,
.bootstrap-tagsinput-disabled {
    background-color: #37474f;
}
.bootstrap-tagsinput-disabled {
    padding-right: 10px !important;
}
.bootstrap-tagsinput-disabled span[data-role='remove'] {
    display: none;
}
.form-control-hover .bootstrap-tagsinput:hover,
.form-control-hover .form-control-addressfield:hover {
    border: 1px solid #ccc;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: transparent;
}
.ui-front {
    z-index: 10000;
}
/************ ACCOUNT PICKER ************/
.context-account-picker {
    width: 100px;
}

/************ Profile Table ************/
.profiletable {
    border-collapse: separate;
    border-spacing: 5px;
}
.profiletable th {
    padding: 0px 0px 10px 0px;
    font-size: 15px;
}
.profiletable td:nth-child(1n) {
    width: 100px;
}
.profiletable td:nth-child(2n) {
    width: 300px;
}

.authenticationTable {
    border-collapse: separate;
    border-spacing: 5px;
}
.authenticationTable tr {
    height: 50px;
}
.authenticationTable th {
    padding: 0px 0px 10px 0px;
    font-size: 15px;
}
.authenticationTable td:nth-child(1) {
    width: 190px;
}
.authenticationTable td:nth-child(3) {
    padding-left: 40px;
}
.authenticationTable button {
    width: 200px;
}

.accountTable {
    border-collapse: separate;
    border-spacing: 5px;
}
.accountTable tr {
    height: 50px;
}
.accountTable th {
    padding: 0px 0px 10px 0px;
    font-size: 15px;
}
.accountTable td:nth-child(1) {
    width: 190px;
}
.accountTable td:nth-child(3) {
    padding-left: 40px;
}
.accountTable button {
    width: 200px;
}

/************** Simple CSS Tree ************/
.simpleTree {
    margin-right: 20px;
}
.simpleTree li {
    list-style-type: none;
    position: relative;
    width: 100%;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 5px;
}

.simpleTree li::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -10px;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border-radius: 0 0 0 0px;
    width: 10px;
    height: 15px;
}

.simpleTree li::after {
    position: absolute;
    content: '';
    top: 13px;
    left: -10px;
    border-left: 1px solid #ccc;
    border-top: 1px solid #ccc;
    border-radius: 0px 0 0 0;
    width: 10px;
    height: 100%;
}

.simpleTree li:last-child::after {
    display: none;
}
.simpleTree li:last-child:before {
    border-radius: 0 0 0 5px;
}

.simpleTree li span {
    padding: 5px 15px 5px 5px;
    border-radius: 1px;
    margin: 0px 0px 0px 0px;
    width: 100%;
    display: inline-block;
}

.simpleTree li span:hover {
    background-color: #eee;
    cursor: pointer;
}

/*************** EVENT SEARCH ****************/
.eventSearchWhois table {
    margin-bottom: 20px;
}
.eventSearchWhois table td {
    vertical-align: top;
}
.eventSearchWhois table td:first-child {
    padding: 0px 10px 0px 0px;
    text-align: right;
    vertical-align: top;
}
.eventSearchWhois img {
    margin-left: 10px;
}
.eventSearchWhois a {
    display: block;
}

/*************** DATE PICKER *****************/
.daterangepicker.context-menu {
    z-index: 10000;
}

.daterangepicker .hourselect,
.daterangepicker .minuteselect,
.daterangepicker .ampmselect,
.daterangepicker .monthselect,
.daterangepicker .yearselect {
    padding: 6px 11px;
    border-radius: 2px;
    font-size: 12px;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
    height: 34px;
    line-height: 34px;
}

.daterangepicker .daterangepicker_input > i {
    top: 10px;
}

/*************** FLEXBOX *********************/
.flex-container {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-direction: normal;
    -moz-box-direction: normal;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
    -webkit-box-align: stretch;
    -moz-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.flex-container > .flex-container {
    flex-grow: 1;
}

.flex-column {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.flex-row {
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.flex-item {
    flex-grow: 0;
    -webkit-align-self: auto;
    -ms-flex-item-align: auto;
    align-self: auto;
}

.vertical-scroll {
    overflow-y: auto;
}

.space-around {
    justify-content: space-around;
}

.space-between {
    justify-content: space-between;
}

/*************** Print Styles *********************/
@media print {
    #appDiv,
    #appDiv > div {
        height: auto;
    }
    .panel, .pdf-page {
        page-break-inside: avoid;
    }
    a[href]:after {
        content: none;
    }

    .vertical-scroll {
        overflow-y: visible;
    }
    .dataTable thead .sorting:after,
    .dataTable thead .sorting:before {
        content: none;
    }
    .dataTable thead .sorting_desc:after,
    .dataTable thead .sorting_asc:after {
        position: relative;
        top: auto;
        right: auto;
        margin-left: 10px;
    }
    .row > div {
        float: none;
    }
    .row.stay-float > div {
        float: left;
    }
    .label {
        width: auto !important;
        min-width: auto !important;
        padding-left: 0.75em;
        padding-right: 0.75em;
    }
    .no-print {
        display: none;
        visibility: hidden;
    }
    .markdown {
        overflow: visible !important;
        height: auto !important;
        width: auto !important;
    }

    .content,
    .content > div {
        overflow: visible !important;
        width: auto !important;
        height: auto !important;
    }
}
/**
 * The geosuggest module
 * NOTE: duplicated font-sizes' are for browsers which don't support rem (only IE 8)
 */
.geosuggest {
    font-size: 13px;
    position: relative;
    width: '100%';
    text-align: left;
    line-height: 1.5384616;
    color: #333;
}
.geosuggest__input {
    width: 100%;
    border: 2px solid transparent;
    box-shadow: 0 0 1px #3d464d;
    padding: 0.5em 1em;
    padding: 5px 12px;
    -webkit-transition: border 0.2s, box-shadow 0.2s;
    transition: border 0.2s, box-shadow 0.2s;
}
.geosuggest__input:focus {
    border-color: #ddd;
    box-shadow: 0 0 0 transparent;
}
.geosuggest__suggests {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 25em;
    padding: 0;
    margin-top: -1px;
    background: #fff;
    border: 2px solid #ddd;
    border-top-width: 0;
    overflow-x: hidden;
    overflow-y: auto;
    list-style: none;
    z-index: 5;
    -webkit-transition: max-height 0.2s, border 0.2s;
    transition: max-height 0.2s, border 0.2s;
}
.geosuggest__suggests--hidden {
    max-height: 0;
    overflow: hidden;
    border-width: 0;
}

/**
 * A geosuggest item
 */
.geosuggest__item {
    font-size: 13px;
    padding: 0.5em 0.65em;
    cursor: pointer;
}
.geosuggest__item:hover,
.geosuggest__item:focus {
    background: #f5f5f5;
}
.geosuggest__item--active {
    background: #ddd;
    color: #fff;
}
.geosuggest__item--active:hover,
.geosuggest__item--active:focus {
    background: #ccc;
}

/*************** context WITH SUMMARY *********************/
.dropdownWithSummaryListItem {
    margin: 0;
    cursor: pointer;
    padding: 0 10px;
}
.dropdownWithSummaryListItem h6 {
    margin-top: 0;
    margin-bottom: 0;
}
.dropdownWithSummaryListItem p {
    margin-top: 0;
}
.dropdownWithSummaryListItem:hover {
    background-color: #efefef;
}
.dropdownWithSummary li {
    padding-top: 10px;
    border-bottom: 1px solid #ddd;
}
.dropdownWithSummary li:last-child {
    border-bottom: 0 none;
}

.dropdown-menu > .dropdown-submenu > a:after {
    content: '\e9c7';
    font-family: 'icomoon';
    position: absolute;
    top: 50%;
    margin-top: -8px;
    right: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.dropdown-menu > .dropdown-submenu.dropdown-submenu-left > a:before {
    content: '\e9c4';
    font-family: 'icomoon';
    position: absolute;
    top: 50%;
    margin-top: -8px;
    left: 15px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    opacity: 0.8;
    filter: alpha(opacity=80);
}

.dropdown-menu > .dropdown-submenu.dropdown-submenu-left > a {
    padding-right: 15px;
    padding-left: 38px;
}

.dropdown-menu > .dropdown-submenu.dropdown-submenu-left > a:after {
    content: none;
}

/*************** Navbar Buttons **********************/
.btn-navbar {
    background-color: transparent;
    border-color: transparent;
}

.btn-navbar:hover {
    background-color: #f5f5f5;
    border-color: #f5f5f5;
    box-shadow: none;
}

.dashboard-picker {
    padding-top: 5px;
}

.dashboard-picker button {
    border: 0 none;
    background-color: transparent;
    padding: 8px 15px;
    color: #333333;
    width: 100%;
    text-align: left;
}

.dashboard-picker button:hover {
    background-color: #f5f5f5;
}

.dashboard-picker button.active {
    background-color: #2196f3;
    color: #ffffff;
}

.dashboard-picker button.active:hover {
    background-color: #55adf3;
}

.dashboard-picker li {
    margin-top: 0;
    padding-bottom: 0;
}
/* Hovering on each row of fixed-data-table-2 table*/
.public_fixedDataTable_bodyRow:hover,
.public_fixedDataTable_bodyRow:hover .public_fixedDataTableCell_main,
.public_fixedDataTable_bodyRow:hover .public_fixedDataTableCell_cellContent,
.dataTable tr:hover td {
    background-color: #dfedf5;
}

.darkTheme .public_fixedDataTable_bodyRow:hover,
.darkTheme .public_fixedDataTable_bodyRow:hover .public_fixedDataTableCell_main,
.darkTheme .public_fixedDataTable_bodyRow:hover .public_fixedDataTableCell_cellContent,
.darkTheme .dataTable tr:hover td {
    background-color: #2C4461;
}

.darkTheme .datatable_row_selected,
.darkTheme .datatable_row_selected .public_fixedDataTableCell_main,
.darkTheme .datatable_row_selected .public_fixedDataTableCell_cellContent {
    background-color: #2C4461;
}

.darkTheme .public_fixedDataTable_bodyRow .public_fixedDataTableCell_main {
    border-color: #545454;
}

.darkTheme .public_fixedDataTableCell_main {
    background-color: #1c1c1c;
    color: #eeeeee;
}

.darkTheme .ScrollbarLayout_main, 
.darkTheme .ScrollbarLayout_mainVertical, 
.darkTheme .public_Scrollbar_main {
    background-color: #2b2b2b;
}

.darkTheme .public_Scrollbar_main.public_Scrollbar_mainActive, .darkTheme .public_Scrollbar_main {
    border-left: 1px solid #2b2b2b
}

.darkTheme .public_Scrollbar_face:after {
    background-color: #6b6b6b;
}

.darkTheme .public_fixedDataTable_main {
    border-color: #545454;
}

.datatable_row_selected,
.datatable_row_selected .public_fixedDataTableCell_main,
.datatable_row_selected .public_fixedDataTableCell_cellContent {
    background-color: #DBECFF;
}

.dataTable tr:hover td.noselect {
    background-color: transparent;
}

.account-list li a:hover {
    background-color: #f3f3f3;
}

.breadcrumb > li > a {
    color: #1e88e5;
}

.breadcrumb > li > a:hover {
    color: #166dba;
}

.breadcrumb > li + li:before {
    content: '>';
}

/* Header row of fixed-data-table-2 table*/
.public_fixedDataTable_header,
.public_fixedDataTable_header .public_fixedDataTableCell_main {
    background-color: rgb(245, 245, 245);
    display: flex;
    align-items: center;
    background-image: none;
}

.darkTheme .public_fixedDataTable_header,
.darkTheme .public_fixedDataTable_header .public_fixedDataTableCell_main {
    background-color: #787878;
    color:rgb(245, 245, 245);
    border-color: #545454;
}

.fixedDataTableCellLayout_columnReorderContainer {
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.public_fixedDataTableCell_hasReorderHandle .fixedDataTableCellLayout_columnReorderContainer {
    display: flex;
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    -webkit-transform: none;
    float: none;
    margin-right: 0;
}
.fixedDataTableCellLayout_wrap1.public_fixedDataTableCell_wrap1 {
    width: auto !important;
    height: 100% ;
    flex-grow: 1;
    margin-top: 0 !important;
    display: block;
}

.fixedDataTableCellLayout_wrap1 .public_fixedDataTableCell_wrap2 {
    display: flex;
    align-items: center;
    justify-content: stretch;
    height: 100% ;
}
.fixedDataTableCellLayout_wrap2 .public_fixedDataTableCell_wrap3 {
    display: block;
    flex-grow: 1;
}

.public_fixedDataTable_header .fixedDataTableCellLayout_wrap1.public_fixedDataTableCell_wrap1 {
    display: table;
}

.public_fixedDataTableCell_hasReorderHandle .public_fixedDataTableCell_cellContent {
    margin-left: 0;
}

.public_fixedDataTableCell_hasReorderHandle .fixedDataTableCellLayout_columnReorderContainer,
.public_fixedDataTableCell_hasReorderHandle .lock-icon {
    display: none;
}
.public_fixedDataTableCell_hasReorderHandle:hover .fixedDataTableCellLayout_columnReorderContainer,
.public_fixedDataTableCell_hasReorderHandle:hover .lock-icon {
    display: block;
    background-color: #a3a3a3;
}

.fixedDataTableCellLayout_columnResizerKnob {
    width: 6px;
}

/****** API boxes ********/
.apibox:hover {
    background-color: #f8f8f8 !important;
    cursor: pointer;
}
/********** Vertical Tab Bar ***********/
.vertical-tab-bar {
    background-color: #333333;
    margin-bottom: 0;
}

.vertical-tab-bar > li {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    align-content: stretch;
    width: 50px;
    max-height: 50px;
    border-bottom: 1px solid #bebebe;
}

.vertical-tab-bar > li > a {
    color: #f4f4f4;
    background-color: transparent;
    padding: 0 10px;
    border-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.vertical-tab-bar > li > a svg {
    fill: #ffffff;
}

.vertical-tab-bar > .active > a,
.vertical-tab-bar > li > a:hover,
.vertical-tab-bar > li > a:focus {
    background-color: #2196f3;
    color: #ffffff;
}

.vertical-tab-bar > .active > a svg,
.vertical-tab-bar > li > a:hover svg,
.vertical-tab-bar > li > a:focus svg {
    fill: #ffffff;
}

.vertical-tab-bar > li > a.disabled {
    color: #666666;
}

.vertical-tab-bar > li > a.disabled:hover,
.vertical-tab-bar > li > a.disabled:focus {
    background-color: #333333;
    color: #666666;
}

.vertical-tab-bar > li > a.disabled svg,
.vertical-tab-bar > li > a.disabled:hover svg,
.vertical-tab-bar > li > a.disabled:focus svg {
    fill: #666666;
}

.vertical-tab-bar > li.closePanel,
.vertical-tab-bar > li.closePanel > a {
    background-color: #ffffff;
    color: #333333;
}

.vertical-tab-bar > li.closePanel > a:hover,
.vertical-tab-bar > li.closePanel > a:focus {
    color: #2196f3;
}

.left-shadow {
    border-left: 10px solid;
    border-image: linear-gradient(to right, #90909000 10%, #909090) 1 50%;
}

/********** Vertical Nav *************/
.vertical-nav {
    flex-shrink: 0;
    min-width: 175px;
    border-right: 1px solid #999;
    margin-bottom: 0;
    background-color: #eee;
}

.vertical-nav > li {
    flex-grow: 1;
    display: flex;
    justify-content: flex-start;
    height: 37px;
    border-bottom: 1px solid #bebebe;
}

.vertical-nav > li > a {
    background-color: transparent;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    line-height: 1;
    width: 100%;
    font-size: 15px;
    color: #333;
    padding: 7px 10px 6px 10px;
    border-width: 0;
}

.vertical-nav > li > a svg {
    fill: #333;
    stroke: #333;
}

.vertical-nav > li.active > a,
.vertical-nav > li > a:hover,
.vertical-nav > li > a:focus {
    background-color: #fff;
    color: #333;
}

.vertical-nav > .active > a svg,
.vertical-nav > li > a:hover svg,
.vertical-nav > li > a:focus svg {
    fill: #fff;
    stroke: #fff;
}

.vertical-nav > li > a.disabled {
    color: #666666;
}

.vertical-nav > li > a.disabled:hover,
.vertical-nav > li > a.disabled:focus {
    background-color: #dcdcdc;
    color: #666666;
}

.vertical-nav > li > a.disabled svg,
.vertical-nav > li > a.disabled:hover svg,
.vertical-nav > li > a.disabled:focus svg {
    fill: #666666;
    stroke: #666666;
}

/********** Error Tooltips ***********/
.errorTooltip {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 150px;
    padding: 5px;
    background-color: #d84315;
    color: white;
    border-radius: 5px;
    text-align: center;
}
.errorTooltip::after {
    content: '';
    box-sizing: content-box;
    position: absolute;
    border: 8px solid transparent;
    height: 0;
    width: 1px;
    border-bottom: none;
    border-top-color: #d84315;
    bottom: 0;
    left: calc(50% - 8px);
    margin-bottom: -8px;
}

/* adjusting markdown header styles */
.markdown h1 {
    font-size: 20px;
}

.markdown h2 {
    font-size: 18px;
}

.markdown h3 {
    font-size: 16px;
}

.markdown h4 {
    font-size: 14px;
}

.markdown h5 {
    font-size: 12px;
}

.markdown h6 {
    font-size: 10px;
}

.icon-detections-add {
    position: relative;
}

.icon-detections-add::before {
    content: '\ec31';
}

.icon-detections-add::after {
    content: '\ed5a';
    position: absolute;
    top: -4px;
    left: -6px;
    width: 8px;
    height: 8px;
    font-size: 0.55em;
    font-weight: bold;
}

.icon-subscriptions-add::before {
    content: '\e9f4';
}

.icon-subscriptions-add::after {
    content: '\ed5a';
    position: absolute;
    top: -4px;
    left: -6px;
    width: 8px;
    height: 8px;
    font-size: 0.55em;
    font-weight: bold;
}

.errorMessage {
    color: #cc0000 !important;
    text-decoration: underline;
    font-weight: bold;
    font-style: oblique;
}

.Toastify {
    position: relative;
    will-change: transform;
    z-index: 200000;
}

.Toastify .Toastify__toast {
    border-radius: 5px;
}

.help-nav-link {
    padding: 4px 15px !important;
}

.public_fixedDataTableCell_wrap2,
.public_fixedDataTableCell_wrap3 {
    max-width: 100%;
}

@media only screen and (max-width: 1370px) {
    .hide-1370 {
        display: none;
    }

    .navbar.navbar-inverse {
        font-size: 12px;
    }
}

.navbar-inverse .navbar-nav.main-nav > li {
    border-bottom: 4px solid transparent;
    margin-bottom: -1px;
    margin-right: 10px;
}
.navbar-inverse .navbar-nav > li > a {
    color: #ccc;
}

.navbar-inverse .navbar-nav > li.active,
.navbar-inverse .navbar-nav > li.active:hover,
.navbar-inverse .navbar-nav > li.active > a:hover,
.navbar-inverse .navbar-nav > li.active > a:focus,
.navbar-inverse .navbar-nav > li.active > a {
    background-color: #373a3c;
    color: #fff;
    font-weight: 500;
}

.navbar-inverse .navbar-nav.main-nav > li:last-child {
    margin-right: 0px;
}

.navbar-inverse .navbar-nav.main-nav > li > .mega-dropdown {
    display: none;
    position: fixed;
    margin-top: 4px;
    width: 200px;
    top: 45px;
    left: -1px;
    z-index: 11000;
    background-color: #ffffff;
    color: #333333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px #aaa solid;
    border-top-width: 0;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.navbar-inverse .navbar-nav.main-nav > li > .mega-dropdown a {
    color: #333333;
    padding: 10px;
    border-bottom: 1px dashed #aaa;
}

.navbar-inverse .navbar-nav.main-nav > li > .mega-dropdown a:last-child {
    border-bottom: 0 none;
}

.navbar-inverse .navbar-nav.main-nav > li > .mega-dropdown a:hover {
    background-color: #f5f5f5;
    color: #333333;
}

.navbar-inverse .navbar-nav.main-nav > li > .mega-dropdown.open {
    display: flex;
    flex-direction: column;
}

.vis-item.vis-box {
    border: 1px solid #8c8c8c;
    box-sizing: border-box;
}

.vis-item-content {
    padding: 0px !important;
}

.vis-item.vis-box.vis-readonly {
    border-bottom-left-radius: 0px;
}

div.vis-item,
div.vis-item.vis-selected {
    background-color: white;
}


.vis-item.vis-selected:not(.vis-line) {
    border: 2px solid #1565c0;
    z-index: 2;
}

.vis-item.vis-readonly.vis-line,
.vis-item.vis-readonly.vis-dot {
    border-color: #8c8c8c;
    z-index: 0;
}

.vis-item.vis-dot.vis-readonly {
    padding: 3px;
    border-width: 1px;
}

.vis-item.vis-selected.vis-dot.vis-readonly {
    border-style: solid;
    border-color: #8c8c8c;
    border-radius: 4px;
}

tr.last-cell-overflow-visible > td:last-of-type {
    overflow: visible;
}

/*************** Detection Timeline Card *********************/
.two-line-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
  }

/* ------------------------------------------------------------------------------
*
*  # Pagination classes
*
*
* ---------------------------------------------------------------------------- */
.dataTables_paginate {
    float: right;
    text-align: right;
    margin: 0 0 20px 20px;
}
.dataTables_paginate .paginate_button {
    display: inline-block;
    padding: 7px 12px;
    min-width: 36px;
    margin-left: 2px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    color: #333333;
    border: 1px solid transparent;
    border-radius: 3px;
}
.dataTables_paginate .paginate_button:first-child {
    margin-left: 0;
}
.dataTables_paginate .paginate_button:hover,
.dataTables_paginate .paginate_button:focus {
    background-color: #f5f5f5;
}
.dataTables_paginate .paginate_button.current,
.dataTables_paginate .paginate_button.current:hover,
.dataTables_paginate .paginate_button.current:focus {
    color: #fff;
    background-color: #455a64;
}
.dataTables_paginate .paginate_button.disabled,
.dataTables_paginate .paginate_button.disabled:hover,
.dataTables_paginate .paginate_button.disabled:focus {
    cursor: default;
    background-color: transparent;
    color: #bbb;
}
.paginate-left .dataTables_paginate {
    float: left;
}
.paging_simple .paginate_button:hover,
.paging_simple .paginate_button:focus {
    color: #fff;
    background-color: #455a64;
}

/* ------------------------------------------------------------------------------
*
*  # Helper classes
*
*  Custom helper classes
*
*  Version: 1.0
*  Latest update: May 25, 2015
*
* ---------------------------------------------------------------------------- */
.no-edge-top {
    top: 0;
}
.no-edge-bottom {
    bottom: 0;
}
.no-edge-left {
    left: 0;
}
.no-edge-right {
    right: 0;
}
@media (min-width: 1200px) {
    .pull-right-lg {
        float: right;
    }
}
@media (min-width: 1025px) {
    .pull-right-md {
        float: right;
    }
}
@media (min-width: 769px) {
    .pull-right-sm {
        float: right;
    }
}
@media (min-width: 480px) {
    .pull-right-xs {
        float: right;
    }
}
.valign-top {
    vertical-align: top;
}
.valign-middle {
    vertical-align: middle;
}
.valign-bottom {
    vertical-align: bottom;
}
.valign-baseline {
    vertical-align: baseline;
}
.valign-text-top {
    vertical-align: top;
}
.valign-text-bottom {
    vertical-align: text-bottom;
}
.position-relative {
    position: relative;
}
.position-static {
    position: static;
}
.display-block,
label.display-block {
    display: block;
}
.display-inline-block {
    display: inline-block;
}
.cursor-pointer {
    cursor: pointer;
}
.cursor-move {
    cursor: move;
}
.cursor-default {
    cursor: default;
}
.overflow-hidden {
    overflow: hidden;
}
.overflow-visible {
    overflow: visible;
}
.overflow-auto {
    overflow: auto;
}
.content-group-xs {
    margin-bottom: 10px !important;
}
.content-group-sm {
    margin-bottom: 15px !important;
}
.content-group {
    margin-bottom: 20px !important;
}
.content-group-lg {
    margin-bottom: 30px !important;
}
.no-margin {
    margin: 0 !important;
}
.no-margin-top {
    margin-top: 0 !important;
}
.no-margin-bottom {
    margin-bottom: 0 !important;
}
.no-margin-left {
    margin-left: 0 !important;
}
.no-margin-right {
    margin-right: 0 !important;
}
.m-5 {
    margin: 5px !important;
}
.m-10 {
    margin: 10px !important;
}
.m-15 {
    margin: 15px !important;
}
.m-20 {
    margin: 20px !important;
}
.mt-5 {
    margin-top: 5px !important;
}
.mt-10 {
    margin-top: 10px !important;
}
.mt-15 {
    margin-top: 15px !important;
}
.mt-20 {
    margin-top: 20px !important;
}
.mb-5 {
    margin-bottom: 5px !important;
}
.mb-10 {
    margin-bottom: 10px !important;
}
.mb-15 {
    margin-bottom: 15px !important;
}
.mb-20 {
    margin-bottom: 20px !important;
}
.ml-5 {
    margin-left: 5px !important;
}
.ml-10 {
    margin-left: 10px !important;
}
.ml-15 {
    margin-left: 15px !important;
}
.ml-20 {
    margin-left: 20px !important;
}
.mr-5 {
    margin-right: 5px !important;
}
.mr-10 {
    margin-right: 10px !important;
}
.mr-15 {
    margin-right: 15px !important;
}
.mr-20 {
    margin-right: 20px !important;
}
.no-padding {
    padding: 0 !important;
}
.no-padding-top {
    padding-top: 0 !important;
}
.no-padding-bottom {
    padding-bottom: 0 !important;
}
.no-padding-left {
    padding-left: 0 !important;
}
.no-padding-right {
    padding-right: 0 !important;
}
.p-5 {
    padding: 5px !important;
}
.p-10 {
    padding: 10px !important;
}
.p-15 {
    padding: 15px !important;
}
.p-20 {
    padding: 20px !important;
}
.pt-5 {
    padding-top: 5px !important;
}
.pt-10 {
    padding-top: 10px !important;
}
.pt-15 {
    padding-top: 15px !important;
}
.pt-20 {
    padding-top: 20px !important;
}
.pb-5 {
    padding-bottom: 5px !important;
}
.pb-10 {
    padding-bottom: 10px !important;
}
.pb-15 {
    padding-bottom: 15px !important;
}
.pb-20 {
    padding-bottom: 20px !important;
}
.pl-5 {
    padding-left: 5px !important;
}
.pl-10 {
    padding-left: 10px !important;
}
.pl-15 {
    padding-left: 15px !important;
}
.pl-20 {
    padding-left: 20px !important;
}
.pr-5 {
    padding-right: 5px !important;
}
.pr-10 {
    padding-right: 10px !important;
}
.pr-15 {
    padding-right: 15px !important;
}
.pr-20 {
    padding-right: 20px !important;
}
.no-border {
    border: 0 !important;
}
.no-border-top {
    border-top: 0 !important;
}
.no-border-bottom {
    border-bottom: 0 !important;
}
.no-border-left {
    border-left: 0 !important;
}
.no-border-right {
    border-right: 0 !important;
}
.no-border-radius {
    border-radius: 0;
}
.no-border-radius-top {
    border-top-right-radius: 0;
    border-top-left-radius: 0;
}
.no-border-radius-bottom {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}
.no-border-radius-left {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}
.no-border-radius-right {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
}
.border-top {
    border-top: 1px solid;
}
.border-bottom {
    border-bottom: 1px solid;
}
.border-left {
    border-left: 1px solid;
}
.border-right {
    border-right: 1px solid;
}
.border-lg {
    border-width: 2px;
}
.border-top-lg {
    border-top: 2px solid;
}
.border-bottom-lg {
    border-bottom: 2px solid;
}
.border-left-lg {
    border-left: 2px solid;
}
.border-right-lg {
    border-right: 2px solid;
}
.border-xlg {
    border-width: 3px;
}
.border-top-xlg {
    border-top: 3px solid;
}
.border-bottom-xlg {
    border-bottom: 3px solid;
}
.border-left-xlg {
    border-left: 3px solid;
}
.border-right-xlg {
    border-right: 3px solid;
}
.full-width {
    width: 100%;
}
@media (min-width: 769px) {
    .width-200 {
        min-width: 200px;
    }
    .width-250 {
        min-width: 250px;
    }
    .width-300 {
        min-width: 300px;
    }
    .width-350 {
        min-width: 350px;
    }
    .width-400 {
        min-width: 400px;
    }
    .width-450 {
        min-width: 450px;
    }
    .width-500 {
        min-width: 500px;
    }
    .width-550 {
        min-width: 550px;
    }
    .width-600 {
        min-width: 600px;
    }
    .width-650 {
        min-width: 650px;
    }
}
.img-lg {
    width: 44px !important;
    height: 44px !important;
}
.img-sm {
    width: 36px !important;
    height: 36px !important;
}
.img-xs {
    width: 32px !important;
    height: 32px !important;
}

.darkTheme .Toastify__toast--default {
    background: #578efd !important;
}
.darkTheme .Toastify__toast--info {
    background: #578efd !important;
}
.Toastify__toast--success {
    background: #2E7D32 !important;
}
.darkTheme .Toastify__toast--success {
    background: #5cb179 !important;
}
.darkTheme .Toastify__toast--warning {
    background: #f2cb02 !important;
}
.darkTheme .Toastify__toast--error {
    background: #ca0202 !important;
}
/* ------------------------------------------------------------------------------
* Overrides for MUI theme styles
* ---------------------------------------------------------------------------- */
/* these styles to stop browser's default blue background when password is filled automatically in profile page, change password dialog */
.MuiOutlinedInput-input:-webkit-autofill,
.MuiOutlinedInput-input:-webkit-autofill:focus {
    transition: background-color 0s 600000s, color 0s 600000s;
}

.no-select {
    user-select: none !important;
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
}
