
body, html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Roboto, sans-serif;
}

.dotted {
    text-decoration: underline !important;
    text-decoration-style: dotted !important;
}
.dashed {
    text-decoration: underline !important;
    text-decoration-style: dashed !important;
}


.fc-dark-text::-webkit-input-placeholder {color: #ffffff;}
.fc-dark-text:-moz-placeholder {color: #ffffff; opacity: 1;}
.fc-dark-text::-moz-placeholder {color: #ffffff; opacity: 1;}
.fc-dark-text:-ms-input-placeholder {color: #ffffff;}
.fc-dark-text::-ms-input-placeholder {color: #ffffff;}
.fc-dark-text::placeholder {color: #ffffff;}

.fc-dark-text:focus::-webkit-input-placeholder {color: #6e6e6e;}
.fc-dark-text:focus:-moz-placeholder {color: #6e6e6e; opacity: 1;}
.fc-dark-text:focus::-moz-placeholder {color: #6e6e6e; opacity: 1;}
.fc-dark-text:focus:-ms-input-placeholder {color: #6e6e6e;}
.fc-dark-text:focus::-ms-input-placeholder {color: #6e6e6e;}
.fc-dark-text:focus::placeholder {color: #6e6e6e;}


/* ------------- */

body {
    font-size: .875rem;
}

.feather {
    width: 16px;
    height: 16px;
}

/*
 * Sidebar
 */

.sidebar {
    position: fixed;
    top: 0;
    /* rtl:raw:
    right: 0;
    */
    bottom: 0;
    /* rtl:remove */
    left: 0;
    z-index: 100; /* Behind the navbar */
    padding: 48px 0 0; /* Height of navbar */
    box-shadow: inset -1px 0 0 rgba(0, 0, 0, .1);
}

@media (max-width: 767.98px) {
    .sidebar {
        top: 5rem;
    }
}

.sidebar-sticky {
    height: calc(100vh - 48px);
    overflow-x: hidden;
    overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
}

.sidebar .nav-link {
    font-weight: 500;
    color: #333;
}

.sidebar .nav-link .feather {
    margin-right: 4px;
    color: #727272;
}

.sidebar .nav-link.active {
    color: #2470dc;
}

.sidebar .nav-link:hover .feather,
.sidebar .nav-link.active .feather {
    color: inherit;
}

.sidebar-heading {
    font-size: .75rem;
}

/*
 * Navbar
 */
.navbar-brand {
    padding-top: .75rem;
    padding-bottom: .75rem;
    /*background-color: rgba(0, 0, 0, .25);*/
    /*box-shadow: inset -1px 0 0 rgba(0, 0, 0, .25);*/
}

.navbar .navbar-toggler {
    top: .25rem;
    right: 1rem;
}

.navbar .form-control {
    padding: .75rem 1rem;
}

header.navbar {
    background-color: #13653F !important;
}

.form-control-dark {
    color: #fff;
    background-color: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .1);
}

.form-control-dark:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}

.fs05 {font-size: .5rem;}
.fs06 {font-size: .6rem;}
.fs07 {font-size: .7rem;}
.fs08 {font-size: .8rem;}
.fs09 {font-size: .9rem;}
.fs10 {font-size: 1rem;}
.fs11 {font-size: 1.1rem;}
.fs12 {font-size: 1.2rem;}
.fs13 {font-size: 1.3rem;}
.fs14 {font-size: 1.4rem;}
.fs15 {font-size: 1.5rem;}
.fs16 {font-size: 1.6rem;}

.lh08 {line-height: .8rem;}
.lh1 {line-height: 1rem;}
.lh12 {line-height: 1.2rem;}

.text-ip-link {
    color: #000;
    text-decoration: underline;
}
.text-ip-link:hover {
    color: #2470dc;
    text-decoration: underline;
}
.text-indigo {color: var(--bs-indigo);}

#dataTabContent #charts #domain_stat_container .card {
    /*display: inline-block !important;*/
    /*width: 48% !important;*/
    margin-bottom: 30px;
}

.table th, .table tbody td {
    padding-left: 15px;
    padding-right: 15px;
}

.bg-light-gray {
    background: #f7f7f7;
    background: -moz-linear-gradient(top,  #f7f7f7 0%, #e0e0e0 100%);
    background: -webkit-linear-gradient(top,  #f7f7f7 0%,#e0e0e0 100%);
    background: linear-gradient(to bottom,  #f7f7f7 0%,#e0e0e0 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#e0e0e0',GradientType=0 );
}