@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* Flexbox layout for sticky footer */
html,
body {
    font-family: "Roboto", sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #F3F4F6;
}

::-webkit-scrollbar {
    width: 1.1rem;
    height: 1.1rem;
    cursor: pointer;
}

::-webkit-scrollbar-thumb {
    background-color: #c8c8c8;
}

::-webkit-scrollbar-thumb {
    border-top-width: 0.4rem;
    border-right-width: 0.4rem;
    border-bottom-width: 0.4rem;
    border-left-width: 0.4rem;
    border-top-style: solid;
    border-right-style: solid;
    border-bottom-style: solid;
    border-left-style: solid;
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    background-clip: content-box;
    background-color: rgba(0, 0, 0, 0.1);
}

.wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.profile-img {
    width: 17px;
    height: 17px;
}

.profile-img * {
    stroke: #fff;
}

.header {
    padding: 0.5rem 1rem 0.5rem 0.1rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
}

.header-acs {
    height: 40px;
    background-color: white;
    left:60px;
    width:100%;
    position:fixed;
    z-index:1;
}

/* Sidebar styles #3b82f6*/
#sidebar {
    height: calc(100vh);
    width: 60px;
    position: fixed;
    left: 0;
    background: #262F36 0% 0% no-repeat padding-box;
    color: white;
    transition: margin-left 0.3s;
    box-shadow: 2px 2px 2px 0px #eeeeee;
    z-index: 1;
}

    #sidebar ul li:hover,
    #sidebar ul li.active {
        background-color: #181919;
        cursor: pointer;
        border-left: 2px solid #ce4c4c;
        color:#fff;
    }
    #sidebar ul li span {
        font-size:11px
    }
#sidebar.closed {
    margin-left: -250px;
}

#sidebar ul {
    list-style: none;
    padding: 0;
}

    #sidebar ul li {
        padding: 0.6rem 0;
        position: relative;
        text-decoration: none;
        border-left: 2px solid #262F36;
        color: #adadad;
    }

        #sidebar ul li a {
            
            text-decoration: none;
            color:inherit;
        }

#sidebar ul li a:hover {
    text-decoration: underline;
}
    #sidebar .acsspan {
        /*margin: 2px auto;*/
        background: white;
        padding: 3px 13px;
    
    }
    #sidebar .acslogo {
        height: 34px
    }
.submenu {
    display: none;
    position: absolute;
    left: 100%;
    top: 0;
    background: #e1e1e1;
    padding: 0;
    list-style: none;
    z-index: 1000;
    width: 40px;
    text-align: center;
    box-shadow: 0px 0px 1px 0px #dadada;
    border-left: 2px solid #fff;

}



.sidebar li:hover .submenu {
    display: block;
}

/* Main content styles */
#main-content {
    flex: 1;
    margin-left: 40px;
    padding: 1rem;
    transition: margin-left 0.3s;
    padding-top: 40px;
    padding-right: 0px;
}

#main-content.collapsed {
    margin-left: 0;
}

/* Footer styles */
#footer {
    background: #fff;
    color: #000;
    padding: 6px 0;
    width: 100%;
    margin-top: auto;
    font-size: 12px;
    z-index: 99;
    box-shadow: -1px -1px 2px 0px #eeeeee;
    position:fixed;
    bottom:0px;
}

/* custom style */
#toggle-btn {
    /*background-color: #333333;*/
    font-size: 17px;
    color: #3b82f6;
    width: auto;
    border: 0;
    outline: none;
    padding-left: 5px;
    font-weight: 500;
}
#toggle-btn:hover {
    background-color: transparent;
}
#toggle-btn span {
    display: inline-block;
    margin-right: 7px;
    position: relative;
    bottom: 2px;
}

.header-acs-dropdown a {
    color: #fff;
    font-size: 12px;
}

.header-acs-dropdown ul.dropdown-menu.dropdown-menu-end.show {
    transform: translate3d(11.333333px, 31px, 0px) !important;
}

.header-acs-dropdown a span svg {
    width: 10px;
    margin-left: 5px;
    transform: rotate(0deg);
    transition: all 0.6s;
}

.header-acs-dropdown a span svg * {
    stroke: #fff;
}

.header-acs-dropdown a.show span svg {
    transform: rotate(180deg);
}

.listofDropdown .input-group-text,
.listofDropdown select {
    border: 0;
    font-size: 12px;
    padding: 5px;
    box-shadow: none !important;
    width: 100% !important;
}


.listofDropdown .input-group-text {
    background-color: #f2f4f6;
}

.toggle-container {
    position: relative;
    display: inline-flex;
    background: #ffffff;
    border-radius: 30px;
    font-family: sans-serif;
}

.toggle-option {
    position: relative;
    padding: 4px 6px;
    border-radius: 30px;
    font-weight: 500;
    color: #555;
    z-index: 2;
    transition: color 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    font-size: 12px;
}

.toggle-option.active {
    color: #fff;
}

.toggle-slider {
    position: absolute;
    top: 0;
    left: 0;
    height: calc(100% - 0px);
    background-color: #333333;
    border-radius: 30px;
    transition: all 0.3s ease;
    z-index: 1;
}

.btn {
    padding: 3px 17px;
    font-size: 12px;
    border-radius: 6px;
    transition: background-color 0.2s ease;
    height: 30px;
}

/* Customize css code here */

.dropdown.header-acs-dropdown {
    display: flex;
    left:-40px
}

.uploadBtns {
    background-color: #3b82f6 !important;
    margin-right: 20px;
    font-size: 12px;
    color:#fff;
}

.logout-icon {
    position: relative;
    cursor: pointer;
}

.dateRangePIcker span svg {
    position: absolute;
    right: 2px;
    top: 31px;
    width: 17px;
    height: 14px;
}

.dateRangePIcker {
    position: relative;
}

.custom-filter-bar input,
.custom-filter-bar select {
    height: 29px;
    font-size: 12px;
}

.firstRow {
    margin: 0;
    background-color: #fff;
    padding: 5px 0 12px 0;
}

.stat-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 0.5rem;
}

.stat-card .card-body {
    padding: 0.5rem;
}

.stat-card .card-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: #6c757d !important;
    text-transform: capitalize;
}

.stat-card .card-title {
    font-size: 20px;
    color: #212529;
    padding: 6px 0;
}

.stat-card small {
    font-size: 0.7rem;
    color: #adb5bd !important;
    display: block;
}

.stat-card .text-danger {
    color: #dc3545 !important;
}

.text-muted-block {
    color: #8b8a8a;
}

.navPilstab .nav-tabs button {
    border: 0;
    background-color: #f2f4f6 !important;
    color: #333;
    font-size: 13px;
    border-bottom: 1px solid #b7b7b7;
    margin-bottom: 2px;
}

.navPilstab .nav-tabs button.active {
    color: #0078d4;
    border-bottom: 2px solid #0078d4;
    font-weight: 500;
}

.navPilstab .nav-tabs {
    border: 0;
}

.table-reports tr {
    background-color: #fff;
}

.table-reports tr th {
    font-size: 14px;
    padding: 5px;
     border-bottom: 2px solid #dadada;
    color: #636363;
    text-align:left!important;
}

.table-reports tr td {
    padding: 5px 5px;
    font-size: 12px;
    border-bottom: 2px solid #dadada;
    color: #636363;
    text-align: left !important;
}

.table-reports table#example {
    border-collapse: separate;
    /*border-spacing: 6px 5px;*/
}

.table-reports .dataTable {
    /*border-collapse: separate;*/
    border-spacing: 0px 0px;
}
.review-badge {
        font-size: 12px;
        padding: 4px 9px;
        border-radius: 38px;
        width: 95px;
        display: inline-block;
        text-align: center;
}

.yellowColor {
    background: #ffecce 0% 0% no-repeat padding-box;
    color: #FE9F08;
}

.redColor {
    background: #ffd9d9 0% 0% no-repeat padding-box;
    color: #991B1B;
}

.greenColor {
    background: #d6f9d6 0% 0% no-repeat padding-box;
    color: #107C10;
}
.bluecolor {
    background: #dbeafe 0% 0% no-repeat padding-box;
    color: #1e40af;
}
.graycolor {
    background: #e4e6e8 0% 0% no-repeat padding-box;
    color: #1f2937;
}
/*.navPilstab .paging_full_numbers li {border: 0;}

.paging_full_numbers .pagination a {
    border: 0 !important;
    background-color: #f1f3f5;
    color: #333;
    padding: 0px 6px;
}

.paging_full_numbers .pagination li.active a {
    color: #0078d4;
}*/

.paging_full_numbers .pagination a {
    
    padding: 0px 6px;
}
.dt-info {
    font-size: 12px;
}
.op-re {
    color: #0078d4;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}
/* LOGIN PAGE */
.login-container {
    display: flex;
    width: 100%;
    max-width: 100%;
    height: 100vh;
    overflow: hidden;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
 
    position: relative;
    background-size: contain;
    background-repeat: repeat;
}

.left-pane {
    background-color: #1a202c;
    background-image: url('../images/login-bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    position: relative;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    padding: 0px 60px;
}

 

.google-icon img {
    width: 23px;
    height: 23px;
}

.vargus-logo {
    position: relative;
    z-index: 10;
    font-weight: 700;
    color: white;
    padding-left: 180px;
}

.right-pane {
    background-color: #ffffff;
    /* White background */
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    width: 400px;
    height: 449px;
}

.strive-logo {
    align-self: center;
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-right: 1rem;
    margin-top: 0.5rem;
    flex-direction: column;
}

.strive-logo svg {
    margin-right: 0.5rem;
    width: 24px;
    height: 24px;
    fill: #ff6f00;
}

.login-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #000;
}

.welcome-text {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 11px;
    color: #333;
}
.login-content p {
    margin-bottom: 24px;
    font-size: 12px;
}
.or {
    font-size: 16px !important;
    margin-bottom: 17px !important;
    color: #3d3d3d;
}
.google-login-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 320px;
    padding: 6px;
    border-radius: 5px;
    background-color: #f2f4f6;
    color: #555;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0px 0px 3px rgb(0 0 0 / 15%);
    height: 38px;
    border: none;
    
    margin-bottom: 20px;
}

.google-login-btn:hover {
    background-color: #f8f8f8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

.google-icon {
    margin-right: 0.75rem;
    font-size: 1.2rem;
    font-weight: bold;
    color: #4285F4;
    /* Google blue color */
}

.copyright-text {
    align-self: center;
    font-size: 12px;
    color: #000;
    margin-top: auto; 
    margin-bottom: 0;
}
.vargus-logo h6 {
    font-size: 36px;
}

.vargus-logo p {
font-size: 17px;
    font-weight: 400;
    color: #939393;
}

.login-content h6 {
    font-size: 23px;
}
.login-st-logo {
    width: 100px;
    padding-top: 30px;
}
.swal2-title {
    padding: 0px;
    font-size: 24px;
}
.swal2-icon {
    margin: 1em auto .6em;
}
.swal2-html-container
{
    padding:10px
}
.swal2-actions{
    margin:0px
}

.header-edit svg {
    width: 14px;
    position: relative;
    bottom: 1px;
}

.header-edit {
    background-color: #fff;
    padding: 6px;
    justify-content: space-between;
}

.nav-pills .nav-link.active {
    color: #212529;
    background-color: transparent;
    border-bottom: 2px solid #991b1b;
    border-radius: 0;
    font-weight: bold;
}

.nav-pills .nav-link {
    color: #6c757d;
    background-color: transparent;
    border-bottom: 2px solid #2e1c1c00;
    border-radius: 0;
    padding-bottom: 0.5rem;
    font-size: 12px;
    padding: 7px 10px;
}

.list-item-card {
    border-radius: 0.25rem;
    margin-bottom: 6px;
    padding: 5px;
    background-color: #f8f8f8;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.accordion-header-custom span svg {
    width: 10px;
    position: relative;
    bottom: 3px;
}

.list-item-card.failed-item {
    background-color: #f8d7da;
    border-color: #991b1b;
    color: #991b1b;
    box-shadow: 0px 0px 4px 0px #991b1b;
}

.navPills li.nav-item:first-child button.active {
    border-color: green
}

.heading-accordion {
    background-color: #efefef;
    padding: 8px;
    border-radius: 6px;
    font-size: 13px;
}

.accordion-header-custom {
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 12px;
    cursor: pointer;
    border-bottom: 0px solid #dee2e6;
    margin-bottom: 0.5rem;
    font-size: 13px;
    background-color: #f9fafb;
    border-radius: 5px;
}

    .accordion-header-custom span.badge.text-dark {
        font-size: 15px;
        font-weight: 400;
        color: #363636;
    }

.tabControl .accordion-header-custom span svg {
    transform: rotate(-90deg);
    transition: 1s;
}

.tabControl .accordion-header-custom[aria-expanded="true"] span svg {
    transform: rotate(0deg);
}

.navPills li.nav-item {
    width: 50%;
    text-align: center;
}

    .navPills li.nav-item button {
        width: 100%;
        font-size: 14px;
    }

    .navPills li.nav-item:first-child button {
        color: green;
        font-weight: 600;
    }

    .navPills li.nav-item:last-child button {
        color: #991b1b;
    }

.navPills-inner li {
    width: 33%;
    text-align: center;
    padding: 3px 3px 2px;
    border: 0 !important;
    outline: none;
}

    .navPills-inner li button {
        width: 100%;
        text-align: center;
        border: 0 !important;
    }

.nav-pills.navPills-inner .nav-link.active {
    border: 0px !important;
    background-color: #fff;
    border-radius: 100px;
    color: #0078d4;
}

#pills-tab {
    background-color: #fff;
}

.innerTabPills {
    background-color: #fff;
    padding: 6px 0;
}

.navPills-inner {
    background-color: #EFEFEF;
    margin: 0 6px;
    padding: 0;
    outline: none;
    border-radius: 40px;
}

.pills-tabContent-inner {
    height: calc(100vh - 262px);
    overflow-y: auto;
}

.cutom-wid {
    width: calc(50% - 4px);
    background-color: #fff;
    border-radius: 7px;
    padding: 5px 10px;
    margin-bottom: 5px;
    align-items: center;
}

    .cutom-wid p {
        color: #991B1B;
        font-size: 19px;
        font-weight: 600;
    }

    .cutom-wid h6 {
        font-size: 15px;
        font-weight: 400;
    }

.firstRow-user {
    background-color: transparent;
}

.bgColorAdd {
    background-color: #fff;
    height: 70px;
    display: flex;
    align-items: end;
    padding: 0 7px 10px;
    justify-content: space-between;
}

.usermanagement-table .form-check input {
    height: 17px;
    width: 17px;
}

.statusspan span {
    width: 70px;
    display: inline-block;
    text-align: center;
    padding: 6px;
    border-radius: 100px;
}

.statusActive span {
    background-color: #D5FAD5;
    color: #107C10;
}

.statusInActive span {
    background-color: #ffd9d9;
    color: #991B1B;
}

.bgColorAdd select {
    color: #0078d4;
}

.groupInput {
    position: relative;
    width: 280px;
    margin-left: auto;
}

    .groupInput svg {
        position: absolute;
        right: 10px;
        top: 3px;
        width: 12px;
        z-index: 9;
    }

        .groupInput svg * {
            stroke: #0078d4;
        }

.catagory-rules h6, .catagory-rules ul li {
    background-color: #fff;
    padding: 8px 6px 5px;
    font-size: 12px;
    display: block;
    margin-bottom: 3px;
    border-radius: 5px;
    position: relative;
    border: 1px solid transparent;
    cursor: pointer;
}

    .catagory-rules ul li:hover svg {
        opacity: 1;
    }

    .catagory-rules ul li svg {
        transition: .4s;
        width: 10px;
        position: absolute;
        right: 9px;
        top: 10px;
        transform: rotate(-90deg);
        opacity: 0;
    }

        .catagory-rules ul li svg * {
            stroke: #0078d4;
        }

    .catagory-rules ul li:hover, .catagory-rules ul li.active {
        box-shadow: 0px 0px 6px #00000029;
        border: 1px solid #0078D4;
    }

.catagory-rules .btn {
    background-color: #fff !important;
    border: 0;
    width: 100%;
    text-align: center;
    color: #0078d4;
}

    .catagory-rules .btn svg {
        width: 10px;
        position: relative;
        bottom: 1px;
    }

        .catagory-rules .btn svg * {
            stroke: #0078d4;
        }

.normalTable input[type="checkbox"] {
    width: 14px;
    height: 15px;
    position: relative;
    /*top: 4px;*/
}

.normalTable td, .normalTable th {
    padding: 4px;
    border: 0;
    font-size: 12px;
    color: #636363; 
}

.normalTable table {
    border-collapse: separate;
    border-spacing: 2px 2px;
}

.normalTable {
    height: calc(100vh - 150px);
    overflow-y: auto;
}
/*.userTablescroll {
    height: calc(100vh - 170px);
    overflow-y: auto;
}*/
.pagination-part {
    font-size: 12px;
    justify-content: center;
    position: relative;
}

    .pagination-part .pagination li a {
        background-color: #f2f4f6;
        border: 0;
        color: #000;
        margin: 0 7px;
        font-size: 12px;
    }

.countText {
    position: absolute;
    left: 0;
}

.pagination-part .pagination li.active a {
    background-color: #0078d4;
    color: #fff;
}

.btn-bgBlue {
    background-color: #0078d4 !important;
    color: #fff !important;
}

.btn-borderBlue {
    border: 1px solid #0078d4 !important;
    color: #0078d4 !important;
}
.dt-length label{
    font-size:12px;
}
#rulesTable_wrapper > .row:first-child {
    margin-top: 0 !important;
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .login-container {
            flex-direction: column;
            border: none;
            box-shadow: none;
        }

        .left-pane,
        .right-pane {
            border-radius: 0.8rem;
        }

        .left-pane {
            min-height: 200px;
            border-bottom-left-radius: 0;
            border-bottom-right-radius: 0;
        }

        .right-pane {
            border-top-left-radius: 0;
            border-top-right-radius: 0;
            padding: 1rem;
            height: 100%;
        }

        .strive-logo {
            align-self: center;
            margin-bottom: 1rem;
            margin-right: 0;
        }

        .copyright-text {
            align-self: center;
            margin-top: 1.5rem;
            margin-right: 0;
            margin-bottom: 0;
        }
    }

@media (min-width: 992px) {
    .row-cols-lg-6 > * {
        flex: 0 0 auto;
        width: 16.66666667%;
    }
}