:root {
    --blue: #00cfe8;
    --indigo: #6610f2;
    --purple: #7367f0;
    --pink: #e83e8c;
    --red: #ea5455;
    --orange: #ff9f43;
    --yellow: #ffc107;
    --green: #28c76f;
    --teal: #20c997;
    --cyan: #17a2b8;
    --white: #fff;
    --gray: #b8c2cc;
    --gray-dark: #1e1e1e;
    --primary: #7367f0;
    --primary-light: rgba(115, 103, 240, 0.12);
    --secondary: #82868b;
    --secondary-light: rgba(130, 134, 139, 0.12);
    --success: #28c76f;
    --success-light: rgba(40, 199, 111, 0.12);
    --info: #00cfe8;
    --info-light: rgba(0, 207, 232, 0.12);
    --warning: #ff9f43;
    --warning-light: rgba(255, 159, 67, 0.12);
    --danger: #ea5455;
    --danger-light: rgba(234, 84, 85, 0.12);
    --light: #f6f6f6;
    --dark: #4b4b4b;
    --dark-border: #2e3956;
    --light-border: #cdcdcd;
}

*,
:after,
:before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
html body {
    height: 100%;
}

html {
    font-size: 14px;
    letter-spacing: 0.01rem;
}

html {
    font-family: sans-serif;
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(34, 41, 47, 0);
}

/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #f6f6f6;
}

.dark-theme ::-webkit-scrollbar-track {
    background: #171e32;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #999;
}

.dark-theme ::-webkit-scrollbar-thumb {
    background: #394c6a;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

.dark-theme ::-webkit-scrollbar-thumb:hover {
    background: #4a6289;
}

body::-webkit-scrollbar {
    width: 0;
}

body {
    margin: 0;
    text-align: left;
    background-color: #f8faff;
    overflow-x: hidden;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
    color: #6e6b7b;
}

    body.dark-theme {
        background-color: #202938;
        color: #b4b7bd;
    }

    body:fullscreen {
        background-color: #f8f8f8;
    }

    body::backdrop {
        background-color: #f8f8f8;
    }

    body.dark-theme:fullscreen {
        background-color: #202938;
    }

    body.dark-theme::backdrop {
        background-color: #202938;
    }

a {
    color: var(--primary);
    text-decoration: none !important;
}

    a:hover {
        color: var(--primary);
        text-decoration: none !important;
    }

/* Utils Start */
.row {
    margin-right: -8px;
    margin-left: -8px;
}

.col,
.col-1,
.col-10,
.col-11,
.col-12,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-auto,
.col-lg,
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-lg-auto,
.col-md,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-md-auto,
.col-sm,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-sm-auto,
.col-xl,
.col-xl-1,
.col-xl-10,
.col-xl-11,
.col-xl-12,
.col-xl-2,
.col-xl-3,
.col-xl-4,
.col-xl-5,
.col-xl-6,
.col-xl-7,
.col-xl-8,
.col-xl-9,
.col-xl-auto {
    padding-right: 8px;
    padding-left: 8px;
}

.text-imported {
    color: #ff9f43 !important;
}

.text-exported {
    color: #bdd80a !important;
}

.text-primary {
    color: var(--primary) !important;
}


.bg-primary {
    background-color: var(--primary) !important;
}

.bg-secondary {
    background-color: var(--secondary) !important;
}

.bg-info {
    background-color: var(--info) !important;
}

.bg-danger {
    background-color: var(--danger) !important;
}

.bg-success {
    background-color: var(--success) !important;
}

.bg-warning {
    background-color: var(--warning) !important;
}

.text-primary {
    color: var(--primary) !important;
}

.text-secondary {
    color: var(--secondary) !important;
}

.text-info {
    color: var(--info) !important;
}

.text-danger {
    color: var(--danger) !important;
}

.text-success {
    color: var(--success) !important;
}

.text-warning {
    color: var(--warning) !important;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: #5e5873;
}

.dark-theme .h1,
.dark-theme .h2,
.dark-theme .h3,
.dark-theme .h4,
.dark-theme .h5,
.dark-theme .h6,
.dark-theme h1,
.dark-theme h2,
.dark-theme h3,
.dark-theme h4,
.dark-theme h5,
.dark-theme h6 {
    color: rgba(255, 255, 255, 0.85);
}

.font-weight-100 {
    font-weight: 100 !important;
}

.font-weight-200 {
    font-weight: 200 !important;
}

.font-weight-300 {
    font-weight: 300 !important;
}

.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.font-weight-800 {
    font-weight: 800 !important;
}

.font-weight-900 {
    font-weight: 900 !important;
}

.nav-badge {
    width: 18px;
    height: 18px;
    display: block;
    position: absolute;
    top: -7px;
    right: -1px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.mi-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: background 100ms ease-in-out;
    -webkit-transition: background 100ms ease-in-out;
    padding: 17px;
}

    .mi-btn:hover {
        background: #f3f2f7;
    }

.dark-theme .mi-btn:hover {
    background: #202938;
}

.mi-btn:focus,
.mi-btn:active {
    background: #e3e3e3;
}

.dark-theme .mi-btn:focus,
.dark-theme .mi-btn:active {
    background: rgba(170, 170, 170, 0.1);
}

.user-select-none {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.match-height > [class*="col"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
}

    .match-height > [class*="col"] > .card {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }

.chart-container {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Utils End */

/* Global Filters Navbar Start */
.global-filter-nav-bar {
    position: fixed;
    top: 54px;
    height: 51px;
    left: 0;
    width: 100%;
    background: #fff;
    z-index: 997;
    display: flex;
    align-items: center;
    padding: 0.8rem 1.4rem;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transform: translateY(calc(-51px + -54px));
    -webkit-transform: translateY(calc(-51px + -54px));
    -moz-transform: translateY(calc(-51px + -54px));
    -ms-transform: translateY(calc(-51px + -54px));
    -o-transform: translateY(calc(-51px + -54px));
    box-shadow: 0 0 15px 0px rgb(0 0 0 / 13%);
    -webkit-box-shadow: 0 0 15px 0px rgb(0 0 0 / 13%);
}

.dark-theme .global-filter-nav-bar {
    background: #111727;
}

body.sideMenuIsOpen .global-filter-nav-bar {
    left: 270px;
    width: calc(100% - 270px);
}

body.globalFilterMenuIsActive .global-filter-nav-bar {
    transform: translateY(0);
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
}

/* Global Filters Navbar End */

/* Main Navbar Start */
.nav-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 54px;
    width: 100%;
    border-bottom: 1px solid var(--light-border);
    background: #fff;
    padding: 0.8rem 1.4rem;
    display: flex;
    align-items: center;
    z-index: 998;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}

.dark-theme .nav-bar {
    background: #111727;
    border-bottom: 1px solid var(--dark-border);
}

body.sideMenuIsOpen .nav-bar {
    left: 270px;
    width: calc(100% - 270px);
}

.nav-bar-left-menu {
    position: relative;
    display: flex;
    align-items: center;
}

.btn-toggle-main-side-menu {
    position: relative;
    transition: transform 300ms ease-in-out;
    -webkit-transition: transform 300ms ease-in-out;
    -moz-transition: transform 300ms ease-in-out;
    -ms-transition: transform 300ms ease-in-out;
    -o-transition: transform 300ms ease-in-out;
}

.nav-bar-right-menu {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
}

.nav-bar-profile-menu {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 0.5rem;
}

.profile-detail-container {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-bar-profile-menu .btn.focus,
.nav-bar-profile-menu .btn:hover {
    outline: 0;
    box-shadow: none !important;
    background: #f3f2f7;
}

.dark-theme .nav-bar-profile-menu .btn.focus,
.dark-theme .nav-bar-profile-menu .btn:hover {
    background: #202938;
}

.nav-bar-profile-menu .dropdown-toggle::after {
    display: none;
}

.nav-bar-profile-menu .profile-avatar {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.85rem;
}

.nav-bar-profile-menu .dropdown-item.pe-none.drp-usertile {
    border-bottom: 1px solid var(--light-border);
    margin-bottom: 0.5rem;
    padding-bottom: 0.8rem;
    display: none;
}

.dark-theme .nav-bar-profile-menu .dropdown-item.pe-none.drp-usertile {
    border-bottom-color: var(--dark-border);
}

.nav-bar-profile-menu .user-name {
    position: relative;
    margin-right: 0.5rem;
    font-weight: 500;
}

/* Main Navbar End */

/* Main Side Menu Start */
.sidebarCollapsed .main-side-menu {
    width: 0;
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}

.sidebarCollapsed .main-side-menu {
    opacity: 0;
    -webkit-transition: width .75, opacity .75, -webkit-transform .75;
    transition: width .75, opacity .75, -webkit-transform .75;
    transition: width .75, opacity .75, transform .75;
    transition: width .75, opacity .75, transform .75, -webkit-transform .75;
}

.main-side-menu {
    position: fixed;
    width: 270px;
    color: #6e6b7b;
    z-index: 1031;
    display: table-cell;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: #fff;
    border-right: 1px solid #ebe9f1;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    overflow: hidden;
}

.sideMenuIsOpen .main-side-menu {
    overflow: visible;
}

.main-side-menu.resizable:hover .main-side-menu-resize-handle {
    opacity: 1 !important;
}

.draggingSideMenu .main-side-menu-resize-handle,
.draggingSideMenu .main-side-menu.resizable:hover .main-side-menu-resize-handle {
    opacity: 0.25 !important;
    transition: none;
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
}

.main-side-menu-resize-handle {
    position: absolute;
    width: 4px;
    height: 100%;
    background: var(--primary);
    right: -5px;
    top: 0;
    cursor: ew-resize;
    z-index: 1;
    opacity: 0;
    transition: opacity 400ms ease-in-out;
    -webkit-transition: opacity 400ms ease-in-out;
    -moz-transition: opacity 400ms ease-in-out;
    -ms-transition: opacity 400ms ease-in-out;
    -o-transition: opacity 400ms ease-in-out;
    transition-delay: 200ms;
}

    .main-side-menu-resize-handle:hover {
        opacity: 1 !important;
    }

.dark-theme .main-side-menu {
    border-right: 1px solid #1e2536;
}

.dark-theme .main-side-menu {
    background-color: #111727;
}

.main-side-menu .navbar-header {
    position: relative;
    justify-content: space-between;
    padding: 0.35rem 1rem 0.3rem 1.64rem;
    height: 64px;
    display: flex;
    align-items: center;
    max-height: 64px;
}

.navbar-header-text {
    display: block;
    color: #7367f0;
    font-weight: 600;
    letter-spacing: .01rem;
    font-size: 1.45rem;
}

.app-logo-login {
    display: block;
    text-align: center;
}

    .app-logo-login img {
        width: 200px;
        object-fit: cover;
    }

.main-side-menu .navbar-header .app-logo {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 100%;
    padding-top: 0.35rem;
}

    .main-side-menu .navbar-header .app-logo img {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.main-side-menu .navbar-header .btn-close-main-side-menu {
    position: relative;
    margin-left: 8px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.main-menu-content {
    height: calc(100% - 4.45rem) !important;
    position: relative;
    list-style: none;
    overflow: hidden !important;
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto;
    margin: 0;
    padding: 0;
}

.navigation-main {
    background-color: #fff;
    overflow-x: hidden;
    margin: 0;
    padding: 0 0 .75rem 0;
    list-style: none;
    font-weight: 400;
    overflow-y: auto;
    height: 100%;
    padding-top: 15px;
}

.dark-theme .navigation-main {
    background-color: #111727;
}


.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.navigation li {
    position: relative;
    white-space: nowrap;
    list-style-type: none;
    list-style: none;
}

.navigation-main .nav__txt_wrap {
    position: relative;
    background: transparent;
    border-radius: 6px;
    margin: 0 15px;
    padding: 10px 15px 10px 15px;
    -webkit-transition: all .5s ease, background 0s, color 0s;
    transition: all .5s ease, background 0s, color 0s;
    color: #625f6e;
    line-height: 1.45;
    text-overflow: ellipsis;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    -moz-transition: all .5s ease, background 0s, color 0s;
    -ms-transition: all .5s ease, background 0s, color 0s;
    -o-transition: all .5s ease, background 0s, color 0s;
}

.dark-theme .navigation-main .nav__txt_wrap {
    color: #d0d2d6;
}

.main-side-menu .navigation-main .sidemenu_navItem.first-level-drpdwn.open > .nav__txt_wrap,
.main-side-menu .navigation-main .sidemenu_navItem.first-level-drpdwn > .nav__txt_wrap:hover {
    background: #e6e6e6;
}

.dark-theme .main-side-menu .navigation-main .sidemenu_navItem.first-level-drpdwn.open > .nav__txt_wrap,
.dark-theme .main-side-menu .navigation-main .sidemenu_navItem.first-level-drpdwn > .nav__txt_wrap:hover {
    background: #202938;
    color: #d0d2d6;
}

span.sidemenu_nav_Icon {
    padding-bottom: 0.2rem;
    position: relative;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    top: 1px;
}

.main-side-menu .navigation-main .nav__txt_wrap:after {
    content: '';
    width: 8px;
    height: 8px;
    border: 1px solid #58596a;
    border-top: 0;
    border-left: 0;
    position: absolute;
    right: 20px;
    top: calc(50% - 0px);
    transform: translateY(-50%) rotate(-45deg);
    transition: all 400ms ease-in-out;
}

.main-side-menu .navigation-main .sidemenu_navItem.open > .nav__txt_wrap:after {
    top: calc(50% - 2px);
    transform: translateY(-50%) rotate(45deg);
}

.menu-content {
    margin: 0;
    padding: 0;
}

.inner__nav__txt_wrap {
    position: relative;
    padding: 10px 15px 10px 20px;
    margin: 0;
    color: #625f6e;
    line-height: 1.45;
    text-overflow: ellipsis;
    overflow: hidden;
    cursor: pointer;
}

.dark-theme .inner__nav__txt_wrap {
    color: #d0d2d6;
}

.menu-content .nav__itm {
    margin: 0 15px;
    border-radius: 4px;
}

.menu-content .nav__itm:nth-child(1) {
    margin-top: 7px;
}

.siteSearchBox .nav__itm:nth-child(1) {
    margin-top: 7px;
}

.nav-item.sidemenu_navItem .menu_icon {
    position: relative;
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid #625f6e;
    margin-right: 1.45rem;
}

.dark-theme .nav-item.sidemenu_navItem .nav__txt_wrap > .menu_icon, .dark-theme .nav__itm .menu_icon {
    border: 1px solid #d0d2d6;
}

.nav__itm.active .menu_icon {
    border: 1px solid #fff;
}

.nav__itm.active {
    background: linear-gradient(118deg, #7367f0, rgba(115, 103, 240, .7));
    -webkit-box-shadow: 0 0 10px 1px rgb(115 103 240 / 70%);
    box-shadow: 0 0 10px 1px rgb(115 103 240 / 70%);
}

    .nav__itm.active p {
        color: #fff;
    }

li.nav-item.nav__itm:hover {
    background-color: rgba(115, 103, 240, .12) !important;
}

    li.nav-item.nav__itm:hover .menu-title {
        color: #7367f0;
    }

    li.nav-item.nav__itm:hover .menu_icon {
        border-color: #7367f0;
    }

span.menu_icon.menu_icon_sitestatus {
    border: none !important;
    margin-right: 0.5rem !important;
    height: 10px !important;
    width: 10px !important;
    padding: 5px;
}

    span.menu_icon.menu_icon_sitestatus.minor {
        background-color: var(--info);
    }

    span.menu_icon.menu_icon_sitestatus.offline {
        background-color: var(--secondary);
    }

    span.menu_icon.menu_icon_sitestatus.major {
        background-color: var(--warning);
    }

    span.menu_icon.menu_icon_sitestatus.critical {
        background-color: var(--danger);
    }

    span.menu_icon.menu_icon_sitestatus.none {
        background-color: var(--success);
    }

.main-side-menu .navigation-main .sidemenu_navItem.second-level-drpdwn.open > .nav__txt_wrap,
.main-side-menu .navigation-main .sidemenu_navItem.second-level-drpdwn > .nav__txt_wrap:hover {
    background-color: #f1f1f1;
}

.dark-theme .main-side-menu .navigation-main .sidemenu_navItem.second-level-drpdwn.open > .nav__txt_wrap,
.dark-theme .main-side-menu .navigation-main .sidemenu_navItem.second-level-drpdwn > .nav__txt_wrap:hover {
    background-color: #20293859;
}

.main-side-menu .navigation-main .sidemenu_navItem.third-level-drpdwn > .nav__txt_wrap {
    padding-left: 2rem !important
}

    .main-side-menu .navigation-main .sidemenu_navItem.third-level-drpdwn.open > .nav__txt_wrap,
    .main-side-menu.navigation-main .sidemenu_navItem.third-level-drpdwn > .nav__txt_wrap:hover {
        background-color: #f1f1f178;
    }

.dark-theme .main-side-menu .navigation-main .sidemenu_navItem.third-level-drpdwn.open > .nav__txt_wrap,
.dark-theme .main-side-menu .navigation-main .sidemenu_navItem.third-level-drpdwn > .nav__txt_wrap:hover {
    background-color: #161d2d8c;
}

.third-level-drpdwn .inner__nav__txt_wrap .menu_icon {
    position: relative;
    display: block;
    width: 7px;
    height: 7px;
    border: 1px solid #625f6e;
    margin-right: 1.45rem;
    transform: rotate(45deg);
    border-radius: 0 !important;
}

.dark-theme .third-level-drpdwn .inner__nav__txt_wrap .menu_icon {
    border: 1px solid #d0d2d6;
}

.third-level-drpdwn .nav__itm.active .menu_icon {
    border: 1px solid #fff;
}
/* Main Side Menu End*/
/* Pagination Start*/
.paginationjs {
    margin: 0 15px;
    border-radius: 4px;
    border-top: 1px solid var(--light-border);
    margin: 0 !important;
    padding: 8px 16px;
    border-bottom: 1px solid var(--light-border);
    border-radius: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dark-theme .paginationjs {
    border-bottom: 1px solid var(--dark-border);
    border-top: 1px solid var(--dark-border);
}

.paginationjs .paginationjs-pages li.active > a {
    background: #7367f0 !important;
    color: #fff !important;
}

.paginationjs .paginationjs-pages li > a {
    cursor: pointer;
    background: #fff;
    color: #6e6b7b;
    text-decoration: none;
    text-align: center;
}

.dark-theme .paginationjs .paginationjs-pages li > a {
    background: #111727;
    color: rgba(255, 255, 255, 0.7);
}

.paginationjs .paginationjs-pages li:last-child {
    border-right: 1px solid #ebe9f1;
}

.dark-theme .paginationjs .paginationjs-pages li:last-child {
    border-right: 1px solid #1e2536;
}

.paginationjs .paginationjs-pages li.disabled > a {
    opacity: 1;
    cursor: no-drop;
}

.paginationjs .paginationjs-pages li > a:hover {
    background: transparent;
    color: #7367f0;
}

.paginationjs .paginationjs-pages li.active > a:hover {
    background: #7367f0 !important;
    color: #fff !important;
}

.paginationjs .paginationjs-pages li {
    border: 1px solid #ebe9f1;
}

.dark-theme .paginationjs .paginationjs-pages li {
    border: 1px solid #1e2536;
}

.J-paginationjs-go-pagenumber {
    background-color: #fff !important;
    background-clip: padding-box !important;
    border: 1px solid #d8d6de !important;
    border-radius: 8px !important;
    -webkit-border-radius: 8px !important;
}

.dark-theme .J-paginationjs-go-pagenumber {
    background-color: #111727 !important;
    border-color: var(--dark-border) !important;
    color: #b4b7bd !important;
}

.paginationjs .paginationjs-go-button > input[type=button] {
    color: #6e6b7b !important;
    background-color: var(--light) !important;
    border-color: #d8d6de !important;
}

.dark-theme .paginationjs .paginationjs-go-button > input[type=button] {
    color: #b4b7bd !important;
    border-color: #1e2536 !important;
    background-color: #202938 !important;
}
/* Pagination End */
.app-content-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(248, 248, 248, 0.65);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 300ms ease-in-out;
}

.dark-theme .app-content-overlay {
    background: rgba(17, 23, 39, 0.85);
}


/* App Content Start */
.app-content {
    position: relative;
    backface-visibility: hidden;
    min-height: calc(100% - 54px);
    margin-left: 0;
    padding: calc(54px + 1rem) 2rem 2rem 2rem;
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}

body.globalFilterMenuIsActive .app-content {
    padding: calc(calc(54px + 51px) + 1rem) 2rem 2rem 2rem;
}

body.sideMenuIsOpen .app-content {
    margin-left: 270px;
}

.app-content .content-header {
    position: relative;
    margin-bottom: 0.75rem;
}

.app-content .content-header .breadcrumb-wrapper {
    position: relative;
    padding: 0 0.5rem;
}

.app-content .content-header .breadcrumb-wrapper ul,
.app-content .content-header .breadcrumb-wrapper ul li {
    position: relative;
}

.app-content .content-header .breadcrumb-wrapper ul li:not(:last-child) {
    margin-right: 1rem;
    padding-right: 1rem;
}

.app-content .content-header .breadcrumb-wrapper ul li:not(:last-child):before {
    content: "";
    width: 8px;
    height: 8px;
    border: 2px solid var(--light-border);
    position: absolute;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    border-left: 0;
    border-top: 0;
    right: -4px;
}

.app-content .content-header .content-header-right {
    position: relative;
    text-align: right;
}

.app-content .content-header .lastupdated-wrapper {
    position: relative;
    padding: 0 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

/* App Content End */

/* Footer Start */
.footer {
    padding: 0.5rem 2rem;
    height: 54px;
    margin-left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-top: 1px solid var(--light-border);
    transition: all 300ms ease-in-out;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
}

.dark-theme .footer {
    background: #111727;
    border-top: 1px solid rgba(35, 33, 33, 0.5);
}

body.sideMenuIsOpen .footer {
    margin-left: 270px;
}

/* Footer End */

/* Badges Start */
.badge {
    display: inline-block;
    font-size: 85%;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    vertical-align: baseline;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, background 0s, border 0s, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, background 0s, border 0s, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background 0s, border 0s;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background 0s, border 0s, -webkit-box-shadow 0.15s ease-in-out;
}

.badge {
    padding: 0.3rem 0.5rem;
    text-align: center;
    border-radius: 0.358rem;
}

.badge-pill {
    border-radius: 10rem;
}

.badge-light-primary {
    color: #fff;
    background-color: var(--primary) !important;
}

.badge-light-danger {
    color: #fff;
    background-color: var(--danger) !important;
}

.badge-light-warning {
    color: #fff;
    background-color: var(--warning) !important;
}

.badge-light-success {
    color: #fff;
    background-color: var(--success) !important;
}

.badge-light-secondary {
    color: #fff;
    background-color: var(--secondary) !important;
}

.badge-light-info {
    color: #fff;
    background-color: var(--info) !important;
}

.dark-theme .badge-light-primary {
    background-color: var(--primary-light) !important;
    color: var(--primary) !important;
}

.dark-theme .badge-light-danger {
    background-color: var(--danger-light) !important;
    color: var(--danger) !important;
}

.dark-theme .badge-light-warning {
    background-color: var(--warning-light) !important;
    color: var(--warning) !important;
}

.dark-theme .badge-light-success {
    background-color: var(--success-light) !important;
    color: var(--success) !important;
}

.dark-theme .badge-light-secondary {
    background-color: var(--secondary-light) !important;
    color: var(--secondary) !important;
}

.dark-theme .badge-light-info {
    background-color: var(--info-light) !important;
    color: var(--info) !important;
}

.badge-light {
    color: #6e6b7b;
}

/* Badges End */

/* Bootstrap Tabs Start */
.nav-tabs {
    border-bottom: 1px solid var(--light-border);
}

.dark-theme .nav-tabs {
    border-bottom: 1px solid var(--dark-border);
}

.nav-tabs .nav-link {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.nav-tabs .nav-link {
    color: #6e6b7b;
}

.dark-theme .nav-tabs .nav-link {
    color: #b4b7bd;
}

.custom-nav-pills {
    background: var(--light);
    padding: 4px;
    border-radius: 8px;
}

.dark-theme .custom-nav-pills {
    background: #202938;
}

.custom-nav-pills .nav-link {
    border-radius: 6px;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    color: #a6a4b0;
    font-weight: 500;
    transition: all 200ms ease-in-out;
}

    .custom-nav-pills .nav-link.active,
    .custom-nav-pills .show > .nav-link {
        color: var(--primary);
        background-color: #fff;
        box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
        -webkit-box-shadow: 0 3px 10px rgb(0 0 0 / 15%);
        transition: all 200ms ease-in-out;
    }

.dark-theme .custom-nav-pills .nav-link.active,
.dark-theme .custom-nav-pills .show > .nav-link {
    background-color: #111727;
}

.custom-tabs {
    border-bottom: 1px solid transparent !important;
}

    .custom-tabs .nav-item .nav-link {
        color: #a6a4b0 !important;
        font-weight: 500;
    }

.dark-theme .custom-tabs .nav-item .nav-link {
    color: rgba(170, 170, 170, 0.5) !important;
}

.custom-tabs .nav-item .nav-link:not(.active):hover,
.custom-tabs .nav-item .nav-link:not(.active):focus {
    color: #6e6b7b !important;
}

.dark-theme .custom-tabs .nav-item .nav-link:not(.active):hover,
.dark-theme .custom-tabs .nav-item .nav-link:not(.active):focus {
    color: rgba(255, 255, 255, 0.75) !important;
}

.dark-theme .custom-tabs .nav-item .nav-link {
    background-color: #111727;
}

.custom-tabs .nav-item.show .nav-link,
.custom-tabs .nav-link.active {
    border-color: transparent transparent transparent !important;
    color: var(--primary) !important;
    border-bottom: 3px solid var(--primary) !important;
}

.dark-theme .custom-tabs .nav-item.show .nav-link,
.dark-theme .custom-tabs .nav-link.active {
    color: var(--primary) !important;
}

.custom-tabs .nav-link:focus,
.custom-tabs .nav-link:hover {
    isolation: isolate;
    border-color: transparent transparent transparent;
}

.custom-nav-tabs .nav-item.show .nav-link,
.custom-nav-tabs .nav-link.active {
    position: relative;
    font-weight: 500;
    border-color: transparent transparent transparent;
    background-color: transparent;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.dark-theme.nav-tabs .nav-item.show .nav-link,
.dark-theme .nav-tabs .nav-link.active {
    color: var(--primary);
}

.custom-nav-tabs .nav-link {
    position: relative;
    padding: 0.5rem 1.5rem !important;
}

    .custom-nav-tabs .nav-item.show .nav-link::before,
    .custom-nav-tabs .nav-link.active::before {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transition: all 200ms ease-in-out;
        -webkit-transition: all 200ms ease-in-out;
        -moz-transition: all 200ms ease-in-out;
        -ms-transition: all 200ms ease-in-out;
        -o-transition: all 200ms ease-in-out;
    }

    .custom-nav-tabs .nav-link::before,
    .custom-nav-tabs .nav-link::before {
        content: "";
        width: 100%;
        height: 2px;
        background: var(--primary);
        position: absolute;
        bottom: 0px;
        left: 0;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        z-index: 1;
        transform: scale(0);
        opacity: 0;
        visibility: hidden;
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transition: all 200ms ease-in-out;
        -webkit-transition: all 200ms ease-in-out;
        -moz-transition: all 200ms ease-in-out;
        -ms-transition: all 200ms ease-in-out;
        -o-transition: all 200ms ease-in-out;
    }

    .custom-nav-tabs .nav-link:focus,
    .custom-nav-tabs .nav-link:hover {
        border-color: transparent transparent transparent;
    }

/* Bootstrap Tabs End */

/* Card Start */
.card .loading-area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(255, 255, 255, 0.5);
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.dark-theme .card .loading-area {
    background: rgba(17, 23, 39, 0.85);
}

.card .card-empty-content {
    position: relative;
    min-height: calc(100vh - 293px);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

    .card .card-empty-content img {
        height: 128px;
        object-fit: contain;
        opacity: 0.65;
    }

    .card .card-empty-content .dark-theme .card .card-empty-content img {
        opacity: 0.35;
    }

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    box-shadow: 0 0 15px 0px rgb(0 0 0 / 13%);
    -webkit-box-shadow: 0 0 15px 0px rgb(0 0 0 / 13%);
}

.card {
    -webkit-transition: all 0.3s ease-in-out, background 0s, color 0s, border-color 0s;
    transition: all 0.3s ease-in-out, background 0s, color 0s, border-color 0s;
}

.card {
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
}

.dark-theme .card {
    background-color: #111727;
    border: 1px solid var(--dark-border);
}

.card {
    margin-bottom: 1rem;
}

.match-height > [class*="col"] > .card {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}



.card-header {
    padding: 1.5rem 1.5rem;
    margin-bottom: 0;
    background-color: rgba(34, 41, 47, 0.03);
    border-bottom: 1px solid rgba(34, 41, 47, 0.125);
}

.card .card-header {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.card-header:first-child {
    border-radius: calc(0.428rem - 1px) calc(0.428rem - 1px) 0 0;
}

.card .card-header {
    border-bottom: none;
    padding: 1rem;
    background-color: transparent;
    padding-bottom: 0.5rem;
}

.card .card-title {
    font-weight: 500;
    font-size: 1.25rem;
}

.card .card-header .card-title {
    margin-bottom: 0;
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 1px;
}

.card-body {
    padding: 1.25rem;
}

.card .card-footer {
    border-top: 1px solid #dae1e7;
    background-color: transparent;
}

.card-footer:last-child {
    border-radius: 0 0 calc(0.428rem - 1px) calc(0.428rem - 1px);
}

.card-footer {
    padding: 1.5rem 1.5rem;
    background-color: rgba(34, 41, 47, 0.03);
    border-top: 1px solid rgba(34, 41, 47, 0.125);
}

.card .card-header + .card-body,
.card .card-header + .card-content > .card-body:first-of-type {
    padding-top: 0;
    padding-bottom: 0
}

.card .card-label {
    color: #a6a4b0;
    font-size: 0.875rem;
}

.card .card-value {
    font-weight: 500;
    font-size: 1.05rem;
}

/* Card End */

/* Table Start */
.card .table {
    margin-bottom: 0;
}

.table {
    width: 100%;
    color: #6e6b7b;
}

.dark-theme .table {
    color: #b4b7bd;
}

table {
    border-collapse: collapse;
}

.table:not(.table-dark):not(.table-light) tfoot:not(.thead-dark) th,
.table:not(.table-dark):not(.table-light) thead:not(.thead-dark) th {
    background-color: #f3f2f7;
}

.table thead th {
    border-bottom: 2px solid var(--light-border);
}

.table.b-table th {
    outline: none;
}

.table td,
.table th {
    padding: 0.375rem 1.5rem;
    font-size: 13px;
    vertical-align: middle;
}

.table td,
.table th {
    border-top: 1px solid var(--light-border);
}

.dark-theme .table td,
.dark-theme .table th {
    border-color: var(--dark-border);
}

.table tfoot th,
.table thead th {
    vertical-align: middle;
    font-size: 1rem;
}

/* Table End */

/* b-avatar start */
.b-avatar {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    vertical-align: middle;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    font-size: inherit;
    font-weight: 400;
    line-height: 1;
    max-width: 100%;
    max-height: auto;
    overflow: visible;
    position: relative;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -moz-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -ms-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.b-avatar {
    text-align: center;
}

.rounded-circle {
    border-radius: 50% !important;
}

.b-avatar {
    font-size: 0.857rem;
    font-weight: 600;
    color: #fff;
}

    .b-avatar .b-avatar-custom,
    .b-avatar .b-avatar-img,
    .b-avatar .b-avatar-text {
        border-radius: inherit;
    }

    .b-avatar .b-avatar-custom,
    .b-avatar .b-avatar-img,
    .b-avatar .b-avatar-text,
    .b-avatar .b-avatar-box-icon {
        width: 100%;
        height: 100%;
        overflow: hidden;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-mask-image: radial-gradient(#fff, #000);
        mask-image: radial-gradient(#fff, #000);
    }

        .b-avatar .b-avatar-img img {
            height: 28px;
            object-fit: contain;
        }

    .b-avatar .b-avatar-box-icon {
        font-size: 2rem;
        color: #6e6b7b;
    }

.dark-theme .b-avatar .b-avatar-box-icon {
    color: #ffff;
}

.b-avatar.badge-light-primary {
    background-color: var(--primary-light) !important;
    color: var(--primary) !important;
}

.b-avatar.badge-light-success {
    background-color: var(--success-light) !important;
    color: var(--success) !important;
}

.b-avatar.badge-light-info {
    background-color: var(--info-light) !important;
    color: var(--info) !important;
}

.b-avatar.badge-light-warning {
    background-color: var(--warning-light) !important;
    color: var(--warning) !important;
}

.b-avatar.badge-light-danger {
    background-color: var(--danger-light) !important;
    color: var(--danger) !important;
}

.b-avatar.badge-light-success {
    background-color: var(--success-light) !important;
    color: var(--success) !important;
}

.b-avatar.badge-light-secondary {
    background-color: var(--secondary-light) !important;
}

.b-avatar.badge-light {
    background-color: var(--light) !important;
}

.b-avatar.badge-dark {
    background-color: var(--dark) !important;
}

.b-avatar.badge-light-primary .b-avatar-box-icon {
    color: var(--primary) !important;
}

.b-avatar.badge-light-secondary .b-avatar-box-icon {
    color: var(--secondary) !important;
}

.b-avatar.badge-light-success .b-avatar-box-icon {
    color: var(--success) !important;
}

.b-avatar.badge-light-info .b-avatar-box-icon {
    color: var(--info) !important;
}

.b-avatar.badge-light-warning .b-avatar-box-icon {
    color: var(--warning) !important;
}

.b-avatar.badge-light-danger .b-avatar-box-icon {
    color: var(--danger) !important;
}

.b-avatar.badge-light-success .b-avatar-box-icon {
    color: var(--success) !important;
}

.b-avatar.badge-light .b-avatar-box-icon {
    color: #6e6b7b !important;
}

/* b-avatar end */

/* SVG feather start */
svg.feather {
    outline: none;
}

.feather {
    font-family: feather !important;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

svg {
    overflow: hidden;
    vertical-align: middle;
}

/* SVG feather end */

/*app preloader start*/
.app-preloader {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

    .app-preloader div {
        position: absolute;
        width: 6px;
        height: 6px;
        background: var(--primary);
        border-radius: 50%;
        animation: app-preloader 1.2s linear infinite;
    }

        .app-preloader div:nth-child(1) {
            animation-delay: 0s;
            top: 37px;
            left: 66px;
        }

        .app-preloader div:nth-child(2) {
            animation-delay: -0.1s;
            top: 22px;
            left: 62px;
        }

        .app-preloader div:nth-child(3) {
            animation-delay: -0.2s;
            top: 11px;
            left: 52px;
        }

        .app-preloader div:nth-child(4) {
            animation-delay: -0.3s;
            top: 7px;
            left: 37px;
        }

        .app-preloader div:nth-child(5) {
            animation-delay: -0.4s;
            top: 11px;
            left: 22px;
        }

        .app-preloader div:nth-child(6) {
            animation-delay: -0.5s;
            top: 22px;
            left: 11px;
        }

        .app-preloader div:nth-child(7) {
            animation-delay: -0.6s;
            top: 37px;
            left: 7px;
        }

        .app-preloader div:nth-child(8) {
            animation-delay: -0.7s;
            top: 52px;
            left: 11px;
        }

        .app-preloader div:nth-child(9) {
            animation-delay: -0.8s;
            top: 62px;
            left: 22px;
        }

        .app-preloader div:nth-child(10) {
            animation-delay: -0.9s;
            top: 66px;
            left: 37px;
        }

        .app-preloader div:nth-child(11) {
            animation-delay: -1s;
            top: 62px;
            left: 52px;
        }

        .app-preloader div:nth-child(12) {
            animation-delay: -1.1s;
            top: 52px;
            left: 62px;
        }

.app-preloader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1035;
    background: #f8faff;
}

.dark-theme .app-preloader-container {
    background: #111727;
}

@keyframes app-preloader {
    0%, 20%, 80%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.5);
    }
}
/*app prelaoder end*/
/* Buttons Start */
.btn {
    text-align: center;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 0.786rem 1.5rem;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.btn {
    display: inline-block;
    font-weight: 500;
    color: #6e6b7b;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1rem;
    line-height: 1;
    -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, background 0s, border 0s, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, background 0s, border 0s, -webkit-box-shadow 0.15s ease-in-out;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background 0s, border 0s;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background 0s, border 0s, -webkit-box-shadow 0.15s ease-in-out;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}

button,
select {
    text-transform: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

button,
input {
    overflow: visible;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.btn {
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #6e6b7b;
}

.dark-theme .btn {
    color: rgb(255, 255, 255, 0.75);
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
}

.btn-primary {
    border-color: var(--primary) !important;
    background-color: var(--primary) !important;
    color: #fff !important;
}

    .btn-primary.active,
    .btn-primary:active,
    .btn-primary:focus {
        background-color: #5e50ee !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    .btn-primary:hover:not(.disabled):not(:disabled) {
        -webkit-box-shadow: 0 8px 25px -8px var(--primary);
        box-shadow: 0 8px 25px -8px var(--primary);
    }

.btn-link-primary {
    color: var(--primary) !important;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
    padding-right: 0.786rem !important;
}

.btn-secondary {
    border-color: var(--secondary) !important;
    background-color: var(--secondary) !important;
    color: #fff !important;
}

.btn-sm {
    border-radius: 8px;
}

.btn-pill {
    border-radius: 2rem;
}

.btn-light {
    color: #6e6b7b;
    background-color: var(--light);
    border-color: #d8d6de;
}
.btn-light.disabled,
.btn-light:disabled {
    background-color: #e9ecef;
    border-color: #d8d6de;
}

.dark-theme .btn-light {
    color: #b4b7bd;
    border-color: #1e2536;
    background-color: #202938;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show > .btn-light.dropdown-toggle {
    color: #6e6b7b;
    background-color: #ebebeb;
    border-color: #ebebeb;
}

.dark-theme .btn-light:not(:disabled):not(.disabled).active,
.dark-theme .btn-light:not(:disabled):not(.disabled):active,
.dark-theme .show > .btn-light.dropdown-toggle {
    color: #b4b7bd;
    border-color: var(--dark-border);
    background-color: #0e1321;
}

.btn-light:not(:disabled):not(.disabled).active:focus,
.btn-light:not(:disabled):not(.disabled):active:focus,
.show > .btn-light.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-secondary:not(:disabled):not(.disabled).active:focus,
.btn-secondary:not(:disabled):not(.disabled):active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-warning:not(:disabled):not(.disabled).active:focus,
.btn-warning:not(:disabled):not(.disabled):active:focus,
.show > .btn-warning.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-dark:not(:disabled):not(.disabled).active:focus,
.btn-dark:not(:disabled):not(.disabled):active:focus,
.show > .btn-dark.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-success:not(:disabled):not(.disabled).active:focus,
.btn-success:not(:disabled):not(.disabled):active:focus,
.show > .btn-success.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-danger:not(:disabled):not(.disabled).active:focus,
.btn-danger:not(:disabled):not(.disabled):active:focus,
.show > .btn-danger.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-info:not(:disabled):not(.disabled).active:focus,
.btn-info:not(:disabled):not(.disabled):active:focus,
.show > .btn-info.dropdown-toggle:focus {
    box-shadow: none;
}

.btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    border-radius: 0.358rem;
    font-size: 11px;
}

.btn-sm {
    padding: 0.486rem 1rem;
    border-radius: 0.358rem;
}

.custom-btn-group {
    position: relative;
    background: var(--light);
    border-radius: 0.358rem;
    -webkit-border-radius: 0.358rem;
    -moz-border-radius: 0.358rem;
    -ms-border-radius: 0.358rem;
    -o-border-radius: 0.358rem;
    padding: 3px;
}

    .custom-btn-group .btn {
        background: var(--light);
        border-radius: 0.358rem !important;
        -webkit-border-radius: 0.358rem !important;
        -moz-border-radius: 0.358rem !important;
        -ms-border-radius: 0.358rem !important;
        -o-border-radius: 0.358rem !important;
        margin-right: 4px;
    }

        .custom-btn-group .btn:last-child {
            margin-right: 0;
        }

        .custom-btn-group .btn.active {
            background: #fff;
        }

        .custom-btn-group .btn:focus {
            box-shadow: none !important;
            outline: none !important;
        }

.dark-theme .custom-btn-group,
.dark-theme .custom-btn-group .btn {
    background: #202938;
}

    .dark-theme .custom-btn-group .btn.active {
        background: #111727;
    }
/* Buttons End */

/* Borders Start */
.border-top {
    border-top: 1px solid var(--light-border) !important;
}

.dark-theme .border-top {
    border-top: 1px solid var(--dark-border) !important;
}

.border-right {
    border-right: 1px solid var(--light-border) !important;
}

.dark-theme .border-right {
    border-right: 1px solid var(--dark-border) !important;
}

.border-bottom {
    border-bottom: 1px solid var(--light-border) !important;
}

.dark-theme .border-bottom {
    border-bottom: 1px solid var(--dark-border) !important;
}

.border-left {
    border-left: 1px solid var(--light-border) !important;
}

.dark-theme .border-left {
    border-left: 1px solid var(--dark-border) !important;
}

/* Borders End */

/* List Group Start */
.list-group-item:last-child {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
}

.list-group-item {
    border: 1px solid var(--light-border);
}

    .list-group-item .card-label {
        color: #a6a4b0;
        font-size: 0.875rem;
    }

.dark-theme .list-group-item .card-label {
    color: rgba(170, 170, 170, 0.5);
}

.list-group-item .card-value {
    font-weight: 500;
    font-size: 1.05rem;
}

.dark-theme .list-group-item {
    background-color: #111727;
    border-color: rgba(35, 33, 33, 0.5) !important;
}

/* List Group End */

/* Bootstrap Drowdown Start */
.dropdown-item.active,
.dropdown-item:active {
    background-color: var(--primary) !important;
    color: #fff !important;
}

.dropdown-menu {
    z-index: 10000;
}


.dark-theme .dropdown-menu {
    background-color: #111727;
    color: rgb(255, 255, 255, 0.75);
    border-color: #1e2536;
}

.dark-theme .dropdown-item {
    color: rgb(255, 255, 255, 0.75);
}

    .dark-theme .dropdown-item:focus,
    .dark-theme .dropdown-item:hover {
        background-color: #202938;
    }

/* Bootstrap Drowdown End */

/* Google Map Start */
.gm-ui-hover-effect {
    margin: 0.5rem !important;
}

.dark-theme .gm-ui-hover-effect > span {
    background-color: #fff;
}

.gm-style .gm-style-iw-c {
    padding: 1rem;
}

    .gm-style .gm-style-iw-c .list-group-flush .list-group-item {
        padding: 0.5rem 1.25rem;
    }

    .gm-style .gm-style-iw-c .list-group-flush {
        margin-right: 1rem;
        margin-bottom: 1rem;
        margin-left: -1rem;
    }

        .gm-style .gm-style-iw-c .list-group-flush .list-group-item:first-child {
            border-top-left-radius: 8px;
            border-top-right-radius: 8px;
        }

.dark-theme .gm-style .gm-style-iw-c {
    background-color: #111727;
}

.gm-style .gm-style-iw-d {
    overflow: auto !important;
}

    .gm-style .gm-style-iw-d::-webkit-scrollbar {
        width: 8px !important;
    }

.dark-theme .gm-style .gm-style-iw-d::-webkit-scrollbar-track,
.dark-theme .gm-style .gm-style-iw-d::-webkit-scrollbar-track-piece {
    background: #111727;
}

.gm-style .gm-style-iw-c .gm-style-iw-d::-webkit-scrollbar-thumb {
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    background-color: #f8f8f8;
}

.dark-theme .gm-style .gm-style-iw-c .gm-style-iw-d::-webkit-scrollbar-thumb {
    background-color: #202938;
    border: 6px solid var(--dark-border);
}

.ss-gm-style-heading {
    font-size: 1.075rem;
    font-weight: 600;
}

.ss-gm-style-label {
    color: #a6a4b0;
}

.ss-gm-style-value {
    font-weight: 500;
}

.dark-theme .ss-gm-style-label {
    color: rgba(170, 170, 170, 0.5);
}

.dark-theme .poi-info-window div,
.dark-theme .poi-info-window a {
    background-color: #111727;
}

.dark-theme .poi-info-window div {
    color: #b4b7bd;
}

.dark-theme .poi-info-window .view-link {
    border-bottom: 1rem;
}

.dark-theme .gm-style .gm-style-iw-tc::after {
    background-color: #111727;
}

.gm-style .gm-style-iw-tc {
    filter: drop-shadow(0px 4px 2px rgb(0 0 0 / 30%));
}

.dark-theme .gm-style .gm-style-iw-tc {
    filter: drop-shadow(0 4px 2px #40526F);
}
/* Google Map End */
/* Datatables Bootstrap 4 Start */
table .dataTable thead > tr > th.sorting, table.dataTable thead > tr > th.sorting_asc, table.dataTable thead > tr > th.sorting_desc, table.dataTable thead > tr > th.sorting_asc_disabled, table.dataTable thead > tr > th.sorting_desc_disabled, table.dataTable thead > tr > td.sorting, table.dataTable thead > tr > td.sorting_asc, table.dataTable thead > tr > td.sorting_desc, table.dataTable thead > tr > td.sorting_asc_disabled, table.dataTable thead > tr > td.sorting_desc_disabled {
    position: static !important;
}

table.dt-hide-sort-icons thead > tr > th.sorting:before,
table.dt-hide-sort-icons thead > tr > th.sorting:after,
table.dt-hide-sort-icons thead > tr > th.sorting_asc:before,
table.dt-hide-sort-icons thead > tr > th.sorting_asc:after,
table.dt-hide-sort-icons thead > tr > th.sorting_desc:before,
table.dt-hide-sort-icons thead > tr > th.sorting_desc:after,
table.dt-hide-sort-icons thead > tr > th.sorting_asc_disabled:before,
table.dt-hide-sort-icons thead > tr > th.sorting_asc_disabled:after,
table.dt-hide-sort-icons thead > tr > th.sorting_desc_disabled:before,
table.dt-hide-sort-icons thead > tr > th.sorting_desc_disabled:after,
table.dt-hide-sort-icons thead > tr > td.sorting:before,
table.dt-hide-sort-icons thead > tr > td.sorting:after,
table.dt-hide-sort-icons thead > tr > td.sorting_asc:before,
table.dt-hide-sort-icons thead > tr > td.sorting_asc:after,
table.dt-hide-sort-icons thead > tr > td.sorting_desc:before,
table.dt-hide-sort-icons thead > tr > td.sorting_desc:after,
table.dt-hide-sort-icons thead > tr > td.sorting_asc_disabled:before,
table.dt-hide-sort-icons thead > tr > td.sorting_asc_disabled:after,
table.dt-hide-sort-icons thead > tr > td.sorting_desc_disabled:before,
table.dt-hide-sort-icons thead > tr > td.sorting_desc_disabled:after {
    display: none !important;
}

.dt-custom-sort-btn {
    position: relative;
    border: 1px solid transparent;
    outline: none;
    background: transparent;
    font-size: 20px;
    color: #6e6b7b;
    opacity: 0.75;
    margin-left: 0.5rem;
}

.dark-theme .dt-custom-sort-btn {
    color: #b4b7bd;
}

div.dataTables_scrollBody {
    border-left: 1px solid transparent !important;
}

.dark-theme .table:not(.table-dark):not(.table-light) tfoot:not(.thead-dark) th,
.dark-theme .table:not(.table-dark):not(.table-light) thead:not(.thead-dark) th {
    background-color: #0e1321;
}

.pagination .page-link {
    color: #6e6b7b;
}

.dark-theme .pagination .page-link {
    background-color: #202938;
    color: #b4b7bd;
    border: 1px solid #1e2536;
}

.dark-theme .pagination .page-item.disabled .page-link {
    pointer-events: none;
    cursor: auto;
    background-color: #202938;
    border-color: #1e2536;
    opacity: 0.35;
}

.page-item.disabled .page-link {
    opacity: 0.65;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.pagination .page-item .page-link:focus {
    box-shadow: none;
    -webkit-box-shadow: none;
}

.dark-theme .pagination .page-item.active .page-link,
.dark-theme .pagination .page-item.active .page-link:focus {
    -webkit-box-shadow: 0 0px 25px -5px var(--primary);
    box-shadow: 0 0px 25px -5px var(--primary);
}

.dt-custom-header {
    position: static;
    display: flex;
    align-items: center;
}

.dt-custom-filter-wrapper {
    position: static;
}

    .dt-custom-filter-wrapper .dt-custom-filter-daterange {
        position: relative;
    }

        .dt-custom-filter-wrapper .dt-custom-filter-daterange .__hidden {
            display: none;
        }

        .dt-custom-filter-wrapper .dt-custom-filter-daterange .__fade {
            opacity: 0;
        }

        .dt-custom-filter-wrapper .dt-custom-filter-daterange .dt-custom-filter-daterange-title-icon {
            position: absolute;
            display: flex;
            align-items: center;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

    .dt-custom-filter-wrapper .dt-custom-filters-list-info {
        position: relative;
        padding: 0 1rem 0.5rem 1rem;
        font-weight: 400;
        font-size: 13px;
        color: #a6a4b0;
        border-bottom: 1px solid var(--light-border);
    }

.dark-theme .dt-custom-filter-wrapper .dt-custom-filters-list-info {
    border-bottom: 1px solid var(--dark-border);
}

.dt-custom-filter-wrapper .dt-custom-filters-search-wrapper {
    position: relative;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--light-border);
}

.dark-theme .dt-custom-filter-wrapper .dt-custom-filters-search-wrapper {
    border-bottom: 1px solid var(--dark-border);
}

.dt-custom-filter-wrapper .dt-custom-filters-select-all {
    position: relative;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--light-border);
    display: flex;
    align-items: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.dark-theme .dt-custom-filter-wrapper .dt-custom-filters-select-all {
    border-bottom: 1px solid var(--dark-border);
}

.dt-custom-filter-wrapper .dt-custom-filters-select-all:hover {
    background: var(--light);
}

.dark-theme .dt-custom-filter-wrapper .dt-custom-filters-select-all:hover {
    background: #202938;
}

.dt-custom-filter-wrapper .dt-custom-filters-select-all label {
    font-size: 13px;
}

.dt-custom-filter-wrapper .dt-custom-filters-list {
    position: relative;
    max-height: 240px;
    overflow-y: auto;
    margin: 0;
    padding: 0 0.5rem;
    list-style: none;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    margin: 0.5rem 0;
}

.dt-custom-filters-action-buttons {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0.5rem 0.5rem 0 0.5rem;
    border-top: 1px solid var(--light-border);
}

.dark-theme .dt-custom-filters-action-buttons {
    border-top: 1px solid var(--dark-border);
}

.dt-custom-filter-wrapper .dt-custom-filters-list li {
    position: relative;
    display: flex;
    align-items: center;
    list-style-type: none;
    font-weight: 400;
    font-size: 13px;
    color: #6e6b7b;
    cursor: pointer;
    border-radius: 0.35rem;
    -webkit-border-radius: 0.35rem;
    -moz-border-radius: 0.35rem;
    -ms-border-radius: 0.35rem;
    -o-border-radius: 0.35rem;
    padding: 0.25rem 0.5rem;
}

    .dt-custom-filter-wrapper .dt-custom-filters-list li:hover {
        background: var(--light);
    }

.dark-theme .dt-custom-filter-wrapper .dt-custom-filters-list li:hover {
    background: #202938;
}

.dt-custom-filter-wrapper .dt-custom-filters-list label {
    font-size: 13px;
}

.dt-custom-filter-wrapper .dt-custom-filter-dropdown .dropdown-toggle {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0;
}

.dt-custom-filter-dropdown-title {
    text-wrap:wrap;
    position: relative;
    margin-right: 0.5rem;
    font-weight: 500;
}

.dt-custom-filter-dropdown-icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dt-custom-filter-wrapper .dt-custom-filter-dropdown .dropdown-toggle::after {
    display: none;
}

.dt-custom-filter-wrapper .dt-custom-filter-dropdown .dropdown-toggle.focus,
.dt-custom-filter-wrapper .dt-custom-filter-dropdown .dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
}

.dt-custom-filter-wrapper .dt-custom-filters-min-max-wrapper {
    position: relative;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    margin: auto;
}

    .dt-custom-filter-wrapper .dt-custom-filters-min-max-wrapper .dt-custom-filter-min-max {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.25rem 1rem;
        margin-bottom: 0.5rem;
    }

        .dt-custom-filter-wrapper .dt-custom-filters-min-max-wrapper .dt-custom-filter-min-max:last-child {
            margin-bottom: 0;
        }

        .dt-custom-filter-wrapper .dt-custom-filters-min-max-wrapper .dt-custom-filter-min-max label {
            font-weight: 400;
            margin-bottom: 0;
            margin-right: 0.75rem;
        }

        .dt-custom-filter-wrapper .dt-custom-filters-min-max-wrapper .dt-custom-filter-min-max input {
            width: 140px;
            margin-left: 1rem;
        }

.dt-custom-dom-top {
    position: relative;
    display: flex;
    align-items: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0.5rem;
}

    .dt-custom-dom-top .dt-custom-dom-lenght-info {
        position: relative;
        display: flex;
        align-items: center;
    }

    .dt-custom-dom-top .dataTables_length label {
        margin: 0;
    }

    .dt-custom-dom-top .dataTables_info {
        padding-top: 0 !important;
        font-size: 13px;
        color: #a6a4b0;
        margin-left: 1rem;
    }

    .dt-custom-dom-top .dataTables_filter {
        margin-left: 1rem;
    }

        .dt-custom-dom-top .dataTables_filter label {
            margin: 0;
        }

.dt-custom-dom-filter-pagination {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: auto;
}

.dt-custom-dom-top .dataTables_paginate {
    margin-left: auto !important;
}

.dt-custom-dom-bottom {
    position: relative;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
}

    .dt-custom-dom-bottom .dt-custom-dom-info {
        position: relative;
        display: flex;
        align-items: center;
    }

        .dt-custom-dom-bottom .dt-custom-dom-info .dataTables_info {
            padding-top: 0 !important;
            font-size: 13px;
            color: #a6a4b0;
        }

    .dt-custom-dom-bottom .dt-custom-dom-pagination {
        position: relative;
        display: flex;
        align-items: center;
        margin-left: auto;
    }

    .dt-custom-dom-bottom .dataTables_paginate {
        margin-left: auto !important;
    }

.dt-custom-dom-buttons {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.5rem 1.5rem;
}

    .dt-custom-dom-buttons .dt-down-arrow {
        display: none;
    }

    .dt-custom-dom-buttons .dt-custom-collection {
        position: relative;
        display: flex;
        align-items: center;
        pointer-events: none;
    }

        .dt-custom-dom-buttons .dt-custom-collection span {
            position: relative;
            display: flex;
            align-items: center;
            margin-right: 0.5rem;
        }

        .dt-custom-dom-buttons .dt-custom-collection .bx.bxs-down-arrow {
            font-size: 8px;
        }

    .dt-custom-dom-buttons div.dt-button-collection {
        padding: 0;
    }

.dark-theme .dt-custom-dom-buttons div.dt-button-collection {
    background-color: #111727;
}

.dt-custom-dom-buttons div.dt-button-collection .dt-button {
    min-width: 100%;
    width: 100%;
    display: block;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: left;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

    .dt-custom-dom-buttons div.dt-button-collection .dt-button:focus,
    .dt-custom-dom-buttons div.dt-button-collection .dt-button:hover {
        color: #16181b;
        text-decoration: none;
        background-color: #e9ecef;
    }

.dt-custom-dom-buttons div.dt-button-collection .dt-button {
    position: relative;
}

.dt-custom-dom-buttons div.dt-button-collection .buttons-columnVisibility.active::after {
    content: "";
    display: block;
    width: 0.5em;
    height: 1em;
    border-style: solid;
    border-width: 0 0.26em 0.26em 0;
    border-color: var(--light-border);
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    -o-transform: translateY(-50%) rotate(45deg);
    -moz-transform: translateY(-50%) rotate(45deg);
}

.dark-theme .dt-custom-dom-buttons div.dt-button-collection .buttons-columnVisibility.active::after {
    border-color: #b4b7bd;
}

.dark-theme .dt-custom-dom-buttons div.dt-button-collection .dt-button {
    color: rgb(255, 255, 255, 0.75);
}

    .dark-theme .dt-custom-dom-buttons div.dt-button-collection .dt-button:focus,
    .dark-theme .dt-custom-dom-buttons div.dt-button-collection .dt-button:hover {
        background-color: #202938;
    }

.dark-theme table.dataTable tbody tr > .dtfc-fixed-left, .dark-theme table.dataTable tbody tr > .dtfc-fixed-right {
    z-index: 1;
    background-color: #111727;
}

.dark-theme .dt-custom-dom-buttons div.dt-button-collection {
    max-height: calc(100vh - 20rem);
    overflow-y: auto;
}
/* Datatables Bootstrap 4 End */

/* Form Control Start */
.form-control-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.438rem 1rem;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d8d6de;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    height: 2.714rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
    color: #6e6b7b;
}

.dark-theme .form-control-wrapper {
    background-color: #111727;
    border-color: var(--dark-border);
    color: #b4b7bd;
}

.form-control-wrapper .form-control-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

    .form-control-wrapper .form-control-item:last-child {
        margin-right: 0;
    }

.form-control {
    padding: 0.438rem 1rem;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d8d6de;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
}

.form-control {
    display: block;
    width: 100%;
    height: 2.714rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
    color: #6e6b7b;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -moz-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -ms-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    -o-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

    .form-control::placeholder {
        opacity: 0.65;
    }

.dark-theme .form-control {
    background-color: #111727;
    border-color: var(--dark-border);
    color: #b4b7bd;
}

.input-group:not(.bootstrap-touchspin):focus-within .form-control,
.input-group:not(.bootstrap-touchspin):focus-within .input-group-text {
    border-color: var(--primary);
    -webkit-box-shadow: none;
    box-shadow: none;
}

.form-control:focus {
    border-color: var(--primary);
    outline: 0;
    -webkit-box-shadow: 0 0 0 0.2rem rgb(115 103 240 / 10%);
    box-shadow: 0 0 0 0.2rem rgb(115 103 240 / 10%);
}

    .form-control:focus.is-valid,
    .form-control:focus:valid {
        -webkit-box-shadow: 0 3px 10px 0 rgb(34 41 47 / 10%);
        box-shadow: 0 3px 10px 0 rgb(34 41 47 / 10%);
    }

.form-control-sm {
    padding: 0.188rem 0.857rem;
    border-radius: 0.357rem;
    height: 2.142rem;
    font-size: 0.857rem;
    line-height: 1;
}

.form-control-wrapper-sm {
    padding: 0.188rem 0.857rem;
    border-radius: 0.357rem;
    height: 2.142rem;
    font-size: 0.857rem;
    line-height: 1;
    -webkit-border-radius: 0.357rem;
    -moz-border-radius: 0.357rem;
    -ms-border-radius: 0.357rem;
    -o-border-radius: 0.357rem;
}

input[type="checkbox"],
input[type="radio"] {
    padding: 0;
}

.custom-checkbox .custom-control-input,
.custom-radio .custom-control-input {
    width: 1.285rem;
    height: 1.285rem;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    width: 1rem;
    height: 1.225rem;
    opacity: 0;
}

button,
input {
    overflow: visible;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}

.custom-checkbox .custom-control-label,
.custom-radio .custom-control-label {
    font-size: 1rem;
    position: static;
    color: #6e6b7b;
}

.dark-theme .custom-checkbox .custom-control-label,
.dark-theme .custom-radio .custom-control-label {
    color: #b4b7bd;
}

.custom-control-label {
    margin-bottom: 0;
}

.custom-control-label {
    position: relative;
    vertical-align: middle;
}

.custom-control-primary.custom-checkbox .custom-control-input:active ~ .custom-control-label:before,
.custom-control-primary.custom-checkbox .custom-control-input:checked ~ .custom-control-label:before,
.custom-control-primary.custom-checkbox .custom-control-input:focus ~ .custom-control-label:before,
.custom-control-primary.custom-radio .custom-control-input:active ~ .custom-control-label:before,
.custom-control-primary.custom-radio .custom-control-input:checked ~ .custom-control-label:before,
.custom-control-primary.custom-radio .custom-control-input:focus ~ .custom-control-label:before {
    -webkit-box-shadow: 0 2px 4px 0 rgba(115, 103, 240, 0.4) !important;
    box-shadow: 0 2px 4px 0 rgba(115, 103, 240, 0.4) !important;
}

.custom-control-primary .custom-control-input:active ~ .custom-control-label:before,
.custom-control-primary .custom-control-input:checked ~ .custom-control-label:before {
    border-color: var(--primary);
    background-color: var(--primary);
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label:before,
.custom-radio .custom-control-input:checked ~ .custom-control-label:before {
    -webkit-box-shadow: 0 2px 4px 0 rgba(115, 103, 240, 0.4) !important;
    box-shadow: 0 2px 4px 0 rgba(115, 103, 240, 0.4) !important;
}

.custom-radio .custom-control-label:before {
    border-radius: 50% !important;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    -ms-border-radius: 50% !important;
    -o-border-radius: 50% !important;
}

.custom-control-input:checked ~ .custom-control-label:before {
    color: #fff;
}

.custom-radio .custom-control-label:after,
.custom-radio .custom-control-label:before {
    width: 1rem;
    height: 1rem;
}

.custom-checkbox .custom-control-label:after,
.custom-checkbox .custom-control-label:before {
    width: 18px;
    height: 18px;
}

.custom-radio .custom-control-label:before {
    top: 0.25rem;
}

.custom-control-label:before {
    background-color: #fff;
    border: 1px solid #d8d6de;
}

.dark-theme .custom-control-label:before {
    background-color: #111727;
    border: 1px solid var(--dark-border);
}

.custom-control-label:before,
.custom-file-label,
.custom-select {
    -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, background 0s, border-color 0s, -webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, background 0s, border-color 0s, -webkit-box-shadow 0.15s ease-in-out;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background 0s, border-color 0s;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, background 0s, border-color 0s, -webkit-box-shadow 0.15s ease-in-out;
}

.custom-control-label:before {
    content: "";
    position: absolute;
    top: 0.225rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
    background-image: none;
}

.custom-checkbox .custom-control-label:after,
.custom-checkbox .custom-control-label:before,
.custom-radio .custom-control-label:after,
.custom-radio .custom-control-label:before {
    left: 0;
}

.custom-control-label:after {
    background: no-repeat 50%/50% 50%;
}

.custom-control-label:after {
    content: "";
    position: absolute;
    top: 0.225rem;
    display: block;
    width: 1rem;
    height: 1rem;
}

.custom-checkbox.custom-control,
.custom-radio.custom-control {
    padding-left: 1.8rem;
}

.custom-control {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 1.45rem;
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
}

.custom-checkbox .custom-control-label:before {
    border-radius: 3px;
}

.custom-checkbox .custom-control-label:after,
.custom-checkbox .custom-control-label:before {
    top: 0.07rem;
}

.custom-checkbox .custom-control-label:after {
    background-size: 57%;
}

.custom-control-label:after {
    background: no-repeat 50%/50% 50%;
}

.custom-control-input:checked ~ .custom-control-label:before {
    border-color: var(--primary);
    background-color: var(--primary);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border-color: var(--primary);
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 0.2rem rgb(115 103 240 / 25%);
}

/* Form Control End */

/* Input Group Start */
.input-group {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%;
}

.input-group-append,
.input-group-prepend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.input-group-text {
    padding: 0.438rem 1rem;
    margin-bottom: 0;
    text-align: center;
    background-color: #fff;
    border: 1px solid #d8d6de;
    border-radius: 0.357rem;
}

.dark-theme .input-group-text {
    background-color: #111727;
    border: 1px solid var(--dark-border);
    color: #b4b7bd;
}

.input-group-text {
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.45;
    color: #6e6b7b;
    white-space: nowrap;
}

.input-group > .custom-select:not(:first-child),
.input-group > .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.input-group > .custom-file,
.input-group > .custom-select,
.input-group > .form-control,
.input-group > .form-control-plaintext {
    margin-bottom: 0;
}

.input-group > .custom-file,
.input-group > .custom-select,
.input-group > .form-control,
.input-group > .form-control-plaintext {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
}

.input-group-sm > .custom-select,
.input-group-sm > .form-control,
.input-group-sm > .input-group-append > .btn,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.input-group-sm > .input-group-prepend > .input-group-text {
    padding: 0.188rem 0.857rem;
    height: 2.142rem;
    font-size: 0.857rem;
    line-height: 1;
    border-top-left-radius: 0.357rem;
    border-bottom-left-radius: 0.357rem;
}

    .input-group-sm > .custom-select,
    .input-group-sm > .form-control:not(textarea) {
        height: 2.142rem;
        border-top-right-radius: 0.357rem;
        border-bottom-right-radius: 0.357rem;
    }

/* Input Group End */

/* Selectpicker Start */
.bootstrap-select .dropdown-toggle .filter-option {
    display: flex;
    align-items: center;
}

.bootstrap-select > .dropdown-toggle:after {
    margin-top: 0;
}

/* Selectpicker End */

/* Daterangepicker Start */
.daterangepicker .calendar-table .next span,
.daterangepicker .calendar-table .prev span {
    border: solid #6e6b7b;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}

.dark-theme .daterangepicker {
    background-color: #0e1321;
    border: 1px solid var(--dark-border);
}

    .dark-theme .daterangepicker .calendar-table {
        border: 1px solid var(--dark-border);
        background-color: #0e1321;
    }

.daterangepicker td.active,
.daterangepicker td.active:hover {
    background-color: var(--primary) !important;
    border-color: transparent;
    color: #fff !important;
}

.dark-theme .daterangepicker td.off,
.dark-theme .daterangepicker td.off.in-range,
.dark-theme .daterangepicker td.off.start-date,
.dark-theme .daterangepicker td.off.end-date {
    background-color: #0e1321;
    border-color: transparent;
    color: #818181;
}

.dark-theme .daterangepicker .drp-buttons {
    border-top: 1px solid var(--dark-border);
}

.daterangepicker td.in-range {
    background-color: rgba(115, 103, 240, 0.12);
    color: var(--primary);
}

.dark-theme .daterangepicker td:not(.in-range).available:hover,
.dark-theme .daterangepicker th:not(.in-range).available:hover {
    background-color: #202938;
}

.dark-theme .daterangepicker:before {
    border-bottom: 7px solid var(--dark-border);
}

.dark-theme .daterangepicker:after {
    border-bottom: 6px solid #0e1321;
}

.daterangepicker select.monthselect,
.daterangepicker select.yearselect,
.daterangepicker select.hourselect, 
.daterangepicker select.minuteselect, 
.daterangepicker select.secondselect, 
.daterangepicker select.ampmselect {
    border: 1px solid var(--light-border);
    color: #6e6b7b;
    background-color: #fff;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    transition: all 250ms ease-in-out;
    -webkit-transition: all 250ms ease-in-out;
    -moz-transition: all 250ms ease-in-out;
    -ms-transition: all 250ms ease-in-out;
    -o-transition: all 250ms ease-in-out;
}

.daterangepicker select.monthselect:focus,
.daterangepicker select.yearselect:focus,
.daterangepicker select.hourselect:focus,
.daterangepicker select.minuteselect:focus,
.daterangepicker select.secondselect:focus,
.daterangepicker select.ampmselect:focus {
    border: 1px solid var(--primary);
    outline: none;
}

.dark-theme .daterangepicker select.monthselect,
.dark-theme .daterangepicker select.yearselect,
.dark-theme .daterangepicker select.hourselect,
.dark-theme .daterangepicker select.minuteselect,
.dark-theme .daterangepicker select.secondselect,
.dark-theme .daterangepicker select.ampmselect {
    background-color: #0e1321;
    border: 1px solid var(--dark-border);
    color: #b4b7bd;
}

.daterangepicker.show-ranges.ltr .drp-calendar.left {
    border-left: 1px solid #d5d5d5;
}

.dark-theme .daterangepicker.show-ranges.ltr .drp-calendar.left {
    border-left: 1px solid var(--dark-border);
}

.daterangepicker .ranges li.active {
    background-color: var(--primary);
    color: #fff;
}

.daterangepicker .ranges li:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}

.daterangepicker .applyBtn {
    background-color: var(--primary);
}
/* Daterangepicker End */
/* Bootstrap Modal Start */
.dark-theme .modal-content {
    background-color: #111727;
    border: 1px solid var(--dark-border);
}

.dark-theme .modal-header {
    border-bottom: 1px solid var(--dark-border);
}

.dark-theme .modal-footer {
    border-top: 1px solid var(--dark-border);
}

.modal .close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: var(--danger);
    text-shadow: none;
    opacity: 1;
}

/* Bootstrap Modal End */

/* Perfect Scrollbar  Start */
.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
    background-color: transparent;
}

/* Perfect Scrollbar  End */

/* Power Source Icons Start */
.powerSource_icon {
    position: relative;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.powerSource_None {
    position: relative;
    background-color: #c2f6ff;
    text-align: left;
}

.dark-theme .powerSource_None {
    background-color: var(--cyan);
}

.powerSource_None span {
    position: absolute;
    top: -1px;
    left: 2px;
    z-index: 1;
    color: #2db9cf;
    transform: rotate(45deg) skewX(0deg) scale(1);
    -webkit-transform: rotate(45deg) skewX(0deg) scale(1);
    -moz-transform: rotate(45deg) skewX(0deg) scale(1);
    -ms-transform: rotate(45deg) skewX(0deg) scale(1);
    -o-transform: rotate(45deg) skewX(0deg) scale(1);
    font-size: 13px;
    font-weight: 500;
}

.dark-theme .powerSource_None span {
    color: #fff;
}

.powerSource_None:before,
.powerSource_None:after {
    content: "";
    position: absolute;
    background-color: inherit;
}

.powerSource_None,
.powerSource_None:before,
.powerSource_None:after {
    width: 1em;
    height: 1em;
    border-top-right-radius: 30%;
}

.powerSource_None {
    transform: rotate(-60deg) skewX(-30deg) scale(1, 0.866) translate(6px, 4px);
    -webkit-transform: rotate(-60deg) skewX(-30deg) scale(1, 0.866) translate(6px, 4px);
    -moz-transform: rotate(-60deg) skewX(-30deg) scale(1, 0.866) translate(6px, 4px);
    -ms-transform: rotate(-60deg) skewX(-30deg) scale(1, 0.866) translate(6px, 4px);
    -o-transform: rotate(-60deg) skewX(-30deg) scale(1, 0.866) translate(6px, 4px);
}

    .powerSource_None:before {
        transform: rotate(-135deg) skewX(-45deg) scale(1.414, 0.707) translate(0, -50%);
    }

    .powerSource_None:after {
        transform: rotate(135deg) skewY(-45deg) scale(0.707, 1.414) translate(50%);
    }

.powerSource_Mains,
.powerSource_Genset {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 500;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
    margin-right: 0.5rem;
}

.powerSource_Mains {
    background: #ecffb9;
    color: #8ba34a;
}

.dark-theme .powerSource_Mains {
    background: #8ba34a;
    color: #ecffb9;
}

.powerSource_Genset {
    background: #ffdec9;
    color: #e38346;
}

.dark-theme .powerSource_Genset {
    color: #ffdec9;
    background: #e1874e;
}

.powerSource_Battery {
    font-size: 22px;
    color: var(--info);
}

/* Power Source Icons End */

/* Multisites Summary Start */
.SummaryWrapper {
    position: relative;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.alarm-records-card .SummaryWrapper {
    border-left: 1px solid var(--light-border);
    margin-left: 1rem;
}

.dark-theme .alarm-records-card .SummaryWrapper {
    border-left: 1px solid var(--dark-border);
}

.SummaryWrapper .summaryBox {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0.375rem 1rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    margin: 0.5rem 0;
}

    .SummaryWrapper .summaryBox .summaryBoxIcon {
        position: relative;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        margin-right: 4px;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
    }

.summaryBoxLabel {
    position: relative;
    font-weight: 500;
    color: #a6a4b0;
    margin-right: 0.375rem;
}

/* Multisites Summary End */

/* Google Map Cluster Start */
.custom-clustericon {
    background: rgba(115, 103, 240, 0.85);
    color: #fff;
    border-radius: 100%;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-border-right-cust {
    border-right: 1px solid var(--light-border);
}

.dark-theme .side-border-right-cust {
    border-right: 1px solid var(--dark-border);
}

.graes-sidecolpse-brdr-lft-cust {
    border-left: 1px solid var(--light-border);
}

.dark-theme .graes-sidecolpse-brdr-lft-cust {
    border-left: 1px solid var(--dark-border);
}

.border-right {
    border-right: 1px solid var(--light-border) !important;
}

.dark-theme .border-right {
    border-right: 1px solid var(--dark-border) !important;
}

.border-top {
    border-top: 1px solid var(--light-border) !important;
}

.dark-theme .border-top {
    border-top: 1px solid var(--dark-border) !important;
}

.border-left {
    border-left: 1px solid var(--light-border) !important;
}

.dark-theme .border-left {
    border-left: 1px solid var(--dark-border) !important;
}

.border-bottom {
    border-left: 1px solid var(--light-border) !important;
}

.dark-theme .border-bottom {
    border-left: 1px solid var(--dark-border) !important;
}

.custom-clustericon-1 {
    --cluster-color: #7367f0;
    box-shadow: 0 0 0 10px rgba(115, 103, 240, 0.35);
}

.custom-clustericon-2 {
    --cluster-color: #7367f0;
    box-shadow: 0 0 0 10px rgba(115, 103, 240, 0.35);
}

.custom-clustericon-3 {
    --cluster-color: #7367f0;
    box-shadow: 0 0 0 10px rgba(115, 103, 240, 0.35);
}

/* Google Map Cluster End */



/* jQuery Confirm Start */
.dark-theme .jconfirm .jconfirm-box {
    background: #111727;
}

.jconfirm .jconfirm-box.jconfirm-type-green {
    border-top: solid 7px var(--success) !important;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-green {
    background-color: var(--success) !important;
}

.jconfirm .jconfirm-box.jconfirm-type-red {
    border-top: solid 7px var(--danger) !important;
}

.jconfirm .jconfirm-box .jconfirm-buttons button.btn-red {
    background-color: var(--danger) !important;
}

/* jQuery Confirm End */


/*Power Source Row Start*/
.ps_row {
    align-items: center;
}
/*Power Source Row End*/

/*Adjustment for PowerSource Unknown Start*/
.powerSource_None {
    margin-right: 0.7rem !important;
}
/*Adjustment for PowerSource Unknown End*/

/* Power Source new icons start */

.powersource_img_wrapper {
    margin-right: 0.25rem;
    margin-left: 0.25rem;
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

    .powersource_img_wrapper img {
        height: 20px;
        object-fit: contain;
    }

    .powersource_img_wrapper.ps_battery {
        background-color: var(--info-light);
    }

    .powersource_img_wrapper.ps_mains {
        background-color: var(--danger-light);
    }

    .powersource_img_wrapper.ps_genset {
        background-color: var(--primary-light);
    }

    .powersource_img_wrapper.ps_genset_one {
        background-color: var(--success-light);
    }

    .powersource_img_wrapper.ps_genset_two {
        background-color: var(--warning-light);
    }
/* Power Source new icons End */


/*Error Page Start*/
.misc-wrapper {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    height: 100vh;
    background: #111727;
    overflow: hidden;
}

.not-found {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
}

.not-found-des {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    text-align: center;
}

.not-found h1 {
    margin: 0 !important;
    opacity: .1;
    font-size: 30rem;
}

.not-found-des p:nth-child(1) {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.not-found-des p {
    text-shadow: 1px 1px rgb(0 0 0 / 50%);
    text-transform: capitalize !important;
}
/*Error Page End*/
/*Bootstrap Select Start*/
.bootstrap-select .dropdown-toggle.custom-dropdown-toggle:focus {
    outline: none !important;
    box-shadow: none;
}

.bootstrap-select .dropdown-menu li a.active, .bootstrap-select .dropdown-menu li a:active {
    background-color: transparent !important;
}

.bootstrap-select .dropdown-menu li a:before {
    content: '';
    background: #fff;
    width: 20px;
    height: 20px;
    border: 1px solid #d8d6de;
    z-index: 1;
    position: absolute;
    right: 7px;
    top: 4px;
    border-radius: 3px;
}

.dark-theme .bootstrap-select .dropdown-menu li a:before {
    border-color: var(--dark-border);
    background-color: #111727;
}

.bootstrap-select .dropdown-menu li a.selected:before {
    border-color: var(--primary) !important;
    background: var(--primary) !important;
    -webkit-box-shadow: 0 2px 4px 0 var(--primary) !important;
    box-shadow: 0 2px 4px 0 var(--primary) !important;
}

.bootstrap-select .bs-ok-default:after {
    border-width: 0 0.18em 0.18em 0 !important;
    transform: translateY(4px) rotate(45deg) !important;
    -webkit-transform: translateY(4px) rotate(45deg) !important;
    -moz-transform: translateY(4px) rotate(45deg) !important;
    -ms-transform: translateY(4px) rotate(45deg) !important;
    -o-transform: translateY(4px) rotate(45deg) !important;
}

.bootstrap-select .dropdown-menu li a .bs-ok-default:after {
    position: absolute;
    z-index: 1;
    top: -3px;
    right: -1px;
}

.bootstrap-select > .dropdown-toggle.custom-dropdown-toggle.bs-placeholder,
.bootstrap-select > .dropdown-toggle.custom-dropdown-toggle.bs-placeholder:active,
.bootstrap-select > .dropdown-toggle.custom-dropdown-toggle.bs-placeholder:focus,
.bootstrap-select > .dropdown-toggle.custom-dropdown-toggle.bs-placeholder:hover {
    color: #6e6b7b;
}

.dark-theme .bootstrap-select > .dropdown-toggle.custom-dropdown-toggle.bs-placeholder,
.dark-theme .bootstrap-select > .dropdown-toggle.custom-dropdown-toggle.bs-placeholder:active,
.dark-theme .bootstrap-select > .dropdown-toggle.custom-dropdown-toggle.bs-placeholder:focus,
.dark-theme .bootstrap-select > .dropdown-toggle.custom-dropdown-toggle.bs-placeholder:hover {
    color: #b4b7bd;
}

.bootstrap-select .dropdown-menu li a.selected .bs-ok-default:after,
.bootstrap-select .dropdown-menu li a:hover .bs-ok-default:after {
    border-color: #fff;
}

.bootstrap-select .dropdown-menu li a.dropdown-item:hover {
    background-color: var(--primary-light);
    color: var(--primary);
}
/*Bootstrap Select End*/

.custom-dropdown .custom-dropdown-item:hover {
    cursor: pointer !important;
}

.pe-none {
    pointer-events: none !important;
}


/* Site List Nav Menu Start*/
.menu-content.site-nav-list{
    margin:5px 0px;
}

.menu-content.site-nav-list .site-nav-list-search-container{
    margin:0px 15px;
}


.menu-content.site-nav-list .site-nav-list-footer {
    border: 1px solid var(--light-border);
    border-left:0px;
    border-right:0px;
    padding: 5px 0px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.dark-theme .menu-content.site-nav-list .site-nav-list-footer {
    border: 1px solid var(--dark-border);
    border-left: 0px;
    border-right: 0px;
}
.menu-content.site-nav-list .site-nav-list-footer .dataTables_paginate {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-content.site-nav-list .site-nav-list-footer .dataTables_paginate .paginate_button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 15px;
    border: 1px solid rgba(0, 0, 0, 0.3);
    margin-right: -1px;
    overflow: hidden;
}

.menu-content.site-nav-list .site-nav-list-footer .dataTables_paginate .paginate_button.disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.menu-content.site-nav-list .site-nav-list-footer .dataTables_paginate .paginate_button:not(.disabled) {
    cursor: pointer;
}

.menu-content.site-nav-list .site-nav-list-footer .dataTables_paginate .paginate_button:first-of-type {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}

.menu-content.site-nav-list .site-nav-list-footer .dataTables_paginate .paginate_button:last-of-type {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
}

.dark-theme .menu-content.site-nav-list .site-nav-list-footer .site-nav-list-pagination-info {
    color: #d0d2d6;
}

.menu-content.site-nav-list .site-nav-list-footer .site-nav-list-pagination-inpt .inpt {
    width: 30px;
    padding-left: 0px;
    padding-right: 0px;
    text-align: center;
    font-size:14px;
}
.menu-content.site-nav-list .site-nav-list-footer .site-nav-list-pagination-btn .btn {
    padding:0.5rem;
}

.menu-content.site-nav-list .site-nav-list-footer .pagination .page-link{
    display:flex;
    font-size:1.5rem;
}

/* Site List Nav Menu End*/
@media (max-width: 991px) {
    .global-filter-nav-bar {
        overflow: hidden;
    }

    body.globalFilterMenuIsActive .global-filter-nav-bar {
        height: calc(100vh - 54px);
        display: block;
    }

    body.globalFilterMenuIsActive .app-content {
        padding: calc(54px + 1rem) 2rem 2rem 2rem;
    }

    .global-filters-container {
        display: block !important;
        height: calc(100% - 40px);
    }

    .global-filters-wrapper {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        max-width: 100% !important;
    }

    .global-filters-wrapper .global-filter-box {
        margin: 1rem 0.5rem !important;
        width: calc(100% - 1rem) !important;
    }

    .global-filters-wrapper .global-filter-box .dropdown-toggle {
        width: 100%;
    }

    .global-filters-wrapper .ps__rail-x,
    .global-filters-wrapper .ps__rail-y,
    .global-filters-wrapper .ps__thumb-y {
        display: none;
    }

    .dt-custom-dom-buttons {
        display: block;
    }

    .dt-custom-dom-top {
        display: block;
    }

    .dt-custom-dom-filter-pagination {
        justify-content: center;
    }

    .dt-custom-dom-top .dt-custom-dom-filter-pagination .dataTables_paginate {
        margin-left: 0 !important;
    }

    .dt-custom-dom-top .dt-custom-dom-lenght-info {
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .not-found h1 {
        font-size: 26rem;
    }

    .main-side-menu .navbar-header .btn-close-main-side-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: all;
    }

    body.sideMenuIsOpen .nav-bar {
        left: 0px !important;
        width: 100% !important;
    }

    body.sideMenuIsOpen .global-filter-nav-bar {
        left: 0 !important;
        width: 100% !important;
    }

    body.sideMenuIsOpen .app-content {
        margin-left: 0 !important;
    }

    body.sideMenuIsOpen .footer {
        margin-left: 0 !important;
    }

    body.sideMenuIsOpen .app-content-overlay {
        opacity: 1;
        visibility: visible;
    }
}

@media (max-width: 767px) {
    .dt-custom-dom-bottom {
        display: block;
    }

    .dt-custom-dom-bottom .dt-custom-dom-info {
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .dt-custom-dom-bottom .dt-custom-dom-pagination {
        margin-left: 0;
        justify-content: center;
    }

    .dt-custom-dom-bottom .dataTables_paginate {
        margin-left: 0 !important;
    }

    .dt-custom-dom-top .dt-custom-dom-lenght-info {
        display: block;
    }

    .dt-custom-dom-top .dt-custom-dom-lenght-info .dataTables_info {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .not-found h1 {
        font-size: 23rem;
    }

    .mt-md-3 {
        margin-top: 1rem !important;
    }
}

@media(max-width:640px) {
    .footer {
        font-size: 0.75rem;
    }

    .nav-bar-profile-menu .dropdown-item.pe-none.drp-usertile {
        display: block;
    }

    .nav-bar-profile-menu .profile-detail-container .user-name {
        display: none;
    }

    .btn.btn-sm.dropdown-toggle.btn-login {
        padding: 0.5rem;
        border-radius: 50px;
    }

    .not-found h1 {
        font-size: 14rem;
    }

    .not-found-des p:nth-child(1) {
        font-size: 1.8rem;
    }

    .not-found-des p:nth-child(2) {
        font-size: 1rem;
    }

    .not-found-des {
        top: calc(50% + 20px);
    }
}

@media(max-width: 576px) {
    .main-side-menu-resize-handle {
        display: none !important;
    }

    body.sideMenuIsOpen .main-side-menu {
        width: 100% !important;
    }
}
