@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap");
:root {
    --header-height: 4.5rem;
    --nav-width: 50px;
    --first-color: #4723D9;
    --first-color-light: #AFA5D9;
    --white-color: #5A6D73;
    --body-font: 'Nunito', sans-serif;
    --normal-font-size: 1rem;
    --z-fixed: 100
}

*,
::before,
::after {
    box-sizing: border-box
}
a, a:hover {
    text-decoration: none
}

.l-navbar {
    position: fixed;
    top: 56px;
    left: -30%;
    width: var(--nav-width);
    height: 100vh;
    border-right: 2px solid #ddd;
    padding: .5rem 1rem 0 0;
    transition: .5s;
    z-index: var(--z-fixed)
}

.nav {
    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 1.5rem
}

.nav_logo {
    margin-bottom: 2rem
}

.nav_logo-icon {
    font-size: 1.25rem;
    color: var(--white-color)
}

.nav_logo-name {
    color: var(--white-color);
    font-weight: 700
}

.nav_link {
    position: relative;
    color: var(--first-color-light);
    margin-bottom: 1.5rem;
    transition: .3s
}

.nav_link.active {
    color: #10A2BD !important;
}

.nav_icon {
    font-size: 1.25rem
}

.show {
    left: 0
}

.content-section {
    padding-left: calc(var(--nav-width) + 1rem)
}

.active {
    color: var(--white-color);
    background: rgba(16, 162, 189, 0.15);
}

.active::before {
    content: '';
    position: absolute;
    left: auto;
    right: 0;
    width: 2px;
    height: 32px;
    background-color: #10A2BD
}

.height-100 {
    height: 100vh
}

.content-col li {
    padding: 5px 0;
    font-size: 13px;
}

h6 {
    color: #111;
}

.unlistyle li {
    border: 1px solid #ddd;
    padding: 12px 8px;
    font-size: 13px;
}

.sideToggle {
    transition: 0.3s;
    left: auto;
    width: 0;
    right: 0;
    top: 0;
    z-index: 999;
}


/* #dispPackages {
    position: absolute;
    top: 0;
    left: 0;
} */

span { 
    /* the following two are commented since it affects select2 function in dealer order form */
    /* overflow: hidden; */
    /* display: inline-block; */
    vertical-align: middle;
}

#dispPackages {
    transform: translateX(-100%);
    opacity: 0;
    transition: opacity .25s, transform .25s;
    position: absolute;
    left: 0;
    top: 0;
}

.search-section {
    height: 38px;
}

#dispPackages.show {
    transform: translateX(0);
    opacity: 1;
}

.inner-conter .img-section img {
    width: 65px;
}

.inner-conter .card-top-col .img-section img {
    width: 35px;
}

.order-2 .card-top-col .img-section img {
    filter: brightness(0) invert(1);
}

.order-4 .card {
    border-left: 15px solid #0d6efd;
    border-radius: 10px;
    box-shadow: 0 .3rem 10px rgba(0, 0, 0, .15)!important;
}


/* .inner-conter.order-4 .img-section img {
    width: 50px;
} */

.order-4 .content-col li {
    padding: 3px 0;
}

.order-4 .card a {
    font-size: 13px;
}

.badge {
    left: 30px;
    top: -6px;
}

.nav_name {
    opacity: 0;
}

.ribbon-1 {
    inset: 0 auto auto 0;
    transform: translate(-19.3%) rotate(-45deg);
}

.left {
    position: absolute;
    left: 7px !important;
    top: -7px !important;
    font-size: 9px;
    background: #10A2BD;
    color: #fff;
    padding: 0.08em 0.65em;
    font-weight: 700;
    border-radius: .2rem;
}

.color-tooltip>.tooltip-inner {
    background-color: #10A2BD;
}

.color-tooltip.bs-tooltip-end>.tooltip-arrow::before,
.color-tooltip.bs-tooltip-auto[data-popper-placement^=right]>.tooltip-arrow::before {
    border-right-color: #10A2BD;
}

/* .ledger-col i.tooltip-inner {
    width: auto !important;
} */
.nav-menu-tab .tooltip-inner {
    width: 100px;
}

.content-section {
    position: relative;
    margin: var(--header-height) 0 0 0;
    font-family: var(--body-font);
    font-size: var(--normal-font-size);
    transition: .5s;
	padding-left: calc(var(--nav-width) + 0.1rem);
    padding-right: 0;
}

@media screen and (min-width: 768px) {
    .l-navbar {
        left: 0;
        padding: 0
    }
    .show {
        width: calc(var(--nav-width) + 156px)
    }
}

@media only screen and (max-width: 600px) {
    .top-header {
        position: absolute;
        padding: 15px;
    }
    .l-navbar {
        padding: 0;
        top: 50px;
        left: 2px;
        height: 100%;
    }
    .nav {
        justify-content: unset;
    }

    .table td, .table th, .card-header {
        padding: 5px;
    }
    .card-body > .row > .col-md-3:nth-child(3), .card-body > .row > .col-md-3:nth-child(4), #main-table th:nth-child(5), #main-table tbody tr td:nth-child(5)  {
        display: none;
    }
}

@media only screen and (max-width: 425px) {
    /*Small smartphones [325px -> 425px]*/

    .navbar .nav-link {
        padding: 0.5rem 0.3rem;
    }
}


