@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-Regular.ttf) format('truetype')
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-Medium.ttf) format('truetype')
}

@font-face {
    font-family: 'Poppins';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-MediumItalic.ttf) format('truetype')
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-SemiBold.ttf) format('truetype')
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url(../fonts/Poppins/Poppins-Bold.ttf) format('truetype')
}


:root {
    --primary-color: #0066FF;
    --secondary-color: #FFDD00;
    --bg-primary-gradient: linear-gradient(180deg, rgba(0, 96, 240, 1) 50%, rgba(0, 48, 120, 1) 100%);
    --bg-secondary-gradient: linear-gradient(180deg, rgba(253, 253, 254, 1) 0%, rgba(238, 238, 239, 1) 100%);
}

body {
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
}

a {
    color: #000;
    text-decoration: none;
}

.btn {
    border: none;
    font-size: 12px;
}

.btn:hover,
.close-btn:hover {
    opacity: 0.7;
    border-color: #fff;
}

.btn:focus {
    outline: none;
    box-shadow: 0px 3px 6px #00000038;
}

a:active,
.btn:active {
    outline: none;
    box-shadow: none;
}

.btn-disable {
    pointer-events: none;
    opacity: .65;
}

.form-select:focus {
    box-shadow: none;
}

.form-control,
.form-select,
.form-label {
    font-size: 12px;
    border-radius: 7px;
}

span {
    font-size: 12px;
}

.card-primary input::placeholder {
    color: #000;
    opacity: 1;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    border: none;
    font-size: 12px;
}

th,
td {
    text-align: left;
    padding: 8px;
}

th {
    font-weight: 500;
}

table tbody tr:nth-child(odd) {
    background-color: #fff;
}

table tbody tr:nth-child(even) {
    background-color: #F2F2F3;
}

.marquee-text {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 6;
    background-color: #ffc107;
    height: 25px;
}

.topbar-menu {
    padding: 10px 12px;
    margin: 25px 0 0 0;
    background: var(--bg-secondary-gradient);
    box-shadow: 0px 3px 30px #0000002E;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
    min-height: 60px;
    max-height: 60px;
}

.topbar-menu li {
    font-size: 14px;
}

.topbar-menu .navbar-brand {
    font-size: 1.1rem;
    margin: 0;
}

.topbar-menu .navbar-brand span {
    font-size: 12px;
    font-weight: 400;
}

.topbar-menu .navbar-brand,
.topbar-menu .navbar {
    padding: 0;
}

.topbar-menu .navbar .container-fluid {
    padding: 0;
}

.mt-10 {
    margin-top: -10px;
}

::-webkit-scrollbar {
    width: 6px;
    height: 3px;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.shape-btn {
    width: 40px;
    height: 40px;
    box-shadow: 0px 3px 6px #00000038;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification {
    position: relative;
}

.notification-bg {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background-color: #FE0000;
    color: #fff;
    font-weight: 600;
    position: absolute;
    top: -75%;
    right: -75%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification-bg span {
    font-size: 12px;
}

.mt-125 {
    margin-top: 65px;
}

.mt-90 {
    margin-top: 90px;
}

.fs-sm {
    margin-top: 5px;
}

.fw-500 {
    font-weight: 500;
}

.fs-12 {
    font-size: 12px;
}

.rectangle-block-1,
.rectangle-block-2 {
    background: var(--bg-primary-grey);
    box-shadow: 0px 3px 6px #00000038;
    border-radius: 7px;
}

.rectangle-block-2 {
    border-radius: 7px 7px 0 0;
    padding: .5rem;
}

h6 {
    font-size: 14px;
}

.fs-14 {
    font-size: 14px;
}

.fs-10 {
    font-size: 10px;
}

.fs-11 {
    font-size: 11px;
}

.fs-11 p,
.fs-11 h6 {
    font-size: 11px;
}

.fs-13 {
    font-size: 13px;
}

.fs-10 h6 {
    font-size: 10px;
    font-weight: 600;
}

.fw-header-500 {
    font-weight: 500;
}

.page-body-wrapper {
    display: flex;
    margin-top: 75px;
}

.main-panel {
    width: calc(100% - 360px);
    padding: 0 0 0 1rem;
    margin-top: 0;
}

#scroll-up {
    position: fixed;
    bottom: 10px;
    right: 20px;
    width: 30px;
    height: 32px;
    opacity: 1;
    z-index: 999;
    color: #fff;
    cursor: pointer;
    line-height: 34px;
    text-align: center;
    border-radius: 5px;
    background-color: var(--primary-color);

    i {
        font-size: 24px;
        color: #fff;
    }
}

/* Login Page Styles */

.bg-primary-doc {
    overflow: hidden;
    background: url('.././images/bg-doc-matrix.png') no-repeat center fixed;
    background-size: cover;
}

.card-primary {
    background: var(--bg-primary-gradient);
    color: #fff;
    box-shadow: 0px 6px 30px #00000029;
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    z-index: 2;
}

.card-primary a {
    color: #fff;
}

.card-primary .logo-section {
    padding: 1rem 0;
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.card-primary .logo-section .img-logo {
    max-width: 30%;
}

.card-primary h6.form-header {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.6px;
}

.card-primary span {
    font-size: 12px;
}

.card-primary .form-control {
    border-radius: 9px;
}

.card-primary input {
    color: #000;
}

.password-box {
    position: relative;
}

.icon-eye {
    position: absolute;
    top: 35px;
    right: 15px;
}

.icon-eye i {
    font-size: 1rem;
    color: #000;
}

.btn-login {
    background-color: var(--primary-color);
    border-radius: 9px;
    padding: .5rem;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    min-width: 40%;
    letter-spacing: 2px;
}

.card-primary .form-control,
.btn-login {
    min-height: 35px;
}

.btn-login:hover {
    background-color: var(--primary-color);
    color: #fff;
}

a.registration-link {
    color: var(--secondary-color);
}

.offcanvas-header {
    padding: .5rem 1rem;
    min-height: 54px;
    justify-content: space-between;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125);
    text-transform: uppercase;
}

h5.offcanvas-title {
    font-size: 14px;
}

.offcanvas-header .btn-grey {
    background: var(--bg-grey-gradient);
    border-radius: 7px;
    padding: 0.5rem 1rem;
    box-shadow: 0px 3px 6px #00000038;
    font-weight: 400;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #000;
}

.boardround-report-wrapper {
    margin-top: 1rem;
}

.card-contents {
    background-color: #fff;
    padding: 1rem;
    box-shadow: 0px 20px 60px #00000029;
    border-radius: 7px;
}

.filters-section {
    margin-bottom: .5rem;
}

.search-box {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
}

.filters-section .search-box form {
    width: 100%;
}

.filters-section .search-box input,
.search-box .btn-primary {
    margin-right: .5rem;
}

.search-box .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu):not(.form-floating),
.search-box .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {

    border-radius: 7px;
}

.filters-section input,
.filters-section .btn,
.filters-section a,
.user-permission-wrapper .filters-section .search-box .form-select {
    height: 34px;
}

.table-list {
    margin-bottom: .5rem;
    box-shadow: 0px 3px 6px #00000038;
    border-radius: 7px;
}

.table-list thead tr {
    background-color: var(--primary-color);
    color: #fff;
}

.table-list thead tr:first-child th:first-child {
    border-radius: 7px 0 0 0;
}

.table-list thead tr:first-child th:last-child {
    border-radius: 0 7px 0 0;
    text-align: center;
}

.table-list tbody tr:last-child td:first-child {
    border-radius: 0 0 0 7px;
}

.table-list tbody tr:last-child td:last-child {
    border-radius: 0 0 7px 0;
}

.table-list tbody tr td:last-child {
    text-align: center;
}

.table-list .btn-primary,
.table-list .btn-warning,
.table-list .btn-secondary,
.table-list .btn-danger {
    padding: .2rem .5rem;
}

.table-list .badge {
    padding: .45rem .5rem;
    font-size: 12px;
    font-weight: 500;
    min-width: 80px;
}

.listing-pagination .pagination {
    justify-content: end;
    margin-bottom: 0;
}

.listing-pagination .pagination .page-link {
    font-size: 12px;
}

.offcanvas-boardround-report.offcanvas.offcanvas-end {
    width: 90%;
}

.card-report {
    background: #FFFFFF;
    box-shadow: 0px 20px 60px #00000014;
    border-radius: 8px;
    padding: .5rem;
    box-shadow: 0px 3px 6px #00000038;
}

.card-boxshadow {
    background: var(--bg-grey-gradient);
    box-shadow: 0px 3px 6px #00000038;
    border-radius: 7px;
    margin-bottom: .5rem;
}

.card-report .card-boxshadow {
    border-radius: 7px;
}

.blue-block {
    background: linear-gradient(180deg, rgba(18, 129, 223, 1) 0%, rgba(6, 128, 210, 1) 100%);
    box-shadow: 0px 3px 6px #00000038;
    border-radius: 7px 7px 0 0;
    padding: 0.5rem .75rem;
    color: #fff;
}

.blue-block h6 {
    font-size: 12px;
    margin-bottom: 0;
}

.container-duplicate {
    border: 1px dashed rgb(112, 112, 112, .9);
    border-radius: 5px;
    padding: .25rem;
}

.btn-add-more {
    min-height: 32px;
    width: 100%;
    padding: .4rem .3rem;
}

.add-btn-row {
    padding: 0 .5rem .5rem .5rem;
}

.offcanvas-boardround-report.offcanvas.offcanvas-end .btn-success {
    min-height: 32px;
}

.progress-wrapper:first-child {
    margin-bottom: .2rem;
}
 
.progress-wrapper .progress-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
 
.progress-wrapper span {
    font-size: 10px;
    font-weight: 500;
}
 
.progress-wrapper .progress {
    border: .5px solid #d3d3d3;
}
 
.progress-wrapper .progress-bar {
    font-size: 10px;
    font-weight: 600;
}
 

/* Media Query */

@media (min-width:992px) {

    .mobile-menu {
        display: none;
    }

    .page-body-wrapper {
        padding-left: 0;
    }

    .logo-section-sm {
        display: none;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .rectangle-block {
        margin-top: -13px;
    }

    .notification-bg {
        top: -30%;
        right: -25%;
    }

    .btn-login {
        margin-bottom: 1rem;
        width: 100%;
        border-radius: 6px;
    }
}

@media (max-width:991px) {
    .mobile-menu .navbar {
        padding: 1.5rem .25rem;
        align-items: start;
    }

    .mobile-menu .navbar .navbar-brand {
        padding: 0;
        margin: 0;
    }

    .mobile-menu .navbar .navbar-toggler {
        padding: 0 .75rem;
    }

    .page-body-wrapper {
        margin-top: 0 !important;
    }

    .shape-box {
        font-size: 12px;
    }

    .main-panel {
        width: 100%;
        padding: 0;
        margin-top: 0 !important;
    }

    .topbar-menu {
        display: none;
    }

    .notification-bg {
        top: -16%;
        right: -35%;
    }

    .card {
        padding: 0;
    }

    #content {
        position: inherit;
        width: 100%;
    }

    .bg-primary-doc {
        background: url(.././images/bg-doc-matrix-sm.png) no-repeat center fixed;
        padding: 1rem 0;
    }

    .logo-section-sm {
        margin-bottom: 1rem;
    }

    .card-primary .logo-section {
        padding-bottom: 0;
    }

    .card-primary .logo-section .img-logo {
        display: none;
    }
}

@media (max-width:767px) {

    .notification-bg {
        top: -16%;
        right: -35%;
    }

    .card-primary {
        padding: 1rem;
        border-radius: 14px;
    }

    .btn-login {
        width: 100%;
    }

    .offcanvas-footer .btn-footer {
        width: 100%;
        margin: 0 auto;
    }

    .card-contents {
        padding: .5rem;
    }

    .content-section {
        padding: .5rem 0;
    }

    .filters-section {
        margin-bottom: 0;
    }

    .filters-section .search-box .btn-primary {
        width: auto;
        margin-right: 0;
    }

    .filters-section .btn-primary {
        width: 100%;
    }

    .table-wrapper {
        overflow-x: scroll;
    }

    .table-list a:first-child,
    .table-list .btn:first-child {
        margin-bottom: .25rem;
    }

    .listing-pagination {
        padding-top: .5rem;
    }

    .listing-pagination .pagination {
        justify-content: center;
    }

    .table-list a:first-child {
        margin-bottom: .25rem;
    }

    .offcanvas-boardround-report.offcanvas.offcanvas-end {
        width: 100%;
    }

    .card-report,
    .card-boxshadow,
    .offcanvas-header .btn-grey {
        border-radius: 4px;
    }

    .blue-block {
        border-radius: 4px 4px 0 0;
    }
}


@media (max-width:359px) {
    h6 {
        font-size: 12px;
    }
}

@media (max-height: 450px) {
    .sidenav {
        padding-top: 15px;
    }

    .sidenav a {
        font-size: 18px;
    }

    .vh-100 {
        height: auto !important;
    }

    .bg-primary-doc .row {
        margin: 20px 0;
    }
}