    /* ===== Google Font Import - Poppins ===== */
    
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Poppins', sans-serif;
    }
    
     :root {
        /* ===== Colors ===== */
        -primary-color-: #0E4BF1;
        --primary-btn-bg-color: #a1b8f8;
        --primary-btn-hover-color: #5b87ff;
        --panel-color: #FFF;
        --panel-toast-color: rgb(230, 230, 230);
        --text-color: #000;
        --wap-text-color: rgb(32, 32, 32);
        --black-light-color: #707070;
        --border-color: #e6e5e5;
        --toggle-color: #DDD;
        --box1-color: #4DA3FF;
        --box2-color: #FFE6AC;
        --box3-color: #E7D1FC;
        --box4-color: #e7d1fca2;
        --title-icon-color: rgb(41, 41, 41);
        --ico-info-table: rgb(233, 216, 222);
        --bg-table-header: #c1bfbf;
        --shadow-bulr: rgb(0 0 0 / 30%);
        --bg-color-loading: #cacbcb;
        --loading-color: black;
        --body-color-msg: var(--panel-color);
        /* ====== Transition ====== */
        --tran-05: all 0.5s ease;
        --tran-03: all 0.3s ease;
        --tran-03: all 0.2s ease;
    }
    
    body {
        min-height: 100vh;
        background-color: var(--primary-color);
    }
    
    body.dark {
        --primary-color: #c4c5c5;
        --primary-btn-bg-color: #7e8080;
        --primary-btn-hover-color: #525252;
        --panel-color: #242526;
        --panel-toast-color: #434343;
        --text-color: #CCC;
        --wap-text-color: #676767;
        --black-light-color: #CCC;
        --border-color: #4D4C4C;
        --toggle-color: #FFF;
        --box1-color: #3A3B3C;
        --box2-color: #3A3B3C;
        --box3-color: #3A3B3C;
        --box4-color: #3A3B3C;
        --title-icon-color: rgb(255, 255, 255);
        --ico-info-table: #4e5054;
        --bg-table-header: #505050;
        --loading-color: white;
        --shadow-bulr: rgba(94, 92, 92, 0.404);
        --bg-color-loading: #45484a;
        --body-color-msg: var(--panel-color);
    }
    /* === Custom Scroll Bar CSS === */
    
     ::-webkit-scrollbar {
        width: 8px;
    }
    
     ::-webkit-scrollbar-track {
        background: #f1f1f1;
    }
    
     ::-webkit-scrollbar-thumb {
        background: var(--primary-color);
        border-radius: 12px;
        transition: all 0.3s ease;
    }
    
     ::-webkit-scrollbar-thumb:hover {
        background: #0b3cc1;
    }
    
    body.dark::-webkit-scrollbar-thumb:hover,
    body.dark .activity-data::-webkit-scrollbar-thumb:hover {
        background: #3A3B3C;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: 0;
        height: 100%;
        width: 250px;
        padding: 10px 14px;
        background-color: var(--panel-color);
        border-right: 1px solid var(--border-color);
        transition: var(--tran-05);
    }
    
    nav.close {
        position: fixed;
        top: 0;
        left: 0;
        width: 73px;
        height: 100%;
    }
    
    nav .logo-name {
        display: flex;
        align-items: center;
    }
    
    nav .logo-image {
        display: flex;
        justify-content: center;
        min-width: 45px;
    }
    
    nav .logo-image img {
        width: 40px;
        object-fit: cover;
        border-radius: 50%;
    }
    
    nav .logo-name .logo_name {
        font-size: 22px;
        font-weight: 600;
        color: var(--text-color);
        margin-left: 14px;
        transition: var(--tran-05);
    }
    
    nav.close .logo_name {
        opacity: 0;
        pointer-events: none;
    }
    
    nav .menu-items {
        margin-top: 40px;
        height: calc(100% - 90px);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    
    .menu-items li {
        list-style: none;
    }
    
    .menu-items li a {
        display: flex;
        align-items: center;
        height: 50px;
        text-decoration: none;
        position: relative;
    }
    
    .nav-links li a:hover:before {
        content: "";
        position: absolute;
        left: -7px;
        height: 5px;
        width: 5px;
        border-radius: 50%;
        background-color: var(--primary-color);
    }
    
    body.dark li a:hover:before {
        background-color: var(--text-color);
    }
    
    .menu-items li a i {
        font-size: 24px;
        min-width: 45px;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--black-light-color);
    }
    
    .menu-items li a .link-name {
        font-size: 18px;
        font-weight: 400;
        color: var(--black-light-color);
        transition: var(--tran-05);
    }
    
    nav.close li a .link-name {
        opacity: 0;
        pointer-events: none;
    }
    
    .nav-links li a:hover i,
    .nav-links li a:hover .link-name {
        color: var(--primary-color);
    }
    
    body.dark .nav-links li a:hover i,
    body.dark .nav-links li a:hover .link-name {
        color: var(--text-color);
    }
    
    .menu-items .logout-mode {
        padding-top: 10px;
        border-top: 1px solid var(--border-color);
    }
    
    .menu-items .mode {
        display: flex;
        align-items: center;
        white-space: nowrap;
    }
    
    .menu-items .mode-toggle {
        position: absolute;
        right: 14px;
        height: 50px;
        min-width: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
    
    .mode-toggle .switch {
        position: relative;
        display: inline-block;
        height: 22px;
        width: 40px;
        border-radius: 25px;
        background-color: var(--toggle-color);
    }
    
    .switch:before {
        content: "";
        position: absolute;
        left: 5px;
        top: 50%;
        transform: translateY(-50%);
        height: 15px;
        width: 15px;
        background-color: var(--panel-color);
        border-radius: 50%;
        transition: var(--tran-03);
    }
    
    body.dark .switch:before {
        left: 20px;
    }
    
    .dashboard {
        position: relative;
        left: 250px;
        background-color: var(--panel-color);
        min-height: 100vh;
        width: calc(100% - 250px);
        padding: 10px 14px;
        transition: var(--tran-05);
    }
    
    nav.close~.dashboard {
        left: 73px;
        width: calc(100% - 73px);
    }
    
    .dashboard .top {
        position: fixed;
        top: 0;
        left: 250px;
        display: flex;
        width: calc(100% - 250px);
        justify-content: space-between;
        align-items: center;
        padding: 10px 14px;
        background-color: var(--panel-color);
        transition: var(--tran-05);
        z-index: 9;
    }
    
    nav.close~.dashboard .top {
        left: 73px;
        width: calc(100% - 73px);
    }
    
    .dashboard .top .sidebar-toggle {
        font-size: 26px;
        color: var(--text-color);
        cursor: pointer;
    }
    
    .dashboard .top .search-box {
        position: relative;
        height: 45px;
        max-width: 600px;
        width: 100%;
        margin: 0 30px;
    }
    
    .top .search-box input {
        position: absolute;
        border: 1px solid var(--border-color);
        background-color: var(--panel-color);
        padding: 0 25px 0 50px;
        border-radius: 5px;
        height: 100%;
        width: 100%;
        color: var(--text-color);
        font-size: 33px;
        font-weight: 400;
        outline: none;
        border: none;
        text-align: center;
    }
    
    .top .search-box i {
        position: absolute;
        left: 15px;
        font-size: 22px;
        z-index: 10;
        top: 50%;
        transform: translateY(-50%);
        color: var(--black-light-color);
    }
    
    .top img {
        width: 40px;
        border-radius: 50%;
    }
    
    .dashboard .dash-content {
        padding-top: 7px;
    }
    
    .dash-content .title {
        display: flex;
        align-items: center;
        margin: 60px 0 30px 0;
    }
    
    .dash-content .title i {
        position: relative;
        height: 35px;
        width: 35px;
        /* background-color: var(--primary-color); */
        border-radius: 6px;
        color: var(--title-icon-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 24px;
    }
    
    .dash-content .title .text {
        font-size: 24px;
        font-weight: 500;
        color: var(--text-color);
        margin-left: 10px;
    }
    
    .dash-content .boxes {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .dash-content .boxes .box {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-radius: 12px;
        width: calc(100% / 4 - 15px);
        /* padding: 15px 20px; */
        padding: 10px 10px;
        background-color: var(--box1-color);
        transition: var(--tran-05);
    }
    
    .boxes .box i {
        font-size: 35px;
        color: var(--text-color);
    }
    
    .boxes .box .text {
        white-space: nowrap;
        font-size: 18px;
        font-weight: 500;
        color: var(--text-color);
    }
    
    .boxes .box .number {
        font-size: 40px;
        font-weight: 500;
        color: var(--text-color);
    }
    
    .boxes .box.box2 {
        background-color: var(--box2-color);
    }
    
    .boxes .box.box3 {
        background-color: var(--box3-color);
    }
    
    .boxes .box.box4 {
        background-color: var(--box4-color);
    }
    
    .dash-content .activity .activity-data {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .activity .activity-data {
        display: flex;
    }
    
    .activity-data .data {
        display: flex;
        flex-direction: column;
        margin: 0 15px;
    }
    
    .activity-data .data-title {
        font-size: 20px;
        font-weight: 500;
        color: var(--text-color);
    }
    
    .activity-data .data .data-list {
        font-size: 18px;
        font-weight: 400;
        margin-top: 20px;
        white-space: nowrap;
        color: var(--text-color);
    }
    
    .wrapper-widget {
        position: absolute;
        top: 25%;
        left: 37%;
        width: 300px;
    }
    
    @media (max-width: 1000px) {
        nav {
            width: 73px;
        }
        nav.close {
            width: 250px;
        }
        nav .logo_name {
            opacity: 0;
            pointer-events: none;
        }
        nav.close .logo_name {
            opacity: 1;
            pointer-events: auto;
        }
        nav li a .link-name {
            opacity: 0;
            pointer-events: none;
        }
        nav.close li a .link-name {
            opacity: 1;
            pointer-events: auto;
        }
        nav~.dashboard {
            left: 73px;
            width: calc(100% - 73px);
        }
        nav.close~.dashboard {
            left: 250px;
            width: calc(100% - 250px);
        }
        nav~.dashboard .top {
            left: 73px;
            width: calc(100% - 73px);
        }
        nav.close~.dashboard .top {
            left: 250px;
            width: calc(100% - 250px);
        }
        .activity .activity-data {
            overflow-X: scroll;
        }
    }
    
    @media (max-width: 780px) {
        .dash-content .boxes .box {
            width: calc(100% / 2 - 15px);
            margin-top: 15px;
        }
    }
    
    @media (max-width: 560px) {
        .dash-content .boxes .box {
            width: 100%;
        }
        .wrapper-widget {
            top: 20%;
            left: 10%;
        }
    }
    
    @media (max-width: 400px) {
        nav {
            width: 0px;
        }
        nav.close {
            width: 73px;
        }
        nav .logo_name {
            opacity: 0;
            pointer-events: none;
        }
        nav.close .logo_name {
            opacity: 0;
            pointer-events: none;
        }
        nav li a .link-name {
            opacity: 0;
            pointer-events: none;
        }
        nav.close li a .link-name {
            opacity: 0;
            pointer-events: none;
        }
        nav~.dashboard {
            left: 0;
            width: 100%;
        }
        nav.close~.dashboard {
            left: 73px;
            width: calc(100% - 73px);
        }
        nav~.dashboard .top {
            left: 0;
            width: 100%;
        }
        nav.close~.dashboard .top {
            left: 0;
            width: 100%;
        }
        .wrapper-widget {
            top: 20%;
            left: 10%;
        }
    }
    
    .LoginForm {
        height: 360px;
        width: 350px;
        background-color: rgba(255, 255, 255, 0.13);
        position: absolute;
        transform: translate(-50%, -50%);
        top: 50%;
        left: 50%;
        border-radius: 10px;
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 40px rgba(8, 7, 16, 0.6);
        padding: 50px 35px;
    }
    
    .LoginForm * {
        font-family: 'Poppins', sans-serif;
        color: var(--text-color);
        letter-spacing: 0.5px;
        outline: none;
        border: none;
    }
    
    .LoginForm ::placeholder {
        color: var(--black-light-color);
    }
    
    .LoginForm button {
        margin-top: 17px;
        width: 100%;
        padding: 6px 0;
        font-size: 18px;
        font-weight: 600;
        border-radius: 5px;
        cursor: pointer;
        background-color: var(--primary-btn-bg-color);
        color: var(--text-color);
    }
    
    .LoginForm button:hover {
        background-color: var(--primary-btn-hover-color);
    }
    
    .LoginForm .social {
        margin-top: 30px;
        display: flex;
        margin-left: 15%;
        font-size: 25px;
    }
    
    body>form>div.social>div>i {
        font-size: 30px;
    }
    
    .LoginForm .social div {
        border-radius: 50%;
        text-align: center;
    }
    
    .LoginForm .social a:hover {
        color: var(--primary-btn-hover-color);
    }
    
    .Login .social .fb {
        margin-left: 25px;
    }
    
    .Login .social i {
        margin-right: 4px;
    }
    
    .LoginForm .search-box input {
        margin: 1px 0px;
        padding-left: 44px;
        margin-top: 17px;
        width: 100% !important;
        height: 32px;
        border-bottom: 1px var(--black-light-color) solid;
    }
    
    .LoginForm>div>i {
        position: absolute;
        margin-top: 19px;
        margin-left: 10px;
    }
    
    .LoginForm {
        background-color: var(--panel-color);
    }
    
    .disable-click {
        pointer-events: none;
        /* text-decoration: line-through; */
        cursor: not-allowed;
    }
    
    #DataTable_id>thead,
    #DataTable_id>tbody,
    .dataTables_wrapper .dataTables_length,
    .dataTables_wrapper .dataTables_filter,
    .dataTables_wrapper .dataTables_info,
    .dataTables_wrapper .dataTables_processing,
    .dataTables_wrapper .dataTables_paginate,
    .dataTables_wrapper .dataTables_paginate .paginate_button {
        color: var(--black-light-color) !important;
        background-color: var(--panel-color) !important;
    }
    
    .dark #DataTable_id>thead,
    .dark #DataTable_id>tbody,
    .dark .dataTables_wrapper .dataTables_length,
    .dark .dataTables_wrapper .dataTables_filter,
    .dark .dataTables_wrapper .dataTables_info,
    .dark .dataTables_wrapper .dataTables_processing,
    .dark .dataTables_wrapper .dataTables_paginate,
    .dark .dataTables_wrapper .dataTables_paginate .paginate_button {
        color: var(--black-light-color) !important;
        background-color: var(--panel-color) !important;
    }
    
    td.details-control {
        font-weight: bold;
        font-family: 'Material Icons';
        margin-left: 3px;
        position: absolute;
        cursor: pointer;
        font-size: 22px;
        font-weight: bold;
        border-radius: 50%;
        background-color: var(--ico-info-table);
    }
    
    td.details-control::after {
        content: "expand_more";
    }
    
    tr.details td.details-control::after {
        content: "keyboard_arrow_up";
    }
    
    td.details-control:hover {
        color: var(--primary-btn-bg-color);
    }
    
    #rm-row,
    #update-row {
        font-size: 23px;
        margin-top: 3px;
    }
    
    @import url('https://fonts.googleapis.com/css?family=Quicksand&display=swap');
    /* The Modal (background) */
    
    .modal {
        box-sizing: border-box;
        font-family: 'Quicksand', sans-serif;
        display: none;
        /* Hidden by default */
        position: fixed;
        /* Stay in place */
        z-index: 20;
        /* Sit on top */
        padding-top: 1.1875em;
        /* Location of the box */
        left: 0;
        top: 0;
        width: 100%;
        /* Full width */
        height: 100%;
        /* Full height */
        overflow: auto;
        /* Enable scroll if needed */
        background-color: rgb(111, 108, 108);
        /* Fallback color */
        background-color: rgba(0, 0, 0, 0.4);
        /* Black w/ opacity */
    }
    /* Modal Content */
    
    .modal-content {
        color: white;
        position: relative;
        margin: auto;
        padding: 0;
        border: 0.0625em solid #888;
        width: 97%;
        box-shadow: 0 0.25em 0.5em 0 rgba(0, 0, 0, 0.2), 0 0.375em 1.25em 0 rgba(0, 0, 0, 0.19);
        -webkit-animation-name: animatetop;
        -webkit-animation-duration: 0.4s;
        animation-name: animatetop;
        animation-duration: 0.4s;
    }
    /* added */
    
    .modal-fade {
        -webkit-animation-name: animatebottom;
        -webkit-animation-duration: 0.4s;
        animation-name: animatebottom;
        animation-duration: 0.4s;
    }
    /* Add Animation */
    
    @-webkit-keyframes animatetop {
        from {
            top: -300px;
            opacity: 0;
        }
        to {
            top: 0;
            opacity: 1;
        }
    }
    
    @keyframes animatebottom {
        from {
            top: 0;
            opacity: 1;
        }
        to {
            top: 300px;
            opacity: 0;
        }
    }
    /* The Close Button */
    
    .close {
        color: var(--text-color);
        float: right;
        font-size: 33px;
        font-weight: bold;
        position: absolute;
        right: 0.25em;
        top: -0.25em;
    }
    
    .close:hover,
    .close:focus {
        color: var(--primary-btn-hover-color);
        text-decoration: none;
        cursor: pointer;
    }
    
    .modal-header {
        padding: 0.125em 1em;
        color: var(--text-color);
    }
    
    .modal-button {
        font-family: 'Quicksand', sans-serif;
        border: none;
        color: var(--text-color);
        padding: 0.248em 0.496em;
        text-align: left;
        text-decoration: none;
        display: inline-block;
        font-size: 7vw;
        margin: 0.124em 0.062em;
        -webkit-transition-duration: 0.4s;
        transition-duration: 0.4s;
        cursor: pointer;
        width: auto;
    }
    
    .modal-button:hover {
        background-color: var(--primary-btn-hover-color);
        color: var(--text-color);
    }
    
    .pic {
        margin: auto;
        display: block;
        height: auto;
        width: 50vh;
    }
    
    .headertext {
        font-family: 'Quicksand', sans-serif;
        display: block;
        text-align: center;
        font-size: 23px;
    }
    
    .bodytext {
        font-size: 3.90vw;
        font-family: 'Quicksand', sans-serif;
        display: block;
        padding: 0.625em 0.9375em;
    }
    
    p {
        display: block;
        margin: 0;
    }
    
    #myModal1>div>div.modal-body>form>input {
        width: 97%;
        margin-left: 5px;
        height: 32px;
        margin-bottom: 3px;
    }
    
    .padding-80 {
        padding-left: 40px !important;
        /* width: calc(100% - 40px) !important; */
    }
    
    .ico-input {
        position: absolute;
        font-size: 32px !important;
        margin-left: 7px;
        color: var(--text-color);
    }
    
    .modal-content {
        background-color: var(--panel-color);
    }
    
    .modal-body button {
        border: none;
        background-color: var(--primary-btn-bg-color);
        color: var(--text-color);
    }
    
    .flex-btns {
        display: flex;
        margin-left: 42%;
        margin-top: 12px;
        height: 30px;
    }
    
    .check-custom {
        align-self: center;
        margin-left: 10px;
        height: 20px;
        width: 21px;
    }
    
    .flex-btns button {
        margin-left: 3px;
        width: 60px;
    }
    
    .modal-body button:hover {
        background-color: var(--primary-btn-hover-color);
        color: var(--text-color);
    }
    
    body>div.toastjs-container>div>button.toastjs-btn.toastjs-btn--close {
        display: none;
    }
    
    .toastjs-container {
        position: absolute;
        position: fixed;
        bottom: 30px;
        left: 30px;
        width: calc(100% - 60px);
        max-width: 400px;
        transform: translateX(-150%);
        transition: transform 1s;
        z-index: 100
    }
    
    .toastjs-container[aria-hidden=false] {
        transform: translateX(0)
    }
    
    .toastjs {
        background: var(--panel-toast-color);
        color: var(--text-color);
        padding: 10px 15px 0;
        border-left-style: solid;
        border-left-width: 5px;
        border-radius: 4px;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2)
    }
    
    .toastjs.default {
        border-left-color: #AAA
    }
    
    .toastjs.success {
        border-left-color: #00ff1e
    }
    
    .toastjs.warning {
        border-left-color: #FF851B
    }
    
    .toastjs.danger {
        border-left-color: #FF4136
    }
    
    .toastjs-btn {
        background: var(--panel-toast-color);
        color: var(--text-color);
        padding: 5px 10px;
        border: 0;
        border-radius: 4px;
        font-family: 'Source Sans Pro', sans-serif;
        font-size: 14px;
        display: inline-block;
        margin-right: 10px;
        margin-bottom: 10px;
        cursor: pointer
    }
    
    .toastjs-btn--custom {
        background: var(--panel-toast-color);
        color: var(--text-color);
    }
    
    .toastjs-btn:focus,
    .toastjs-btn:hover {
        outline: 0;
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .2)
    }
    /* 
table.dataTable.cell-border tbody th,
table.dataTable.cell-border tbody td {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd
} */
    /* 
table.dataTable.stripe tbody tr.odd,
table.dataTable.display tbody tr.odd {
    background-color: #f9f9f9
} */
    
    table.dataTable.hover tbody tr:hover,
    table.dataTable.display tbody tr:hover {
        color: var(--primary-btn-hover-color);
    }
    
    table.dataTable.compact thead th,
    table.dataTable.compact thead td {
        background-color: var(--bg-table-header);
    }
    
    #dataTable_id_processing {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 20%;
        height: 40px;
        margin-left: -10%;
        margin-top: -25px;
        padding-top: 20px;
        text-align: center;
        font-size: 1.7em;
        background: none;
    }
    
    #dataTable_id_processing .spinner {
        background-color: var(--bg-color-loading);
    }
    
    @keyframes ldio-2bgxv16lg74 {
        0% {
            transform: rotate(0deg)
        }
        50% {
            transform: rotate(22.5deg)
        }
        100% {
            transform: rotate(45deg)
        }
    }
    
    .ldio-2bgxv16lg74>div {
        transform-origin: 50px 50px;
        animation: ldio-2bgxv16lg74 0.2s infinite linear;
    }
    
    .ldio-2bgxv16lg74>div div {
        position: absolute;
        width: 8px;
        height: 76px;
        background: var(--loading-color);
        left: 50px;
        top: 50px;
        transform: translate(-50%, -50%);
    }
    
    .ldio-2bgxv16lg74>div div:nth-child(1) {
        width: 60px;
        height: 60px;
        border-radius: 50%;
    }
    
    .ldio-2bgxv16lg74>div div:nth-child(6) {
        width: 40px;
        height: 40px;
        background-color: var(--body-color-msg);
        border-radius: 50%;
    }
    
    .ldio-2bgxv16lg74>div div:nth-child(3) {
        transform: translate(-50%, -50%) rotate(45deg)
    }
    
    .ldio-2bgxv16lg74>div div:nth-child(4) {
        transform: translate(-50%, -50%) rotate(90deg)
    }
    
    .ldio-2bgxv16lg74>div div:nth-child(5) {
        transform: translate(-50%, -50%) rotate(135deg)
    }
    
    .loadingio-spinner-gear {
        width: 200px;
        height: 79px;
        display: flex;
        overflow: hidden;
        background: none;
        align-items: center;
        background-color: var(--body-color-msg);
        color: var(--loading-color);
        box-shadow: 0px 4px 11px 1px #000000b0;
        z-index: 100;
        border-radius: 6px;
    }
    
    .ldio-2bgxv16lg74 {
        z-index: 10;
        width: 100%;
        height: 100%;
        position: relative;
        transform: translateZ(0) scale(0.78);
        backface-visibility: hidden;
        transform-origin: 0 0;
    }
    
    .ldio-2bgxv16lg74 div {
        box-sizing: content-box;
    }
    
    .loadingio-spinner-gear span {
        width: 315px;
        font-weight: bold;
        margin-left: 3px;
    }
    
    .loadingio-spinner-gear span::after {
        content: "";
        animation: animateSpan infinite 3s;
        padding-left: 10px;
    }
    
    @keyframes animateSpan {
        0% {
            content: ".";
        }
        50% {
            content: "..";
        }
        75% {
            content: "...";
        }
    }
    
    .spinner {
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transform: -webkit-translate(-50%, -50%);
        transform: -moz-translate(-50%, -50%);
        transform: -ms-translate(-50%, -50%);
    }
    
    .please-wait-dlg {
        display: none;
    }
    
    .dark-full-bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        z-index: 10;
        background-color: var(--shadow-bulr);
    }
    
    dropbtn {
        background-color: var(--panel-color);
        color: white;
        padding: 16px;
        font-size: 16px;
        border: none;
        cursor: pointer;
    }
    /* .dropbtn:hover,
    .dropbtn:focus {
        background-color: #3e8e41;
    }
     */
    
    .dropdown {
        float: right;
        position: relative;
        display: inline-block;
    }
    
    .dropdown-content {
        display: none;
        position: absolute;
        background-color: var(--panel-color);
        min-width: 160px;
        overflow: auto;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        right: 0;
        z-index: 1;
    }
    
    .dropdown-content a {
        color: var(--text-color);
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }
    
    .dropdown a:hover {
        color: var(--primary-btn-bg-color);
    }
    
    .show {
        display: block;
    }
    
    .btn-opt {
        border: none;
        background-color: transparent;
        color: var(--text-color);
    }
    
    .dropdown-content a i {
        position: absolute;
    }
    
    #myDropdown>a>span {
        padding-left: 35px;
    }
    
    .item-char {
        cursor: pointer;
    }
    
    #SelectBoxTool {
        margin-left: 42px;
        height: 33px;
    }
    
    #SelectBoxActive {
        margin-left: 5px;
        height: 33px;
    }
    
    body.wrapper,
    body.wrapper .opts,
    .wrapper,
    .wrapper .opts {
        color: var(--text-color);
    }
    
    body.wrapper .opts,
    .wrapper .opts {
        color: var(--text-color);
        display: flex;
        flex-direction: column;
    }
    
    body.wrapper .opts select,
    body.wrapper .opts button,
    .wrapper .opts select,
    .wrapper .opts button {
        color: var(--wap-text-color);
    }
    
    .wrapper .opts select option {
        background: var(--bg-color-loading);
        color: var(--loading-color);
    }
    
    body>section>div.dash-content>div>div>div.wrapper>div>div:nth-child(3)>span {
        display: none;
    }