::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #f1f1f1;
}


/* Handle */

::-webkit-scrollbar-thumb {
    /* background: #888; */
    background: #cbcbcb;
    border-radius: 5rem;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #979797;
}


/* @import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap"); */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');
:root {
    --header-height: 3rem;
    --nav-width: 68px;
    --first-color: #4723D9;
    --first-color-light: #acacac;
    --white-color: #F8F9FA;
    --navy-color: #344767;
    --navy-color-2: #273752;
    /* --white-color: #F7F6FB; */
    /* --body-font: 'Nunito', sans-serif; */
    --body-font: 'Inter', sans-serif;
    /* --normal-font-size: 1rem; */
    --normal-font-size: 0.875rem;
    --z-fixed: 100
}

*,
::before,
::after {
    box-sizing: border-box
}

body {
    position: relative;
    margin: var(--header-height) 0 0 0;
    padding: 0 1rem;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s;
    background-color: var(--white-color);
}

a {
    text-decoration: none
}

.header {
    width: 100%;
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1rem;
    background-color: var(--white-color);
    z-index: var(--z-fixed);
    transition: .5s
}

.header_toggle {
    /* color: var(--first-color); */
    color: var(--navy-color);
    font-size: 1.5rem;
    cursor: pointer
}

.header_img {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden
}

.header_img img {
    width: 40px
}

.l-navbar {
    position: fixed;
    top: 0;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    background-color: var(--white-color);
    /* background-color: var(--first-color); */
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}

.nav-sidebar {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden
}

.nav_logo,
.nav_link {
    display: grid;
    grid-template-columns: max-content max-content;
    align-items: center;
    column-gap: 1rem;
    padding: .5rem 0 .5rem 1rem
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-icon {
    font-size: 2rem;
    /* color: var(--white-color); */
    color: var(--navy-color);
}

.nav_logo-name {
    /* color: var(--white-color); */
    color: var(--navy-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav_link {
    position: relative;
    color: var(--first-color-light);
    margin-bottom: 1.5rem;
    transition: .3s
}

.nav_link:hover {
    /* color: var(--white-color); */
    color: var(--navy-color);
}

.nav_icon {
    font-size: 1.25rem
}

.l-show {
    left: 0
}

.body-pd {
    padding-left: calc(var(--nav-width) + 1rem)
}

.is-active {
    /* color: var(--white-color); */
    color: var(--navy-color);
}

.navbar-active {
    box-shadow: none !important;
    background-color: #ffffff !important;
    font-weight: 600;
    border-radius: 0.75rem !important;
    padding-top: 0.95rem;
    padding-bottom: 0.95rem;
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    box-shadow: 0px 1px 1px rgba(3, 7, 18, 0.01), 0px 5px 4px rgba(3, 7, 18, 0.01), 0px 12px 9px rgba(3, 7, 18, 0.02), 0px 20px 15px rgba(3, 7, 18, 0.02), 0px 32px 24px rgba(3, 7, 18, 0.03) !important;
}

.nav_icon-active {
    background-color: var(--navy-color) !important;
    color: #ffffff !important;
    padding: 0.35rem;
    border-radius: 0.35rem !important;
    background-image: var(--bs-gradient);
    box-shadow: 0px 1px 1px rgba(3, 7, 18, 0.01), 0px 5px 4px rgba(3, 7, 18, 0.01), 0px 12px 9px rgba(3, 7, 18, 0.02), 0px 20px 15px rgba(3, 7, 18, 0.02), 0px 32px 24px rgba(3, 7, 18, 0.03);
}

.is-active::before {
    content: '';
    position: absolute;
    left: 0;
    width: 2px;
    height: 32px;
    background-color: var(--white-color)
}

.height-100 {
    height: 100vh
}

@media screen and (min-width: 768px) {
    body {
        margin: calc(var(--header-height) + 1rem) 0 0 0;
        padding-left: calc(var(--nav-width) + 2rem)
    }
    .header {
        height: calc(var(--header-height) + 1rem);
        padding: 0 2rem 0 calc(var(--nav-width) + 2rem)
    }
    .header_img {
        width: 40px;
        height: 40px
    }
    .header_img img {
        width: 45px
    }
    .l-navbar {
        left: 0;
        padding: 1rem 1rem 0 0
    }
    .l-show {
        width: calc(var(--nav-width) + 165px)
    }
    .body-pd {
        padding-left: calc(var(--nav-width) + 188px)
    }
}

.box-shadows {
    box-shadow: 0px 1px 1px rgba(3, 7, 18, 0.01), 0px 5px 4px rgba(3, 7, 18, 0.02), 0px 12px 9px rgba(3, 7, 18, 0.02), 0px 20px 15px rgba(3, 7, 18, 0.03), 0px 32px 24px rgba(3, 7, 18, 0.04);
}

.box-shadows2 {
    /* http://smoothshadows.com/#djEsMSw1LDAuMiw0MSwzMiwwLCMwMzA3MTIsI2YzZjRmNiwjZmZmZmZmLDI%3D */
    box-shadow: 0px 1px 2px rgba(3, 7, 18, 0.04), 0px 5px 7px rgba(3, 7, 18, 0.08), 0px 12px 15px rgba(3, 7, 18, 0.12), 0px 20px 26px rgba(3, 7, 18, 0.16), 0px 32px 41px rgba(3, 7, 18, 0.20);
}

.base-color {
    color: var(--navy-color);
}

.dataTables_wrapper {
    overflow: hidden !important;
}

.dataTables_wrapper:hover {
    overflow: auto !important;
}

.overlay {
    display: none;
}

.card-template:hover .overlay {
    display: block;
    position: absolute;
}

.templates-div:hover {
    overflow: auto !important;
    transition: 1s;
}

.text-navy-color {
    color: var(--navy-color) !important;
}

.bg-navy-color {
    background-color: var(--navy-color) !important;
}

.bg-navy-color:hover {
    background-color: var(--navy-color-2) !important;
}

.fs-14 {
    font-size: 14px;
}

@media (max-width: 767.9px) {
    .page-header {
        margin-top: 4rem;
    }
}

@media (min-width: 768px) {
    .page-header {
        margin-top: 6rem;
    }
}

.ck-editor__editable[role="textbox"] {
    /* editing area */
    min-height: 300px;
}

.ck-content .image {
    /* block images */
    max-width: 80%;
    margin: 20px auto;
}

.accordion-button::after {
    display: none;
}

.pagination {
    --bs-pagination-font-size: 14px !important;
    --bs-pagination-active-bg: var(--navy-color);
    --bs-pagination-active-border-color: var(--navy-color);
}

.nav-sidebar::-webkit-scrollbar {
    display: none;
}


/* Track */

.nav-sidebar::-webkit-scrollbar-track {
    display: none;
}


/* Handle */

.nav-sidebar::-webkit-scrollbar-thumb {
    display: none;
}


/* Handle on hover */

.nav-sidebar::-webkit-scrollbar-thumb:hover {
    display: none;
}

span.select2--small.select2-selection.select2-selection--single,
.select2-container--bootstrap-5 .select2-dropdown .select2-results__options .select2-results__option {
    font-size: 14px !important;
}

span.select2.select2-container.select2-container--bootstrap-5 {
    width: 100% !important;
}
.manifest-spb-wrapper{
    max-height: 600px;
}

.open-tab-btn,
.on-process-tab-btn,
.received-tab-btn,
.close-tab-btn,
.cancel-tab-btn{
    color: var(--first-color-light);
}

.open-tab-btn:hover,
.on-process-tab-btn:hover,
.received-tab-btn:hover,
.close-tab-btn:hover,
.cancel-tab-btn:hover{
    color: var(--black-color);
}


.open-tab-btn.active,
.bg-red{
    background-color: #DC3545 !important;
}

.on-process-tab-btn.active,
.bg-yellow{
    background-color: #FF9800 !important;
}

.received-tab-btn.active,
.bg-green-1{
    background-color: #157347 !important;
}

.close-tab-btn.active{
    background-color: #5C636A !important;
}

.cancel-tab-btn.active{
    background-color: #212529 !important;
}

.text-yellow{
    color: #FF9800 !important;
}

.input-checkbox-sample-spb-modal{
    width: 1.5rem;
    height: 1.5rem;
}