:root {
    --my-o-primary: #D51427;
    --my-o-secondary: #2A383E;
    --my-o-tertiary: #C8AA6E;
    --my-o-kakhi: #BE8139;
    --my-o-brown: #A06644;
    --my-o-blue: #318BEF;
    --my-o-green: #0C9476;
    --my-o-red: #a63d1e; 
    --my-o-grey: #6598A7;
    --my-o-peach: #FC6945;
    --my-o-grad: linear-gradient(90deg, rgba(147,0,25,1) 0%, rgba(211,20,39,1) 50%, rgba(204,151,89,1) 100%);
    --my-o-act-grad: linear-gradient(90deg, rgba(147,0,25,1) 0%, rgba(211,20,39,1) 50%);
    --cat-grad: linear-gradient(0deg, rgba(0,0,0,0.4) 0%, rgba(255,255,255,0) 70%);
    --grey-950: #0D0D0D;
    --grey-900: #1A1A1A;
    --grey-850: #262626;
    --grey-800: #333333;
    --grey-750: #404040;
    --grey-700: #4D4D4D;
    --grey-650: #595959;
    --grey-600: #666666;
    --grey-550: #737373;
    --grey-500: #808080;
    --grey-450: #999999;
    --grey-400: #A6A6A6;
    --grey-350: #B3B3B3;
    --grey-300: #BFBFBF;
    --grey-250: #CCCCCC;
    --grey-200: #D9D9D9;
    --grey-150: #E6E6E6;
    --grey-100: #F2F2F2;
    --green: #00695C;
    --bg-light-theme: #dadada;
    --box-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
    --box-radius: 10px;
    --card-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    --card-radius: 8px;
    --card-radius-inner: 6px;
    --my-o-header: "Montserrat", sans-serif;
    --my-o-copy: "Poppins", sans-serif;
}

/*--- General and Layouts ---*/
html, body {
    height: 100%;
    width: 100%;
    background: var(--bg-light-theme);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--my-o-header);
    font-weight: 500;
}

h1 {
    font-size: 26px;
}

h2 {
    font-size: 24px;
}

h3 {
    font-size: 22px;
}

h4 {
    font-size: 20px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

body,
p,
li,
tr,
td,
button{
    font-family: var(--my-o-copy);
    font-size: 14px;
    font-weight:300;
}

a {
    color: var(--my-o-primary);
    text-decoration: none;
}

.col-primary {
    color: var(--my-o-primary);
}

.bg-green {
    background: var(--my-o-green);
}

.col-green {
    color: var(--my-o-green);
}

.bg-blue {
    background: var(--my-o-blue);
}

.col-blue {
    color: var(--my-o-blue);
}

.bg-brown {
    background: var(--my-o-brown);
}

.col-brown {
    color: var(--my-o-brown);
}

.ex-pad {
    padding: 25px;
}

.cb-head {
    margin-top: -70px;
}

.list-gen {
    margin: unset;
    padding: unset;
}

    .list-gen li {
        list-style-type: none;
        margin-bottom: 5px;
    }
    .list-gen li i{
        font-size:16px;
        margin-right:10px;
    }

.badge-green {
    width: 22px;
    height: 21px;
    border-radius: 50%;
    font-size: 10px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
}

.badge-green {
    background: var(--my-o-green);
}


.btn {
    border-radius: 10px;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: 400;
    --bs-btn-border-width: 1px;
}

.btn-circle-primary {
    border: 1px var(--my-o-primary) solid;
    border-radius: 50%;
    color: var(--my-o-primary);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-circle-primary:hover,
    .btn-circle-primary:focus {
        background-color: var(--my-o-primary);
        color: #fff;
    }

.btn-circle-success {
    border: 1px var(--green) solid;
    border-radius: 50%;
    color: var(--green);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .btn-circle-success:hover,
    .btn-circle-success:focus {
        background-color: var(--green);
        color: #fff;
    }

.btn-block {
    width: 100%;
}

.btn-grad-primary {
    background-image: linear-gradient(to right, #95011A 0%, #D31427 51%, #95011A 100%)
}

.btn-grad-primary {
    text-align: center;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;
    box-shadow: 0 0 20px #eee;
    display: block;
}

    .btn-grad-primary:hover {
        background-position: right center; /* change the direction of the change here */
        color: #fff;
        text-decoration: none;
    }

.btn-outline-primary {
    border: 1px var(--my-o-primary) solid;
    color: var(--my-o-primary);
}

    .btn-outline-primary:hover,
    .btn-outline-primary:focus {
        background: var(--my-o-primary);
        border: 1px var(--my-o-primary) solid;
        color: #fff;
    }

/*--- Header ---*/
.app-header {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    height: 65px;
}

.app-header__logo img {
    max-height: 45px;
}

@media (min-width: 768px) {
    .app-header__logo {
        background-color: #fff;
        width:250px;
    }
}

.app-nav .dropdown {
    display: flex;
    align-items: center;
}

.app-nav__item {
    display: flex;
    align-items: center;
    padding: 10px;
}

    .app-nav__item.ani-user {
        border-left: 1px #ccc solid;
        margin-left: 15px;
        padding-left: 15px;
    }

    .app-nav__item .an-name {
        color: var(--grey-900);
        margin-right: 10px;
    }

    .app-nav__item .an-profile-pic {
        width: 45px;
        height: 45px;
        padding: unset;
        border-radius: 50%;
        overflow: hidden
    }

    .app-nav__item img {
        width: 100%;
    }

.ani-icon {
    border: 1px var(--my-o-primary) solid;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: var(--my-o-primary);
    position: relative;
}

    .ani-icon:hover,
    .ani-icon:focus {
        background: var(--my-o-primary);
        color: #fff;
    }

    .ani-icon .badge {
        position: absolute;
        top: -5px;
        right: -10px;
    }

.app-notification {
    border-radius: 10px;
    overflow: hidden;
}

.app-notification__title {
    background-color: var(--my-o-primary);
    color: #fff;
}

.app-notification__meta {
    font-size: 13px;
}

.dropdown-menu {
    border-radius: var(--box-radius);
    overflow: hidden;
}

.dropdown-item:focus {
    background: var(--my-o-primary);
}

/*--- Side Bar ---*/
.sidebar{
    background:unset;
    background-image:unset !important
}
.app-sidebar {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    padding-top: 65px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width:250px;
}
@media (max-width: 767px) {
    .app .app-sidebar {
        left: -250px;
    }
}

.app-sidebar__toggle {
    color: var(--my-o-primary);
    line-height: 3;
}

    .app-sidebar__toggle:focus, .app-sidebar__toggle:hover {
        color: var(--my-o-primary);
        background-color: rgba(0,0,0,0.2);
        text-decoration: none
    }

.app-menu {
    padding-bottom: 20px;
}

.app-menu__item {
    color: #333;
    margin: 15px;
    font-size: 14px;
    border-radius: 50px;
    border-left: unset;
}

    .app-menu__item.active, .app-menu__item:hover, .app-menu__item:focus {
        background: var(--my-o-act-grad);
        border-left-color: transparent;
        text-decoration: none;
        color: #fff;
    }

.app-menu__icon {
    font-size: 18px;
    width: 30px;
}

.app-menu-a .badge-buyer,
.app-menu-a .badge-supplier {
    border-radius: 0 25px 25px 0;
    color: #fff;
    display: inline-block;
    padding: 7px 25px;
}

.app-menu-a .badge-buyer {
    background-color: var(--my-o-brown);
}

.app-menu-a .badge-supplier {
    background-color: var(--my-o-kakhi);
}

.am-help {
    padding-bottom: unset;
    border-top: 1px #ccc solid;
}

.sidenav-toggled .app-menu__item {
    margin: 15px 0;
    font-size: 15px;
    border-radius: 50px 0 0 50px;
}

@media (min-width: 768px) {
    .sidebar-mini.sidenav-toggled .app-menu__label {
        padding: 18px 5px 18px 20px;
        margin-left: -1px;
        background: var(--my-o-primary);
        border-top-right-radius: 50px;
        border-bottom-right-radius: 50px;
    }
}

.bi[b-q5le1pnxru],
.bi{
    height: unset !important;
    top: unset !important;
}

/*--- Main Content ---*/
.app-content {
    margin-top: 65px;
    background-color: var(--bg-light-theme);
}
@media (min-width: 768px) {
    .app-content {
        margin-left: unset;
    }
    .sidebar-mini.sidenav-toggled .app-content {
        margin-left: -200px;
    }
}

.app-title {
    background: url('/img/header-shapes.svg') no-repeat right top, var(--my-o-grad);
    background-size: contain;
    min-height: 205px;
    align-items: start;
}

    .app-title h1, .app-title .h1 {
        margin: 0;
        font-weight: 600;
        font-size: 28px;
        color: #fff;
    }

    .app-title p {
        font-style: normal;
        color: rgba(255,255,255,0.8);
    }

.login-display{
    color:#fff;
    display:flex;
    align-items:center;
    min-width:250px;
}
.login-display .name{
    width:60%;
}
    .login-display .link {
        width: 40%;
    }

.at-pp-t-bcrumbs {

}

.at-pp-t {
    display: flex;
    align-items: center;
}

.at-profile-pic {
    background: #fff;
    border-radius: 50%;
    border: 3px #fff solid;
    width: 70px;
    height: 70px;
    margin-right: 20px;
    overflow: hidden;
}

    .at-profile-pic img {
        width: 100%;
    }

.at-title {
    display: flex;
    flex-direction: column;
}

.breadcrumb {
    color: #fff;
    background: rgba(0,0,0,0.3);
    border-radius: 25px;
    padding: 10px 20px;
    margin-top: 15px;
    display:inline-flex;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.6);
}

.breadcrumb-item a {
    color: #fff;
}

.at-company {
    display: flex;
    align-items:flex-end;
    position: relative;
    width: 160px;
    height: 125px;
}
    .at-company .logo {
        background: #fff;
        border-radius: 50%;
        width: 125px;
        height: 125px;
        margin-left:35px;
        overflow:hidden;
    }
        .at-company .logo img {
            width: 100%;
            height: auto;
            object-fit:cover;
            border: 0;
        }
    .at-company .change-logo {
        background: rgba(0, 0, 0, 0.3);
        border-radius:50%;
        color:#fff;
        display:flex;
        align-items:center;
        justify-content:center;
        width: 40px;
        height: 40px;
        position:absolute;
        bottom:0;
        left:0;
        transition:all 0.2s ease-in-out;
        cursor:pointer;
    }
    .at-company .change-logo:hover {
        background: rgba(0, 0, 0, 0.6);
    }


/*--- Card Setup ---*/
.c-mh-100{
    min-height:100%;
}

.card {
    background: #fff;
    border-radius: var(--card-radius);
    border-color: #fff;
    padding: 20px;
    box-shadow: var(--card-shadow);
}
.card-wtabs{
    border-radius:0 0 10px 10px;
}

.card .card-title {
    font-family: var(--my-o-header);
    font-size: 18px;
    font-weight: 500;
    border-radius: 8px 8px 0 0;
    border-bottom: 1px solid rgba(33, 40, 50, 0.125);
    color:var(--grey-950);
    padding: 15px 20px;
    margin: -21px -21px 15px -21px;
    display:flex;
}
.card .card-title span{
    margin-left:15px;
    color:var(--my-o-primary);
}
.card-title-action{
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.card-mh-200 {
    min-height: 200px;
}
.cm-top {
    margin-top:20px;
}

.card-welcome {
    background: #fff url('/img/illu-data.svg') no-repeat right top;
}

.card-hr {
    border-top: 1px #ccc solid;
    opacity: unset;
    margin: 25px -21px !important;
}

.card .card {
    border: 1px var(--grey-200) solid;
    border-radius: var(--card-radius-inner);
    padding: 20px;
    box-shadow: unset;
}

.card-tpic{
    background:#efefef;
    min-height:250px;
}

.card-footer {
    padding: 15px 20px;
    margin: 20px -21px -21px -21px;
}

/*--- Dashboard Setup ---*/

.card-sml {
    border: unset;
    border-left: 3px solid;
    padding-top: 15px;
    padding-bottom: 20px;
}

    .card-sml h2 {
        font-size: 24px;
        font-weight: 600;
        margin-top: 10px;
    }

        .card-sml h2 span {
            margin-left: 5px;
        }

    .card-sml .btn {
        padding: 6px 20px;
        border: 1px solid;
        margin-top: 5px;
    }

.cs-kakhi {
    border-color: var(--my-o-kakhi);
}
    .cs-kakhi i,
    .cs-kakhi h4 {
        color: var(--my-o-kakhi);
    }

    .cs-kakhi .btn {
        border-color: var(--my-o-kakhi);
        color: var(--my-o-kakhi);
    }

        .cs-kakhi .btn:hover,
        .cs-kakhi .btn:focus {
            background: var(--my-o-kakhi);
            border-color: var(--my-o-kakhi);
            color: #fff;
        }

.cs-brown {
    border-color: var(--my-o-brown);
}
    .cs-brown i,
    .cs-brown h4{
        color: var(--my-o-brown);
    }
    .cs-brown .btn {
        border-color: var(--my-o-brown);
        color: var(--my-o-brown);
    }
        .cs-brown .btn:hover,
        .cs-brown .btn:focus {
            background: var(--my-o-brown);
            border-color: var(--my-o-brown);
            color: #fff;
        }

.cs-blue {
    border-color: var(--my-o-blue);
}
    .cs-blue i,
    .cs-blue h4{
        color: var(--my-o-blue);
    }
    .cs-blue .btn {
        border-color: var(--my-o-blue);
        color: var(--my-o-blue);
    }
        .cs-blue .btn:hover,
        .cs-blue .btn:focus {
            background: var(--my-o-blue);
            border-color: var(--my-o-blue);
            color: #fff;
        }

.cs-green {
    border-color: var(--my-o-green);
}
    .cs-green i,
    .cs-green h4{
        color: var(--my-o-green);
    }
    .cs-green .btn {
        border-color: var(--my-o-green);
        color: var(--my-o-green);
    }
        .cs-green .btn:hover,
        .cs-green .btn:focus {
            background: var(--my-o-green);
            border-color: var(--my-o-green);
            color: #fff;
        }

.cs-peach {
    border-color: var(--my-o-peach);
}
    .cs-peach i,
    .cs-peach h4{
        color: var(--my-o-peach);
    }
    .cs-peach .btn {
        border-color: var(--my-o-peach);
        color: var(--my-o-peach);
    }
        .cs-peach .btn:hover,
        .cs-peach .btn:focus {
            background: var(--my-o-peach);
            border-color: var(--my-o-peach);
            color: #fff;
        }

.cs-grey {
    border-color: var(--my-o-grey);
}
    .cs-grey i,
    .cs-grey h4{
        color: var(--my-o-grey);
    }
    .cs-grey .btn {
        border-color: var(--my-o-grey);
        color: var(--my-o-grey);
    }
        .cs-grey .btn:hover,
        .cs-grey .btn:focus {
            background: var(--my-o-grey);
            border-color: var(--my-o-grey);
            color: #fff;
        }


.cs-red {
    border-color: var(--my-o-red);
}

    .cs-red i,
    .cs-red h4 {
        color: var(--my-o-red);
    }

    .cs-red .btn {
        border-color: var(--my-o-red);
        color: var(--my-o-red);
    }

        .cs-red .btn:hover,
        .cs-red .btn:focus {
            background: var(--my-o-red);
            border-color: var(--my-o-red);
            color: #fff;
        }

.sml-info-row {
    display: flex;
    align-items: center;
}

    .sml-info-row .info {
        width: 50%;
    }

    .sml-info-row .illu {
        height: 160px;
    }

        .sml-info-row .illu img {
            width: 100%;
            height: 100%;
        }

.chart-s {
    max-height: 275px;
    max-width: 275px;
}

/*-- stats small --*/
.stats-sml-row {
    display:flex;
    align-items:center;
}
.stats-sml-row .icon{
    width:60px;
    height:60px;
}
    .stats-sml-row .icon i{
        font-size:38px;
    }
    .stats-sml-row .info {
    }
.stats-sml-row .info h4{
    font-size:30px;
    font-weight:600;
    margin-bottom:5px;
}
.stats-sml-row .info p{
    margin-bottom:10px;
}

/*-- comments --*/
.comments-setup {
    display: flex;
    flex-direction: column;
    padding: 25px 25px 15px 0;
}
.cs-user-blurb{
    display:flex;
}
    .cs-user-blurb .user {
        width: 80px;
        height: 80px;
        background: #ccc;
        border: 2px #fff solid;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
        border-radius: 50%;
        overflow: hidden;
    }
    .cs-user-blurb .user img{
        width:100%;
        height:100%;
    }
.cs-user-blurb .blurb{
    background:var(--grey-100);
    color:var(--grey-950);
    padding:20px;
    border-radius:0 15px 15px 15px;
    min-height:50px;
    width:80%;
}
    .cs-user-blurb .blurb h4{
        font-size:16px;
        font-weight:600;
        margin-bottom:5px;
    }
    .cs-user-blurb .blurb .vendor {
        font-size: 14px;
        font-weight: 500;
        color: var(--grey-750);
        margin-bottom:10px;
    }
        .cs-user-blurb .blurb .date {
            font-size: 13px;
            font-weight: 400;
            color: var(--grey-650);
            margin: 10px 0 0 0;
        }

.comments-grid-head{
    display:flex;
    align-items:center;
}
.comments-grid-head .head{
    font-weight:400;
}
    .comments-grid-head .info {
        font-weight:600;
        margin-left:15px;
    }
.comments-create {
    border-radius: 0 0 10px 10px;
    border-top: 1px solid rgba(33, 40, 50, 0.125);
    padding: 15px 20px 0 20px;
    margin: 20px -21px 0 -21px;
}

.comments-block {
    border:1px var(--grey-250) solid;
    border-radius:10px;
    padding:25px;
}
.comments-block h5{
    color:var(--grey-900);
}
.cb-form {
    border-top: 1px var(--grey-200) solid;
    padding: 15px;
    margin: 15px -15px -15px -15px;
}

/*--------------------------------------------------------------
# Grid
--------------------------------------------------------------*/

.mog-wrap {
    height: 100%;
    margin-bottom:15px;
}
    .mog-row-bold-right,
    .mog-row,
    .mog-row:first-child {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px rgba(200, 200, 200, 0.5) solid;
    }
        .mog-row-bold-right:first-child {
            border-top: unset;
        }

        .mog-row:first-child {
            font-family: var(--my-o-header);
            font-weight: 600;
            border-bottom: 1px rgba(80, 80, 80, 0.4) solid;
            color: var(--grey-950);
            min-height: 3rem;
            background-color: rgba(200, 200, 200, 0.2);
        }

.dark-mode .mog-row:first-child {
    background-color: rgba(200, 200, 200, 0.1);
    border-bottom: 1px rgba(200, 200, 200, 0.4) solid;
    color: #fff !important;
}
.mog-row-bold-right .mog-col,
.mog-row .mog-col {
    display: flex;
    min-height: 50px;
    align-items: center;
    padding: 10px;
    border-right: 1px rgba(200, 200, 200, 0.4) solid;
}
.mog-row-bold-right .mog-col {
    min-height: 40px;
}
    .mog-row .mog-col:last-child {
        border-right: unset;
    }

.mog-col-title {
    width: 25%;
}

.mog-col-profile {
    width: 10%;
}

    .mog-col-profile img {
        width: 50px;
        height: 50px;
        border-radius: 50%;
    }

.mog-col-action {
    width: 15%;
}
.mog-col-numbers {
    justify-content:flex-end;
}

.mog-col-value {
    text-align:right;
    justify-content:flex-end
}

.mogc-left {
    width:20%;
}
.mogc-right{
    width:30%;
    font-weight:600;
}

.mog-col-95 {
    width: 95%;
}

.mog-col-90 {
    width: 90%;
}

.mog-col-85 {
    width: 85%;
}

.mog-col-80 {
    width: 80%;
}

.mog-col-75 {
    width: 75%;
}

.mog-col-70 {
    width: 70%;
}

.mog-col-65 {
    width: 65%;
}

.mog-col-60 {
    width: 60%;
}

.mog-col-55 {
    width: 55%;
}

.mog-col-50 {
    width: 50%;
}

.mog-col-45 {
    width: 45%;
}

.mog-col-40 {
    width: 40%;
}

.mog-col-35 {
    width: 35%;
}

.mog-col-30 {
    width: 30%;
}

.mog-col-25 {
    width: 25%;
}

.mog-col-20 {
    width: 20%;
}

.mog-col-15 {
    width: 15%;
}

.mog-col-10 {
    width: 10%;
}
.mog-col-5 {
    width: 5%;
    display:flex;
    justify-content:center;
}

.mog-row .btn{
    padding-top:5px;
    padding-bottom:5px;
}
.mog-row .btn-circle-primary{
    height:32px;
    width:32px;
}

.my-comments-nu {
    color: var(--grey-500);
    border: 1px var(--grey-500) solid;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}


.orders-comments {
    display:flex;
    flex-direction:column;
}
.orders-comments .oc-detail{
    padding:5px;
    background-color:#e5e5e5;
    border-radius:0 0 10px 10px;
}
.status-picked,
.status-delivered,
.status-draft,
.status-back,
.status-green,
.status-seagreen,
.status-blue,
.status-navy,
.status-accepted,
.status-requested,
.status-packed,
.status-dispatched,
.status-packed,
.status-out-of-stock,
.status-red,
.status-cancelled,
.status-rejected {
    border-radius: 50px;
    color: #fff;
    display: inline-flex;
    font-size: 13px;
    font-weight: 400;
    padding: 5px 15px;
    justify-content: center;
    min-width: 120px;
}

.status-picked {
    background-color: #e3e2ef;
    color: #50478d;
}

.status-delivered {
    background-color: #e5e8ce;
    color: #5d6a04;
}

.status-draft {
    background-color: #faeace;
    color: #a86c05;
}

.status-green,
.status-accepted {
    color: rgba(1,137,71,1);
    background-color: rgba(1,137,71,0.15);
}
.status-seagreen,
.status-packed {
    background-color: #dcf2e3;
    color: #098534;
}
.status-blue,
.status-dispatched {
    background-color: #dde3ea;
    color: #425e7b;
}
.status-navy,
.status-requested {
    background-color: #dce5ed;
    color: #355d85;
}
.status-red,
.status-out-of-stock,
.status-cancelled {
    color: #a90a02;
    background-color: #f2dad9;
}
.status-back,
.status-orange {
    color: #ee5d12;
    background-color: #fce7dc;
}

.status-rejected {
    color: #915938;
    background-color: #efe6e1;
}

/*-- Order Individual --*/
.order-row {
    border-bottom:1px var(--grey-500) solid;
}

/*-- Pagination --*/
.active > .page-link, .page-link.active {
    z-index: 3;
    color: #ffffff;
    background: var(--my-o-act-grad) !important;
    border-color: var(--my-o-act-grad) !important;
}


/*-- accordion --*/

.acc-drawer {
    list-style: none;
    perspective: 900;
    padding: 0;
    margin: 0;
}

    .acc-drawer li {
        position: relative;
        padding: 0;
        margin: 0;
        padding-bottom: 4px;
        border-top: 1px dotted #dce7eb;
    }

        .acc-drawer li:nth-of-type(1) {
            animation-delay: 0.5s;
        }

        .acc-drawer li:nth-of-type(2) {
            animation-delay: 0.75s;
        }

        .acc-drawer li:nth-of-type(3) {
            animation-delay: 1s;
        }

        .acc-drawer li:last-of-type {
            padding-bottom: 0;
        }

        .acc-drawer li i {
            position: absolute;
            transform: translate(-6px, 0);
            margin-top: 16px;
            right: 0;
        }

            .acc-drawer li i:before, .acc-drawer li i:after {
                content: "";
                position: absolute;
                background-color: #ff6873;
                width: 3px;
                height: 9px;
            }

            .acc-drawer li i:before {
                transform: translate(-2px, 0) rotate(45deg);
            }

            .acc-drawer li i:after {
                transform: translate(2px, 0) rotate(-45deg);
            }

        .acc-drawer li input[type=checkbox] {
            position: absolute;
            cursor: pointer;
            width: 100%;
            height: 100%;
            z-index: 1;
            opacity: 0;
        }

            .acc-drawer li input[type=checkbox]:checked ~ p {
                margin-top: 0;
                max-height: 0;
                opacity: 0;
                transform: translate(0, 50%);
            }

            .acc-drawer li input[type=checkbox]:checked ~ i:before {
                transform: translate(2px, 0) rotate(45deg);
            }

            .acc-drawer li input[type=checkbox]:checked ~ i:after {
                transform: translate(-2px, 0) rotate(-45deg);
            }

@keyframes flipdown {
    0% {
        opacity: 0;
        transform-origin: top center;
        transform: rotateX(-90deg);
    }

    5% {
        opacity: 1;
    }

    80% {
        transform: rotateX(8deg);
    }

    83% {
        transform: rotateX(6deg);
    }

    92% {
        transform: rotateX(-3deg);
    }

    100% {
        transform-origin: top center;
        transform: rotateX(0deg);
    }
}
.transition, ul li i:before, ul li i:after, p {
    transition: all 0.25s ease-in-out;
}

.flipIn, ul li, h1 {
    animation: flipdown 0.5s ease both;
}


/*-- Categories --*/
.cat-pathology,
.cat-stationery,
.cat-medical-supplies,
.cat-pharma,
.cat-cleaning-supplies {
    min-height: 250px;
    background-repeat: no-repeat;
    background-position: left top;
    background-size: cover;
    border: unset;
}

.cat-pathology {
    background-image: url('/img/cat-lab-supplies.png');
}

.cat-stationery {
    background-image: url('/img/cat-stationary-supplies.png');
}

.cat-medical-supplies {
    background-image: url('/img/cat-medical-supplies.png');
}

.cat-pharma {
    background-image: url('/img/cat-pharma-supplies.png');
}

.cat-cleaning-supplies {
    background-image: url('/img/cat-cleaning-supplies.png');
}

.category-setup {
    position: relative;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin: 15px 5px;
}

.cs-vendors{
    position:absolute;
    top:0;
    left:0;
    border-radius:15px 0 15px 0;
    padding:5px 15px;
    color:#fff;
}
    .cs-vendors.csv-lab-supplies {
        background-color: #D045CB;
    }
    .cs-vendors.csv-med-supplies {
        background-color: #6078ea;
    }
    .cs-vendors.csv-pha-supplies {
        background-color: #037DD6;
    }
    .cs-vendors.csv-sta-supplies {
        background-color: #ED5404;
    }
    .cs-vendors.csv-cle-supplies {
        background-color: #184e68;
    }
    

.cs-profile-img {
    height: 70%;
}

.cs-description-bk {
    background-image: linear-gradient(0deg, #3f5efb, #fc466b);
    border-radius: 30px;
    position: absolute;
    top: 55%;
    left: -5px;
    height: 65%;
    width: 108%;
    transform: skew(19deg, -9deg);
}

.lab-supplies .cs-description-bk {
    background-image: linear-gradient(-20deg, #02B3D2, #D045CB)
}

.medical-supplies .cs-description-bk {
    background-image: linear-gradient(-20deg, #17ead9, #6078ea)
}

.pharma-supplies .cs-description-bk {
    background-image: linear-gradient(-20deg, #D2AE87, #037DD6)
}

.stationary-supplies .cs-description-bk {
    background-image: linear-gradient(-20deg, #DCA06A, #ED5404)
}

.cleaning-supplies .cs-description-bk {
    background-image: linear-gradient(-20deg, #57ca85, #184e68)
}


.cs-logo {
    height: 80px;
    width: 80px;
    border-radius: 100px;
    background-color: #fff;
    position: absolute;
    bottom: 30%;
    left: 30px;
    overflow: hidden;
    padding: 15px;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.7);
}

    .cs-logo img {
        height: 100%;
    }

.cs-description {
    position: absolute;
    color: #fff;
    font-weight: 900;
    left: 130px;
    bottom: 80px;
}
    .cs-description h3 {
        font-weight: 700;
    }
.cs-description p{
    font-weight:500;
    margin-bottom:3px;
    display:flex;
}
    .cs-description p span {
        font-weight: 300;
        width: 85px;
        margin-right: 5px;
    }

.cs-btn {
    position: absolute;
    color: #fff;
    right: 30px;
    left: 30px;
    bottom: 25px;
}

    .cs-btn a {
        color: #fff;
        display: flex;
        padding: 8px 15px;
        border: 1px solid #fff;
        border-radius: 30px;
        text-align: center;
        transition: all 0.2s ease-in-out;
        justify-content: space-between;
        align-items: center;
    }

        .cs-btn a:hover,
        .cs-btn a:focus {
            background: #fff;
            color: #333;
        }

        .cs-btn a .vendor-number {
            font-weight: 700;
            margin-right: 5px
        }

        .cs-btn a i {
            font-size: 18px;
        }


/*-- horizontal tabs --*/
.hor-tabs {
    margin:0;
    padding:unset;
    display:flex;
}
.hor-tabs li{
    list-style-type:none;
    margin-right:5px;
}
    .hor-tabs li a {
        border-radius: 10px 10px 0 0;
        background: var(--bg-light-theme);
        color: var(--grey-650);
        display: flex;
        padding: 10px 20px;
    }
        .hor-tabs li a:hover,
        .hor-tabs li a:focus,
        .hor-tabs li a:active{
            background: #ffffff;
            color:var(--my-o-primary);
        }

/*-- forms --*/
.form-group label {
    margin-bottom: 5px;
}

.form-control,
.form-select {
    padding: 10px 15px;
    border: 1px solid var(--grey-350);
    border-radius: 10px;
}
.form-check-input {
    border-color: var(--grey-350);
    font-size:18px;
}

.btn-nl {
    margin-top: 28px;
}


/*-- products --*/
.product {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.product-image {
    max-height: 200px;
    overflow: hidden;
    text-align: center;
    margin-bottom: 20px;
}

    .product-image img {
        height: 100%;
        max-height: 200px;
    }

.product-detail .item-num {
    background:var(--grey-150);
    border-radius: 25px;
    color: var(--grey-950);
    display: inline-block;
    padding: 5px 15px;
    font-size: 14px;
    margin-left: 10px;
}

.product-detail .description {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 15px 10px 20px 10px;
    min-height:42px;
}

.product-detail .vendor {
    display: flex;
    flex-direction:column;
    margin: 0 0 20px 10px;
}
.product-detail .vendor p{
    margin-bottom:5px;
    font-size:13px;
    color:var(--grey-650);
}

.product-detail .vln-setup {
    display: flex;
    align-items: center;
    margin: 0 0 5px 0;
}

    .product-detail .vln-setup .logo {
        width: 30px;
        height: 30px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
        border-radius: 50%;
        margin-right: 10px;
        padding: 3px;
    }

.product-detail .vln-setup .logo img {
    width: 100%;
    height: 100%;
}

.product-detail .vln-setup .name {
    font-size: 14px;
}


.product-detail .price-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px #ccc solid;
    padding: 20px 30px 5px 30px;
    margin: 0 -21px;
}

.product-detail h4 {
    color: var(--my-o-primary);
    font-weight: 600;
    font-size: 20px;
    margin-bottom: unset;
}

/*-- tabs vertical --*/
.tabs-ver {
    padding:0 15px;
}
    .tabs-ver .col-md-3 {
        background-color: var(--grey-100);
        border-right: 1px var(--grey-200) solid;
        border-radius: var(--card-radius-inner);
        padding: 10px;
    }
    .tabs-ver .nav-link {
        display: flex;
        color:#888;
        justify-content: space-between;
    }
    .tabs-ver .nav-pills .nav-link.active,
    .tabs-ver .nav-pills .show > .nav-link {
        color: var(--my-o-primary);
        background-color: #fff;
        border: 1px var(--grey-200) solid; 
        border-radius:50px;
        font-weight: 600;
    }

/*-- overwrite --*/
.main-nm {
    margin-top: -70px;
}
.h-100 {
    height: 100%;
}

.h-n100 {
    height: unset;
    min-height: unset;
}
.sml-info-row {
    flex-wrap:wrap;
}
    .sml-info-row .info,
    .sml-info-row .illu {
        width: 50%;
    }

@media (min-width:1940px) {
    .cs-profile-img {
        height: 100%;
    }
}

@media (max-width:1600px){
    .sml-info-row {
        flex-direction:column;
    }
        .sml-info-row .info, .sml-info-row .illu {
            width: 95%;
        }
}
@media (max-width:1440px) {
    .cs-logo {
        height: 55px;
        width: 55px;
        bottom: 30%;
        left: 20px;
    }
    .cs-description {
        left: 90px;
    }
        .cs-description h3 {
            font-size:18px;
        }
}
@media (max-width:1024px) {
    .col-md-3{
        width:50%;
    }
    .col6-resp .col-md-6{
        width:100%;
    }
    .tabs-ver {
         padding: unset; 
    }
    .tabs-ver .col-md-3 {
         background-color: transparent; 
         border-right: none; 
    }
    .tabs-ver .row .col-md-3,
    .tabs-ver .row .col-md-9 {
        width:100%;
    }
}
@media (max-width:768px) {
    .col-md-3 {
        width: 100%;
    }
}