﻿
#divOTP {
    display: none;
}

/* ===== TOP SECTION FIX ===== */
.card-body .d-flex {
    align-items: flex-start;
}

/* LEFT IMAGE BLOCK */
.flex-shrink-0 {
    width: 110px; /* fix width */
    flex: 0 0 110px;
}

/* RIGHT CONTENT */
.card-body .flex {
    flex: 1;
    min-width: 0; /* 🔥 IMPORTANT (fix overflow issue) */
}

/* TEXT CONTROL */
.card-body p {
    word-break: break-word;
}

/* LOCATION FIX */
.text-truncate {
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== NAV BAR FIX ===== */
.nav-container {
    display: flex;
    background: #32358a;
    padding: 6px;
    border-radius: 6px;
}

/* BUTTON FIX */
.nav-btn {
    flex: 1; /* equal width */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #fff;
    padding: 2px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap; /* ❌ no 2 line */
    overflow: hidden;
}

    /* REMOVE EXTRA MARGIN ISSUE */
    .nav-btn.me-2 {
        margin-right: 0 !important;
    }

    /* ICON */
    .nav-btn i {
        font-size: 16px;
    }

    /* TEXT */
    .nav-btn span {
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* HOVER */
    .nav-btn:hover {
        background: #4f4baf;
        transform: translateY(-2px);
    }

/* ===== RESPONSIVE ===== */

/* Medium screen → hide text */
@media (max-width: 1200px) {
    .nav-btn span {
        display: none !important;
    }
}

/* Mobile fix */
@media (max-width: 768px) {
    .flex-shrink-0 {
        width: 80px;
        flex: 0 0 80px;
    }
}


.excel_box {
    padding: 3px 10px 5px 10px;
    background: #c8e4c87a;
    border-radius: 4px;
    color: green !important;
    border: #00800038 0.5px solid;
    /* Smooth transition */
    transition: all 0.25s ease;
    /* Optional for better UX */
    cursor: pointer;
    display: inline-block;
}

    /* Hover effect */
    .excel_box:hover {
        box-shadow: 0 10px 15px rgba(0, 128, 0, 0.2);
        background: #ebf5eb7a;
        transform: translateY(-2px);
    }

    /* Click / Press effect */
    .excel_box:active {
        transform: scale(0.96);
        box-shadow: 0 4px 6px rgba(0, 128, 0, 0.2);
    }

    a.dropdown-item:hover {
        cursor: pointer !important;
    }


@media print {
    @page {
        size: 6in 4in landscape;
        margin: 0;
    }

    html, body {
        width: 576px;
        height: 384px;
        margin: 0;
        padding: 0;
        overflow: hidden;
    }

        body * {
            visibility: hidden;
        }

    #divVisitorPass, #divVisitorPass * {
        visibility: visible;
    }

    #divVisitorPass {
        position: absolute;
        left: 0;
        top: 0;
        width: 576px !important;
        height: 384px !important;
        transform: scale(1);
        transform-origin: top left;
        page-break-after: avoid;
    }

    .card, .p-2, .row {
        margin: 0 !important;
        padding: 2px !important;
    }

    img {
        max-width: 100% !important;
        height: auto !important;
    }

    button {
        display: none !important;
    }
}

video {
    width: 100%;
    border-radius: 12px;
}

video {
    transform: scaleX(-1);
}

.hide-login-card {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

/* Smooth slide + scale animation */
.modal.fade .modal-dialog {
    transform: translateY(100px) scale(0.9);
    transition: all 0.4s ease;
    opacity: 0;
}

.modal.show .modal-dialog {
    transform: translateY(0) scale(1);
    opacity: 1;
}

/* Background modal shrink effect */
.modal-stack-hide .modal-dialog {
    transform: scale(0.85) translateY(40px);
    opacity: 0.4;
}

#aptcountdown {
    font-size: 40px;
    font-weight: bold;
    position: absolute;
    top: 28%;
    color: #fff;
    text-shadow: 0 10px 10px #0000008c;
    width: 93.7%;
    text-align: center;
}

.camera_btn {
    width: 100%;
    padding: 16px;
    border: 2px solid #f1f1f1;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    display: inline-grid;
    /* Required for shine effect */
    position: relative;
    overflow: hidden;
    /* Smooth animation */
    transition: all 0.3s ease;
}

    /* Title */
    .camera_btn b {
        font-weight: 700;
        color: #0D0C0C;
        transition: all 0.3s ease;
    }

    /* Subtitle */
    .camera_btn span {
        color: #161515;
        font-size: 14px;
    }

    /* 🔥 Hover Effect */
    .camera_btn:hover {
        background: rgba(230, 232, 255, 0.6);
        border: 2px solid #B1B7F9;
        /* Glass shadow */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), inset 0 0 12px rgba(255, 255, 255, 0.6);
        transform: translateY(-5px) scale(1.02);
    }

        /* Text color change */
        .camera_btn:hover b {
            color: #313993;
        }

    /* ✨ Shine Effect */
    .camera_btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient( 120deg, transparent, rgba(255, 255, 255, 0.6), transparent );
        transition: 0.5s;
    }

    .camera_btn:hover::before {
        left: 100%;
    }

.modal-backdrop.show {
    z-index: 1 !important;
}

.camera-container {
    position: relative;
    width: 320px;
    height: 240px;
    margin: auto;
}

#video {
    width: 100%;
    height: 100%;
    border: 2px solid #00ccff;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.6);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

ol.list_number li {
    list-style: auto;
    font-size: 10px;
}

.fs_11 {
}

.check_in_box {
    position: absolute;
    background: #fff;
    z-index: 1;
    box-shadow: 0 0 10px #0000002e;
    overflow: auto;
    width: auto;
}

/*.topbar-user .dropdown-menu {
    top: 72px !important;
    right: 0 !important;
}
*/
.navbar-menu .navbar-nav .nav-link {
    color: #abb9e8 !important;
}

    .navbar-menu .navbar-nav .nav-link[data-bs-toggle=collapse][aria-expanded=true]:after {
        color: #fff !important;
    }



.navbar-menu .navbar-nav .nav-sm .nav-link {
    color: #abb9e8 !important;
}

:is([data-layout=vertical],[data-layout=semibox])[data-sidebar-size=sm] .navbar-menu .navbar-nav .nav-item:hover > .menu-dropdown {
    background: #373489 !important;
}

.navbar-menu .navbar-nav .nav-link.active {
    /* background: #282578 !important;*/
    color: #fff !important;
    font-weight: 600;
}

.navbar-menu .navbar-nav .nav-link:hover {
    color: #fff !important;
    /*text-decoration: underline;*/
    /*background: #fff !important;*/
}

/*.navbar-menu .navbar-nav .nav-link {

    color: #fff !important;

}*/

.pointer {
    cursor: pointer !important;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/segui-ui/SegoeUIBlack.eot');
    src: url('../fonts/segui-ui/SegoeUIBlack.eot?#iefix') format('embedded-opentype'), url('../fonts/segui-ui/SegoeUIBlack.woff2') format('woff2'), url('../fonts/segui-ui/SegoeUIBlack.woff') format('woff'), url('../fonts/segui-ui/SegoeUIBlack.ttf') format('truetype'), url('../fonts/segui-ui/SegoeUIBlack.svg#SegoeUIBlack') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/segui-ui/SegoeUI-SemiBold.eot');
    src: url('../fonts/segui-ui/SegoeUI-SemiBold.eot?#iefix') format('embedded-opentype'), url('../fonts/segui-ui/SegoeUI-SemiBold.woff2') format('woff2'), url('../fonts/segui-ui/SegoeUI-Semibold.woff') format('woff'), url('../fonts/segui-ui/SegoeUI-SemiBold.ttf') format('truetype'), url('../fonts/segui-ui/SegoeUI-SemiBold.svg#SegoeUI-SemiBold') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/segui-ui/SegoeUI-Bold.eot');
    src: url('../fonts/segui-ui/SegoeUI-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/segui-ui/SegoeUI-Bold.woff2') format('woff2'), url('../fonts/segui-ui/SegoeUI-Bold.woff') format('woff'), url('../fonts/segui-ui/SegoeUI-Bold.ttf') format('truetype'), url('../fonts/segui-ui/SegoeUI-Bold.svg#SegoeUI-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/segui-ui/SegoeUI-Semibold.eot');
    src: url('../fonts/segui-ui/SegoeUI-Semibold.eot?#iefix') format('embedded-opentype'), url('../fonts/segui-ui/SegoeUI-Semibold.woff2') format('woff2'), url('../fonts/segui-ui/SegoeUI-Semibold.woff') format('woff'), url('../fonts/segui-ui/SegoeUI-Semibold.ttf') format('truetype'), url('../fonts/segui-ui/SegoeUI-Semibold.svg#SegoeUI-Semibold') format('svg');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Segoe UI';
    src: url('../fonts/segui-ui/SegoeUI.eot');
    src: url('../fonts/segui-ui/SegoeUI.eot?#iefix') format('embedded-opentype'), url('../fonts/segui-ui/SegoeUI.woff2') format('woff2'), url('../fonts/segui-ui/SegoeUI.woff') format('woff'), url('../fonts/segui-ui/SegoeUI.ttf') format('truetype'), url('../fonts/segui-ui/SegoeUI.svg#SegoeUI') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


html,
body {
    margin: 0px;
    padding: 0px;
    font-family: 'SegoeUI';
}

ul, li {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

a, a:hover {
    text-decoration: none;
}

#header {
    position: absolute;
    left: 0;
    right: 0;
    height: 55px;
    z-index: 99;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
}

.header-fixed #header {
    position: fixed;
}

.no-sidebar #header {
    right: 12px;
}

.headerbar {
    position: relative;
    min-height: 55px;
}

    .headerbar:before, .headerbar:after {
        content: " ";
        display: table;
    }

    .headerbar:after {
        clear: both;
    }

    .headerbar .navbar-devider {
        display: block;
        width: 20px;
        height: 5px;
    }

.headerbar-left {
    position: absolute;
}

    .headerbar-left a {
        float: left;
    }

    .headerbar-left .header-nav {
        margin-left: 5px;
    }

.headerbar-right {
    float: right;
}

    .headerbar-right .header-nav {
        display: inline-block;
        float: left;
    }

    .headerbar-right .dropdown-menu {
        left: auto;
        right: auto;
    }

    .headerbar-right .header-nav-toggle {
        margin-left: 0;
    }

.header-nav {
    margin: 0 12px;
    padding-left: 0;
    list-style: none;
}

    .header-nav > li {
        position: relative;
        display: block;
        padding: 16px 10px;
        float: left;
    }

        .header-nav > li:first-child {
            padding-left: 0;
            padding: 12px 10px;
        }

        .header-nav > li > a {
            position: relative;
            display: block;
        }

        .header-nav > li.disabled > a:hover, .header-nav > li.disabled > a:focus {
            text-decoration: none;
            cursor: not-allowed;
        }

        .header-nav > li > a > img {
            max-width: none;
        }

    .header-nav .navbar-search {
        float: right;
    }

    .header-nav .header-nav-brand {
        display: inline-table;
        padding: 0;
        height: 55px;
        margin-left: 10px;
    }

        .header-nav .header-nav-brand .brand-holder {
            display: table-cell;
            vertical-align: middle;
        }

        .header-nav .header-nav-brand a {
            text-decoration: none;
        }

        .header-nav .header-nav-brand img.logo {
            width: 120px;
            margin: 10px 0px;
        }

        .header-nav .header-nav-brand img.post_logo {
            width: 200px;
            margin: 20px 20px;
        }

.mobile_logo {
    display: none;
    width: 120px;
}

.header-nav-profile .dropdown {
    padding: 0;
    font-size: 14px;
}

    .header-nav-profile .dropdown > a {
        position: relative;
        min-height: 55px;
        min-width: 210px;
        color: #fff;
    }

    .header-nav-profile .dropdown.open > a {
        margin-top: 6px;
        padding: 6px 12px 12px 12px;
        min-height: 58px;
    }

        .header-nav-profile .dropdown.open > a:after {
            top: 16px;
            -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
            -o-transform: rotate(180deg);
            transform: rotate(180deg);
        }

/*.header-nav-profile .dropdown.open .dropdown-menu {
        margin-top: -1px;
        border-top: none;
    }*/

.header-nav-options .dropdown > a .badge {
    position: absolute;
    font-size: 10px;
    top: -1px;
    right: 4px;
}

.sandwich-menu {
    display: none !important;
}

    .sandwich-menu .btn-icon-toggle {
        color: #000 !important;
    }

.user-profile .dropdown-menu {
    padding: 0px;
}


    .user-profile .dropdown-menu li {
        padding: 6px;
    }

        .user-profile .dropdown-menu li a {
            color: #333;
            font-size: 12px;
            padding: 6px 10px;
            /*display:block;*/
            border-bottom: 1px solid #eee;
        }

            .user-profile .dropdown-menu li a.active {
                background: #ffe9c7;
            }

.user-profile .dropdown-toggle a {
    color: #fff;
}

.footer_style {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 10;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
}

.welcome {
    margin-left: 7px;
    font-weight: 600;
    font-size: 13px;
    color: #FFF;
}

    .welcome.mobile {
        display: none;
    }

.header-nav > li > label {
    color: #fff;
    font-size: 13px;
    margin-right: 5px;
}

@media (min-width: 1200px) {
    .menubar-first.menubar-pin .header-nav .header-nav-brand {
        display: none;
    }

    .menubar-first.menubar-pin #header {
        left: 240px;
    }
}

@media (min-width: 769px) {
    .menubar-first #header .menubar-toggle {
        display: none;
    }

    .menubar-first #header {
        left: 64px;
    }


    element.style {
    }

    .footer_style {
        position: fixed;
        bottom: 0px;
        right: 0px;
        z-index: 10;
        color: #ffffff;
        font-size: 13px;
        font-weight: 500;
        width: 93%;
        background: #fff;
        color: #000;
        height: 40px;
        line-height: 3;
    }
}

@media ( width: 1024px) {
    .footer_style {
        position: fixed;
        bottom: 0px;
        right: 0px;
        z-index: 10;
        color: #ffffff;
        font-size: 13px;
        font-weight: 500;
        width: 93%;
        background: #fff;
        color: #000;
        height: 40px;
        line-height: 3;
    }
}

@media (min-width: 1200px) {
    .footer_style {
        bottom: 0;
        padding: 20px calc(1.5rem * .5);
        position: absolute;
        right: 0;
        color: #98a6ad;
        left: 250px;
        height: 60px;
        background-color: #fff;
    }
}

@media (max-width: 768px) {
    #header {
        position: relative;
    }

    .header-fixed #header {
        /*position: relative;*/
    }

        .header-fixed #header:before {
            content: '';
            z-index: 0;
            position: fixed;
            top: 0;
            display: block;
            width: 100%;
            height: 55px;
        }

    .headerbar-left {
        z-index: 999;
        left: 0;
        right: 0;
        height: 55px;
    }

    .header-fixed .headerbar-left {
        /*position: fixed;*/
    }

    .footer_style {
        position: fixed;
        bottom: 0px;
        right: 0px !important;
        z-index: 10;
        color: #000;
        font-size: 13px;
        font-weight: 500;
        background: #fff;
        padding: 12px;
        text-align: center;
        width: 100%;
    }

    .headerbar-right {
        position: absolute;
        left: 0;
        right: 0;
        min-height: 55px;
        top: 55px;
        float: none !important;
    }

        .headerbar-right .header-nav-options {
            margin-right: 12px;
            float: right;
        }

        .headerbar-right .header-nav-profile {
            /*position: absolute;
		float: left;*/
        }

        .headerbar-right .header-nav-toggle {
            position: absolute;
            z-index: 1012;
            top: -64px;
            right: 0;
        }

    .header-fixed .headerbar-right .header-nav-toggle {
        position: fixed;
        top: 0;
    }

    .headerbar-left .header-nav {
        margin-left: 5px;
    }
    /*.header-nav-profile .dropdown img {
	    width: 0px;
	    opacity: 0;
	  }*/
    .header-nav-profile .dropdown .profile-info {
        padding-left: 0;
        padding-right: 30px;
    }

    .navbar-search {
        position: relative;
        z-index: 1;
    }

        .navbar-search.expanded .form-group {
            max-width: 100%;
            width: 480px;
        }
}

#menubar {
    position: fixed;
    z-index: 1004;
    left: 0;
    top: 55px;
    bottom: 0;
    width: 55px;
}

.menubar-first #menubar {
    z-index: 1006;
}

#menubar:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 100%;
}

#menubar .nano:focus, #menubar .nano-content:focus {
    outline: none;
}

#menubar .nano-pane {
    z-index: 2;
    width: 5px;
}

#menubar .menubar-scroll-panel {
    position: relative;
    padding-top: 10px;
    z-index: 2;
    min-height: 100%;
}

#menubar .menubar-foot-panel {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 16px;
}

.menubar-visible #menubar {
    width: 250px;
    left: 0px;
}

#menubar.animate {
    -webkit-transition: width 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
    -o-transition: width 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
    transition: width 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
}

body:not(.header-fixed) #menubar, .menubar-first #menubar {
    top: 0;
}

.menubar-fixed-panel {
    position: relative;
    display: inline-table;
    width: 100%;
    /*height: 64px;*/
    z-index: 10;
}

    .menubar-fixed-panel > div {
        display: table-cell;
        vertical-align: middle;
        padding: 10px 0 0 14px;
    }

        .menubar-fixed-panel > div:first-child {
            max-width: 26px;
        }

    .menubar-fixed-panel a {
        text-decoration: none;
    }

    .menubar-fixed-panel img {
        max-height: 48px;
    }

    .menubar-fixed-panel .expanded {
        display: none;
    }

.menubar-visible .menubar-fixed-panel .expanded, .menubar-pin .menubar-fixed-panel .expanded {
    display: table-cell;
}

body:not(.menubar-first) .menubar-fixed-panel {
    /*display: none;*/
}

.hidden-folded {
    display: none;
}

.menubar-visible .hidden-folded {
    display: inherit;
    text-align: CENTER;
}

@media (min-width: 1200px) {
    .menubar-pin #menubar {
        width: 360px;
    }

    .menubar-pin .brand-holder {
        display: table-cell;
    }

    .menubar-pin .hidden-folded {
        display: inherit;
    }
}

@media (max-width: 768px) {
    #menubar {
        /*width: 240px;*/
        left: 250px;
        z-index: 1013;
        -webkit-transform: translate(-250px, 0);
        -ms-transform: translate(-250px, 0);
        -o-transform: translate(-250px, 0);
        transform: translate(-250px, 0);
        -webkit-transition: -webkit-transform 0.5s ease-in;
        -moz-transition: -moz-transform 0.5s ease-in;
        -o-transition: -o-transform 0.5s ease-in;
        transition: transform 0.5s ease-in;
    }

    .menubar-visible #menubar {
        -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
        -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
        -moz-transition: -moz-transform 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
        -o-transition: -o-transform 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
        transition: transform 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
    }
}

.gui-controls {
    font-size: 12px;
    padding: 0;
    margin-bottom: 30px;
    margin-left: -5px;
}

    .gui-controls small {
        display: block;
        margin: 30px 12px 12px 12px;
        font-size: 10px;
        font-weight: 500;
        opacity: 0.7;
    }

    .gui-controls li:first-child > small {
        margin-top: 0;
    }

    .gui-controls .badge {
        position: absolute;
        top: 1px;
        margin-left: 8px;
        border-radius: 2px;
        padding: 2px 4px;
        font-size: 10px;
    }

    .gui-controls li {
        list-style: none;
    }

        .gui-controls li.gui-folder > a {
            cursor: pointer;
        }

    .gui-controls > li {
        position: relative;
        margin-bottom: 12px;
    }

        .gui-controls > li > a {
            position: relative;
            display: block;
            text-decoration: none;
            padding: 12px 0px;
            font-size: 12px;
            line-height: normal;
            border-radius: 0;
            padding-left: 0;
            min-height: 40px;
            min-width: 64px;
            z-index: 1;
            text-transform: uppercase;
        }

            .gui-controls > li > a.btn-flat {
                padding: 12px 0px;
            }

            .gui-controls > li > a:focus {
                outline: none;
            }

        .gui-controls > li ul > li > a {
            position: relative;
            display: block;
            text-decoration: none;
            padding: 7px 17px;
            font-size: 12px;
            line-height: normal;
            border-radius: 0;
            padding-left: 75px;
            text-transform: uppercase;
        }

            .gui-controls > li ul > li > a.btn-flat {
                padding: 7px 8.5px;
            }

    .gui-controls li ul {
        padding: 0;
        display: none;
    }

    .gui-controls li.expanded > ul {
        display: block;
    }

    .gui-controls > li > ul > li > ul li:before {
        left: 82px;
    }

    .gui-controls > li > ul > li > ul a {
        padding-left: 90px;
    }

        .gui-controls > li > ul > li > ul a:before {
            left: 78px;
        }

    .gui-controls > li > ul > li > ul > li > ul li:before {
        left: 72px;
    }

    .gui-controls > li > ul > li > ul > li > ul a {
        padding-left: 99px;
    }

        .gui-controls > li > ul > li > ul > li > ul a:before {
            left: 72px;
        }

    .gui-controls > li > ul > li > ul > li > ul > li > ul li:before {
        left: 93px;
    }

    .gui-controls > li > ul > li > ul > li > ul > li > ul a {
        padding-left: 120px;
    }

        .gui-controls > li > ul > li > ul > li > ul > li > ul a:before {
            left: 93px;
        }

    .gui-controls > li > ul > li > ul > li > ul > li > ul > li > ul li:before {
        left: 114px;
    }

    .gui-controls > li > ul > li > ul > li > ul > li > ul > li > ul a {
        padding-left: 141px;
    }

        .gui-controls > li > ul > li > ul > li > ul > li > ul > li > ul a:before {
            left: 114px;
        }

    .gui-controls > li ul > li {
        position: relative;
    }

        .gui-controls > li ul > li:before {
            content: "";
            left: 60px;
            top: 15px;
            bottom: -28px;
            position: absolute;
            display: block;
            width: 1px;
            border-left: 1px dashed rgba(12, 12, 12, 0.3);
            z-index: 1;
        }

        .gui-controls > li ul > li:first-child:before {
            top: 0;
        }

        .gui-controls > li ul > li:last-child:before, .gui-controls > li ul > li.last-child:before {
            display: none;
        }

        .gui-controls > li ul > li > a:before {
            content: "";
            left: 56px;
            top: 8px;
            position: absolute;
            display: block;
            width: 21px;
            z-index: 1;
        }

    .gui-controls li .title {
        position: relative;
        left: -10px;
        display: block;
        padding-left: 6px;
        white-space: nowrap;
        overflow: hidden;
        opacity: 0;
        text-shadow: none;
        -webkit-transition: all 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
        -o-transition: all 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
        transition: all 0.5s cubic-bezier(0.15, 0.99, 0.18, 1.01);
    }

    .gui-controls li.active > a .title {
        font-weight: 500;
    }

    .gui-controls li.gui-folder > a .title {
        font-style: italic;
    }

    .gui-controls > li > a .title {
        margin-left: 57px;
    }

.expanded-menu-title .gui-controls li .title {
    left: 0;
    opacity: 1;
}

.menubar-visible .gui-controls li .title {
    left: 0;
    opacity: 1;
    white-space: normal;
}

.gui-folder > a:after {
    content: "+";
    position: absolute;
    top: 7px;
    display: inline-block;
    margin-left: -12px;
    font-size: 12px;
    font-weight: inherit;
    opacity: 0;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear;
}

.gui-folder.expanding > a:after, .gui-folder.expanded > a:after {
    font-size: 16px;
    font-weight: 400;
    margin-top: -2px;
    margin-left: -12px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

.gui-controls > .gui-folder > a:after {
    top: 12px;
    margin-left: 2px;
}

.gui-controls > .gui-folder.expanding > a:after, .gui-controls > .gui-folder.expanded > a:after {
    margin-left: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.expanded-menu-sign .gui-folder > a:after {
    opacity: 1;
}

.menubar-visible .gui-folder > a:after {
    opacity: 1;
}

.gui-icon {
    position: absolute;
    left: 12px;
    top: 0;
    width: 40px;
    height: 40px;
    font-size: 22px;
    overflow: hidden;
    border-radius: 999px;
    -webkit-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    transition: all 0.15s linear;
    line-height: 40px;
    text-align: center;
}

    .gui-icon .fa:first-child, .gui-icon .md:first-child, .gui-icon .glyphicon:first-child {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        margin: auto;
        line-height: 40px;
        width: 1em;
    }

    .gui-icon .fa.fa-home {
        font-size: 28px;
    }

    .gui-icon:hover img {
        left: -5px;
        top: -5px;
    }

.gui-controls a.blink .gui-icon {
    -webkit-animation: normal 1.4s 4 blink cubic-bezier(0.9, 0, 0.1, 1);
    -o-animation: normal 1.4s 4 blink cubic-bezier(0.9, 0, 0.1, 1);
    animation: normal 1.4s 4 blink cubic-bezier(0.9, 0, 0.1, 1);
    -webkit-animation: normal 1.4s 4 blink cubic-bezier(0.9, 0, 0.1, 1) 1s ease-in;
    -moz-animation: normal 1.4s 4 blink cubic-bezier(0.9, 0, 0.1, 1) 1s ease-in;
    -ms-animation: normal 1.4s 4 blink cubic-bezier(0.9, 0, 0.1, 1) 1s ease-in;
    -o-animation: normal 1.4s 4 blink cubic-bezier(0.9, 0, 0.1, 1) 1s ease-in;
    animation: normal 1.4s 4 blink cubic-bezier(0.9, 0, 0.1, 1) 1s ease-in;
}

@media (min-width: 1200px) {
    .menubar-pin .gui-controls li .title {
        left: 0;
        opacity: 1;
    }

    .menubar-pin .gui-folder > a:after {
        opacity: 1;
    }
}

.menubar-toggle i {
    font-size: 26px;
}

#base {
    overflow: hidden;
    padding-left: 55px;
    width: 100%;
    min-height: 100%;
}

    #base > .backdrop {
        position: fixed;
        z-index: 1031;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        display: block;
    }

    #base.hide-backdrop > .backdrop {
        display: none;
        position: relative;
    }

#content {
    position: relative;
    width: 100%;
    left: 0;
    padding-top: 55px;
}

@media (min-width: 769px) {
    .full-content #base, .full-content #content {
        height: 100%;
    }
}

.sub-menu > a::after {
    content: "\f078";
    font-family: 'FontAwesome';
    position: absolute;
    float: right;
    right: 15px;
    top: 15px;
    font-weight: 500;
    font-size: 12px;
    opacity: 0;
    transition: all .2s ease-in-out;
    color: #FFF;
}

.sub-menu.expanded > a::after {
    content: "\f078";
    font-family: "FontAwesome";
    -ms-transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.sub-menu > ul > .sub-menu > a::after {
    top: 8px !important;
}

.menubar-visible .gui-controls li.sub-menu a::after {
    opacity: 1;
}

.btn-icon-toggle {
    padding: 0;
    width: 36px;
    color: #FFF !important;
    background: none !important;
    border-color: transparent !important;
}

.user-profile .dropdown-toggle::after {
    border-top: .3em solid #fff;
    vertical-align: 2px;
}

.dropdown-toggle::after {
    display: inline-block;
    margin-left: .255em;
    font-size: 23px !important;
    line-height: 20px !important;
    content: "\f0140";
    font-family: "Material Design Icons";
    font-weight: normal !important;
    color: #656464 !important;
}

/*  .dropdown-toggle::after {
        display: inline-block;
        width: 0;
        height: 0;
        margin-left: .255em;
        vertical-align: .255em;
        content: "";
        border-top: .3em solid #000;
        border-right: .3em solid transparent;
        border-bottom: 0;
        border-left: .3em solid transparent;
    }*/

.text-logo {
    margin-top: 5px;
    margin-left: 10px;
}

.custom_select {
    background: #fff;
    border: 1px solid #fff;
    font-size: 14px;
    padding: 5px 5px;
    border-radius: 6px;
    font-weight: 500;
}

    .custom_select:focus {
        outline: none;
    }

/* MUTLISELECT BROWSE CSS */
.box {
    position: relative;
}

    .box strong {
        position: absolute;
        right: 0px;
        top: 0px;
    }

.inputfile {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.inputfile-6 + label {
    padding: 0;
    height: 40px !important;
    border: 1px solid #ced4da;
    border-radius: 0px;
    margin: 0px;
}

    .inputfile-6 + label span {
        display: inline-block;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        vertical-align: middle;
        line-height: 40px;
        padding-left: 10px;
        font-size: 13px;
        font-weight: normal;
        width: 70%;
        color: #707070;
    }

    .inputfile-6 + label strong {
        height: 100%;
        display: inline-block;
        float: right;
        padding: 6px 15px;
        font-weight: normal;
        font-size: 14px;
        line-height: 25px;
        border-top-right-radius: 6px;
        border-bottom-right-radius: 6px;
    }

    .inputfile-6 + label strong {
        background-color: #7fbb4a;
        color: #ffffff;
    }
/* END MULTISELECT BROWSE */

.main-content {
    /*    padding: 0px 0px 0px;
    background: #fff;
    margin: 0px 0px 20px;
    min-height: 90vh;*/

    padding: 0px 0px 0px;
    background: #fff;
    margin: 0px 0px 38px;
    /*min-height: 90vh;*/
}

.page_title {
    float: left;
    width: 100%;
    padding: 10px 15px 0px;
}

    .page_title ul {
        background: #dce2f0;
        padding: 10px 20px;
        display: flex;
        justify-content: space-between;
    }

        .page_title ul li {
            font-weight: 700;
            text-transform: capitalize;
        }

            .page_title ul li:last-child {
                margin-right: 0px;
            }

            .page_title ul li span {
                color: #2B2A7D;
            }

            .page_title ul li a {
                color: #2B2A7D;
                /*font-size: 18px;*/
            }

.fa-history {
    font-size: 17px;
}

.filter_grid {
    display: flex;
    justify-content: flex-end;
}

.right_filter {
    display: flex;
    align-items: center;
}

.content_border {
    border: 1px solid #dee2e6;
    padding: 10px 15px;
}

.page_head {
    background: #d2efff;
    width: 100%;
    float: left;
    padding: 8px 10px;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
}

.content_grid h3 {
    /* background: #d2efff;
    padding: 11px 20px;*/
    font-size: 16px;
    font-weight: bold;
    text-transform: capitalize;
    margin: 0px;
    float: left;
}

.content_inner {
    padding: 0px 15px;
    background: #fff;
}

    .content_inner .form-group {
        margin-bottom: 15px;
    }

        .content_inner .form-group label {
            font-size: 13px;
            font-weight: 700;
            margin-bottom: 10px;
        }

            .content_inner .form-group label sup {
                color: #f00;
            }

        .content_inner .form-group .form-control {
            border: 1px solid #ccc;
            font-size: 13px;
            border-radius: 6px;
        }

            .content_inner .form-group .form-control:disabled {
                border: 1px solid #ccc;
                font-size: 13px;
                border-radius: 6px;
                background: #eeeeeebf;
            }

        .content_inner .form-group textarea.form-control {
            height: auto;
            resize: none;
        }

    .content_inner .form-check-input:checked {
        background-color: #80bb47;
        border-color: #80bb47;
    }

    .content_inner .form-group .form-check-input:focus {
        box-shadow: none;
    }

    .content_inner .form-group .form-check label {
        font-size: 14px;
    }

.date_style .selectdate {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0px 0.75rem;
}

    .date_style .selectdate input {
        border: 0px !important;
        padding: 0;
    }

    .date_style .selectdate .input-group-addon {
        padding: 8px 1px;
    }

        .date_style .selectdate .input-group-addon span {
            color: #3159a1;
        }

.datepicker table tr td, .datepicker table tr th {
    font-size: 12px;
}

    .datepicker table tr td.today, .datepicker table tr td.today:hover {
        color: #000;
        background-color: #d2efff;
        border-color: #2B2A7D;
    }

.addBtnGrid {
    margin-top: 10px;
}

    .addBtnGrid li {
        display: inline-block;
        margin-right: 10px;
    }

        .addBtnGrid li a.view_cal {
            color: #333;
            font-size: 14px;
            border-bottom: 1px solid #333;
        }

            .addBtnGrid li a.view_cal:hover {
                color: #333;
            }

.vendor_table_grid table {
    margin-bottom: 0px;
    border-bottom: 0px !important;
    width: 100% !important;
}

    .vendor_table_grid table tr th {
        white-space: nowrap;
        font-size: 14px;
        padding: 10px 0px;
        border-bottom: 0px;
    }

    .vendor_table_grid table tbody tr td {
        white-space: nowrap;
        font-size: 13px;
        border-bottom: 0px;
    }

.dataTables_info {
    font-size: 12px;
}

.dataTables_paginate a.paginate_button {
    border: 1px solid #dee2e6 !important;
    font-size: 12px;
    margin: 0px !important;
}

    .dataTables_paginate a.paginate_button.current {
        background: transparent !important;
        margin: 0px !important;
    }

        .dataTables_paginate a.paginate_button.current:hover {
            color: #333 !important;
        }

.edit-icon, .edit-icon:hover, .history-icon, .delete-icon, .view-icon {
    color: #000;
}

.btn-add {
    background: #3159a1;
    color: #fff;
    border: 1px solid #3159a1;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.btn-excel {
    background: transparent;
    color: #1D6F42;
    border: 0;
    display: inline-block;
    padding: 0;
    border-radius: 0;
    line-height: 24px;
    font-size: 24px;
}

    .btn-excel:hover {
        background: transparent !important;
        color: #1D6F42 !important;
        border: 0 !important;
    }

button.btn-excel i {
    margin-right: 0px;
}

.btn-add:hover {
    background: #3159a1;
    color: #fff;
    border: 1px solid #3159a1;
}

/*.btn-submit, .btn-save, .btn-export, .btn-cancel, .btn-primary, .btn-warning, .btn-danger, .btn-success, .btn-upload {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 20px;
        font-size: 12px;
    }
*/
.btn-submit, .btn-submit:hover {
    background: #003792;
    color: #fff;
    border: 1px solid #003792;
}

.btn-upload, .btn-upload:hover {
    background: #7895c5;
    border-color: #7895c5;
    color: #FFF;
}

.btn-save, .btn-save:hover {
    background: #2B2A7D;
    border-color: #2B2A7D;
    color: #FFF;
}

.btn-export, .btn-export:hover {
    background: #008929;
    border-color: #008929;
    color: #FFF;
}

.btn-cancel, .btn-cancel:hover {
    background: #999;
    border-color: #999;
    color: #FFF;
}

.btn-cancelNew {
    background: transparent;
    color: #00abe6;
    border: 0;
    display: inline-block;
    padding: 0;
    border-radius: 0;
    font-size: 22px;
    line-height: 22px;
}

    .btn-cancelNew:hover {
        background: transparent;
        color: #00abe6;
        border: 0;
    }

/* .footer {
        background: #cfcfcf;
        padding: 8px 0px;
        position: fixed;
        bottom: 0px;
        width: 100%;
        left: 0px;
        z-index: 11;
    }*/

.footer p.copyright {
    margin: 0px;
    font-size: 12px;
    color: #212529;
    z-index: 3;
}

    .footer p.copyright a {
        color: #212529;
    }

.content_inner .nav-tabs {
    border-bottom: 0px;
}

    .content_inner .nav-tabs li {
        position: relative;
        margin-right: 15px;
    }

        .content_inner .nav-tabs li a {
            color: #999;
            border-radius: 0px !important;
            font-weight: 500;
            padding: 5px 0px;
            border: 0px;
        }

            .content_inner .nav-tabs li a.active {
                background-color: transparent !important;
                border-bottom: 1px solid #003792 !important;
                border: 0px;
                color: #003792 !important;
                font-weight: 500;
            }

                .content_inner .nav-tabs li a.active:after {
                    content: '\f0d7';
                    font-family: "FontAwesome";
                    position: absolute;
                    bottom: -14px;
                    left: 45%;
                    right: 50%;
                    z-index: 2;
                    color: #003792;
                }

.content_inner .tab-content {
    padding: 20px 0px;
}

.dash_head {
    padding: 15px;
}

    .dash_head h2 {
        margin: 0px;
        font-size: 20px;
        font-weight: 700;
    }

.dash_content {
    padding: 20px 20px 0px;
}

.dash_left_grid, .dash_right_grid {
    background: #dce2f0;
    border-radius: 10px;
}

    .dash_left_grid h3, .dash_right_grid h3 {
        padding: 15px;
        font-size: 18px;
        margin: 0px;
        font-weight: 500;
    }

    .dash_left_grid h4, .dash_right_grid h4 {
        padding: 15px;
        font-size: 16px;
        margin: 0px;
    }

    .dash_left_grid h3 i, .dash_right_grid h3 i {
        margin-right: 5px;
        font-size: 18px;
        font-weight: 700;
    }

.dash_content .nav-tabs li {
    width: 50%;
    position: relative;
}

    .dash_content .nav-tabs li a {
        font-size: 16px;
        text-align: center;
        color: #000;
        border-radius: 0px;
        background: #c8d4ec;
    }

        .dash_content .nav-tabs li a.active {
            background: #2B2A7D;
            border: 1px solid #2B2A7D;
            color: #fff;
        }

            .dash_content .nav-tabs li a.active:after {
                content: '\f0d7';
                font-family: "FontAwesome";
                position: absolute;
                bottom: -21px;
                left: 45%;
                right: 50%;
                z-index: 2;
                color: #2B2A7D;
                font-size: 24px;
            }

.dash_content .tab-content .tab-pane {
    padding: 15px;
    font-size: 14px;
    position: relative;
}

    .dash_content .tab-content .tab-pane ul {
        padding-left: 30px;
        margin-bottom: 0px;
        font-size: 14px;
    }

    .dash_content .tab-content .tab-pane ol {
        padding-left: 25px;
        margin-bottom: 0px;
        font-size: 14px;
    }

        .dash_content .tab-content .tab-pane ol, .dash_content .tab-content .tab-pane ol li {
            list-style: decimal;
        }

    .dash_content .tab-content .tab-pane ul, .dash_content .tab-content .tab-pane ul li {
        list-style: disc;
    }

.custom_height {
    height: 415px;
}

    .custom_height.mCustomScrollbar .mCSB_container {
        margin-right: 15px;
    }

.dash_content .tab-content .tab-pane .table {
    width: 100%;
    margin-bottom: 0px;
}

    .dash_content .tab-content .tab-pane .table tbody tr th {
        padding: 12px 15px;
        width: 51%;
    }

    .dash_content .tab-content .tab-pane .table tbody tr td {
        text-align: center;
        vertical-align: middle;
    }

.legend {
    position: absolute;
    bottom: 0px;
}

    .legend ul {
        text-align: center;
        padding-left: 0px !important;
    }

        .legend ul li {
            display: inline-block;
            margin: 5px;
            font-size: 12px;
            list-style: none
        }

            .legend ul li span {
                display: inline-block;
                width: 10px;
                height: 10px;
                margin-right: 5px;
            }

.pieWrapper {
    height: 380px;
}

.text-danger, .view-more {
    font-size: 13px;
}

/*Added*/
.loader-main_l {
    background: rgba(255, 255, 255, 0.7);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 9999;
    top: 0px;
    left: 0px;
}

.loader_l {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url('../img/loader.gif') 50% 50% no-repeat rgba(255, 255, 255, 0);
    opacity: 1;
    animation-delay: 0.6s;
}

.aprv .form-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 15px;
}

    .aprv.form-group .dropdown {
        margin-bottom: 0px;
    }

.aprv label.col-form-label {
    margin-right: 10px;
}

/*.table-overflw {
	overflow-x: auto;
	display: block;

}*/

#menubar ul {
    overflow: auto;
    height: 90vh;
}
    /* width */
    #menubar ul::-webkit-scrollbar {
        width: 15px;
    }

    /* Track */
    #menubar ul::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    /* Handle */
    #menubar ul::-webkit-scrollbar-thumb {
        background: #888;
    }

.error_width span.select2 {
    width: 100% !important;
}

.swal2-container.swal2-center > .swal2-popup {
    grid-column: 0;
    grid-row: 0;
    align-self: center;
    justify-self: center;
    width: 360px;
}

.swal2-styled.swal2-confirm {
    border: 0;
    border-radius: .25em;
    background: initial;
    background-color: #2B2A7D;
    color: #fff;
    font-size: 0.8rem !important;
    font-weight: 500;
}

.swal2-styled.swal2-cancel {
    border: 0;
    border-radius: .25em;
    background: initial;
    background-color: #6e7881;
    color: #fff;
    font-size: 0.8rem !important;
    font-weight: 500;
}

.swal2-icon.swal2-warning {
    border-color: #facea8;
    color: #f8bb86;
    font-size: small !important;
}

.swal2-icon.swal2-success {
    border-color: #facea8;
    color: #f8bb86;
    font-size: small !important;
}

.fianc-right {
    display: flex;
    float: right;
    padding-right: 15px;
    align-items: center;
}

    .fianc-right .custom_select {
        background: #fff;
        border: 1px solid #fff;
        content_grid font-size: 14px;
        padding: 5px;
        border-radius: 6px;
        font-weight: 500;
    }

.loginText {
    font-size: 16px;
    font-weight: 600;
    padding-left: 15px;
    color: #fff;
    padding-top: 20px;
}

.btn-back {
    float: right;
    margin-top: 3px;
    font-size: 14px;
    font-weight: 500;
    color: black;
}

.accordion-body {
    padding-top: 2px
}

.head-blueBg {
    background: #e4f2fe !important;
    font-size: 13px;
    padding: 6px;
}

.head-text {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0;
}

    .head-text i {
        color: #114a99;
        font-size: 18px;
        vertical-align: middle;
    }

.btn-sm {
    display: inline-block;
    padding: 2px 11px;
    border-radius: 20px;
    font-size: 12px;
}

.iframe_div {
    width: 100%;
    height: 500px;
}

/*@media only screen and (min-width: 992px) {
    .modal-dialog {
        max-width: 1000px;
        margin-right: auto;
        margin-left: auto;
    }
}*/


.width-70 {
    width: 70% !important;
}

.width-90 {
    width: 90% !important;
}


.right_filter li.search_box input {
    font-size: 13px;
    width: 300px;
    margin-right: 20px;
    padding: 0.375rem 35px 0.375rem 15px;
}

.right_filter li a.btn-filter {
    width: 28px;
    height: 28px;
    line-height: 26px;
    border-radius: 50%;
    display: inline-block;
    background: #00abe6;
    color: #fff;
    border: 1px solid #00abe6;
    font-size: 14px;
    text-align: center;
}

.right_filter li.search_box i {
    position: absolute;
    right: 35px;
    top: 8px;
}

.btn-modal-close {
    color: white;
    font-size: 22px;
    padding: 0;
}

/* creat MOM filter*/


.right_filter li.search_box {
    position: relative;
}


.right_filter .search_box input {
    font-size: 13px;
    width: 300px;
    margin-right: 20px;
    padding: 0.375rem 35px 0.375rem 15px;
}

.right_filter a.btn-filter {
    width: 28px;
    height: 28px;
    line-height: 26px;
    border-radius: 50%;
    display: inline-block;
    background: #00abe6;
    color: #fff;
    border: 1px solid #00abe6;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
}

.right_filter .search_box i {
    position: absolute;
    right: 35px;
    top: 8px;
}

.right_filter .search_box {
    position: relative;
}

.mom_filter {
    float: right;
}
/* creat MOM filter*/
.form-control:disabled, button:disabled, button.disabled {
    background-color: var(--bs-form-control-disabled-bg) !important;
    opacity: 1;
}

.select2-container--default .select2-selection--multiple {
    border: 1px solid #ced4da !important;
    height: 28px;
}

.selectdate input {
    border: 1px solid #ced4da;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    height: 30px;
    overflow-y: auto !important;
}

dataTables_wrapper .dataTables_length {
    margin-bottom: 5px;
}

table.tabl_ht {
    border-left: 0 !important;
}

.tabl_ht thead tr th:first-child {
    position: sticky;
    left: 0;
    top: 0;
    width: 39px !important;
    z-index: 2;
}

.tabl_ht thead tr th {
    position: sticky;
    top: 0;
}

.tabl_ht tbody tr td:first-child {
    position: sticky;
    left: 0;
    width: 39px !important;
    z-index: 1;
    border-left: 1px solid #ccc;
}

.tabl_ht tbody > tr:nth-of-type(odd) td {
    background-color: #f2f2f2 !important;
}

.tabl_ht tbody > tr:nth-of-type(even) td {
    background-color: #ffffff !important;
}

.table-bordered > :not(caption) > * {
    border-width: 0 !important;
}
/*.dt-scroll-body {
    max-height: 60vh;
}*/
.dt-info {
    position: absolute;
    left: 180px;
    margin-top: 10px;
    font-size: 12px;
}

.dt-length {
    position: absolute;
    bottom: 0;
    width: 160px;
    font-size: 12px;
}

.dt-paging {
    margin-top: 10px;
    font-size: 12px;
}

.dt-length label {
    padding-left: 10px;
}

.dataTables_length {
    margin-top: 10px;
    margin-left: 20px;
}

div.dt-container .dt-paging .dt-paging-button.current, div.dt-container .dt-paging .dt-paging-button.current:hover {
    background: #2b2a7d !important;
    color: #fff !important;
    border: 1px solid #2b2a7d !important;
}

div.dt-container .dt-paging .dt-paging-button {
    padding: 2px 10px !important;
    cursor: pointer;
    font-size: 13px;
}
/*
.dataTables_scrollHead table thead tr {
    visibility: collapse;
    height: 0px !important;
}

.dataTables_scrollHead, .dataTables_scrollBody {
    width: 100% !important;
}

.dataTables_sizing {
    height: auto !important;
    display: inline-flex;
}

.dataTables_length {
    position: absolute;
    bottom: 8px;
}

.dataTables_info {
    margin-left: 140px !important;
}*/
.tblCompanyMaster_length {
    font-size: 12px;
}
/*
.para_p td p {
    width: 300px;
    white-space: normal !important;
}*/

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: 1px solid #ccc !important;
}

.padlr {
    padding-left: 20px;
    padding-right: 20px;
}

.parentRow {
    position: sticky;
    top: 40px;
}

p {
    margin-top: auto;
    margin-bottom: auto;
}
/*.dataTables_scrollBody #tblTaskDetails {
    max-height: 68vh;
}
.dataTables_scrollBody #tblpulledTask {
    max-height: 68vh;
}*/
.toggle-btn, .toggle-btn:hover {
    border-radius: 50%;
    background: #00abe6;
    color: #fff;
    border: 1px solid #00abe6;
    font-size: 14px;
    text-align: center;
    width: 27px;
    padding: 0 !important;
    height: 27px;
}

    .toggle-btn .fa-angle-down {
        font-size: 20px;
        padding: 3px 6px;
    }

.page_head .col-form-label {
    margin-right: 5px;
}

.modal-body label {
    font-weight: 500;
}

.modal-body .form-control {
    font-size: 12px !important;
}

.modal-body .form-control-sm {
    font-size: 12px !important;
}

.modal-body .dataTables_length label {
    font-weight: 400;
}

.inp_height .select2-selection--multiple {
    height: 64px !important;
}

.inp_height .select2-selection__rendered {
    height: 64px !important;
}

.para_p {
    min-width: 320px !important;
    white-space: normal !important;
}

.para_date {
    min-width: 120px !important;
    white-space: normal !important;
}

.wid_status {
    min-width: 110px !important;
    white-space: normal !important;
}

.wid_remark {
    min-width: 200px !important;
    white-space: normal !important;
}

.other {
    min-width: 140px !important;
    white-space: normal !important;
}

.tsk_id {
    min-width: 62px !important;
    white-space: normal !important;
}

.btn-add i {
    margin-right: 0;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating) {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem;
    border-radius: .25rem !important;
}

.main_class {
    width: 100%;
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.blink {
    background-color: #2c2b7c;
    padding: 15px;
    text-align: center;
    line-height: 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .blink span {
        font-size: 25px;
        font-family: Segoe UI;
        font-weight: 600;
        color: #fff;
        animation: blink 2s linear infinite;
        background-color: #2c2b7c;
    }

@keyframes blink {
    0% {
        opacity: 0;
    }

    50% {
        opacity: .5;
        color: #2c2b7c !important;
    }

    100% {
        opacity: 1;
    }
}

.bg-image {
    /* Set background image */
    background-image: url('../img/bg-login.jpg');
    /* Background image properties */
    background-size: cover; /* Cover the entire container */
    background-position: center; /* Center the background image */
}
/*@-moz-keyframes blink {
    50% {
        opacity: .5;

        color: #2c2b7c !important;
    }
}

@-webkit-keyframes blink {
    50% {
        opacity: .5;
        color: #2c2b7c !important;
    }
}

@keyframes blink {
    50% {
        opacity: .5;
        color: #2c2b7c !important;
    }
}
 */
table.feedbacktbl tr td:nth-child(2) {
    width: 100%;
}

table.feedbacktbl tr td:last-child {
    width: 150px;
    text-align: center;
}

    table.feedbacktbl tr td:last-child button {
        padding: 4px 12px !important;
        background-color: #2B2A7D !important;
        border: 0 !important;
    }

table.feedbacktbl tr {
    border-left: 1px solid #dee2e6;
}

    table.feedbacktbl tr th, table.feedbacktbl tr td {
        padding: .35rem .35rem !important;
    }

table#tblTaskDocDetails tr td:last-child, table#tblTaskDocDetails tr th:last-child {
    text-align: center;
}

.tabl_ht.oddd tbody > tr:nth-of-type(odd) td {
    background-color: #fff !important;
}

#tblToDo tbody tr td {
    border-bottom: 1px solid #ddd;
}

#tblAllTask tbody tr td {
    border-bottom: 1px solid #ddd;
}

div.dt-container div.dt-layout-row {
    margin: 0 0 0.75em 0 !important;
}

span.dt-column-order {
    top: auto !important;
    bottom: 20px !important;
}

    span.dt-column-order:before {
        opacity: .4 !important;
    }

    span.dt-column-order:after {
        opacity: .4 !important;
    }

table.dataTable thead > tr > th.dt-ordering-asc span.dt-column-order:before {
    opacity: .9 !important;
}

table.dataTable thead > tr > th.dt-ordering-desc span.dt-column-order:after {
    opacity: .9 !important;
}

.dataSortafalse .dt-column-order:before {
    opacity: 0 !important;
}

div.dt-container .dt-paging .dt-paging-button:active {
    background: linear-gradient(to bottom, #2b2a7d 0%, #2b2a7d 100%) !important;
    color: #fff !important;
    border: 1px solid #2b2a7d !important;
}

div.dt-container .dt-paging .dt-paging-button:hover {
    background: linear-gradient(to bottom, #2b2a7d 0%, #2b2a7d 100%) !important;
    color: #fff !important;
    border: 1px solid #2b2a7d !important;
}

div.dt-container .dt-paging .dt-paging-button {
    background-color: #f2f2f2 !important;
}

    div.dt-container .dt-paging .dt-paging-button.disabled {
        background-color: #ddd !important;
    }

        div.dt-container .dt-paging .dt-paging-button.disabled:hover {
            color: #111 !important;
            background: #ddd !important;
            border: 1px solid #ddd !important;
        }

.select2-container.select2-container--default.select2-container--open {
    z-index: 999 !important;
}

.add-tsk .modal-body {
    height: 450px;
    overflow: auto;
}

.HistoyFirstColoumUnfreez thead tr th:first-child {
    position: unset;
}

.HistoyFirstColoumUnfreez tbody tr td:first-child {
    position: unset;
}

img.powerBi {
    width: 100%;
    height: 35px;
}

.photoImgBox {
    height: 225px;
    width: 225px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.welspunWorldImg {
    height: 30px;
    padding-left: 25px;
}

.visitorPass {
    width: 300px;
    background-color: #ffffff;
    padding: 20px;
}


:is([data-layout=vertical],[data-layout=semibox])[data-sidebar-size=sm] .navbar-brand-box {
    background-color: none !important;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    border-color: none !important;
}

.table-responsive {
    overflow: visible !important;
}

.image_box {
    position: relative;
    display: inline-block;
}

    .image_box span {
        position: absolute;
        left: 0;
        width: 200px;
        background: #fff;
        padding: 5px;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
        opacity: 0;
        visibility: hidden;
        transform: scale(0.8);
        transition: all .25s ease;
        z-index: 9999;
    }

        .image_box span img {
            width: 100%;
        }

    .image_box:hover span {
        opacity: 1;
        visibility: visible;
        transform: scale(1);
    }

    .image_box.bottom span {
        top: 35px;
    }

    .image_box.top span {
        bottom: 35px;
    }

.table-responsive {
    overflow-x: auto;
    overflow-y: visible;
}
