
@import url('https://fonts.googleapis.com/css?family=Nova+Slim&display=swap');

body, html {
    font-family: 'Roboto', sans-serif;
    color: #555e58;
    text-transform: capitalize;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    font-weight: 400;
    margin: 0px;
    padding: 0px;
    position: relative;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4 {
    font-weight: 400;
    line-height: 1.5em;
}

p {
    font-size: 15px;
    margin: 12px 0 0;
    line-height: 24px;
}

a {
    color: #333;
    font-weight: 400;
}

button:focus {
    box-shadow: none;
    outline: none;
    border: none;
}

button {
    cursor: pointer;
}

ul, ol {
    padding: 0;
    margin: 0px;
    list-style: none;
}

a, a:hover, a:focus {
    color: #333;
    text-decoration: none;
    transition: all 0.3s;
}

::-webkit-scrollbar-track {
    border-radius: 5px;
    background-color: #999;
}

::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: transparent;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--theme-2);
}

    ::-webkit-scrollbar-thumb:hover {
        background-color: var(--theme-1);
    }
/*=======================================================
 color Setting
  ==================================================*/
/*:root {
    --white: #ffffff;
    --theme-1: rgb(239 99 40);
    --theme-2: rgb(34 64 146);
    --progress-bar-width: 120px;
    --progress-bar-height: 120px;
    --font-size: 2rem;
}*/

/*=======================================================
  material-icons  copy & paste form site google material-icons
  ==================================================*/

@font-face {
    font-family: 'Material Icons';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/MaterialIconsOutlined-Regular.otf') format('woff2');
}

.material-icons {
    font-family: 'Material Icons';
    font-weight: normal;
    font-style: normal;
    font-size: 24px;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
    /* Support for Safari and Chrome. */ text-rendering: optimizeLegibility;
    /* Support for Firefox. */ -moz-osx-font-smoothing: grayscale;
    /* Support for IE. */ font-feature-settings: 'liga';
}
/*=======================================================
  material-icons  copy & paste form site google material-icons
  ==================================================*/
.wrapper {
    position: relative;
    width: 100%;
    overflow: auto;
}

/* ---------------------------------------------------
    login page start
----------------------------------------------------- */
.login_wrapper {
    background: #ebebeb;
    width: 100%;
    min-height: 100vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.login_right {
    width: 30%;
    background: #fff;
    min-height: max-content;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    padding: 1rem 2rem 1rem;
}

    .login_right .logo-login {
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 2rem;
    }

        .login_right .logo-login img {
            width: auto;
            height: 50px;
        }

    .login_right form {
        position: relative;
        width: 100%;
        padding: 0 0rem;
    }

.inp-control {
    position: relative;
    margin: 10px 0;
}

.login_right .my-input {
    font-size: 1rem;
    width: 100%;
    height: 40px;
    margin: 10px 0px;
    padding: 10px 10px 10px 40px;
    outline: none;
    border: 1px solid #999;
    border-radius: 6px;
}

.usr, .psd {
    position: absolute;
    top: 17px;
    left: 7px;
    font-size: 1.7rem;
    color: #999;
}

.login_right .my-input:focus {
    border: 2px solid var(--theme-2);
    box-shadow: 0 1px 4px -1px rgb(0 0 0 / 15%);
}

    .login_right .my-input:focus ~ .usr {
        color: var(--theme-2)
    }

    .login_right .my-input:focus ~ .psd {
        color: var(--theme-2)
    }

.login_right .login-btn:disabled {
    opacity: 0.8;
    cursor: not-allowed;
}

.forget_text:hover {
    font-weight: bold;
    text-align: right;
}

.login_right .login-btn {
    background-color: var(--theme-1);
    padding: 5px 32px;
    font-size: 1.5rem;
    margin: 10px 0;
    border-radius: 5px;
    outline: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s;
    color: var(--white);
    width: 100%;
}

.toggle-switch-check:checked ~ .toggle-switch-bar::before {
    background-color: var(--theme-2) !important;
    border-color: var(--theme-2) !important;
}
/* ---------------------------------------------------
    login page End
----------------------------------------------------- */

/* ---------------------------------------------------
    SIDEBAR STYLE start
----------------------------------------------------- */

#sidebar {
    position: fixed;
    height: 100vh !important;
    top: 0;
    bottom: 0;
    left: 0;
    background: var(--theme-1);
    z-index: 11;
    width: 260px;
    overflow: auto;
    transition: all 0.3s;
    box-shadow: 0 10px 30px -12px rgb(0 0 0 / 42%), 0 4px 25px 0px rgb(0 0 0 / 12%), 0 8px 10px -5px rgb(0 0 0 / 20%);
}

    #sidebar::-webkit-scrollbar, #sidebar ul.components::-webkit-scrollbar {
        width: 5px;
        border-radius: 10px;
        background-color: #eee;
        display: none;
    }

    #sidebar::-webkit-scrollbar-thumbs, #sidebar ul.components::-webkit-scrollbar-thumbs {
        width: 5px;
        border-radius: 10px;
        background-color: #333;
        display: none;
    }

    #sidebar:hover::-webkit-scrollbar, #sidebar ul.components:hover::-webkit-scrollbar {
        display: block;
    }

    #sidebar:hover::-webkit-scrollbar-thumbs, #sidebar ul.components:hover::-webkit-scrollbar-thumbs {
        display: block;
    }

    #sidebar .sidebar-header {
        padding: 10px 20px;
        background-color: #ffffff;
        border-bottom: 1px solid #eee;
        height: 70px;
        position: fixed;
        width: inherit;
        z-index: 99;
    }

.sidebar-header h3 {
    color: #333;
    font-size: 17px;
    margin: 0px;
    text-transform: uppercase;
    height: 100%;
    transition: all 0.5s ease;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .sidebar-header h3 img {
        width: max-content;
        height: 50px;
    }

#sidebar.active .sidebar-header h3 img {
    width: max-content;
    height: 25px;
    margin-right: 10px;
}

#sidebar ul li {
    padding: 2px 7px;
}

    #sidebar ul li.active > a {
        color: var(--white);
        background-color: rgba(200, 200, 200, 0.2);
    }

    #sidebar ul li a:hover {
        color: var(--theme-3);
        background-color: rgba(200, 200, 200, 0.2);
    }

        #sidebar ul li a:hover i {
            color: var(--theme-3);
        }

.dropdown-toggle::after {
    position: absolute;
    right: 10px;
    top: 23px;
}

#sidebar ul li.drodown {
    position: sticky;
}

#sidebar ul.components {
    padding: 20px 0;
    margin-top: 70px;
    background: var(--theme-1);
}

#sidebar ul li a {
    padding: 10px;
    line-height: 30px;
    border-radius: 5px;
    font-size: 15px;
    position: relative;
    font-weight: 400;
    display: block;
    color: var(--white);
}

#sidebar ul.show li a {
    padding-left: 44px !important;
}

#sidebar ul li a span {
    text-transform: capitalize;
    display: inline-block;
}

#sidebar ul li a i {
    position: relative;
    margin-right: 10px;
    top: 5px;
    color: var(--white);
    margin-left: 10px;
}

#sidebar ul li > .list-unstyled {
    transition: all .3s;
    background: rgba(200, 200, 200, 0.2);
    list-style: none;
}

#sidebar ul li a.dropdown-toggle[aria-expanded="true"] {
    color: var(--theme-2);
    background-color: rgba(200, 200, 200, 0.2);
}
/* ---------------------------------------------------
   sidebar end
----------------------------------------------------- */
/*=======================================================
   main-content navbar-design start
   ===============================================*/
#content {
    position: relative;
    transition: all 0.3s;
    background-color: #EEEEEE;
}

.top-navbar {
    width: 100%;
    z-index: 9;
    position: relative;
}

.main-content {
    padding: 10px 20px 0px 20px;
    position: relative;
    width: 100%;
}

.navbar {
    background-color: #044681;
    color: #FFFFFF;
}

.navbar-brand {
    color: var(--theme-1);
}

    .navbar-brand:hover {
        color: var(--theme-2);
    }

.mobile-logo {
    display: none;
}

.navbar button {
    background-color: transparent;
    border: none;
}

#sidebarCollapse {
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    margin-right: 20px;
    border: none;
    color: var(--theme-1);
    background-color: var(--theme-2);
    transition: all .3s;
}

    #sidebarCollapse:hover {
        color: var(--theme-2);
        background-color: var(--theme-1);
    }

    #sidebarCollapse span {
        display: flex;
        align-items: center;
        justify-content: center;
    }

.navbar-nav > li.active {
    color: #FFFFFF;
    border-radius: 4px;
    background-color: var(--theme-2);
}

.navbar-nav > li > a {
    color: #FFFFFF;
}

.navbar-nav > li.show .dropdown-menu {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
    padding: 0;
}

.dropdown-menu li {
    border-bottom: 1px solid #f9f7f7;
}

    .dropdown-menu li > a {
        font-size: 13px;
        padding: 10px 20px;
        margin: 0 5px;
        border-radius: 2px;
        font-weight: 400;
        transition: all 150ms linear;
    }

        .dropdown-menu li > a i {
            margin-right: 10px;
            font-size: 20px;
        }

.navbar-nav > .active > a:focus {
    color: #FFFFFF;
    background-color: rgba(0, 0, 0, 0.08);
}

.navbar-nav li a {
    position: relative;
    display: flex;
    padding: 10px 15px !important;
}

.card {
    margin: 10px 0;
}

.card {
    border-radius: 0px !important;
}

.card {
    display: inline-block;
    position: relative;
    border: none !important;
    width: 100%;
    margin: 15px 0;
    box-shadow: 0 1px 2px rgb(0 0 0 / 8%);
    border-radius: 6px;
    color: rgba(0,0,0, 0.87);
    background: #fff;
}

.card-stats .card-header {
    float: left;
    text-align: center;
}

.card .card-header {
    padding: 15px;
    z-index: 3;
    background-color: #fff !important;
    border-bottom: none;
}

.card .card-footer .stats .material-icons {
    position: relative;
    top: 4px;
    font-size: 16px;
}

.card-stats .card-header span {
    font-size: 36px;
    line-height: 56px;
    width: 56px;
    height: 56px;
}

.icon.icon-warning {
    color: #ff9800;
}

.icon.icon-rose {
    color: #e91e63;
}

.icon.icon-success {
    color: #4caf50;
}

.icon.icon-info {
    color: #00bcd4;
}

.card .card-footer {
    margin: 0 7px 0px;
    padding-top: 10px;
    background-color: #fff;
    border-top: 1px solid #eee;
}

.text-info {
    color: #03A9F4 !important;
}

.card-stats .card-content {
    text-align: right;
    padding-top: 10px;
}

.card .card-content .category {
    margin: 0;
}

.card .category:not([class*="text-"]) {
    color: #555555;
    font-size: 22px;
    font-weight: 400;
    line-height: 1;
    min-height: 22px;
}

.card .card-title:not(.card-calendar .card-title) {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 35px;
}

.card-stats .card-title {
    margin: 0;
}

.card .card-footer .stats {
    line-height: 22px;
    color: #555555;
    font-size: 15px;
}

.card .card-footer div {
    display: inline-block;
}

.card .card-header-text h4 {
    margin-top: 0;
    margin-bottom: 3px;
    font-size: 19px;
    font-weight: 400;
    color: #222222;
    text-decoration: none;
}

.table > thead > tr > th {
    border-bottom-width: 1px;
    font-size: 16px;
    font-weight: 400;
}

.card .card-content {
    padding: 15px 20px;
    position: relative;
}

.streamline .sl-primary {
    border-left-color: #188ae2;
}

.streamline .sl-item {
    position: relative;
    padding-bottom: 12px;
    border-left: 1px solid #ccc;
}

    .streamline .sl-item:before {
        content: '';
        position: absolute;
        left: -6px;
        top: 0;
        background-color: #ccc;
        width: 12px;
        height: 12px;
        border-radius: 100%;
    }

.streamline .sl-primary:before, .streamline .sl-primary:last-child:after {
    background-color: #188ae2;
}

.streamline .sl-danger:before, .streamline .sl-danger:last-child:after {
    background-color: #ff5b5b;
}

.streamline .sl-success {
    border-left-color: #10c469;
}

    .streamline .sl-success:before, .streamline .sl-success:last-child:after {
        background-color: #10c469;
    }

.streamline .sl-warning {
    border-left-color: #f9c851;
}

    .streamline .sl-warning:before, .streamline .sl-warning:last-child:after {
        background-color: #f9c851;
    }

.streamline .sl-danger {
    border-left-color: #ff5b5b;
}

.streamline .sl-item .sl-content {
    margin-left: 24px;
}

.streamline .sl-item .text-muted {
    color: inherit;
    opacity: .6;
    font-size: 12px;
}

.streamline .sl-item p {
    font-size: 14px;
    color: #333;
}
/*=======================================================
   main-content inner design like card end
   ===============================================*/

/*=============================================
  footer design start
  =========================================*/
.footer {
    border-top: 1px solid #e7e7e7;
}

footer {
    padding: 10px 0;
    position: relative;
    width: 100%;
}

    footer ul li {
        display: inline-block;
    }

        footer ul li a {
            color: inherit;
            padding: 15px;
            font-weight: 500;
            font-size: 12px;
            text-transform: uppercase;
            border-radius: 3px;
            text-decoration: none;
            position: relative;
            display: block;
        }

    footer .copyright {
        padding: 15px;
        font-size: 14px;
        margin: 0;
    }
/*=============================================
  footer design end
  =========================================*/

#sidebar.show-nav, .body-overlay.show-nav {
    transform: translatex(0%);
    opacity: 1;
    display: block;
    visibility: visible;
    z-index: 15;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: var(--theme-2);
}

.nav-link[data-toggle='pill'] {
    padding: 1px 18px;
    outline: none;
    border: none;
    background: #fff;
    margin-left: 5px;
}

.dropdown-menu.show {
    display: block;
    visibility: visible;
    opacity: 1;
    padding: 1rem;
    will-change: auto !important;
}

.header-top {
    width: 100%;
    display: flex;
    padding: 10px 0 15px;
    background: #fff;
}

.filter_btn, .filter_btn:active, .filter_btn:focus {
    box-shadow: none !important;
    display: flex;
    width: fit-content;
}

    .filter_btn:hover, .dropdown1.show .filter_btn {
        color: rgb(2 53 100) !important;
    }

    .filter_btn::after {
        display: none !important;
    }

    .filter_btn span {
        color: #333 !important;
    }

.dropdown1.show .filter_btn span {
    color: rgb(2 53 100) !important;
}

.no-padding {
    padding: 0 !important;
}

.dropdown-menu {
    width: 100%;
}

.input-group-my {
    padding: 10px 0 0;
    margin-bottom: 10px;
}

.group1 {
    position: relative;
    margin-bottom: 45px;
}

.group {
    position: relative;
    margin-bottom: 10px;
}

.input1 {
    font-size: .8rem;
    padding: 10px 10px 10px 10px;
    display: block;
    width: 100%;
    border: .1rem solid #ccc;
    border-radius: 5px;
    height: 35px;
}

.input {
    font-size: .8rem;
    padding: 10px 10px 10px 10px;
    display: block;
    width: 100%;
    border: .1rem solid #ccc;
    border-radius: 5px;
    height: 35px;
}

select.input1 {
    padding-top: 6px;
    height: 38px;
    padding-bottom: 6px;
}

select.input {
    padding-top: 6px;
    height: 38px;
    padding-bottom: 6px;
}

.input1:hover {
    border: .14rem solid rgb(61, 56, 56);
}

.input:hover {
    border: .14rem solid rgb(61, 56, 56);
}

.input1:focus {
    border: .14rem solid #0652dd;
}

.input:focus {
    border: .14rem solid #0652dd;
}

.label1 {
    color: #9ea1ac;
    font-size: 1rem;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 5px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.label {
    color: #9ea1ac;
    font-size: 1rem;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    left: 15px;
    top: 5px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    margin: 0;
}

.input1:focus ~ .label1, .input1:valid ~ .label1,
.input1:read-only ~ .label1, .input1:disabled ~ .label1 {
    top: -14px;
    font-size: .8rem;
    color: #2c3e50;
    font-weight: bold;
    background-color: #fff;
    padding: 3px 6px 1px;
}

.input:focus ~ .label, .input:valid ~ .label, .input:read-only ~ .label,
.input:disabled ~ .label {
    top: -14px;
    font-size: .8rem;
    color: #2c3e50;
    font-weight: bold;
    background-color: #fff;
    padding: 3px 6px 1px;
}

input:focus, select:focus {
    outline: none;
}

.has-error {
    visibility: hidden;
    font-size: 0.6rem;
    font-weight: bold;
    padding-left: .3rem;
}

.my-filter {
    padding: 10px !important;
    border: none !important;
    box-shadow: var(--menu-shadow);
}

.btn {
    font-size: 13px !important;
}

.btn-dkm {
    transition: all .3s;
    color: #fff !important;
    background-color: var(--theme-2) !important;
    border-color: var(--theme-2) !important;
}

.btn-dkm:hover {
    background-color: var(--theme-1) !important;
    border-color: var(--theme-1) !important;
}

.kec-add-btn {
    display: flex;
    color: var(--text-color) !important;
    font-weight: bold !important;
    outline: none;
    justify-content: center;
    align-items: center;
}

.kec-add-btn i {
    color: #f15b26 !important;
    margin-right: 8px;
}

.kec-add-btn i:hover {
    color: #d84e1b !important;
}

.kec-add-btn:hover {
    color: var(--text-color) !important;
}

.table-hover > tbody > tr:hover {
    --bs-table-accent-bg: #e5d5bc !important;
    cursor: pointer;
    background: #e5d5bc;
}

.kec-add-btn:focus, .kec-add-btn:active {
    outline: none;
    box-shadow: none !important;
}

.header-kec {
    width: 100%;
    display: flex;
    padding: 10px 0 15px;
    background: var(--body-bg);
}

.body-table { /* flex-shrink: 0;    */
    position: relative;
    overflow: auto;
    max-width: 100%;
    width: 100%;
    /*white-space: nowrap;*/
    overflow-x: auto;
    margin-bottom: 10px;
}

.first-col {
    position: sticky;
    background-color: #eeeeee;
    width: 100px;
    min-width: 100px;
    max-width: 100px;
    left: -11px;
    z-index: 9;
}

th.first-col {
    background: #212529;
}

tr:nth-child(even) > td.first-col {
    background-color: #eeeeee;
}

tr:nth-child(odd) > td.first-col {
    background-color: #e2e2e2;
}

.table-hover .table-dark:hover {
    background-color: #212529 !important;
}

.text-right {
    float: right;
}

.grouplist {
    position: relative;
    padding-top: 10px;
}

.grouplist .list-group-item:first-child {
    padding-top: 20px;
}

.labellist {
    position: absolute;
    pointer-events: none;
    left: 15px;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
    top: -8px;
    font-size: .9rem;
    color: #2c3e50;
    font-weight: bold;
    background-color: #fff;
    padding: 3px 6px;
}

.p-cursor {
    cursor: pointer;
}

table thead tr {
    text-align: center;
}

table th, table td {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    /*white-space: nowrap;*/
}

table th {
    white-space: nowrap;
}

.card-tab-bar {
    width: 33%;
    padding: 0% 2%;
}

.circular-progress {
    width: var(--progress-bar-width);
    height: var(--progress-bar-height);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.inner-circle {
    position: absolute;
    width: calc(var(--progress-bar-width) - 20px);
    height: calc(var(--progress-bar-height) - 20px);
    border-radius: 50%;
    background-color: lightgrey;
}

.percentage {
    position: relative;
    font-size: var(--font-size);
    color: rgb(0, 0, 0, 0.8);
    margin: 0;
}

.model-header {
    background-color: var(--theme-2);
    color: #fff;
}

.round_box {
    background: #fff;
    width: 100%;
    height: 65px;
    border-radius: 5px;
    display: flex;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem;
    margin: 0rem 0 1rem;
}

.round_box a {
    color: #ebebeb;
    word-wrap: break-word;
    font-size: 15px;
    font-weight: bold;
    flex-direction: column;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-shadow: 10px 2px 10px var(--theme-1);
}

.round_one {
    background-color: #f39c12;
}

.round_two {
    background-color: #ed4f36;
}

.round_three {
    background-color: #2ecc71;
}

.round_four {
    background-color: #16a085;
}

.round_five {
    background-color: #f1c40f;
}

.round_six {
    background-color: #2980b9;
}

.height-43 {
    height: 430px;
    overflow: auto;
}

.height-30 {
    height: 300px;
    overflow: auto;
}

div#calendar {
    background: #fff;
    padding: 0rem 2rem;
    margin: 1rem 0;
}

.fc-row.fc-week.fc-widget-content.fc-rigid {
    height: 36px !important;
}

.fc-scroller.fc-day-grid-container {
    height: 240px !important;
}

.fc-toolbar.fc-header-toolbar {
    margin-bottom: 0 !important;
    display: flex;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.fc-toolbar .fc-right, .fc-clear {
    float: right;
    display: none;
}

.fc-toolbar h2 {
    margin: 0;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--theme-2);
}

.fc-state-default.fc-corner-left, .fc-state-default.fc-corner-right {
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    background: var(--theme-1);
    color: var(--white);
    border: none;
    outline: none;
}

.fc .fc-button-group > * {
    float: left;
    margin: 0 0 0 5px;
}

.calender_view {
    display: none;
    background: #fff;
    padding: 1rem 1rem;
}

th.fc-day-header.fc-widget-header {
    background: var(--theme-2);
    color: #ffff;
}

.calender_view h2 {
    font-size: 1rem;
    color: var(--theme-1);
    font-weight: bold;
}

.calender_view table th {
    color: var(--theme-1);
}

.calender_view table {
    width: 100%;
}

.calender_view table, .calender_view table tr, .calender_view table td, .calender_view table th {
    border: 1px solid #999;
    font-size: 1rem;
    border-collapse: collapse;
}

.calender_view table th, .calender_view table td {
    padding: 9px 0;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    white-space: nowrap;
}

.dot-indicate {
    width: 100%;
    position: relative;
    padding: 1rem 0 0;
}

.dot-indicate ul {
    display: flex;
    color: #222;
    font-weight: bold;
    font-size: .9rem;
    width: 100%;
    justify-content: space-around;
}

.dot-indicate ul li span {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 7px;
}

p.due {
    font-size: 10px;
    padding: 0;
    margin: 0;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    color: #fff;
    line-height: 16px;
}

.custom-table {
    width: 100%;
    padding: 2rem;
    overflow: auto;
    border-color: #222;
}

.custom-table table {
    width: 100%;
    border-color: #222;
}

.custom-table table th {
    background-color: var(--theme-2);
    color: var(--white);
    vertical-align: middle;
}

.custom-table table tr td.head {
    background-color: var(--theme-1);
    color: var(--white);
}

.custom-table table tr td.sub-head {
    background-color: #b4c1e3;
    color: #000;
}

.nav-link[data-target='#pills-compliance_loc'], .nav-link[data-target='#pills-act_setup'],
.nav-link[data-target='#pills-cal_setup'] {
    padding: 5px 7.1rem;
    outline: none;
    border: none;
    background: #fff;
    margin: 5px;
}

.multisteps-form__title {
    font-size: 20px;
    text-align: left;
    color: var(--theme-1);
    font-weight: 600;
}

.content__title--m-sm {
    margin-bottom: 10px;
}

.multisteps-form__progress {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.multisteps-form__progress-btn {
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    position: relative;
    padding-top: 20px;
    color: var(--theme-2);
    text-indent: -9999px;
    border: none;
    background-color: transparent;
    outline: none !important;
    cursor: pointer;
}

@media (min-width: 500px) {
    .multisteps-form__progress-btn {
        text-indent: 0;
    }
}

.multisteps-form__progress-btn:before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 13px;
    height: 13px;
    content: '';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all 0.15s linear 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    border: 2px solid currentColor;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 3;
}

.multisteps-form__progress-btn:after {
    position: absolute;
    top: 5px;
    left: calc(-50% - 13px / 2);
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    display: block;
    width: 100%;
    height: 2px;
    content: '';
    background-color: currentColor;
    z-index: 1;
}

.multisteps-form__progress-btn:first-child:after {
    display: none;
}

.multisteps-form__progress-btn.js-active {
    color: var(--theme-1);
}

.multisteps-form__progress-btn.js-active:before {
    -webkit-transform: translateX(-50%) scale(1.2);
    transform: translateX(-50%) scale(1.2);
    background-color: currentColor;
}

.multisteps-form__form {
    position: relative;
    overflow: hidden;
}

.multisteps-form__panel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    visibility: hidden;
}

.multisteps-form__panel.js-active {
    height: auto;
    opacity: 1;
    visibility: visible;
}

.multisteps-form__panel[data-animation="scaleOut"] {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.multisteps-form__panel[data-animation="scaleOut"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.multisteps-form__panel[data-animation="slideHorz"] {
    left: 50px;
}

.multisteps-form__panel[data-animation="slideHorz"].js-active {
    transition-property: all;
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
    transition-delay: 0s;
    left: 0;
}

.multisteps-form__panel[data-animation="slideVert"] {
    top: 30px;
}

.multisteps-form__panel[data-animation="slideVert"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    top: 0;
}

.multisteps-form__panel[data-animation="fadeIn"].js-active {
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    transition-delay: 0s;
}

.multisteps-form__panel[data-animation="scaleIn"] {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
}

.multisteps-form__panel[data-animation="scaleIn"].js-active {
    transition-property: all;
    transition-duration: 0.2s;
    transition-timing-function: linear;
    transition-delay: 0s;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.select2-container {
    min-width: 100%;
}

::-webkit-input-placeholder { /* WebKit browsers */
    color: #fff;
    opacity: 0;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #fff;
    opacity: 0;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #fff;
    opacity: 0;
}

:-ms-input-placeholder { /* Internet Explorer 10+ */
    color: #fff;
    opacity: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    font-size: 10px;
    margin-top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    margin-top: 8px !important;
}

.select2-container .select2-search--inline .select2-search__field {
    margin-top: 0 !important;
}

.file-input {
    display: inline-block;
    text-align: left;
    background: #fff;
    padding: 16px;
    width: 100%;
    position: relative;
    border-radius: 3px;
}

.file-input > [type='file'] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 10;
    cursor: pointer;
}

.file-input > .button {
    display: inline-block;
    cursor: pointer;
    background: var(--theme-2);
    padding: 8px 16px;
    border-radius: 2px;
    margin-right: 8px;
}

.file-input:hover > .button {
    background: var(--theme-1);
    color: white;
}

.file-input > .label {
    color: #333;
    white-space: nowrap;
    opacity: .3;
}

.file-input.-chosen > .label {
    opacity: 1;
}
/* ---------------------------------------------------
    MEDIAQUERIES
----------------------------------------------------- */

@media only screen and (min-width:992px) {

    #sidebar.active {
        width: 80px;
        height: 100% !important;
        position: absolute !important;
        overflow: visible !important;
        top: 0 !important;
        z-index: 666;
        float: left !important;
        bottom: 0 !important;
    }

    #sidebar.active .sidebar-header h3 span {
        display: none;
        transition: all 0.5s ease;
    }

    #sidebar.active ul li a span {
        display: none;
        transition: all 0.5s ease;
    }

    #sidebar.active .dropdown-toggle::after {
        display: none;
        transition: all 0.5s ease;
    }

    #content {
        width: calc(100% - 260px);
        position: relative;
        float: right;
        transition: all 0.3s;
        background-color: #EEEEEE;
        min-height: 100vh;
    }

        #content.active {
            width: calc(100% - 80px);
        }

    #sidebar.active .menu {
        position: absolute;
        left: 81px;
        background-color: var(--theme-1);
        width: 180px;
        height: auto;
        margin: 5px 0;
        top: 0;
        border: 1px solid #dcd9d9;
        z-index: 4;
    }

    #sidebar ul.show li a {
        padding-left: 14px;
    }
}

@media only screen and (min-width:992px) {
    .dropdown-menu {
        border: 0;
        box-shadow: 0 2px 5px 0 rgb(0 0 0 / 26%);
        transform: translate3d(0, -20px, 0);
        visibility: hidden;
        transition: all 150ms linear;
        display: block;
        min-width: 12rem;
        right: 0;
        left: auto;
        opacity: 0;
    }

    #sidebar.active ul.show li a {
        padding-left: 14px !important;
    }
}

@media only screen and (max-width:798px) {
    .dot-indicate ul {
        flex-direction: column;
    }
}
/*===============small-screen overlay sidebar design media queries==============*/

@media only screen and (max-width:992px) {
    #sidebar {
        position: fixed;
        top: 0;
        bottom: 0;
        z-index: 10;
        width: 260px;
        transform: translatex(-100%);
        transition: all 150ms linear;
        box-shadow: none !important;
    }

    .body-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
        visibility: hidden;
        opacity: 0;
        z-index: 3;
        transition: all 150ms linear;
        background-color: rgba(0,0,0,0.5);
    }
}
/*===============small-screen overlay sidebar design media queries==============*/

@media only screen and (max-width:550px) {
    .login_left {
        display: none;
    }

    .login_right {
        width: calc(100vw - 19vw);
    }

    .mobile-logo {
        display: flex;
        height: 20px;
        width: auto;
    }

    .card-tab-bar {
        width: 50% !important;
    }
}

@media only screen and (min-width:552px) and (max-width:967px) {
    .login_left, .login_right {
        width: calc(100vw - 25vw);
    }

    .mobile-logo {
        display: flex;
        height: 20px;
        width: auto;
    }

    .card-tab-bar {
        width: 50% !important;
    }
}


/* loader */
.loader {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: aliceblue;
    z-index: 99;
}

.loader ul {
    display: flex;
    width: max-content;
    margin: 50vh auto;
}

.loader ul li {
    list-style: none;
    width: 40px;
    height: 40px;
    margin: auto 20px;
    background: blueviolet;
    border-radius: 50%;
    animation: bouncing 1s linear infinite alternate-reverse;
}

@keyframes bouncing {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-150px);
    }

    100% {
        transform: translateY(0);
    }
}

.loader ul li:nth-child(2) {
    animation-delay: 0.2s;
    background-color: #e67e22;
}

.loader ul li:nth-child(3) {
    animation-delay: 0.4s;
    background-color: #e74c3c;
}

.loader ul li:nth-child(4) {
    animation-delay: 0.6s;
    background-color: #f1c40f;
}

.loader ul li:nth-child(5) {
    animation-delay: 0.8s;
    background-color: #16a085;
}

.card-manually {
    min-width: 20% !important;
}


.navbar {
    background-color: #fff;
    color: #333;
}

.mannual-cal .ui-datepicker-inline.ui-datepicker.ui-widget.ui-widget-content.ui-helper-clearfix.ui-corner-all {
    width: 100%;
}

/* Border animation styles */
.border-animation {
    animation: borderAnimation 1s forwards;
}

@keyframes borderAnimation {
    0% {
        border: 2px solid transparent; /* Initial border */
    }

    50% {
        border: 5px solid #EF6328; /* Expanding border */
    }

    100% {
        border: 2px solid transparent; /* Back to original */
    }
}

/* Style for the left and right navigation buttons */
.ui-datepicker-prev, .ui-datepicker-next {
    background-color: transparent; /* Remove background color */
    color: black; /* Set arrow color to black (or any color you like) */
    border: none; /* Remove borders */
    font-size: 18px; /* Adjust the size of the arrows */
    font-weight: bold; /* Make the arrows bold */
    line-height: 30px; /* Align the arrows properly */
    padding: 0 5px; /* Adjust the padding around the arrows */
}

/* Use left and right arrows for the buttons */
.ui-datepicker-prev:before {
    content: '\2190'; /* Unicode for the left arrow */
    font-size: 20px;
}

.ui-datepicker-next:before {
    content: '\2192'; /* Unicode for the right arrow */
    font-size: 20px;
}

/* Add hover effect */
.ui-datepicker-prev:hover, .ui-datepicker-next:hover {
    background-color: #f0f0f0; /* Light background color on hover */
    cursor: pointer; /* Change cursor to pointer */
}

.label {
    border-radius: 10px;
}

input.input:not(.hasDatepicker):read-only,
input.input:not(.hasDatepicker):disabled,
input.hasDatepicker:disabled,
input[type="checkbox"]:disabled,
select.input:disabled,
select.readonly {
    background: #c7c7c76e;
    border-color: #c7c7c76e !important;
    cursor: not-allowed;
    pointer-events: none;
}

input[type="color"] {
    cursor: default !important;
    pointer-events: auto !important;
}

.customReadonly {
    background: #c7c7c76e;
    border-color: #c7c7c76e !important;
    cursor: not-allowed;
    pointer-events: none;
}

.custom-control-input:disabled ~ .custom-control-label {
    color: #6c757d;
    border-color: #6c757d;
    cursor: not-allowed;
}

.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: -1.5rem;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #b4c7d9;
    border: 1px solid #ebebeb;
}
/*
.ui-widget.ui-widget-content {
    z-index: 1 !important;
}
*/

.body-table {
    z-index: 1 !important;
}

/* Zoom effect */
#logoPreview {
    transition: transform 0.5s ease, width 0.5s ease, height 0.5s ease;
    cursor: pointer;
    width: 100px; /* Initial small size */
    height: auto;
}

#logoPreview:hover {
    transform: scale(2); /* Zoom effect with larger scale */
    width: 400px; /* Large view size */
    height: auto;
}

#logoPreview:focus {
    outline: none;
}

#previewContainer {
    position: relative;
    display: inline-block;
}

#zoomedLogo {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    z-index: 1000;
    border: 2px solid #ccc;
    padding: 20px;
    background: white;
}

#zoomedLogo.show {
    display: block;
}

.ComplianceMappingTable td {
    padding: 5px 0px !important;
}

.fixed-scroller-table {
    width: 100%; /* Set the container width */
    overflow-x: auto; /* Allow horizontal scrolling */
    display: block;
}

.fixed-scroller-table table {
    width: 100%;
    border-collapse: collapse;
}


.fixed-scroller-table tbody td:nth-child(-n+3),
.fixed-scroller-table thead th:nth-child(-n+3) {
    position: sticky;
    left: 0;
    background-color: #fff; /* Background for the fixed columns */
}


.fixed-scroller-table tbody td {
    white-space: nowrap; /* Prevent wrapping for horizontal scroll */
}

.fixedTd {
    z-index: 5;
}

table thead {
    position: sticky;
    /*top: 0;
    background-color: #fff;*/ /* Ensure the header has a background so it stands out */
    /*z-index: 1;*/ /* Ensure the header stays above the scrolling body */
}

.RedBorder {
    border: 4px solid red !important;
}
