﻿/*
Font Styling and Icon styling
--------------------------------------------------
*/
/*@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');*/
:root {
    /* Typography */
    --font-family: "Source Sans Pro", sans-serif;
    --fs-base: 16px;
    --title-font-size: 30px;
    --sidebar-font-size: 19px;
    --breadcrumbs-font-size: 20px;
    --fs-900: 2.1875rem; /* 35 px */
    --fs-800: 1.625rem; /* 26 px */
    --fs-700: 1.375rem; /* 22 px */
    /* Color Palette */
    --background-canvas: #ECEEF0;
    --card-bg: #FFFFFF;
    --sidebar-bg: #FFFFFF;
    --table-bg: #FFFFFF;
    --brand-primary: #164928; /* used for buttons, sidebar text, scrollbars, etc. */
    --brand-secondary: #164928;
    --accent-secondary: #efba0c; /* boolean checkmarks */
    --brand-primary-hover: #008c15; /* used for buttons, sidebar text, scrollbars, etc. */
    --accent-secondary-hover: #ffc600; /* boolean checkmarks */
    --accent-disabled: #5a635d;
    --standard-text: #666666;
    --title-color: #164928;
    --searchbar-border: #D8D8D8;
    --dropdown-icon-color: #8A8A8F;
    --highlighted-text-on-dark: #ffffff;
    /* Layout & Style */
    --card-radius: 20px;
    --sidebar-radius: 28px;
    --card-box-shadow: 1px 0px 0px #EFEFF4;
    /* Breadcrumbs */
    --breadcrumbs-color: #008c15;
    --breadcrumbs-active-font: 700; /* Bold */

    --bs-gutter-x: 15px;
    /* Palette */
    --grey-100: #F9FAFC;
    --grey-200: #E5E8EE;
    --grey-300: #dadef0;
    --success: #ffc600;
    --font-color: #252525;
    --danger: #dc3545;
    --danger-btn: #EB3331;
    --active-input: #A6CBF3;
    --active-border: #A6CBF3 1px solid;
    --readonly-background: #F7F9FC !important;
    --readonly-color: #808D95 !important;
    --readonly-border: 1px solid #CED4DA;
    --success-border: #28A745 1px solid;
    --error-danger-border: #DC3545 1px solid;
    --box-shadow-standard: #D1D5DF80 0px 10px 30px;
    --headline-1-font-weight: normal;
    --headline-1-font-size: 30px;
    --headline-1-line-height: 1.19px;
    --headline-1-color: #164928;
    --headline-2-font-weight: Bold;
    --headline-2-font-size: 26px;
    --headline-2-line-height: 1.2px;
    --headline-2-color: #164928;
    --headline-3-font-weight: Bold;
    --headline-3-font-size: 28px;
    --headline-3-line-height: 1.3px;
    --headline-3-color: #164928;
    --headline-4-font-weight: Bold;
    --headline-4-font-size: 20px;
    --headline-4-line-height: 1.5px;
    --headline-4-color: #164928;
    --headline-5-font-weight: lighter;
    --headline-5-font-size: 17px;
    --headline-5-color: #164928;
    --headline-6-font-weight: lighter;
    --headline-6-font-size: 15px;
    --headline-6-line-height: 1.2px;
    --headline-6-color: #164928;
    --checkcircle-color: #96a1b8;
    --searchbar-border: #DADEF0;
    --bs-border-color: #DADEF0;
    --searchbar-placeholder: #6c7485;
    --org-bnr-wrapper-bak: #e1e1e1;
    /* Layout */
    --sidebar-width: 250px;
    --canvas-bg: #F2F4F7;
    --card-radius: 10px;
    /*table variables*/
    --tbl-header-bg: #EFEFF4;
    --tbl-header-color: #008c15;
    --tbl-cell-color: #FFFFFF;
    --tbl-font-size: 1rem; /* 16 px */
    --tbl-radius: 8px;
}

html,
body {
    font-family: var(--font-family);
    font-size: var(--fs-base);
    background: var(--canvas-bg);
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

/* —— kill the old white slab —— */
main,
.container-fluid,
.container {
    background: transparent !important; /* inherit #F2F4F7 canvas */
}
.btn-primary {
    background-color: var(--brand-primary);
}
.btn-outline-primary {
    color: var(--brand-primary);
}
.btn-primary, .btn-outline-primary {
    border-color: var(--brand-primary);
}
    .btn-primary:hover, .btn-outline-primary:hover {
        background-color: var(--brand-primary-hover) !important;
    }
.btn-outline-primary:hover{
    color:white !important;
}
    .btn-primary:hover, .btn-outline-primary:hover {
        border-color: var(--brand-primary-hover) !important;
    }



main {
    display: flex;
    flex-wrap: nowrap;
    /*2023.03.16 - So far the below isn't causing issues but I am marking it just in case the layout looks wonky.*/

    flex-direction: column;
    justify-content: space-between;
    min-height: 82vh;
}

h1 {
    font-weight: var(--headline-1-font-weight);
    font-size: var(--headline-1-font-size);
    /*line-height: var(--headline-1-line-height);*/
    color: var(--headline-1-color);
}

h2 {
    font-weight: var(--headline-2-font-weight);
    font-size: var(--headline-2-font-size);
    /*line-height: var(--headline-2-line-height);*/
    color: var(--headline-2-color);
}

h3 {
    font-weight: var(--headline-3-font-weight);
    font-size: var(--headline-3-font-size);
    /*line-height: var(--headline-3-line-height);*/
    color: var(--headline-3-color);
}

h4 {
    font-weight: var(--headline-4-font-weight);
    font-size: var(--headline-4-font-size);
    /*line-height: var(--headline-4-line-height);*/
    color: var(--headline-4-color);
}

h5 {
    font-weight: var(--headline-5-font-weight);
    font-size: var(--headline-5-font-size);
    /*line-height: var(--headline-5-line-height);*/
    color: var(--headline-5-color);
}

h6 {
    font-weight: var(--headline-6-font-weight);
    font-size: var(--headline-6-font-size);
    /*line-height: var(--headline-6-line-height);*/
    color: var(--headline-6-color);
}

table {
    max-width: 100% !important;
}


    table tr td {
        padding: .25em !important;
    }

a {
    color:  var(--brand-primary);
}
    a:hover {
        color: var(--brand-primary-hover);
    }

.site-logo {
    width: 280px;
    margin-top: 1em;
    margin-left: 1em;
}

.ml-auto {
    margin-left: auto !important;
}

.row-eq-height {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}


.identity-right-side section {
    height: 100%;
    position: relative;
}

.login-right {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    height: 100%;
}


.identity-overlay {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
}

.identity-background {
    display: block;
    margin-top: auto;
    width: 100%;
}


/*******Error Message*********/
input.error {
    border: var(--error-danger-border) !important;
}

span.error {
    border: var(--error-danger-border) !important;
}

textarea.error {
    border: var(--error-danger-border) !important;
}

select.error {
    border: var(--error-danger-border) !important;
}

.ErrorMessageBox.ui {
    border: 1px solid red;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: .30em;
    background: #FFF;
    color: #AC3232;
    font-weight: normal;
    font-size: 1rem;
    text-align: center;
}

.NotificationMessageBox.ui {
    border: 1px solid #119771;
    margin-top: 1em;
    margin-bottom: 1em;
    padding: .3em;
    background: #D5f8ef;
    color: #119771;
    font-weight: normal;
    font-size: 1rem;
    text-align: center;
    /*height: 2em;*/
}

.alert-danger {
    color: #E0262C !important;
    background-color: transparent !important;
    border-color: transparent !important;
}

.text-danger {
    color: #E0262C !important;
}

.form-check-input {
    font-size: 1.35em;
}

    .form-check-input:checked {
        background-color:  var(--brand-primary);
        border-color:  var(--brand-primary);
        font-size: 1.35em;
    }

.rmv-link {
    color:  var(--brand-primary);
    padding-right: 10px;
}

    .rmv-link:hover {
        color: #bbc2d1;
    }

.pickup-info-header {
    text-align: center;
    font-size: 1em;
}

.pickup-info-text {
    text-align: center;
    font-size: 1em;
}

/*Buttons*/
.btn.btn-lg {
    background-color: var(--brand-primary);
    font-weight: bold;
    width: 195px;
    border-radius: 36px;
    border: none;
    font-size: 14px;
    color: white;
    padding: 1em; /*20221018*/
    min-height: 50px;
}

    .btn.btn-lg.accent {
        background-color: var(--accent-secondary);
        font-weight: bold;
        width: 195px;
        border-radius: 36px;
        border: none;
        font-size: 14px;
        color: #000000;
        padding: 1em; /*20221018*/
        min-height: 50px;
    }

    .btn.btn-lg:hover {
        background-color: var(--brand-primary-hover);
        transition: .50s;
    }

    .btn.btn-lg.accent:hover {
        background-color: var(--accent-secondary-hover);
        transition: .50s;
    }

.btn.btn-next {
    background-color: var(--brand-primary);
    font-weight: bold;
    width: 146px;
    border-radius: 36px;
    border: none;
    font-size: 14px;
    color: white;
    padding: 1em; /*20221018*/
    min-height: 50px;
}

.btn.btn-default {
    background-color: var(--brand-primary);
    font-weight: bold;
    border: 2px solid transparent;
    /* width: 195px; */
    border-radius: 36px;
    font-size: 14px;
    color: white;
    padding: 1em 2em;
}


    .btn.btn-default:hover {
        background: transparent;
        color: #bbc2d1;
        border: 2px solid #bbc2d1;
    }

.btn:hover {
    border-width: 2px;
}

.btn.btn-copy {
    background-color: var(--brand-primary);
    font-weight: bold;
    /* width: 195px; */
    border-radius: 6px;
    border: none;
    font-size: 14px;
    color: white;
    padding: 1em 2em;
    margin-left: 1em;
    width: 12em;
}

.btn.btn-copy-link {
    background-color: var(--brand-primary);
    font-weight: bold;
    /* width: 195px
px
; */
    border-radius: 6px;
    border: none;
    font-size: 22px;
    color: white;
    padding: 1em 1em;
    margin-left: 1em;
    text-align: center;
    justify-content: center;
    align-items: center;
}

    .btn.btn-copy-link i {
        margin: 0;
    }

.btn.header-buttons {
    background-color:  var(--brand-primary);
    border-radius: 36px;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    margin-left: -2em;
    width: 210px;
    height: 52px;
}

/* ─────────────────────────────────────────────
   Lanex Card-Action Button
   ──────────────────────────────────────────── */
/*.lx-action-btn {*/
    /* size */
    /*min-width: 144px;*/ /* 144 × 48 spec                       */
    /*height: 40px;
    padding: 0 1.5rem;*/ /* lets the label breathe / shrink     */
    /* typography */
    /*font: 400 1rem/1.2 "Source Sans Pro", sans-serif;*/ /* 16 px, not bold */
    /* colours (matches comm-log button) */
    /*background: #001B38;*/ /* dark navy                           */
    /*color: #fff;
    border: none;*/
    /* appearance */
    /*border-radius: 9999px;*/ /* pill-shape                          */
    /*display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;*/ /* room for the leading icon           */
    /* transitions */
    /*transition: background .18s ease, box-shadow .18s ease;
    text-decoration:none;
}*/
.lx-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 9rem; /* ≈144px */
    height: 3rem; /* ≈48px */
    padding: 0 .75rem;
    font: 400 1rem/1.1 "Source Sans Pro", sans-serif; /* 16 px, not bold */
    color: #fff;
    border: none;
    border-radius: 999px;
    background: var(--brand-primary);
    transition: .15s;
    text-decoration:none;
}
    .lx-action-btn:hover {
        background: var(--brand-primary-hover);
    }

    .lx-action-btn:active {
        transform: translateY(1px);
    }
a.lx-action-btn:hover{
    color:#fff !important;
}

    .lx-action-btn i,
    .lx-action-btn svg {
        margin: 0; /* use gap above instead               */
        font-size: 0.9em; /* keep icon balanced                  */
    }

    /* hover / focus */
    .lx-action-btn:hover,
    .lx-action-btn:focus-visible {
        background: var(--brand-primary-hover);
        box-shadow: 0 0 0 3px rgba(0,27,56,.15);
    }

    /* disabled look (optional) */
    .lx-action-btn:disabled {
        background:var(--accent-disabled);
        cursor: not-allowed;
    }



/* responsive touch – if the sidebar collapses on mobile, buttons can shrink */
@media (max-width: 575.98px) {
    .lx-action-btn {
        min-width: 118px;
        height: 44px;
        padding: 0 1.25rem;
        font-size: .9375rem; /* 15 px */
    }
}

.share-panel {
    background:  var(--brand-primary);
    padding: 1em;
    border-radius: 16px;
    margin-bottom: 1em;
    /* font-weight: 600; */
    color: #fff;
    text-align: center;
}

    .share-panel:hover {
        background: #d3d5e9;
    }

.share-nodes {
    font-size: 3em;
    text-align: center;
    background:  var(--brand-primary);
    padding: 1em;
    border-radius: 50%;
    margin: 0em auto 10px;
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .7s ease;
}

.share-nodes-mobile {
    font-size: 2em;
    text-align: center;
    background:  var(--brand-primary);
    padding: 1em;
    border-radius: 50%;
    /* margin: 0em auto 10px; */
    height: 50px;
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: .7s ease;
}

.share-nodes:hover {
    background-color: #8d90d1;
}

.add-sale-block {
    border-top: 3px solid #f2f3fd;
    border-bottom: 3px solid #f2f3fd;
    text-align: center;
}

span.share-link-i {
    width: 100px;
    text-align: center;
    display: block;
    border-radius: 50%;
    background: transparent;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3em;
    transition: .7s ease;
}

.share-link-i.share-fb {
    background: #4267B2;
    color: #fff;
}

.share-link-i.share-tw {
    background: #1DA1F2;
    color: #fff;
}

.share-link-i.share-em {
    background: #535366;
    color: #fff;
}

.share-link-i.share-qr {
    background: #000;
    color: #fff;
}

.share-link-i.share-fl {
    background: #7a81e6;
    color: #fff;
}

    .share-link-i.share-fl img {
        width: 60px;
    }




span.share-link-i:hover {
    background:  var(--brand-primary);
    cursor: pointer;
}

.share-row a {
    color: #fff;
    text-decoration: none;
    text-align: center;
    font-weight: 600;
}

.share-row .share-title {
    font-weight: 600;
    color: #535366;
    text-align: center;
    margin: 1em auto 2em;
    display: block;
}

.share-icons-i {
    font-size: 2em;
    list-style-type: none;
}

    .share-icons-i li {
        margin-right: 1em;
    }


    .share-icons-i i {
        padding: 1em;
    }

.add-sale {
    width: 150px !important;
}

.btn svg, .btn i {
    margin-right: 0.5em;
}

#catalogShipNotice {
    text-align: center;
    font-weight: 600;
    background:  var(--brand-primary);
    color: #fff;
    font-size: 1.2em;
    line-height: 2.5em;
}


.dropdown-menu.end-column.table li {
    display: flex;
}

    .dropdown-menu.end-column.table li a {
        width: 100%;
    }
/****Dashboard header***/
.inner-container {
    margin: 0 1.5em;
}

    .inner-container .dashboard-container {
        padding: 0; /*20221018*/
    }


    .inner-container .card-grid-page-container {
        margin: 0; /*20221018*/
    }

.rr-container {
    padding: 1em;
}

.inner-container .rr-container {
    padding: 0; /*20221018*/
}

.bell-notif-button .fa-2x {
    background-color: #e1e1e1;
    border-radius: 17px;
    height: 52px;
    width: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bell-notif-button .fa-bell {
    color:  var(--brand-primary);
    font-size: 26px;
    padding: inherit;
    margin-left: 15px;
    margin-right: 15px;
    margin-top: 6px;
    margin-bottom: 11px;
}

.nav-item a {
    text-decoration: none;
}

/*Manage Account Section*/
.main-manage-account {
    padding-left: 17rem !important;
}

/*Dashboard Section*/
.dashboard-header {
    margin-top: 2em;
    align-items: center;
}

.dashboard-column-headers {
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0em;
}

.dashboard-container {
    margin-top: 3em;
    /*margin-left: 1.5em; Adding padding should take care of this.*/
    padding: 1em;
}

.dashViewAllLink {
    float: right;
    text-align: right;
    display: table;
    font-size: 25px;
    text-decoration: underline;
    font: normal normal normal 14px/30px Montserrat;
    letter-spacing: 0px;
    color:  var(--brand-primary);
    width: 58px;
    font-size: 14px;
}

    .dashViewAllLink a {
        font-size: 12px;
        color:  var(--brand-primary);
    }

/*.dashboard-container .row {
    margin-left: 0px !important;
    --bs-gutter-x: 0;
} */

.dashboard-container .row .col-4 {
    padding-left: 0px;
    padding-right: 0px;
}

.dashboard-container .column-content ul {
    list-style: none;
    padding-left: 0;
}

    .dashboard-container .column-content ul li {
        padding: 10px;
    }

.tooltip {
    --bs-tooltip-bg:  var(--brand-primary);
}

.rr-tooltip-inner {
    background-color:  var(--brand-primary) !important;
    box-shadow: 0px 0px 4px  var(--brand-primary);
    border-color:  var(--brand-primary);
    opacity: 1 !important;
}

.rr-tooltip.bs-tooltip-right .arrow::before {
    border-right-color:  var(--brand-primary) !important;
}

.rr-tooltip.bs-tooltip-left .arrow::before {
    border-left-color:  var(--brand-primary) !important;
    border-color:  var(--brand-primary) !important;
}

.rr-tooltip.bs-tooltip-bottom .arrow::before {
    border-bottom-color:  var(--brand-primary) !important;
}

.rr-tooltip.bs-tooltip-top .arrow::before {
    border-top-color:  var(--brand-primary) !important;
}

.rr-tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color:  var(--brand-primary) !important;
}

.rr-tooltip.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color:  var(--brand-primary) !important;
}

.rr-tooltip.bs-tooltip-start .tooltip-arrow::before {
    border-left-color:  var(--brand-primary) !important;
}

.rr-tooltip.bs-tooltip-end .tooltip-arrow::before {
    border-right-color:  var(--brand-primary) !important;
}



:root {
    --tooltip-color:  var(--brand-primary);
}

.tooltip > .tooltip-inner {
    background-color:  var(--brand-primary) !important;
}

.tooltip.bs-tooltip-bottom > .tooltip-arrow::before, .color-tooltip.bs-tooltip-auto[data-popper-placement^=bottom] > .tooltip-arrow::before {
    border-bottom-color:  var(--brand-primary) !important;
}

.tooltip.bs-tooltip-top > .tooltip-arrow::before, .color-tooltip.bs-tooltip-auto[data-popper-placement^=top] > .tooltip-arrow::before {
    border-top-color:  var(--brand-primary) !important;
}

.tooltip.bs-tooltip-start > .tooltip-arrow::before, .color-tooltip.bs-tooltip-auto[data-popper-placement^=left] > .tooltip-arrow::before {
    border-left-color:  var(--brand-primary) !important;
}

.tooltip.bs-tooltip-end > .tooltip-arrow::before, .color-tooltip.bs-tooltip-auto[data-popper-placement^=right] > .tooltip-arrow::before {
    border-right-color:  var(--brand-primary) !important;
}

.column-header {
    margin: 1em;
}

.column-content {
    margin: 15px;
}


.product-preview-card-container .sort-bar {
    width: 100%;
}



.sort-bar {
    display: flex;
}

.search-sort-bar {
    margin: 2em 0;
    border-bottom: 1px solid #e3e6f3;
    padding: 1em 0;
}

.product-preview-card-container .search-sort-bar {
    margin: 0;
    border-bottom: 0;
}

.search-bar .input-group .btn {
    background: transparent !important;
}

.noresult {
    background-color:  var(--brand-primary);
    border-radius: 19px;
    opacity: 1;
    padding: 2em;
    /*width:300px;*/
}

.noresult_header {
    font-weight: bold;
    font-size: 22px;
    color: #ffffff;
}

.noresult_body {
    margin-top: 20px;
    text-align: left;
    font-size: 14px;
    color: #ffffff;
    font-weight: normal;
}

.noresult_viewall_link {
    margin-top: 27px;
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    text-decoration: underline;
    color: #f3b784 !important;
}

.noresult_link {
    font-size: 14px;
    font-weight: bold;
    text-align: left;
    text-decoration: underline;
    color: #f3b784 !important;
}

.recentadd-links {
    text-decoration: none !important;
}

.btn-login {
    width: 100%;
    background:  var(--brand-primary);
    font-weight: 600;
    color: #fff;
    margin-top: 1em;
}

.navbar-light {
    padding: 16px 30px;
}

    .navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
        color: #000000;
    }

.navbar-toggler {
    border: none !important;
}

.nav-item {
    position: relative;
    cursor: pointer;
}

    .nav-item:hover {
        cursor: pointer;
    }

    .nav-item .welcome-name {
        margin-left: -10px;
    }

span.brand-title-grey {
    color: #B0B6BA;
}

.navbar-light ul.navbar-nav li .text-dark {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: #6C757D;
}

/* QUICK FIX FOR BUTTONS */
button:focus:not(:focus-visible) {
    outline: none;
}

.full-screen-top-nav i.fa-bell {
    position: relative;
    font-size: 25px;
    color: #7A7E83;
    margin-right: 28px;
}

.bell-notif-count-red {
    font-size: 8px;
    background: #DC3545 0% 0% no-repeat padding-box;
    border-radius: 20px;
    color: #fff;
    padding: 4px 5px;
    line-height: 8px;
    font-family: 'Inter';
    position: absolute;
    z-index: 2;
    left: 20px;
}

.header-notification-dropdown {
    position: relative;
}


/*.dropdown-menu {

    left: -15em !important;
}*/
.dropdown-menu.table {
    /*left: 0px !important;*/
}

.dropdown-menu.block-grid-ellipsis {
    /*z-index: 9999;
    overflow: visible;*/
    /* position: absolute; */
    /* inset: 0px auto auto 0px; */
    /* margin: 0px; */
    /* transform: translate(-160px, 40px); */
    /*position: fixed !important;
    inset: unset !important;
    margin: 0 !important;
    transform: translate(-90px, 5px) !important;*/
}

.dropdown-toggle::after {
    display: none;
}

.right-notif-flyout {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
    width: 400px;
    background: #FFF;
    height: 100%;
    padding-left: 30px;
    /*border: 1px solid #E2E6EA;
    border-radius: 15px;*/
}


.dropdown-menu.notifications {
    background: #f2f3fd;
    color: #f2f3fd;
    border-color: #f2f3fd;
    box-shadow: 0 0 4px #b4bbc8;
}

    .dropdown-menu.notifications li {
        background: #fff;
        color: #000;
    }

        .dropdown-menu.notifications li:first-of-type {
            background: transparent;
            color:  var(--brand-primary);
        }


.bell-notif:hover .fa-bell {
    animation: bellshake .5s cubic-bezier(.36,.07,.19,.97) both;
    backface-visibility: hidden;
    transform-origin: top right;
}

@keyframes bellshake {
    0% {
        transform: rotate(0);
    }

    15% {
        transform: rotate(5deg);
    }

    30% {
        transform: rotate(-5deg);
    }

    45% {
        transform: rotate(4deg);
    }

    60% {
        transform: rotate(-4deg);
    }

    75% {
        transform: rotate(2deg);
    }

    85% {
        transform: rotate(-2deg);
    }

    92% {
        transform: rotate(1deg);
    }

    100% {
        transform: rotate(0);
    }
}
/*Error input*/
.error-input {
    border: 1.5px solid red;
}

/*Item Row*/
.item-row:hover {
    background-color: #e9ebf9;
    border-radius: 5px;
}

.item-row {
    padding-top: .5em;
}

/*Icon buttons*/
.trash-icon {
    margin-top: 2em;
    margin-left: -1em;
}

.edit-item, .save-item, .delete-item {
    font-size: 1.5em;
    color:var(--brand-primary)
}

.add-new-item {
    text-decoration: none;
}

.delete-item{
    color: var(--accent-secondary) !important;
}

.delete-item:hover{
    color:var(--accent-secondary-hover) !important;
    transition: .25s ease-in;
}


.edit-item:hover, .save-item:hover {
    color: var(--brand-primary-hover) !important;
    transition: all .2s ease-in;
}

.add-new-item:hover, .add-new-item i:hover, .remove-discount:hover {
    color: var(--brand-primary-hover) !important;
    transition: all .5s ease-in;
}

a.add-new-item.disabled {
    pointer-events: none !important;
    color: #b2b5bd !important;
}

/*Tables*/
td i.status {
    margin-left: auto;
    margin-right: auto;
}

.add-form label.control-label {
    font-size: 13px !important;
    font-weight: bold;
    color: #42444c;
    margin-top: 31px;
}

.add-forms {
    font-size: 20px;
    font-weight: bold;
    color: #0c1b33;
}

.form-control {
    border: 1px solid #dadef0;
    border-radius: 5px;
    opacity: 1 !important;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

    .form-control:active {
        border: 1px solid #7a7cbb;
        border-radius: 5px;
    }

    .form-control:focus {
        border: 1px solid #7a7cbb;
        border-radius: 5px;
    }


#table_id th {
    border-bottom: 0px !important;
}
/************ INPUTS - RADIO *************/
.form-check-input:checked[type=radio] {
    background-color:  var(--brand-primary);
    border-color:  var(--brand-primary);
}

/************* CARD GRID CSS ***************/
.block-grid-button {
    /*background-color: #fff;*/
    color: #6c7485;
    border: none;
    margin-right: 1em;
}

    .block-grid-button:focus {
        /*background-color: #fff;*/
        color: #6c7485;
        border: none;
        margin-right: 1em;
        box-shadow: none;
    }

    .block-grid-button:hover {
        /*background-color: #fff;*/
        color: #6c7485;
        border: none;
        margin-right: 1em;
    }

.block-grid-ellipsis .dropdown-item {
    text-align: center;
}

    .block-grid-ellipsis .dropdown-item.disable_enable {
        border-bottom: 1px solid #DADEF0;
    }

.navbar-toggler:focus {
    box-shadow: none;
}

.col-content-listitem a {
    color:  var(--brand-primary);
    text-decoration-color:  var(--brand-primary);
    font-weight: bold;
    text-decoration-line: underline;
}

.block-grid-button, .block-grid-button:hover {
    margin-top: 0.25em;
    margin-right: 1.5em;
}


.report-card {
    background: #e1e1e1;
    padding: 1em;
    border: 0;
    height: 100%;
}

.btn-download-report {
    background-color:  var(--brand-primary);
    border-radius: 36px;
    color: #fff !important;
    font-size: 14px;
    /* margin-top: -2em; */
    font-weight: bold;
    display: block;
    width: fit-content;
    padding: 1em;
    text-decoration: none;
}

    .btn-download-report:hover {
        border-color: var(--bs-btn-hover-border-color);
    }


.dropdown-menu a {
    color:  var(--brand-primary);
}


    .dropdown-menu a:hover {
        color: var(--brand-primary-hover);
    }

    .dropdown-menu a:active {
        background:  var(--brand-primary);
        color: #fff;
    }

.dropdown-menu .btn {
    color: #fff;
}

.modal .number-code {
    background: #eeefff;
    padding: 1em;
    margin-bottom: 1em;
    border-radius: 10px;
}

.modal .code-input {
    width: 2em;
    text-align: center;
    padding: 3px;
    font-weight: 600;
}

.modal-name {
    font-size: 1.5em;
}

.modal-cost {
    font-weight: 600;
}

    .modal-cost:before {
        content: "$";
    }

.modal-badges span {
    display: table;
    border: 1px solid;
    border-radius: 3px;
    padding: 3px 5px;
    text-transform: capitalize;
}
/************* DATA TABLES ***************/

table.dataTable thead .sorting {
    background-position: center left !important;
}

.dataTables_length label {
    font-size: 18px;
    color: #0c1b33;
    margin: 1em auto;
}

    .dataTables_length label select {
        border: none !important;
        color:  var(--brand-primary) !important;
        font-weight: bold;
        text-decoration: underline;
    }

        .dataTables_length label select:focus {
            box-shadow: none;
        }

        .dataTables_length label select:active {
            box-shadow: none;
        }

        .dataTables_length label select::selection {
            box-shadow: none;
        }

/*    .dataTable.customertable thead tr th{
        border-bottom:3px solid #dadef0 !important;
    }
*/
table.dataTable thead th {
    border-bottom: none !important;
}

thead, tbody, tfoot, tr, td, th{
    border: none !important;
}

table.dataTable.no-footer {
    /*border-bottom: 3px solid #dadef0 !important;*/
    margin-bottom: 1em;
}

table.dataTable.display tbody tr td {
    border-top: none;
    border-bottom: none;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: none !important;
}

/*table.dataTable thead th, table.dataTable thead td {
    border-bottom: 3px solid #dadef0 !important;
}
*/
.dataTables_scrollHeadInner table.dataTable.no-footer {
    border-bottom: 0px !important;
}

.dataTables_wrapper {
    /*margin-right: 2em;*/
}

    .dataTables_wrapper .dataTables_paginate .paginate_button:hover {
        color: #ffffff !important;
        /*change the hover text color*/
    }


    /*below block of css for change style when active*/

    .dataTables_wrapper .dataTables_paginate .paginate_button {
        color: #ffffff !important;
        background-color:var(--brand-primary);
        width:10px;
    }

div.dt-scroll-body {
    border-bottom-color: var(--bs-border-color) !important;
}
/************* DATA TABLES SEARCH BAR ***************/
.dataTables_filter {
    width: 30%;
}

    .dataTables_filter label {
        width: 100%
    }

    .dataTables_filter input {
        width: auto;
        background: #fff;
        border: 1px solid var(--searchbar-border, #DADEF0);
        border-radius: 50rem; /* pill */
        box-shadow: none;
        padding: .45rem 2.5rem .45rem 1rem; /* room for right‑icon */
        font-size: .9rem;
        color: var(--font-color, #252525);
    }

            .dataTables_filter label input:focus-visible {
                outline: none;
            }

            .dataTables_filter label input::placeholder {
                padding-left: 20px;
            }

.fa-search-input {
    padding-left: 1.8em; /* space for icon */
    font-family: inherit; /* keep your text font */
}

    .fa-search-input::before {
        font-family: "Font Awesome 6 Free"; /* match your FA version */
        font-weight: 900; /* solid style */
        content: "\f002"; /* search icon Unicode */
        position: absolute;
        left: 0.6em;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
        pointer-events: none;
    }

/* Make sure the parent container is positioned */
.dataTables_filter {
    position: relative;
}

.dataTables_info {
    color: #6c7485;
    /*margin-top:30px;*/
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
    left: -1.6em !important;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.child {
    /* border: 1px solid #000; */
    background-color: #f9faff !important;
    padding: 9px !important;
    border-radius: 0.5em;
}

table.dataTable > tbody > tr.child ul.dtr-details {
    display: inline-block;
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

/************* DATA TABLES PAGINATION ***************/

table.dataTable {
    width: 100% !important;
}

.dataTables_paginate.paging_simple_numbers {
    float: none !important;
    text-align: center !important;
    /*margin-right: 250px;*/
    margin-top: 30px;
    margin-bottom: 30px;
}

.dataTables_wrapper a.dataTables_paginate {
    color: #6c7485 !important;
}

.dataTables_wrapper .dataTables_paginate a.paginate_button.previous, .dataTables_wrapper .dataTables_paginate a.paginate_button.previous:hover, .dataTables_wrapper .dataTables_paginate a.paginate_button.next, .dataTables_wrapper .dataTables_paginate a.paginate_button.next:hover {
    border: none !important;
    display: none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button, .dataTables_wrapper .dataTables_paginate a.paginate_button,
.dataTables_wrapper .dataTables_paginate .paginate_button, .dataTables_wrapper .dataTables_paginate a.paginate_button:hover {
    border-radius: 5px !important;
    border: 1px solid var(--grey-300) !important;
    background-color: transparent !important;
    background: none !important;
    color: var(--readonly-color) !important;
    font-size: 14px !important;
    padding:10px;
}

    .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate a.paginate_button.current {
        color: #ffffff !important;
        padding: 0px !important;
    }

        .dataTables_wrapper .dataTables_paginate .paginate_button.current, .dataTables_wrapper .dataTables_paginate a.paginate_button.current:hover {
            border: 10px solid var(--brand-primary) !important;
            background-color: var(--brand-primary) !important;
            color: #ffffff !important;
        }


/*DATA TABLES STYLING*/
/* the wrapper class */
table.lanex-table {
    width: 100%;
    font-size: var(--tbl-font-size);
    border-collapse: collapse;
}

    /* HEADERS ──────────────────────── */
    table.lanex-table thead th,
    div.dataTables_scrollHeadInner table.lanex-table th {
        background: var(--tbl-header-bg);
        color: var(--tbl-header-color);
        letter-spacing: .02em;
        text-align: left;
        font-weight: 600;
        padding: .65rem 1rem;
        border-bottom: none;
    }

    /* rounded corners on the very first header row */
    table.lanex-table thead tr:first-child th:first-child {
        border-top-left-radius: var(--tbl-radius);
    }

    table.lanex-table thead tr:first-child th:last-child {
        border-top-right-radius: var(--tbl-radius);
    }

    /* CELLS ────────────────────────── */
    table.lanex-table tbody td {
        color: var(--tbl-cell-color);
        text-align: left;
        padding: .55rem 1rem;
        /* subtle row line – optional */
    }

    /* zebra rows (optional – comment out if you prefer solid white) */
    /*table.lanex-table tbody tr:nth-child(even) {
        background: #F9FAFC;
    }*/

     remove Bootstrap’s striping from .table-striped, keep ours 
    table.lanex-table.table-striped > tbody > tr:nth-of-type(odd) > * {
        background-color: transparent;
    }

/* DATATABLES duplicate header inside the scroll-head – cover that too */
/*div.dataTables_scrollHeadInner table.lanex-table {
    border-collapse: separate;*/ /* so the radius shows    */
/*}*/

    /* same rounded corners inside scroll-head */
    div.dataTables_scrollHeadInner table.lanex-table thead th:first-child {
        border-top-left-radius: var(--tbl-radius);
    }

    div.dataTables_scrollHeadInner table.lanex-table thead th:last-child {
        border-top-right-radius: var(--tbl-radius);
    }



/* ─── Global data-table look (headers + cells) ─────────────────── */
/* Every card that holds a DT table already uses the helper
   .lx-table-wrapper.  Give that wrapper native h-scroll. */
.lx-table-wrapper {
    overflow-x: auto; /* ⇢ horizontal scrollbar if needed  */
    -webkit-overflow-scrolling: touch; /* nice on mobile iOS        */
}

/* Each DT gets a minimum intrinsic width so columns never
   smash together.  535 px + 20 px ≈ 555 px (rounded).   */
.lx-dt {
    min-width: 555px; /* you can tweak this number later   */
}

table.lx-dt {
    font-size: 1rem;
}
    /* 16 px everywhere  */
    table.lx-dt thead tr {
        background: #EFEFF4;
        border-radius: 8px;
    }

    table.lx-dt thead th {
        color: #008c15;
        text-align: left;
        border: none;
        padding: .75rem;
    }

    table.lx-dt tbody td {
        color: #666;
        text-align: left;
        padding: .65rem .75rem;
    }

/*    table.lx-dt tbody tr:nth-child(even) {
        background: #FAFBFC;
    }*/

/* subtle stripe  */

/* overflow scroll body (DataTables Scroller plug-in gives wrapper) */
.dataTables_scrollBody {
    max-height: 18.5rem !important;
    overflow: auto !important;
}

    .dataTables_scrollBody::-webkit-scrollbar-thumb {
        background: var(--brand-primary);
        border-radius: 9px;
        border: 3px solid transparent;
    }

    .dataTables_scrollBody::-webkit-scrollbar-track {
        background: #E5E8EE;
    }

/* ── Generic DataTables card wrapper ───────────── */
.dt-card-wrapper,
.dt-card-wrapper .dataTables_scrollBody {
    height: 100% !important; /* stretch to card body */
}

    /* ── Scroll body styling ───────────────────────── */
    .dt-card-wrapper .dataTables_scrollBody {
        overflow-y: auto !important; /* vertical scroll */
        overflow-x: auto !important; /* horizontal scroll */
        border: none;
        /*border-radius: 0 0 0px 20px;*/
        scrollbar-width: thin; /* Firefox */
        scrollbar-color: var(--brand-primary) var(--grey-200);
    }

        /* WebKit scrollbars */
        .dt-card-wrapper .dataTables_scrollBody::-webkit-scrollbar {
            width: 8px;
        }

        .dt-card-wrapper .dataTables_scrollBody::-webkit-scrollbar-track {
            background: var(--grey-200);
        }

        .dt-card-wrapper .dataTables_scrollBody::-webkit-scrollbar-thumb {
            background: var(--brand-primary);
            border-radius: 4px;
        }

    .dt-card-wrapper .dataTables_scrollHeadInner { /* match your custom scrollbar width */
        padding-right: 8px; /* 8 px in your scrollbar CSS */
    }



/* ─── tiny icon buttons inside tables (edit / view) ─────────────── */
.tbl-icon-btn {
    --c: var(--brand-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    margin-left: .35rem;
    border: none;
    background: transparent;
    color: var(--c);
    padding: 0;
}

    .tbl-icon-btn:hover {
        color:  var(--brand-primary-hover);
    }

.nav-link.sidebar-menu.table-dropdown {
    /* padding-top: 5px; 20221018*/
    padding-left: 1em;
    /* margin-top: 0.5em; 20221018*/
}

.dropdown-menu.end-column.table.show {
    position: absolute;
    width: 60px;
    font-size: 13px;
    color: var(--brand-primary);
    text-align: center;
    inset: 0px 0px auto auto;
    margin-left: .5em;
    transform: translate(-10px, 139px);
}

.dashboard-column-headers {
    min-height: 50px;
}

.mobile-logo {
    display: none;
}


.mobile-table-controller {
    padding-bottom: 2em;
}

.modal-header h2 {
    margin: 0;
}

.fa-trophy {
    font-size: 20px !important;
}

.page-title h1 {
    margin-right: 1em !important;
}

.btn-status-change {
    margin-left: 1em;
    font-size: 0.8em !important;
    width: 215px;
}

.logout {
    font-size: 14px;
    margin: 1em 0 1em 1em !important;
}

.remove-notification {
    border: 0;
    background: 0;
    color: #e86c56;
    font-weight: 600;
}

.parent-child-grid {
    margin-bottom: 2em;
}


.tag span, .goals-title {
    white-space: nowrap;
}

.prod-name {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.list-group .fa-copy {
    margin: 0.5em;
}


.icon-trophy {
    align-items: center;
    display: flex;
}

    .icon-trophy i {
        font-size: 2em;
    }

.reports-list-item {
    flex-direction: column;
}

.reports-list-item {
    margin-bottom: 2em;
    border: 1px solid #DADEF0;
    padding: 2em;
    font-size: 13px;
    color: #6c7485;
    background-color: #ffffff !important;
    border-radius: 9px;
    flex-direction: column;
}

.total-sales-block {
    background-color: #d5f8ef;
    border-radius: 19px;
    color:  var(--brand-primary);
    height: auto;
    margin-bottom: 1em;
}


.select-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.product-select-image {
    height: 165px;
    width: 200px;
    min-width: calc(10vw)
}


.product-row-container {
    border: 1px solid #dadef0;
    border-radius: 8px;
    padding: 5px;
    margin-bottom: 1em;
}

.product-name {
    color: #0c1b33;
    font-size: 18px;
    margin-bottom: 1em;
}

.product-info .product-details span {
    color:  var(--brand-primary);
    font-size: 16px;
    font-weight: 600;
}

/*.product-information {
    min-width: calc(20vw);
}*/

.product-name {
    color: #0c1b33;
    font-weight: 600;
    max-width: 290px;
}


.sg-price, .og-price, .profit-amount {
    text-align: center;
    font-size: 22px;
}


.product-info, .sg-price, .og-price, .profit-amount {
    padding: 0 1em;
}

    .sg-price label, .og-price label, .profit-amount label {
        color:  var(--brand-primary);
        text-align: center;
        font-weight: 600;
        font-size: 16px;
        line-height: 1.0625em;
        margin-bottom: 1em;
    }

.selling-price {
    border: 1px solid #dadef0;
    padding: 5px;
    border-radius: 3px;
    text-align: center;
    background: #f2f3fd;
    color:  var(--brand-primary);
    font-size: 22px;
    line-height: 1.2;
    width: 130px;
    font-weight: 600;
    margin-left: 10px;
}

.negativeProfit {
    font-weight: 600;
    color: #ce3535;
}


.positiveProfit {
    font-weight: 600;
    color: #119771;
}

.select-product-text {
    color:  var(--brand-primary);
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3125;
}

.select-price-text {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3125;
}

.select-product .form-switch {
    padding: 0;
}

.select-product .form-check-input {
    margin: 1em auto;
    font-size: 1.55em;
    background-color: #f2f3fd;
    border-color:  var(--brand-primary);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28130, 134, 237, 1%29'/%3e%3c/svg%3e") !important;
    height: 1.25em;
    width: 2.5em;
}

    .select-product .form-check-input:checked {
        background-color:  var(--brand-primary);
        border-color:  var(--brand-primary);
        font-size: 1.55em;
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%28255, 255, 255, 1%29'/%3e%3c/svg%3e") !important;
    }

        .select-product .form-check-input:checked:after {
            content: "Added!";
            color: #119771;
            font-weight: 400;
            display: block;
            font-size: 13px;
            font-weight: 600;
            margin-top: 2em;
            line-height: 2;
            width: 100%;
            text-align: center;
        }

.modal .select-product .form-check-input {
    margin: 0em;
}


.setup-page-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.progress-milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .progress-milestone span {
        position: absolute;
        bottom: -1.5em;
    }


    .progress-milestone.current span {
        font-weight: 600;
    }

    .progress-milestone.complete .r-icon {
        background: #d5f8ef;
    }

    .progress-milestone .r-icon {
        padding: 1em 1.25em;
        background: #dadef0;
        border-radius: 50%;
        text-align: center;
        z-index: 9;
    }


    .progress-milestone.current .r-icon {
        background:  var(--brand-primary);
        border-radius: 20px;
    }

    .progress-milestone .r-icon img {
        width: 1.5em;
    }

    .progress-milestone.complete .r-icon {
        padding: 1em;
    }

    .progress-milestone .r-icon .fa-light {
        height: 26.5px;
        /* margin-right: -5px; */
        padding-left: 3px;
        /* margin-left: -5px; */
        vertical-align: middle;
        font-size: 1.75em;
        /* font-weight: 600; */
        display: flex;
        align-items: center;
        justify-content: center;
        color: #119771;
    }

.share-button-icons {
    text-align: center;
    margin: 4em 0;
}

.icon-bubble {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1em;
}


    .icon-bubble:hover {
        cursor: pointer;
    }

.icon-bubble-icon {
    font-size: 4em;
    padding: 22%;
    border-radius: 50%;
    margin: 0 auto;
}

.icon-share-section {
    cursor: pointer;
}

.markup-block {
    margin-bottom: 1em;
}

.icon-bubble span {
    font-weight: 600;
    text-align: center;
}

.footer-r-logo {
    width: 40px;
    margin-bottom: 1em;
}

.footer-text-logo {
    width: 170px;
    margin-right: 1em;
}

.review-titles {
    margin-top: 2em;
}

.markup-all-40 {
    font-weight: 600;
}

/**** DATATABLES ****/
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th.dtr-control:before {
    background-color: #f2f3fd !important;
    color:  var(--brand-primary) !important;
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before, table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
    background-color:  var(--brand-primary) !important;
    /*border: 0.15em solid  var(--brand-primary) !important;*/
}


.order-status p {
    display: table; /** Gives this a min-width "pill" appearance **/
}

.order-status .Pending {
    background-color:  var(--brand-primary);
    color: #ffffff;
    border-radius: 5px;
    font-size: 11px;
    text-align: center;
    margin-top: 1.5em;
    padding-left: 0.5em;
    padding-right: 0.5em;
}


.order-status .Shipped {
    background-color: #e86c56;
    color: #ffffff;
    border-radius: 5px;
    font-size: 11px;
    text-align: center;
    margin-top: 1.5em;
    padding-left: 0.5em;
    padding-right: 0.5em;
}

.dropzone {
    min-height: 150px;
    border: 2px dashed rgba(0,0,0,.3) !important;
    background: #fff;
    border-radius: 9px;
    padding: 20px 20px;
    color: grey;
    font-weight: 500;
    font-size: 1.25em;
    margin-bottom: 2em;
}

    .dropzone .dz-preview {
        margin: 5px;
    }

        .dropzone .dz-preview .dz-progress .dz-upload {
            background: linear-gradient(to bottom,  var(--brand-primary),  var(--brand-primary)) !important;
        }

.dropdown-menu.notifications.show, .dropdown-menu.dropdown-account.show {
    position: absolute;
    max-height: 200px;
}


.dropdown-menu.notifications.show {
    overflow-y: scroll;
}


div.dataTables_scrollBody::-webkit-scrollbar {
    width: 15px;
    visibility: hidden;
}

div.dataTables_scrollBody::-webkit-scrollbar-track {
    background-color: #dadef0;
    visibility: hidden;
}

div.dataTables_scrollBody::-webkit-scrollbar-thumb {
    background-color:  var(--brand-primary);
    border: 3px solid transparent;
    border-radius: 9px;
    background-clip: content-box;
    visibility: hidden;
}

.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.share-social {
    margin-left: 1em;
    margin-right: auto;
}

    .share-social button {
        padding: 0;
    }

.scroll-range::-webkit-slider-thumb {
    background:  var(--brand-primary);
}

.scroll-range::-moz-range-thumb {
    background:  var(--brand-primary);
}

.scroll-range::-ms-thumb {
    background:  var(--brand-primary);
}


.details-section {
    padding: 0 1.5em;
}

.notification-count {
    top: -0.25em;
}

.confirm-email-form .btn {
    background-color:  var(--brand-primary);
    font-weight: bold;
    width: 195px;
    border-radius: 36px;
    border: none;
    font-size: 14px;
}

.dataTables_scrollBody {
    overflow: visible;
}

.form-group {
    margin-bottom: 1em;
}

#registerForm .control-label, #registerForm .form-label, .modal .control-label {
    margin: 0.5em 0;
    font-weight: 600;
}

#registerForm .form-control {
    margin-bottom: 1em;
}

.details-page-details {
    font-size: 16px;
    color: #0c1b33 !important;
    overflow-wrap: break-word;
}

.launch-product-editor:hover {
    cursor: pointer;
}

.mobile-table-controller {
    padding-bottom: 2em;
}


.share-button {
    padding: 0;
}


#messageBanner {
    background: rgb(53 60 139 / 90%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    padding: 1.5em;
    font-weight: 600;
    color: #fff;
    z-index: 9999;
    display: none;
}

    #messageBanner a {
        color: #fff;
    }


.footer {
    background: #e1e1e1;
    padding: 1em;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 1em;
}


.password-req {
    font-size: .8em;
    clear: both;
    width: 100%;
    display: block;
    margin-top: 1em;
}

.dataTables_scrollBody tr:hover td, .dataTables_scrollBody tr:hover .sorting_1 {
    background-color: #EFEFF4 !important;
}

.identity-right-side {
    align-items: center;
    display: flex;
}

.outofstock.col-sm {
    display: none;
}

.btn-copy-link svg {
    margin-right: 0;
}

.Logo {
    max-width: 200px;
    max-height: 200px;
}

.btn.request {
    background-color:  var(--brand-primary) !important;
    color: #fff !important;
    font-weight: 600;
    margin-right: 2em;
    animation: animate-pulse 3s linear infinite;
    width: auto;
}

.seller-credit-box {
    background-color: #f1f2ff;
    border-radius: 9px;
    padding: 1em;
    width: 100%;
    display: block;
    margin-bottom: 1em;
    animation: animate-pulse 3s linear infinite;
}

    .seller-credit-box select {
        width: 100%;
        font-size: 1.125em;
    }

    .seller-credit-box .tag-multiple-seller {
        font-size: 1.125em;
        font-weight: 600;
        color:  var(--brand-primary);
    }

button.breadcrumbs.admin-backto-pages {
    background-color: #ffffff;
    border: none;
}

.hidden-btn {
    background: #ffffff;
    border: none;
    /*margin-left: 1.5em;*/
    font-size: 12px;
    color: #6c7485;
}

.form-group input.form-control.readonly {
    font-size: 16px;
    font-weight: normal;
    color: #0c1b33;
    background-color: #ffffff;
    border: none;
}

.form-group label.control-label {
    color: #96a1b8;
    font-size: 13px;
    font-weight: bold;
}

.display-input input {
    padding-left: 0;
}

    .display-input input:hover {
        cursor: pointer;
    }

#pointOfContactModal .modal-header {
    border-bottom: none;
    justify-content: unset;
}

.control-label.edit {
    font-size: 13px !important;
    color: #42444C !important;
}

.form-control.edit {
    border: 1px solid #DADEF0 !important;
    color: #6c7485 !important;
}

    .form-control.edit:focus {
        border: 1px solid #7A7cbb !important;
        color: #0c1b33 !important;
    }

    .form-control.edit:active {
        border: 1px solid #7A7cbb !important;
        color: #0c1b33 !important;
    }


.form-check-input {
    font-size: 1.35em;
}

    .form-check-input:checked {
        background-color:  var(--brand-primary);
        border-color:  var(--brand-primary);
        font-size: 1.35em;
    }

    .form-check-input.paid:checked {
        background-color: var(--accent-secondary);
        border-color: var(--accent-secondary);
    }


.modal-footer {
    justify-content: flex-start !important;
}

.Logo {
    max-width: 200px;
    max-height: 200px;
}



.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 998;
}


.menuspan-top {
    margin: 0;
    padding: 0;
    background: #000;
    width: 25px;
    height: 3px;
}

.menuspan-bottom {
    margin: 0;
    padding: 0;
    background: #000;
    width: 18px;
    height: 3px;
    margin-top: 5px;
}

.nav-item i {
margin-right:5px;
}

/** LOGIN PAGE **/
.login-wrapper {
    background-color: var(--brand-secondary); /* Your brand blue */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.login-card {
    background-color: #ffffff; /* light gray card background */
    border-radius: 5px;
    padding: 2rem 3rem;
    box-shadow: 0px 0px 25px #000000;
    width: 100%;
    max-width: 500px;
}
@media (max-width: 768px) {
    .menu-button {
        margin: 1em 0 0 0;
    }
}

@media screen and (max-width:1900px) {
    .dataTables_wrapper .dataTables_filter input {
        /*margin-right:5em;*/
        margin-left: 0;
    }

    .catalogtable {
        /*overflow-x:scroll !important;*/
    }

    .icon-title-section.row {
        width: 400px !important;
    }
}

@media screen and (max-width: 1800px) {
    .import-directions-row {
        margin-right: 4em !important;
    }
}

@media screen and (max-width: 1530px) {

}

@media screen and (max-width: 1199px) {
    .Address-section{
        margin-top: 3rem;
    }
}

@media screen and (max-width: 1156px) {

    .navbar-nav.full-screen-top-nav.notif-initials {
        margin-right: 30px;
    }


    #table_id_filter {
        width: 100%;
        margin: 0;
    }
}

@media screen and (max-width: 1300px) {
    .import-directions-row {
        margin-right: 2em !important;
    }

    .footer.custom-padding {
        padding: 1em;
    }

    .site-logo {
        width: 260px;
    }

    .goals-title {
        font-size: 9px !important;
    }

    .inner-container .dashboard-container .column-header,
    .inner-container .dashboard-container .column-content {
        margin: 0px;
    }

    .dashboard-column-headers {
        font-size: 13px;
        min-height: 40px;
        margin-bottom: 1em;
    }
}



@media screen and (min-width: 1500px) {
    .col-xl-5 {
        flex: 0 0 auto !important;
        width: 41.66666667% !important;
    }
}

@media screen and (min-width: 992px) and (max-width: 1499px) {
    .form-group.col-lg-12 {
        flex: 0 0 auto;
        width: 100%;
    }
}

@keyframes animate-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(142,145,238,0.7), 0 0 0 0 rgba(142,145,238,0.7);
    }

    40% {
        box-shadow: 0 0 0 10px rgba(142,145,238,0.0), 0 0 0 0 rgba(142,145,238,0.7);
    }

    80% {
        box-shadow: 0 0 0 10px rgba(142,145,238,0.0), 0 0 0 10px rgba(142,145,238,0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(142,145,238,0.0), 0 0 0 10px rgba(142,145,238,0);
    }
}


@media screen and (max-width: 1205px) {
    .navbar-nav.full-screen-top-nav.notif-initials {
        margin-right: 20px;
    }

    .dataTables_filter {
        width: 50%;
    }

    .site-logo {
        width: 200px;
    }
}

@media screen and (max-width: 1175px) {
    .navbar-nav.full-screen-top-nav.notif-initials {
        margin-right: 0 !important;
    }

    .product-preview-card-container {
        max-width: 100% !important;
        width: 100% !important;
        margin: auto;
    }
}

@media screen and (max-width: 1115px) {

}

@media screen and (max-width: 1090px) {
    .navbar-nav.full-screen-top-nav.notif-initials {
        margin-right: 40px !important;
    }

    .dataTables_filter {
        width: 50%;
        margin-right: 40px;
    }
}


@media screen and (max-width: 1050px) {
    .navbar-nav.full-screen-top-nav.notif-initials {
        margin-right: 60px;
        flex-direction: initial
    }
}

@media screen and (max-width: 990px) {


    .splr-appr-bnr .bnr-content i.bnr-icon {
        margin-top: .5%;
    }

    .splr-appr-bnr .bnr-text-content {
        margin-left: 3%;
    }

    .icon-title-section {
        display: flex;
        flex-wrap: nowrap;
    }

    .identity-right-side {
        position: relative !important;
    }

    .details-section, .details-section-margin-left {
        margin-left: 0 !important;
    }

    .mobile-logo {
        display: block;
        max-width: 180px;
        margin-left: 2em;
    }

    .sidebar-fullscreen {
        display: none !important;
    }

    .full-screen-top-nav.notif-initials {
        display: contents;
    }

    .full-screen-top-nav-welcome {
        display: none !important;
    }

    .footer.custom-padding {
        padding: 1em;
    }

    .footer-text-logo {
        margin-right: 0;
        margin-bottom: 1em;
    }

    .navbar.navbar-expand-lg .container-fluid {
        justify-content: end !important;
    }

    .account-management {
        width: 330px;
        margin: 1em;
    }

    .navbar.navbar-expand-lg.navbar-toggleable-lg {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
            .navbar.navbar-expand-lg.navbar-toggleable-lg .container-fluid button.navbar-toggler {
                margin-right: 16px;
            }


    .navbar-collapse.full-screen-nav.collapse.show {
        box-shadow: 1px 1px 2px #dadef0;
        max-width: 100%;
    }

    .navbar-collapse {
        margin-top: 1.5em;
    }

    .pagination-item-count {
        margin-top: -2em;
    }

    .dash-right-side.col-xl-3 {
        width: 100%;
    }

    .icon-title-section.row .col-div-icon {
        padding-left: 0px !important;
        margin-left: -10px !important;
    }

    .navbar-collapse {
        margin-top: 1.5em;
    }

    .pagination-item-count {
        margin-top: -2em;
    }

    .dash-right-side.col-xl-3 {
        width: 100%;
    }


    datalist {
        z-index: 999;
        margin-top: 2.5em !important;
    }
}


@media screen and (min-width: 991px) {

    .collapse.navbar-collapse.full-screen-nav {
        display: none !important;
    }
}

@media screen and (max-width:880px) {
    .add-sale {
        font-size: 12px !important;
        width: 125px !important;
    }
}

@media screen and (max-width: 795px) {

    .product-name {
        padding: 0 1em;
    }

    table {
        font-size: .9em;
    }

    .import-btn-form {
        /*margin-top: 4em;  20221018
    */
        margin-bottom: 1em;
    }
}

@media screen and (max-width: 768px) {

    .splr-appr-bnr .bnr-wrapper {
        flex-direction: column;
        padding: 2% 6%;
        align-items: flex-start;
    }

    .splr-appr-bnr .bnr-button {
        justify-content: flex-start;
        padding: 2% 2%;
        margin-left: 1%;
    }

    .splr-appr-bnr .bnr-content i.bnr-icon {
        margin-left: -8%;
        margin-top: 1%;
    }

    .splr-appr-bnr .bnr-content {
        align-items: flex-start;
    }

    .splr-appr-bnr .bnr-text-content {
        margin-left: 3%;
    }

    .unselected {
        border: none;
        background-color:  var(--brand-primary);
        box-shadow: none;
        color: #fff;
        font-size: 11px;
        border-radius: 50%;
        padding: 1em;
        line-height: 1;
    }

        .unselected .fa-pencil {
            display: none;
        }

    .selected {
        border: none;
        background-color: transparent;
        box-shadow: none;
        color:  var(--brand-primary);
        font-size: 15px;
        border-radius: 1em;
        padding: 1em 0.5em;
        line-height: 1;
    }

        .selected .fa-plus {
            display: none;
        }



    .product-name .fa-circle-info {
        color:  var(--brand-primary);
    }

    .name-role .role p {
        color: #000;
    }

    .page-title h1 {
        margin: 1em 0 !important;
        text-align: center;
    }

    .dashtable-title {
        text-align: center;
    }

    .reports-list-item {
        flex-direction: column;
    }

    .dashboard-container {
        margin-top: 0;
    }

    .dashViewAllLink {
        margin-left: 1em;
    }

    .dashboard-header {
        display: flex;
        justify-content: center;
        /* margin: 1em 0; */
        text-align: center;
        flex-direction: column-reverse;
    }

    .dataTables_paginate.paging_simple_numbers {
        margin-right: 0px;
    }

    .nav-link div {
        border: 1px solid #54466e !important;
        background: transparent;
    }

    .nav-link.active {
        background-color: transparent !important;
    }

        .nav-link.active, .nav-link.active div {
            border-radius: 1em;
        }

    .account-detail-holder .nav-pills {
        width: 100% !important;
    }
}



@media screen and (max-width: 640px) {


    .product-name {
        font-size: 1em;
        padding: 0 0.5em;
    }

    .selling-price {
        font-size: 1em;
        width: 90px;
    }

    .product-block .product-select-image {
        min-width: 31%;
        height: 100%;
    }

    .sg-price label, .og-price label, .profit-amount label {
        font-size: .8em;
    }

    .sg-price, .og-price, .profit-amount {
        font-size: 1em;
    }

    .navbar .account-management {
        /* margin-left: 2em !important; */
        max-width: 100% !important;
        width: 315px;
        margin: 1em auto;
        border-radius: 15px;
        background: #dadef0;
        border: solid 1px #dadef0;
    }

    .search-bar {
        width: 100%;
    }

    .page-title h1 {
        margin: 1em 0 !important;
    }

    .card-grid-page-container {
        margin-left: 0px !important;
    }


    .dataTables_filter {
        margin-left: auto;
        margin-right: auto;
        width: 80%
    }
    .responsive-table {
        overflow-x: auto;
    }

    .card-content {
        width: 100% !important;
    }

    .noresult {
        width: 100% !important; /* width:280px!important; */
    }
}

@media screen and (max-width:530px) {

    .prod-select-title {
        font-size: 28px !important;
    }
}

@media screen and (max-width: 480px) {

    .login-submit {
        width: 100% !important;
    }

    .splr-appr-bnr .bnr-wrapper {
        flex-direction: column;
        padding: 4% 7%;
        align-items: flex-start;
    }

    .splr-appr-bnr .bnr-button {
        justify-content: flex-start;
        padding: 2% 2%;
        margin-left: 6%;
    }

    .splr-appr-bnr .bnr-content i.bnr-icon {
        margin-left: -8%;
        margin-top: 2%;
        padding-left: 2%;
    }

    span.share-link-i {
        width: 90px;
        height: 90px;
        margin: 5px;
    }

    .progress-milestone .r-icon {
        padding: 0.5em 0.75em;
    }

        .progress-milestone .r-icon img {
            width: 1em;
        }

        .progress-milestone .r-icon .fa-light {
            padding-left: 0;
            font-size: 1em;
            height: auto;
        }

    .icon-bubble-icon {
        font-size: 2em;
    }


    .search-bar {
        width: 100%;
    }

    .navbar .account-management {
        width: 305px;
    }

    .dropdown-menu.notifications.show,
    .dropdown-menu.dropdown-account.show {
        position: fixed;
        top: 4.5em;
        left: 0;
        width: 100% !important;
    }

    h1 {
        font-size: 1.25em;
        line-height: 1.5em;
    }

    .mobile-logo {
        max-width: 115px;
        margin-left: 1em;
    }


    .bell-notif-button .fa-bell {
        color:  var(--brand-primary);
        font-size: .5em;
        margin: auto;
    }

    .navbar.navbar-expand-lg.navbar-toggleable-lg .container-fluid button.navbar-toggler {
        margin-right: 0;
    }

    .bell-notif-button .fa-2x {
        background-color: #e1e1e1;
        border-radius: 17px;
        height: 35px;
        width: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .bell-notif-button .fa-layers {
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}



@media screen and (max-width: 380px) {

    .bell-notif-button .fa-bell {
        font-size: .5em;
    }


}

/* ──────────────────────────────────────────────
   PROJECT V2 – SIDEBAR & SURFACE LAYOUT
   (append at end of site.css after all deletes)
   ────────────────────────────────────────────── */

/* ① Canvas colour behind everything */
html, body {
    background: #F2F4F7;
}

/* ② Sidebar “card” */
.menu-container {
    position: fixed;
    inset: 12px auto 12px 12px;
    width: 250px;
    height: calc(100% - 24px);
    background: #fff;
    border-radius: 18px;
    padding: 2.25rem 1.5rem 4rem;
    box-shadow: 0 6px 18px rgba(0,0,0,.08);
    display: flex;
    flex-direction: column;
    z-index: 1030;
}

    /* logo + welcome */
    .menu-container > img {
        max-width: 140px;
        margin: .25rem auto 0;
    }

    .menu-container .brand {
        margin: .75rem 0 2.25rem;
        font-weight: 700;
        text-align: center;
        color: var(--brand-primary);
        line-height: 1.35;
    }

    /* nav links */
    .menu-container .navbar-nav {
        gap: .75rem;
    }

    .menu-container .nav-link {
        display: flex;
        align-items: center;
        gap: .55rem;
        padding: .55rem 1rem;
        border-radius: 1.75rem;
        color: #4C566A;
        font-weight: 500;
        font-size: .95rem;
        transition: .18s;
    }

        .menu-container .nav-link i {
            font-size: 1.05rem;
            color: inherit;
        }

        .menu-container .nav-link:hover,
        .menu-container .nav-link.active {
            background: #002B53;
            color: #fff;
        }

/* logout */
.logout-block {
    margin-top: auto;
    text-align: left;
    padding-left: .25rem;
}

    .logout-block button {
        all: unset;
        font: 500 .9rem/1 var(--font);
        cursor: pointer;
        display: inline-flex;
        gap: .5rem;
        color: #4C566A;
    }

        .logout-block button:hover {
            text-decoration: underline;
            color: #002B53;
        }

    .logout-block i {
        font-size: 1rem;
    }

/* ③ Push page content right so it never hides under sidebar */
body {
    margin-left: calc(250px + 24px);
}
/* sidebar width + both 12 px margins */

.profile-card .card-header {
    background: var(--brand-primary);
    color: #fff;
    border-bottom: none;
}

.card .card-header {
    border-bottom:none !important;
    margin-bottom:1em;
}

/* Reset ALL normal cards to white again         */
.card {
    background: #fff;
    color: #0c1b33;
    border: 1px solid #E5E8EE;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(0,0,0,.05);
}

    .card.lx-header-card {
        border-radius: 20px;
        height: 485px; /* ① target size  */
        padding: 20px; /* ② 20 px all-round */
    }
    .card.lx-header-card .card-body {
        overflow: hidden;
    }

    .card.lx-header-card-static {
        border-radius: 20px;
        padding: 20px; /* ② 20 px all-round */
    }

.card-header {
    background: #fff;
    border-bottom: 1px solid #E5E8EE;
}
    .card-header:first-child {
        border-radius: 20px 20px 0 0 !important;
        background: #fff !important;
    }

    .card-header h4, .card-header h5 {
        font-weight: 700;
        color: var(--brand-primary);
        margin: 0;
    }



/* ⑤ Data-table check-marks */
.check-circle {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background:  #ffc600;
    color: #fff;
    font-size: .7rem;
}

/* ───────── Customer profile card only ────────*/
.profile-card {
    background: var(--brand-primary);
    border: none;
    color: #fff;
}

.profile-top {
    padding: 1.75rem 1.5rem 0.25rem;
}

.profile-name {
    color: #fff;
    font-size: 1.75rem;
    font-weight: 600;
}

/* yellow “pen-to-square” button */
.edit-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--accent-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--brand-primary);
}

    .edit-btn:hover {
        background: var(--accent-secondary-hover);
        height: 42px;
        width: 42px;
        font-size: 1.2rem !important;
        color: var(--brand-primary-hover ) !important;
    }

/* profile body – two columns on desktop, stacks on mobile */
.profile-body {
    padding: 1.5rem 1.75rem 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(12rem,1fr));
    column-gap: 3rem;
    row-gap: .75rem;
    font-size: .9375rem;
}

    .profile-body .label {
        display: block;
        font-weight: 700;
        /*margin: 0 0 .25rem;*/
    }

/*    .profile-body p {
        margin: 0 0 .75rem;
    }*/

.lb-store-pro{
    margin-bottom:-1em;
}
/* ─────── keep communication-log card white ───────*/
.profile-card + .card {
    background: #fff;
    color: #0c1b33;
}


/* ───────── tighten left spacing ───────── */
.content-wrap {
    padding-left: 0; /* kill Bootstrap’s 12 px gutter             */
    padding-right: 1.5rem; /* keep a little room on the far-right side  */
}

/* keep breadcrumbs + titles flush with the new edge */
.breadcrumb-nav,
.page-title,
.page-card {
    margin-left: 0; /* nothing extra; they already sit in .content-wrap */
}

/* OPTIONAL – absolute pixel-perfect match to comp */
/* Comp shows ~16 px between sidebar and cards (12px sidebar margin + 4px breathing room) */
@media (min-width: 992px) {
    .content-wrap {
        padding-left: .25rem; /* 4 px nudge = 0.25 rem                       */
    }
}

/* Whole Page Cards */
.page-card {
    border: 1px solid #E5E8EE;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 14px rgba(0,0,0,.05);
    padding: 2rem 1.75rem; /* breathing room */
    margin-bottom: 2rem; /* space from footer */
    margin-left: 1.15rem;
}

/* Space below the top bar – matches comp */
.content-area { /* 64 px ⇢ adjust if you need more/less */
    padding-top: 4rem;
}

/* Breadcrumb appearance */
.breadcrumb-nav {
    font-size: .875rem;
    margin-bottom: 1.5rem; /* gap between crumbs and page content */
}

/* ───────── Breadcrumb refinements ───────── */
.breadcrumb-nav { /* wrapper so you can nudge as a block */
    margin: .85rem 0 1.25rem 2.50rem !important; /* top spacing from comp */
}

.breadcrumb { /* kill default background + tighten gap */
    background: transparent;
    padding: 0;
    gap: .15rem; /* flex-gap for even spacing */
}

    .breadcrumb-item + .breadcrumb-item::before {
        content: ">";
        padding: 0 .40rem;
        color: inherit;
        font-weight: normal;
        margin-left: -.5em;
    }

    /* link + hover */
    .breadcrumb-item > a {
        color: inherit;
        text-decoration: none;
    }

        .breadcrumb-item > a:hover {
            text-decoration: underline;
        }


/* every crumb (non-active) */
.breadcrumb-item {
    font-size: .875rem;
    font-weight: 500; /* medium weight, muted colour     */
    color: #4C566A; /* blue-grey from comp             */
}

    /* current page */
    .breadcrumb-item.active {
        font-weight: 700; /* bold                            */
        color: var(--brand-primary); /* dark brand blue                 */
    }


@media (min-width: 992px) {
    .content-wrap > .container-fluid.px-4 {
        padding-left: 0 !important;
    }
}

/* ⑥ Responsive tweak: on tablet/phone slide-in sidebar */
@media(max-width:991.98px) {
    .menu-container {
        left: -280px;
        margin: 0;
        border-radius: 0;
        transition: left .3s ease;
    }

    body {
        margin-left: 0;
    }
}