* {
    font-family: poppins;
}

:root {
    --primary-color: #004b85;
    --secondary-color: #0265b1;
    --dark-blue: #030229;
    --purple: #AE8FF7;
    --blue: #0072F9;
    --pink: #E3486F;
    --orange: #FF8F6B;
}
.text-primary{
    color: var(--primary-color) !important;
}
a{
    text-decoration: none;
    color: var(--primary-color);
}
body {
    background-color: #F0F5F9;
}

body.login {
    min-height: 100vh;
    overflow: hidden;
}

.login-container {
    min-height: 100vh;
}

.left-panel {
    background-image: url('../images/login-image.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.brand-logo {
    font-size: 5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.right-panel {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e5e5e5;
}

.login-form {
    width: 100%;
    max-width: 400px;
    padding: 1rem;
}

.form-control {
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    background-color: #f1f5f9;
    border: 1px solid #e2e8f0;
}

.form-control:focus {
    box-shadow: 0 0 0 0.25rem rgba(252, 185, 39, 0.25);
    border-color: var(--primary-color);
}

.form-control-icon {
    position: relative;
}

.form-control-icon i {
    position: absolute;
    top: 50%;
    left: 1rem;
    transform: translateY(-50%);
    color: #94a3b8;
    z-index: 2;
}

.form-control-icon input {
    padding-left: 2.75rem;
}

.login-btn {
    background-color: var(--primary-color);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background-color: #e9a917;
}

.forgot-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.form-check-input:checked {
    background-color: #4CAF50;
    border-color: #4CAF50;
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: #4CAF50;
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.login-form h2 {
    font-size: 22px;
}

.login-form p {
    font-size: 14px;
    color: #030229;
}

.login-form .form-floating img {
    max-height: 28px;
    width: auto;
}

.login-form .form-floating label {
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: row;
    gap: 0px 18px;
    font-size: 14px;
    color: #505050  !important;
}

.sidebar {
    min-height: 100vh;
    background-color: #ffffff;
    border-right: 1px solid #eaeaea;
    width: 300px;
    height: 100vh;
    transition: 0.3s;
}

.z_mainDashboard {
    padding-top: 120px;
    transition: 0.3s;
}

.z_mainDashboard nav.navbar {
    right: 0;
    width: calc(100% - 300px);
    border-bottom: 1px solid #eaeaea;
    padding: 22px 25px;
    transition: 0.3s;
}

.z_mainDashboard .z_dashboardContent {
    width: calc(100% - 300px);
    margin-left: auto !important;
    margin-right: 0;
    padding: 0 25px 50px 25px;
    transition: 0.3s;
}
.dashboard-card-link {
    text-decoration: none;
}
.stat-card {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: 0;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10px;
    border-radius: 0px;
}

.green-card::before {
    background-color: #4CAF50;
    left: 0;
}

.purple-card::before {
    background-color: #9C27B0;
    left: 0;
}

.blue-card::before {
    background-color: #2196F3;
    left: 0;
}

.red-card::before {
    background-color: #F44336;
    left: 0;
}

.icon-container {
    width: 75px;
    height: 75px;
    min-width: 75px;
    max-width: 75px;
}
.card.stat-card .card-body {
    display: flex;
}

.icon-container img {
    display: block;
    width: 100%;
}

.green-bg {
    background-color: rgba(76, 175, 80, 0.1);
}

.purple-bg {
    background-color: rgba(156, 39, 176, 0.1);
}

.blue-bg {
    background-color: rgba(33, 150, 243, 0.1);
}

.red-bg {
    background-color: rgba(244, 67, 54, 0.1);
}

.green-text {
    color: #4CAF50;
}

.purple-text {
    color: #9C27B0;
}

.blue-text {
    color: #2196F3;
}

.red-text {
    color: #F44336;
}

.stat-count {
    font-size: 40px;
    font-weight: bold;
    color: var(--dark-blue);
    margin: 0 0 0 0;
}

.stat-card .icon-main .box-content p {
    font-size: 15px;
    color: var(--dark-blue);
    font-weight: 500;
    line-height: 1.3;
}

.dropdown-menu {
    min-width: 8rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    border-radius: 5px;
    margin-bottom: 5px;
}

.nav-link:hover,
.nav-link.active {
    background-color: #f8f9fa;
}

.sub-menu {
    padding-left: 2rem;
}

.chart-container {
    background-color: #ffffff;
    border-radius: 10px;
}

.table-container {
    background-color: #ffffff;
    border-radius: 10px;
}

.customer-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(33, 150, 243, 0.1);
    color: #2196F3;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.8rem;
}

a.navbar-brand {
    font-size: 20px;
    font-weight: 500;
    gap: 0px 14px;
    color: #030229;
}

.btn {
    transition: 0.3s;
    border-radius: 4px;
    font-weight: 400;
    font-size: 15px;
    letter-spacing: 0.3px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px 8px;
    padding: 12px 60px;
}

.btn.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn.btn-secondary {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn.btn-secondary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.sidebar ul.nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0px 0px;
}

.sidebar ul.nav li.nav-item .nav-link {
    margin: 0;
    background: transparent;
    font-weight: 600;
    padding: 15px 0;
    font-size: 16px;
    gap: 0px 13px;
    letter-spacing: 0.3px;
    transition: 0.3s;
    border-radius: 6px;
    border-bottom: 0px solid transparent;
}

.sidebar ul.nav li.nav-item .nav-link img {
    min-width: 20px;
    transition: 0.3s;
}
.sidebar ul.nav li.nav-item .nav-link.active img {
    filter: brightness(0) invert(1);
    transition: 0.3s;
}
.sidebar ul.nav li.nav-item ul.nav .nav-link {
    padding: 10px 0;
    font-size: 15px;
}

.sidebar ul.nav li.nav-item ul.nav .nav-link img {
    min-width: 9px;
}

.z_mainDashboard nav.navbar ul.navbar-nav {
    gap: 0px 14px;
}

.z_mainDashboard nav.navbar ul.navbar-nav li.nav-item a {
    margin: 0;
    padding: 0;
}

.z_mainDashboard nav.navbar ul.navbar-nav li.nav-item a.dropdown-toggle:after {
    display: none;
}

.z_mainDashboard nav.navbar ul.navbar-nav>li.nav-item>a.nav-link {
    width: 37px;
    height: 37px;
    background: #F0F0F0;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z_mainDashboard nav.navbar ul.navbar-nav>li.nav-item.z_header-user>a.nav-link {
    width: auto;
    height: auto;
    background: transparent;
    padding: 0 24px;
    border-left: 1px solid #D9D9D9;
    border-radius: 0;
    border-right: 1px solid #D9D9D9;
    margin: 0 10px;
}

.z_mainDashboard nav.navbar ul.navbar-nav>li.nav-item.z_header-user>a.nav-link span.z_content h6 {
    color: #030229;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 0 0;
}

.z_mainDashboard nav.navbar ul.navbar-nav>li.nav-item.z_header-user>a.nav-link span.z_content span {
    color: #BDBDBD;
    font-weight: 500;
    font-size: 12px;
    display: block;
    margin: 1px 0 0 0;
}

.z_mainDashboard nav.navbar ul.navbar-nav>li.nav-item.z_header-user>a.nav-link span.d-flex {
    align-items: center;
    gap: 0 10px;
}

.z_mainDashboard nav.navbar ul.navbar-nav>li.nav-item.z_header-user>a.nav-link span.d-flex span.z_image {
    background: #D9D9D9;
    border-radius: 100px;
}

.stat-card .icon-main {
    gap: 0px 14px;
}

.card.stat-card {
    height: 100%;
}
.card.tableCard {
    border: 0;
    box-shadow: 0 0 10px #00000012;
    height: 100%;
}


.card.tableCard .card-header {
    padding: 18px 25px;
    border: 0;
}

.card.tableCard .card-header h5 {
    font-size: 18px;
    color: #030229;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.card.tableCard .card-body {
    padding: 0px 25px 30px 25px !important;
}

table.table thead {
    background: #fff;
}

table.table thead th {
    background: #fff;
    padding: 5px 0;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.2px;
    font-weight: 500;
    border-bottom: 0;
}

table.table tr td {
    --bs-table-color-state: var(--dark-blue);
    background: #fff !important;
    --bs-table-bg-state: #fff !;
    box-shadow: 0 0 #000;
    border: 0;
    padding: 12px 0;
    border-bottom: 1px solid #ECECEC;
    font-size: 14px;
    color: var(--dark-blue);
    vertical-align: middle;
    line-height: 1.6;
}

table.table tbody tr {
    background: #fff !important;
}

span.badge {
    padding: 0 0;
    padding: 3px 5px;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 4px;
    line-height: 1.3;
    display: inline-block;
}

.passwordEye {
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 12px;
    transform: translate(0px, -50%);
}

.passwordEye img {
    width: 25px !important;
}

.passwordEye:before {
    width: 34px;
    height: 2px;
    background: var(--primary-color);
    position: absolute;
    top: 11px;
    left: -5px;
    content: "";
    transform: rotate(-20deg);
    opacity: 0;
}

.passwordEye.active:before {
    opacity: 1;
}

.card.mainCard {
    padding: 18px 25px;
    border: 0;
    margin-bottom: 5px;
}

h5.formHeading {
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.3;
    margin: 0;
}

.checkbox-group {
    gap: 0px 22px;
}

.checkbox-group label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.8;
}

.checkbox-group input {
    display: inline-block;
    transform: translate(0px, -1px);
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0 10px;
}

hr {
    border-color: #a2a2a2;
}

.link {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-color);
}

form.searchForm {
    position: relative;
}

form.searchForm .form-group input {
    padding: 4px 10px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #E3E3E3;
    background: transparent;
}

.form-group input {
    font-family: 'Poppins';
}

form.searchForm button {
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    right: 10px;
    background: transparent;
    padding: 0;
    border: 0;
}

form.searchForm button img {
    display: block;
    width: 14px;
}

.action_td {
    gap: 0px 17px;
}

.action_td button {
    border: 0;
    padding: 0 0;
    background: transparent;
}

.action_td button img {
    display: inline-block;
}

span.badge-purple {
    background-color: var(--purple) !important;
}

span.badge-blue {
    background-color: var(--blue) !important;
}

span.badge-pink {
    background-color: var(--pink) !important;
}

span.badge-orange {
    background-color: var(--orange) !important;
}

input.selectAll {
    transform: translate(0px, 1px);
    display: inline-block;
}

table.table tbody tr:last-child td {
    border-bottom: 0;
}

ul.pagination {
    margin: 0 0;
    gap: 0px 8px;
    align-items: center;
}

ul.pagination li {
    color: #111;
}

ul.pagination li button,
ul.pagination li a {
    padding: 9px 15px 8px 15px;
    background: #ffffff;
    border: 0;
    display: inline-block;
    line-height: 1.1;
    border-radius: 5px;
    text-decoration: none;
    color: #0d0d0d;
    border: 1px solid #d6d6d6;
    font-size: 13px;
    font-weight: 400;
    border-radius: 4px;
}


ul.pagination li button.active, ul.pagination li.active button, ul.pagination li.active a {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

ul.pagination li button,
ul.pagination li a.next {
    display: flex;
    align-items: center;
    gap: 0px 11px;
}

input#profile_image {
    display: none;
}

.change_profile_image {
    position: absolute;
    right: 70px;
    top: 50px;
    background: transparent;
    width: 52px;
    height: 52px;
    border: 4px solid #F0F0F0;
    background: #fff;
    border-radius: 100px;
}

.profile_image {
    border-right: 1px solid #E3E3E3;
    padding-right: 60px;
}

h4 {
    font-weight: 600;
}

.profileFeilds {
    padding-left: 48px;
}

.form-group label {
    margin: 0 0 4px 0;
    font-weight: 500;
}
.gap-vertical-4{
    gap: 1.5rem 0px !important;
}
.templateBox {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid #f8f8f8;
}
.templateBox h5 {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    padding: 11px 20px;
    color: #fff;
    background: #004b85d9;
}
li.nav-item.z_notification ul.dropdown-menu {
    min-width: 340px;
    margin: 10px 0 0 0;
    box-shadow: 0 0 20px #0000001a;
    border: 0;
    padding: 18px;
    border-radius: 8px;
}
li.nav-item.z_notification ul.dropdown-menu h6 {
    margin: 0;
    padding: 0px 0 8px 0;
    margin: 0 0 16px 0;
    border-bottom: 1px solid #11111112;
}
li.nav-item.z_notification ul.dropdown-menu  .z_noti {
    gap: 0px 15px;
    align-items: center;
}
li.nav-item.z_notification ul.dropdown-menu .z_noti .image {
    min-width: 52px;
    min-height: 52px;
    width: 52px;
    height: 52px;
}
li.nav-item.z_notification ul.dropdown-menu .z_noti .z_content {
    flex-grow: 1;
    width: 100%;
}
li.nav-item.z_notification ul.dropdown-menu .z_noti .image img {
    width: 100%;
    border-radius: 100px;
}
li.nav-item.z_notification ul.dropdown-menu .z_noti .z_content a.body-title {
    color: #111;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    line-height: 1.3;
    display: inline-block;
}
li.nav-item.z_notification ul.dropdown-menu .z_noti .z_content .d-flex {
    justify-content: space-between;
    align-items: center;
}
li.nav-item.z_notification ul.dropdown-menu .z_noti .z_content  .time {
    font-size: 13px;
    line-height: 1;
    color: #111;
    opacity: 0.6;
}
li.nav-item.z_notification ul.dropdown-menu .z_noti .z_content  .text-tiny {
    display: block;
    width: 100%;
    margin: 1px 0 0 0;
    font-size: 14px;
    opacity: 0.5;
}
li.nav-item.z_notification ul.dropdown-menu  li {
    margin: 0 0 13px 0;
}
li.nav-item.z_notification ul.dropdown-menu li:last-child {
    margin: 0;
}
.z_restrictedContent h1 {
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 10px 0;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}
.z_restrictedContent  p {
    margin: 0 0 25px 0;
    font-size: 16px;
}
.z_restrictedContent button.btn.btn-primary {
    padding: 13px 55px;
    font-size: 17px;
    cursor: pointer;
}
.z_restrictedContent h1.bigHeading {
    font-size: 180px;
    color: #004b85;
    line-height: 180px;
    margin: 0 0 20px 0;
}
.z_notificationPreference .form-check.form-switch {
    position: relative;
}
.z_notificationPreference .form-check.form-switch:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
    background: #fff;
    opacity: 0.3;
}
a.btn.btn-secondary.resetPassword {
    background: #a61919;
    border-color: #a61919;
}
a.btn.btn-secondary.resetPassword:hover {
    background: #871010;
    border-color: #871010;
}
.z_restrictedContent img {
    max-width: 400px;
    height: 350px;
    width: 400px;
    object-fit: cover;
    object-position: bottom;
}
a.past_orders {
    display: block;
    font-size: 11px;
    color: #858585;
    font-weight: 500;
    margin-top: -2px;
    text-decoration: none;
    transition: 0.3s;
}
a.past_orders:hover{
    color: #004b85;
}
ul.z_notificationsUser {
    margin: 0 0 0px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 5px 5px;
}
ul.z_notificationsUser li.badge {
    background: #f1f1f1;
    font-weight: 400;
    font-size: 12px;
    display: inline-block;
    padding: 9px 14px;
    border: 1px solid #d4d4d4;
    color: #111;
}
p.errorMessage.d-block {
    display: block !important;
}
.sidebar ul.nav li.nav-item a.nav-link{
    transition: 0.3s;
}
.sidebar ul.nav li.nav-item a.nav-link.active {
    border-color: #004b85;
    color: #fff !important;
    background: transparent;
    padding: 15px 16px !important;
    background: #004b85;
}
.sidebar ul.nav li.nav-item ul.nav .nav-link.active {
    padding: 10px 15px;
}
.sidebar ul.nav li.nav-item a.nav-link:hover {
    padding: 15px 0px 15px 16px;
}
.sidebar ul.nav li.nav-item ul.nav .nav-link:hover {
    padding: 10px 15px;
}
.z_sendEmailBtnRow button.btn {
    padding: 16px 15px;
    width: 100%;
}
.card.z_customerEmailTemplete {
    border: 1px solid #efefef;
    overflow: hidden;
}
.card.z_customerEmailTemplete .imageBox img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}
.card.z_customerEmailTemplete .buttonBox {
    padding: 0;
    display: flex;
    justify-content: center;
}
ul.z_notificationsUser.z_primary {
    margin: 0 0 40px 0;
}
ul.z_notificationsUser.z_primary li.badge {
    background: #004b850f;
    border-color: #004b852b;
    color: #004b85;
}
.z_restrictedContent.z_email-send img {
    width: 200px;
    max-width: 200px;
    height: auto;
}
form#pastOrderFilter .form-control {
    background: #fff;
    font-size: 15px;
}
form#pastOrderFilter  h6 {
    font-size: 14px;
    font-weight: 500;
    color: #030229;
}
.z_pastOrdersTable table.table thead tr th {
    min-width: 170px;
}
.z_pastOrdersTable table.table thead tr th#tableHeadingCheckbox {
    min-width: 30px;
}
.popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
}
.popup.active{
    display: flex;
}
.popup.z_popupOverlay {
    background: transparent;
}

.popup .z_popupBox {
    background: #fff;
    width: 100%;
    max-width: 620px;
    position: relative;
    border-radius: 7px;
}

.popup .z_popupBox button#popupclose {
    position: absolute;
    right: 20px;
    top: 20px;
    background: transparent;
    border: 0;
    padding: 0 0 0 0;
}

.popup .z_popupBox button#popupclose img {
    display: block;
}

.popup .z_popupBox .z_popupBack {
    display: none;
    min-height: 320px;
    align-items: center;
    justify-content: center;
}

.popup .z_popupBox .z_popupHeader {
    border-bottom: 3px solid hsl(242deg 91% 8% / 10%);
    padding: 30px 40px;
}

.popup .z_popupBox .z_popupHeader .iconBox {
    align-items: center;
    gap: 0px 20px;
}

.popup .z_popupBox .z_popupHeader .iconBox .icon img {
    display: block;
}

.popup .z_popupBox .z_popupHeader .iconBox .iconContent h5 {
    color: #030229;
    font-size: 18px;
    margin: 0 0 4px 0;
}

.popup .z_popupBox .z_popupHeader .iconBox .iconContent  p {
    color: #030229;
    font-size: 14px;
    font-weight: 400;
    opacity: 0.7;
    margin: 0 0 0 0;
}

.popup .z_popupBox .z_popupBody .fileUploadBox form#pastOrdersForm input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
}

.popup .z_popupBox .z_popupBody .fileUploadBox {
    padding: 60px 40px;
    text-align: center;
    position: relative;
}

.popup .z_popupBox .z_popupBody .fileUploadBox img {
    display: inline-block;
    margin: 0 0 20px 0;
}

.popup .z_popupBox .z_popupBody .fileUploadBox p#fileName {
    margin: 0 0 0 0;
    font-size: 15px;
}

.popup .z_popupBox .z_popupBody  .z_popupButton {
    padding: 0 40px 40px 40px;
    text-align: center;
}
.popup .z_popupBox .z_popupBack .z_popupContent {
    text-align: center;
    width: 100%;
    padding: 40px 110px;
}
.popup .z_popupBox .z_popupBack .z_popupContent h4 {
    font-size: 38px;
    margin: 0 0 10px 0;
    font-weight: 600;
    line-height: 1.2;
}
.popup .z_popupBox .z_popupBack .z_popupContent p {
    margin: 0 0 0 0;
    font-size: 18px;
    color: #030229;
    opacity: 0.7;
    line-height: 1.6;
}
.popup .z_popupBox.thank-you .z_popupFront {
    display: none;
}
.popup .z_popupBox.thank-you .z_popupBack {
    display: flex;
}
.small_btn {
    color: #004b85;
    font-size: 14px;
    font-weight: 500;
}
.card-header button.btn {
    font-size: 14px;
    padding: 10px 30px;
}
.tox.tox-tinymce {
    background-color: #f1f5f9 !important;
    border: 1px solid #e2e8f0 !important;
}
.tox-editor-header {
    padding: 0 0 !important;
    z-index: 0 !important;
}
iframe.tox-edit-area__iframe {
    background: #f1f5f9 !important;
}
#sendEmailTemplates {
    gap: 20px 0px;
}
.card.z_EmailTemplateCard {
    overflow: hidden;
}
.card.z_EmailTemplateCard .z_image img {
    width: 100%;
}
.card.z_EmailTemplateCard .z_content {
    text-align: center;
    padding: 20px 15px;
    border-top: 1px solid #0000002d;
}
.card.z_EmailTemplateCard .z_content h5 {
    font-size: 18px;
    margin: 0 0 10px 0;
}
.card.z_EmailTemplateCard .z_content button.btn.btn-primary {
    padding: 12px 20px;
    min-width: 80%;
    font-size: 14px;
}
.card-check {
    position: relative;
    cursor: pointer;
    border: 0;
}
.card-check input[type="checkbox"] {
    display: none;
}
.card-check img.checkmark {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    display: none;
}
.card-check input[type="checkbox"]:checked ~ .checkmark {
    display: block;
}
label.card.card-check img {
    border-radius: 5px 5px 0px 0px;
}
label.card.card-check .card-body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px 8px;
    padding: 20px 20px 20px 20px !important;
    text-align: center;
    box-shadow: 0 5px 10px #0000000f;
    border-radius: 5px;
    overflow: hidden;
    align-items: center;
}
label.card.card-check .card-body h5.card-title {
    font-size: 26px;
    font-weight: 600;
    color: #004b85;
    line-height: 1.3;
}
label.card.card-check .card-body strong {
    font-size: 16px;
    letter-spacing: 0px;
    margin: 6px 0 2px 0;
    display: block;
    font-weight: 600;
}
label.card.card-check .card-body  p.card-text {
    font-size: 13px;
    line-height: 1.6;
}
label.card.card-check .card-body p.card-text {
    width: 100%;
}
label.card.card-check .card-body h5.card-title {
    margin: 0 0 0 0;
}
label.card.card-check .card-body span.z_checkbox {
    width: 14px;
    height: 14px;
    border: 1px solid #11111159;
    border-radius: 3px;
    position: relative;
}
.card-check input[type="checkbox"]:checked ~ span.z_checkbox{
    background: #0f5b8c1c;
    border-color: #0f5b8c;
}
label.card.card-check span.z_checkbox img {
    position: absolute;
    left: 2px;
    top: 2px;
    width: 8px;
    display: none;
}
.card-check input[type="checkbox"]:checked ~ span.z_checkbox img{
    display: block;
}
form#order-preference-update h6 {
    font-weight: 500;
    font-size: 17px;
    margin: 0 0 6px 0;
}
form#order-preference-update label.form-check-label, .small-label{
    font-size: 14px;
}
.small-label{
    font-weight: 400 !important;
}
form#order-preference-update  p {
    font-size: 14px;
}
form#order-preference-update h5 {
    font-weight: 600;
    margin: 0 0 12px 0;
    color: #004b85;
}
.gap-vertical-5 {
    gap: 1.8rem 0px !important;
}
a.dashboard-card-link .card {
    transition: 0.3s;
    box-shadow: 0 10px 5px #00000000;
}
a.dashboard-card-link .card:hover {
    box-shadow: 0 10px 5px #0000000d;
    transform: translate(0px, -5px);
}
table.table thead.table-light th {
    background: #004b85;
    color: #fff;
    font-weight: 400;
    padding: 6px 10px;
    font-size: 14px;
    vertical-align: middle;
}
table.table tbody tr td {
    padding-left: 10px;
    padding-right: 10px;
}


.form-checkboxes .form-check.form-check-inline {
    background: #f1f5f9;
    font-weight: 400;
    font-size: 12px;
    display: inline-block;
    padding: 9px 14px;
    border: 1px solid #e2e8f0;
    color: #111;
    width: 32%;
    margin: 0 0 10px 0;
    border-radius: 5px;
}
.form-checkboxes .form-check.form-check-inline input {
    margin-left: 0;
    margin-right: 8px;
    margin-top: 4px;
}
.form-checkboxes .form-check.form-check-inline label.form-check-label {
    margin: 0 0 0 0;
}
#selectManuallyCustomersTable  .table-responsive {
    max-height: 505px;
}
input#tableSearch {
    padding: 4px 10px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #E3E3E3;
    background: transparent;
    box-shadow: 0 0 #000 !important;
    outline: none;
}
.form-group.disableEditor {
    position: relative;
}
.form-group.disableEditor:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.form-group.disableEditor iframe#editor_ifr {
    background: #e9ecef !important;
}
.gap-vertical-2 {
    gap: 0.7rem 0px !important;
}
.gap-vertical-3 {
    gap: 1rem 0px !important;
}
table.table tbody tr th {
    color: #fff;
    background: #004b85;
    font-weight: 400;
    font-size: 14px;
    vertical-align: middle;
    padding: 0 20px 0 25px;
    border-color: #003f70;
}
.leftHeadingTable tbody tr th {
    padding: 14px 20px 14px 25px;
}
.leftHeadingTable tbody tr td{
    padding: 12px 20px !important;
}
table#order-table-products tbody input.form-control {
    padding: 2px 8px;
    max-width: 100px;
    height: auto;
    min-height: auto;
    font-size: 15px;
    text-align: center;
    border-radius: 5px;
    display: inline-block;
}
table#order-table-products thead.table-light tr td {
    background: #fff;
}
ul.nav.nav-tabs li.nav-item .nav-link {
    border-radius: 6px 6px 0px 0px;
    color: #363636;
    padding: 10px 23px;
    font-size: 15px;
    letter-spacing: 0.3px;
    font-weight: 500;
}
ul.nav.nav-tabs li.nav-item .nav-link.active {
    background-color: var(--primary-color);
    border-bottom-color: transparent;
    color: #fff;
    border-color: var(--primary-color);
    font-weight: 400;
}
.z_customer_type span.select2.select2-container {
    width: 100% !important;
}
.z_customer_type span.select2.select2-container span.select2-selection {
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #E3E3E3;
    padding: 4px 10px;
}
.z_customer_type span.select2.select2-container span.select2-selection span.select2-search.select2-search--inline textarea.select2-search__field {
    margin: 0;
    height: 22px;
    font-family: poppins;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.3px;
}
.select2-container--open .select2-dropdown--below {
    border-top: 0;
    border-color: #11111129;
    border-radius: 0px 0px 6px 6px;
    overflow: hidden;
}
.select2-container--open .select2-dropdown--below ul li.select2-results__option {
    font-family: 'Poppins';
    font-size: 14px;
    padding: 9px 15px 8px 15px;
    border-bottom: 1px solid #11111129;
    transition: 0.1s;
}
.select2-container--open .select2-dropdown--below ul li.select2-results__option.select2-results__option--highlighted, .select2-container--open .select2-dropdown--below ul li.select2-results__option--selected{
    background: var(--primary-color);
    color: #fff;
}
.z_customer_type span.select2.select2-container span.select2-selection ul.select2-selection__rendered li.select2-selection__choice {
    margin: 0 6px 0 0;
    background: #f1f1f1;
    border-color: #11111114;
    border-radius: 4px;
    overflow: hidden;
}
.z_customer_type span.select2.select2-container span.select2-selection ul.select2-selection__rendered li.select2-selection__choice button.select2-selection__choice__remove {
    border-color: var(--primary-color);
    margin: 0;
    padding: 0 6px;
    background: var(--primary-color);
    color: #fff;
    font-weight: 200;
}
.z_customer_type span.select2.select2-container span.select2-selection ul.select2-selection__rendered li.select2-selection__choice span.select2-selection__choice__display {
    font-family: 'Poppins';
    padding: 0 9px 0px 9px;
    line-height: 1.3;
    font-size: 13px;
    display: inline-block;
    transform: translate(0px, -1px);
}
.select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin: 0 8px 0 0px;
    padding: 0;
    display: flex;
    align-items: center;
    width: 20px;
    justify-content: center;
    top: 50%;
    transform: translate(0px, -50%);
    font-family: 'Poppins';
    font-weight: 500;
    font-size: 20px;
    color: red;
}
.nav.nav-tabs.small-tabs li.nav-item .nav-link {
    font-size: 13px;
    padding: 8px 15px;
    letter-spacing: 0.2px;
}
.tab-content.parentTabContent {
    border: 1px solid var(--bs-secondary-bg);
    margin-top: -1px;
    padding: 0px 0px;
}
.tab-content.parentTabContent .tab-pane.active {
    display: flex;
    flex-wrap: wrap;
}
.tab-content.parentTabContent .tab-pane.active .z_leftCol {
    width: 20%;
    background: #f9f9f9;
    border-right: 1px solid var(--bs-secondary-bg);
}
.tab-content.parentTabContent .tab-pane.active ul.nav.nav-pills li.nav-item {
    width: 100%;
}
.tab-content.parentTabContent .tab-pane.active ul.nav.nav-pills li.nav-item .nav-link {
    width: 100%;
    display: block;
    margin: 0 0 0 0;
    text-align: left;
    background: #f9f9f9;
    border-radius: 0;
    border-bottom: 1px solid var(--bs-secondary-bg);
    transition: 0.3s;
    color: #363636;
    font-size: 14px;
    padding: 11px 17px;
}
.tab-content.parentTabContent .tab-pane.active ul.nav.nav-pills li.nav-item:last-child .nav-link {
    border-bottom: 0;
}
.tab-content.parentTabContent .tab-pane.active ul.nav.nav-pills li.nav-item .nav-link:hover, .tab-content.parentTabContent .tab-pane.active ul.nav.nav-pills li.nav-item .nav-link.active {
    color: #004b85;
    border-color: #004b85 !important;
    background: #fff;
    font-weight: 500;
}
.tab-content.parentTabContent .tab-pane .z_rightCol {
    width: 80%;
    padding: 18px 25px;
}
.z_ordersTabs input.form-control.z_qty {
    width: 33px;
    height: 33px;
    padding: 0;
    text-align: center;
    font-size: 14px;
    border-radius: 5px;
}
.z_ordersTabs input.form-control.z_qty::-webkit-outer-spin-button, .z_ordersTabs input.form-control.z_qty::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
table.table.tabTable tbody tr td {
    font-size: 13px;
    border: 1px solid #ECECEC;
    color: #030229;
    font-weight: 400;
    padding: 8px 15px;
}
.tab-content.parentTabContent .tab-pane.active .z_leftCol ul.nav.nav-pills {
    position: sticky;
    top: 82px;
}
table.table.orderProductTable tbody td {
    padding: 8px 10px;
}
.tab-content.parentTabContent .tab-pane .z_rightCol .form-group.form-checkbox small {
    font-size: 10px;
    text-transform: none;
    font-weight: 400;
    line-height: 1.5 !important;
    display: block;
}
.tab-content.parentTabContent .tab-pane .z_rightCol .form-group.form-checkbox input.form-check-input {
    min-width: 16px;
}
input.form-control.small_qty {
    text-align: center;
    max-width: 60px;
    background: #00000003;
    border: 1px solid #00000029;
    font-size: 14px;
    color: #111;
    box-shadow: 0 0 #000;
    outline: none;
    border-radius: 5px;
    padding: 4px 10px;
}
input.form-control.small_qty[type="number"]::-webkit-outer-spin-button, input.form-control.small_qty[type="number"]::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
.z_ordersTabs input.form-control[type="number"]::-webkit-outer-spin-button, .z_ordersTabs input.form-control[type="number"]::-webkit-inner-spin-button{
    -webkit-appearance: none;
    margin: 0;
}
label.pack-box {
    text-align: left;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    height: 100%;
    flex-direction: row;
    align-items: center;
    padding: 8px 15px;
    border-radius: 6px;
}
label.pack-box .pack-price {
    display: block;
    text-align: left;
    font-weight: 500;
    font-size: 15px;
    color: #fff;
}
label.pack-box .pack-price span {
    font-style: italic;
}
label.pack-box .pack-title {
    font-size: 12px;
    line-height: 1.4;
    margin: 0px 0 0px 0;
    color: #fff;
}
label.pack-box .pack-qty input.form-control.pack-qty-input {
    text-align: center;
    background: #ffffff17;
    border: 1px solid #ffffff24;
    font-size: 13px;
    box-shadow: 0 0 #000;
    outline: none;
    padding: 5px 10px;
    font-weight: 500;
    width: 100%;
    max-width: 100px;
    border-radius: 5px;
    color: #fff !important;
    border-color: #ffffff61 !important;
}
.row.z-pack-row .col-3.border-end {
    border-color: #c7c7c7 !important;
}
.row.z-pack-row {
    gap: 8px 0px;
    margin-top: -17px;
}
.product-group-card svg {
    width: 45px;
    margin: 0 0 12px 0;
    opacity: 0.8;
    transition: 0.6s;
}
.product-group-card:hover svg{
    transform: rotateY(360deg);
}
.product-group-card h6 {
    margin: 0 0 3px 0;
}
#productsTable {
    max-height: 700px;
}
#productsTable input.form-control.z_productCode {
    box-shadow: 0 0 #000;
    width: auto;
    max-width: 70px;
    padding: 0 0 0 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    font-size: 14px;
    color: var(--dark-blue);
    vertical-align: middle;
    line-height: 1.6;
    outline: none;
    pointer-events: none;
}
.z_productsTableMain p.z_Totalstockqty {
    display: none;
}
.z_productsTableMain.active p.z_Totalstockqty {
    display: flex;
    justify-content: flex-end;
    margin: 20px 20px 0 0;
    font-size: 15px;
    font-weight: 500;
}
span#z_TotalStockQty {
    color: #111;
    margin: 0 0 0 5px;
    font-weight: 600;
    letter-spacing: 0.3px;
}
.row.z_orderSearchOptionRow .col-6 {
    width: 47%;
}
.row.z_orderSearchOptionRow .col-1 {
    width: 6%;
    padding: 0 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.row.z_orderSearchOptionRow .card h5 {
    text-align: center;
    font-size: 18px;
}
.stat-card .icon-main h4 {
    font-size: 18px;
    max-width: 52%;
    line-height: 1.5;
    margin: 0 auto;
    color: #404040;
}
.row.z-pack-row label.pack-box.pack-s {
    background: #358ED3;
}
.row.z-pack-row label.pack-box.pack-m {
    background: #543589BA;
}
.row.z-pack-row label.pack-box.pack-l {
    background: #E09E34;
}
.row.z-pack-row label.pack-box.pack-xl {
    background: #DD5E8D;
}
label.pack-box .pack-qty input.form-control.pack-qty-input::placeholder {
    color: #fff !important;
}







.card.stat-card.z_topCart .card-body {
    padding-bottom: 1.8rem !important;
}
.card.stat-card.z_topCart .card-body .icon-main {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 12px 0px;
    width: 100%;
}
.card.stat-card.z_topCart .card-body .icon-main .box-content {
    width: 100%;
}
.card.stat-card.z_topCart:before {
    bottom: 0;
    width: 100%;
    height: 5px;
    top: auto;
}
.card.stat-card.red-card.z_topCart .card-body {
    background: #f443360a;
}
.card.stat-card.green-card.z_topCart .card-body {
    background: #bdeecf21;
}
.card.stat-card.z_topCart .card-body .icon-main .box-content .form-check {
    margin: 8px 0 0 0;
    padding: 0 0 0 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.card.stat-card.z_topCart .card-body .icon-main .box-content .form-check input {
    float: left;
    border-color: #0000004f;
    margin: 0 0 0 0;
    transform: translate(0px, -1px);
}
.card.stat-card.z_topCart .card-body .icon-main .box-content .form-check .form-check-label {
    font-size: 15px;
    margin: 0 0 0 0px;
    background: #4caf50;
    color: #fff;
    display: flex;
    width: auto;
    justify-content: center;
    align-items: center;
    gap: 0px 8px;
    padding: 8px 19px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 0.5px;
    border-radius: 4px;
    cursor: pointer;
    border: 0;
}
.iti.iti--allow-dropdown {
    width: 100%;
}
.small_btn.small-btn-primary {
    background: var(--primary-color);
    color: #fff;
    transition: 0.3s;
    border-radius: 4px;
    font-weight: 400;
    font-size: 12px;
    letter-spacing: 0.3px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px 8px;
    padding: 6px 15px;
}
.small_btn.small-btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}
.card.stat-card.z_topCart .card-body .icon-main .box-content #confirmOrderBox {
    display: none;
    min-width: 600px;
    margin-top: 0px;
}
.card.stat-card.z_topCart .card-body .icon-main .box-content #confirmOrderBox textarea#addOrderNotes {
    margin-bottom: 10px;
    min-height: 100px;
}
.card.stat-card.z_topCart .card-body .icon-main .box-content #confirmOrderBox button#confirmThisOrder {
    margin: 0 auto;
    padding: 12px 40px;
}
.orderNotConfirmedLabel {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}
span.required {
    color: red;
    margin: 0 0 0 4px;
}
form#customerProfileUpdate small.text-danger.error-message.w-100 {
    width: 100%;
    text-align: right;
    display: block;
    margin: 10px 0 -30px 0;
    font-size: 16px;
}
form#customerProfileUpdate .card.mainCard #myTabContent small.text-danger.error-message {
    position: absolute;
    bottom: -20px;
    left: 0;
    font-size: 12px;
}
form#customerProfileUpdate .card.mainCard #myTabContent  .form-group {
    position: relative;
}
.orderNotConfirmedLabel a.btn.btn-primary {
    margin: 0 0 0 15px !important;
    background: transparent;
    padding: 0;
    border: 0;
    color: var(--primary-color);
    font-weight: 500;
    border-bottom: 1px solid;
    border-radius: 0;
    height: auto;
}
.modal.z_verifyOtpPopup {
}

.modal.z_verifyOtpPopup .modal-dialog {
    margin: 0;
}

.modal.z_verifyOtpPopup.show {
    display: flex !important;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.modal.z_verifyOtpPopup button.close {
    position: absolute;
    right: 15px;
    top: 15px;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    border: 1px solid #d9d9d9;
    color: #383838;
    font-size: 22px;
    transition: 0.3s;
}

.modal.z_verifyOtpPopup button.close:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.modal.z_verifyOtpPopup .modal-dialog .modal-content {
    border: 0;
}

.modal.z_verifyOtpPopup .modal-dialog .modal-content .modal-body {
    padding: 50px 60px;
    text-align: center;
    max-width: 450px;
}

.modal.z_verifyOtpPopup .modal-dialog .modal-content .modal-body img {
    margin: 0 0 30px 0;
}

.modal.z_verifyOtpPopup .modal-dialog .modal-content .modal-body p {
    margin: 0 0;
    line-height: 1.5;
    letter-spacing: 0.3px;
    font-size: 15px;
}

.modal.z_verifyOtpPopup .modal-dialog .modal-content .modal-body h5 {
    color: #111;
    margin: 0 0 7px 0;
}

.modal.z_verifyOtpPopup .modal-dialog .modal-content .modal-body form {
    margin-top: 18px;
}

.modal.z_verifyOtpPopup .modal-dialog .modal-content .modal-body form input.form-control {
    margin: 0 0 0 0 !important;
    background: #fff;
}

.modal.z_verifyOtpPopup .modal-dialog .modal-content .modal-body form p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 14px;
    line-height: 1.3;
    margin: 7px 0 0 0;
    letter-spacing: 0;
}
.modal.z_verifyOtpPopup .modal-dialog .modal-content .modal-body form p button#resendOTP {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
    margin: 0 0 0 8px;
}
.modal.z_verifyOtpPopup .modal-dialog .modal-content .modal-body form button.btn {
    margin: 40px auto 0 auto !important;
    margin: unset;
}
form#customerFilterForm .col-9 .checkbox-group {
    gap: 6px 25px;
}

form#customerFilterForm .col-9 .checkbox-group .checkbox-item {
    min-width: 122px;
}

form#customerFilterForm .col-9 .checkbox-group .checkbox-item label {
    font-weight: 400;
}







.sidebar .z_logoRow .z_menuCol {
    display: flex;
    position: absolute;
    right: 0;
    z-index: 999;
    transition: 0.3s;
}
.sidebar .z_logoRow .z_menuCol i {
    color: #004b85;
    font-size: 23px;
    cursor: pointer;
}
.sidebar .z_logoRow .z_logoCol {
    transition: 0.3s;
}
.sidebar .z_logoRow {
    position: relative;
    min-height: 42.5px;
    transition: 0.3s;
    width: 100%;
}
.sidebar .z_logoRow .z_logoCol img {
    transition: 0.3s;
    text-align: left;
    transform: scale(1);
}
body.closeSidebar .sidebar .z_logoRow .z_logoCol img {
    opacity: 0;
    transform: scale(0);
}
body.closeSidebar .sidebar ul.nav li.nav-item a.nav-link.active {
    background: transparent;
    color: rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important;
    padding: 15px 0 !important;
}
body.closeSidebar .sidebar ul.nav li.nav-item a.nav-link.active img {
    filter: brightness(0);
}
body.closeSidebar .sidebar ul.nav li.nav-item a.nav-link {
    padding-left: 0 !important;
}
.sidebar ul.nav li.nav-item a.nav-link span.menuText {
    min-width: 160px;
    transition: 0.3s;
}
body.closeSidebar .sidebar ul.nav li.nav-item a.nav-link span.menuText{
    opacity: 0;
}
body.closeSidebar .sidebar .z_wrapper .z_logoRow {
    width: 20px;
}
body.closeSidebar .sidebar .z_wrapper ul.nav li.nav-item > a.nav-link {
    width: 20px;
    overflow: hidden;
}
body .sidebar .z_wrapper ul.nav li.nav-item > a.nav-link {
    transition: 0.3s;
    width: 100%;
}
body.closeSidebar .sidebar .z_wrapper  a.btn.btn-primary {
    padding-left: 0px;
    padding-right: 0px;
    background: transparent;
    border-color: transparent;
    width: 20px !important;
}
body.closeSidebar .sidebar .z_wrapper a.btn.btn-primary .menuText{
    display: none;
}
body .sidebar .z_wrapper a.btn.btn-primary img {
    transition: 0.3s;
}
body.closeSidebar .sidebar {
    width: 53px;
}
.sidebar::-webkit-scrollbar {
  width: 2px;
}
.sidebar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #ffffff; 
  border-radius: 10px;
}
.sidebar::-webkit-scrollbar-thumb {
  background: #004b85; 
  border-radius: 10px;
}
body.closeSidebar .z_mainDashboard nav.navbar {
    width: calc(100% - 53px);
}
body.closeSidebar .z_mainDashboard .z_dashboardContent {
    width: calc(100% - 53px);
}
body.closeSidebar .sidebar .z_wrapper a.btn.btn-primary img {
    filter: brightness(0);
}
.update-profile-link{
    display: inline-block;
    font-size: 14px;
    color: #58151c;
    font-weight: 600;
    margin-top: 10px;
    text-decoration: underline;
    transition: 0.3s;
}
.update-profile-link:hover{
    color: #004b85;
}
#invoiceNotPaidPopup {
    backdrop-filter: blur(4px);
}
.fs-7{
    font-size: 14px;
}
.popup.z_popupOverlay{
    backdrop-filter: blur(4px);
}
.popup.z_freshPopup .z_popupBox{
    max-width: 580px;
    box-shadow: 3px 3px 7.8px #004B8538;
}


#all-products table.table tbody tr td {
    line-height: 1.2;
}
#all-products table.table tbody tr td input.form-control.small_qty {
    padding-top: 5px;
    padding-bottom: 5px;
    margin-left: auto;
    margin-right: auto;
    max-width: 80px;
}
#all-products table.table tbody tr td label {
    display: none;
}
.form-group.form-checkbox.saleBox {
    padding: 12px 12px;
    background: #f5f5f5;
}
.form-group.form-checkbox.saleBox label {
    font-size: 15px;
}
.z_ProductSearch {
    position: relative;
}
.z_ProductSearch .form-group input.form-control {
    padding: 4px 10px;
    border-radius: 0;
    border: 0;
    border-bottom: 1px solid #E3E3E3;
    background: transparent;
    box-shadow: 0 0 !important;
}
.z_ProductSearch button {
    position: absolute;
    top: 50%;
    transform: translate(0px, -50%);
    right: 10px;
    background: transparent;
    padding: 0;
    border: 0;
}
.btn.btnSmall {
    padding: 4px 10px !important;
    font-size: 10px !important;
}
#cartIcon{
    position: relative;
}
#cartIcon .counter{
    position: absolute;
    top: -10px;
    right: -10px;
}
.z_new-orderResponsiveTable.table-responsive {
    max-height: 350px;
}
a.small_link {
    display: block;
    font-size: 11px;
    color: #858585;
    font-weight: 500;
    margin-top: -2px;
    text-decoration: none;
    transition: 0.3s;
}
a.small_link:hover {
    color: var(--primary-color);
}
li.nav-item.z_notification ul.dropdown-menu.menuItems {
    padding: 0 0;
    min-width: 230px;
    overflow: hidden;
    position: absolute;
    right: 0;
}
li.nav-item.z_notification ul.dropdown-menu.menuItems li {
    margin: 0;
}
li.nav-item.z_notification ul.dropdown-menu.menuItems li a {
    color: #111;
    padding: 13px 20px;
    display: block;
    border-bottom: 1px solid #11111112;
}
li.nav-item.z_notification ul.dropdown-menu.menuItems li:last-child a {
    border: 0;
}
li.nav-item.z_notification ul.dropdown-menu.menuItems li a:hover {
    background: #004b85;
    color: #fff;
    transition: 0.3s;
}
.row.z_saleBoxRow {
    background: #fff;
    padding: 20px 0px;
}
.row.z_saleBoxRow .form-group.z_saleBox {
    padding: 25px 14px;
    height: 100%;
    border-radius: 6px;
}
.row.z_saleBoxRow .form-group.z_saleBox .z_saleBoxTop {
    display: flex;
    gap: 0px 17px;
    align-items: center;
    margin: 0 0 8px 0;
}
.row.z_saleBoxRow .form-group.z_saleBox .z_saleBoxTop label {
    color: #363936 !important;
    font-size: 16px;
    margin: 0;
    line-height: 18px;
}
.row.z_saleBoxRow .form-group.z_saleBox .z_saleBoxTop input.form-check-input {
    margin: 0 !important;
    width: 22px;
    height: 22px;
    display: inline-block;
    margin-top: 0 !important;
}
.row.z_saleBoxRow .form-group.z_saleBox.z_saleBox1 {
    background: #EDFFEF;
}
.row.z_saleBoxRow .form-group.z_saleBox.z_saleBox2 {
    background: #FFE9F1;
}
.row.z_saleBoxRow .form-group.z_saleBox .z_saleBoxContent ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 4px 0px;
}
.row.z_saleBoxRow .form-group.z_saleBox .z_saleBoxContent ul li {
    width: 49%;
    font-size: 11px;
    line-height: 1.5;
}
.row.z_saleBoxRow .form-group.z_saleBox.z_saleBox2 .z_saleBoxContent ul li {
    width: 100%;
    letter-spacing: 0;
}
.z_packRow {
    gap: 15px 0px;
    justify-content: space-between;
}
.z_packRow > .form-group {
    width: 48%;
}
table.table.z_tableSucess {
    border: 0;
}
table.table.z_tableSucess thead th {
    background: #99DBA1;
    padding: 14px 15px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: #363936;
}
table.table.z_tableSucess tbody tr td {
    padding: 12px 15px;
    border: 0;
    background-color: #EDFFEF !important;
    color: #767676;
    font-size: 12px;
}
label.pack-box .packContent {
    width: 78%;
}
label.pack-box .pack-qty {
    width: 20%;
}
.popup .z_popupBox button#popupclose.z_closePopup {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ff00004d;
    border-radius: 100px;
    color: #ffffff;
    font-size: 15px;
    background: #ff0000;
}
.z_mainDashboard nav.navbar ul.navbar-nav li.nav-item.dropdown.z_notification {
    display: none;
}
.z_mainDashboard nav.navbar ul.navbar-nav li.nav-item.dropdown.z_notification.z_meunItemDropDown {
    display: inline-block;
}
.z_mainDashboard nav.navbar ul.navbar-nav>li.nav-item.z_header-user>a.nav-link {border-left: 0;}
div#checkoutMessage .alert.alert-success {
    margin: 0px 0 0 0;
    text-align: center;
}

#confirmOrderPopup.showSuccessMessage .z_popupBody h4 {
    display: none;
}

#confirmOrderPopup.showSuccessMessage .z_popupBody p {
    display: none;
}

#confirmOrderPopup.showSuccessMessage .z_popupBody .z_popupButton {
    display: none !important;
}

#confirmOrderPopup.showSuccessMessage  button#popupclose {
    display: none;
}
.z_cusotmerDetailsTable table.table tbody tr td, .z_cusotmerDetailsTable table.table tbody tr th {
    padding: 10px 18px;
    font-size: 13px;
    border: 1px solid #004b852e !important;
}
.z_cusotmerDetailsTable table.table tbody tr th {
    color: #004b85;
    background: #004b851f;
    border-color: #004b8517;
}

/* Welcome Page */
body.welcome {
    overflow-x: hidden;
    background-image: url(/assets/images/welcome-bg.jpg);
    background-size: cover;
    background-position: center center;
    position: relative;
}

body.welcome .slide-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

body.welcome .slide-content {
  position: absolute;
  width: 100%;
  transform: translateX(-100%);
  opacity: 0;
}

body.welcome .slide-content.active {
  animation: slideIn 0.8s ease-out forwards;
}

body.welcome .slide-content.exit {
  animation: slideOut 0.8s ease-out forwards;
}

@keyframes slideIn {
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

body.welcome .content-slide {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

body.welcome .content-slide h2 {
    color: #003d82;
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(-20px);
}

body.welcome .content-slide h2.show {
  animation: fadeInDown 0.6s ease-out forwards;
}

body.welcome .content-slide ul {
  list-style: none;
  padding: 0;
  margin: 0 0;
}

body.welcome .content-slide li {
  padding: 5px 0;
  font-size: 15px;
  opacity: 0;
  transform: translateX(-20px);
}

body.welcome .content-slide li.show {
  animation: fadeInLeft 0.5s ease-out forwards;
}

body.welcome .quote-text {
  background: #f0f0f0;
  padding: 15px;
  border-radius: 5px;
  margin: 10px 0;
  font-style: italic;
  opacity: 0;
  transform: translateY(10px);
}

body.welcome .quote-text.show {
  animation: fadeInUp 0.5s ease-out forwards;
}

body.welcome .logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
  opacity: 0;
  transform: scale(0.8);
}

body.welcome .logos.show {
  animation: zoomIn 0.6s ease-out forwards;
}

body.welcome .logo-item {
  font-weight: bold;
  padding: 10px;
}

body.welcome .feature-box {
  opacity: 0;
  transform: translateY(30px);
  margin: 0;
}

body.welcome .feature-box.show {
  animation: fadeInUp 0.6s ease-out forwards;
}

body.welcome .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  background: #ffffff3b;
  border: 1px solid #ffffff4d !important;
}

body.welcome .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15) !important;
}

body.welcome .icon-box {
  display: inline-block;
}

@keyframes fadeInDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

body.welcome img {
  max-width: 100%;
  height: auto;
}
body.welcome #slide1, body.welcome #slide3 {
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
body.welcome:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: #003d82;
    opacity: 0.9;
}
body.welcome .card svg {
    fill: #fff;
    color: #fff;
}
body.welcome .card svg * {
    fill: #fff;
    color: #fff;
}
body.welcome .feature-box.z_featureBtnBox {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

body.welcome .feature-box.z_featureBtnBox a.btn.btn-primary {
    border-color: #fff;
    background: #fff;
    padding: 16px 60px 16px 60px;
    transition: 0.3s;
    color: #004b85;
}

body.welcome .feature-box.z_featureBtnBox a.btn.btn-primary svg {
    fill: #fff;
}

body.welcome .feature-box.z_featureBtnBox a.btn.btn-primary svg {
    width: 30px;
    height: 23px;
    transition: 0.3s;
}

body.welcome .feature-box.z_featureBtnBox a.btn.btn-primary:hover {
    background: transparent;
    border-color: #fff;
    color: #fff;
}

body.welcome .feature-box.z_featureBtnBox a.btn.btn-primary:hover svg {
    fill: #003d82;
}
body.welcome .card h5.card-title {
    margin: 2px 0 4px 0;
    font-size: 18px;
    color: #fff;
}
body.welcome .card .card-text{
    color: #fff !important;
}


li.nav-item.mobileMenuBar {
    display: none;
}
button.z_mobilesideBarMenu {
    display: none;
}
.row.profilePageButtonRow {
    position: fixed;
    bottom: 0;
    right: 0;
    width: calc(100% - 300px);
    margin: 0 !important;
    transition: 0.3s;
    padding: 12px 12px;
    background: #fff;
    box-shadow: 0 0 10px #0000001c;
}
body.closeSidebar .z_mainDashboard  .row.profilePageButtonRow {
    width: calc(100% - 53px);
}
.form-group input[readonly] {
    background-color: #ddd !important;
    border-color: #c1c1c1;
}


@media (max-width: 1024px){
    .row.profilePageButtonRow {
        width: 100%;
    }
    .sidebar .z_logoRow .z_menuCol > i.fa-bars{
        display: none;
    }
    button.z_mobilesideBarMenu {
        width: 36px;
        height: 36px;
        border: 0;
        background: #004b85;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 100px;
    }
    button.z_mobilesideBarMenu i {
        color: #fff !important;
        font-size: 17px !important;
    }
    li.nav-item.mobileMenuBar {
        display: inline-block;
    }
    .z_mainDashboard nav.navbar {
        width: 100%;
    }
    .z_mainDashboard .z_dashboardContent {
        width: 100%;
    }
    .sidebar {
        z-index: 99999 !important;
        transition: 0.5s !important;
        left: -330px;
    }
    body.toggleMobileSideBar .z_mainDashboard {
        opacity: 0.5;
    }
    body.toggleMobileSideBar .sidebar {
        left: 0 !important;
    }
}

@media (max-width: 960px){
    .row.dashboardBoxesRow .card .card-body {
        padding: 15px 15px 15px 20px !important;
    }
    .row.dashboardBoxesRow .card .card-body h2.stat-count {
        font-size: 35px;
    }
    table.table thead  th {
        min-width: 150px;
    }
    .tab-content.parentTabContent .tab-pane.active .z_leftCol {
        width: 25%;
    }
    .tab-content.parentTabContent .tab-pane .z_rightCol {
        width: 75%;
    }
    .row.z_saleBoxRow .form-group.z_saleBox .z_saleBoxContent ul li {
        width: 100%;
    }
    .row.z_saleBoxRow .form-group.z_saleBox .z_saleBoxTop label {
        font-size: 14px;
    }
    .tab-content.parentTabContent .tab-pane .z_rightCol h5 {
        font-size: 18px;
    }
    .row.z-pack-row .col-6 {
        width: 100%;
        padding: 0 !important;
    }
}

@media (max-width: 768px){
    .card-header.z_orderPageTableheader.flex-wrap {
        gap: 9px 0px;
    }
    .card-header.z_orderPageTableheader h6 {
        width: 100%;
        text-align: center;
        margin: 0 0 0px 0;
    }
    .card-header.z_orderPageTableheader .order-status {
        width: 100%;
        justify-content: center;
    }
    h4 {
        line-height: 1.3;
    }
    .card.mainCard.p-5 {
        padding: 30px 20px !important
    }
    .tab-content.parentTabContent .tab-pane.active .z_leftCol {
        width: 100%;
    }
    .tab-content.parentTabContent .tab-pane .z_rightCol {
        width: 100%;
    }
    .z_packRow > .form-group {
        width: 100%;
    }
    .z_packRow {
        gap: 10px 0px;
    }
    .tab-content.parentTabContent .tab-pane .z_rightCol h5 {
        font-size: 17px;
    }
    .row.z_saleBoxRow .col-6 {
        width: 100%;
    }
    .row.z_saleBoxRow {
        gap: 15px 0px;
    }
    .row.z-pack-row {
        margin-top: 0;
        gap: 10px 0px;
    }
    .row.profilePageButtonRow .btn {
    padding: 12px 15px;
    width: 48%;
    font-size: 14px;
    }
}

@media (max-width: 480px){
    .z_ordersTabs ul#parentTab {
        margin: 0 0 15px 0 !important;
        gap: 7px 0px;
        border: 0;
    }
    .z_ordersTabs ul#parentTab > li.nav-item {
        width: 100%;
    }
    .z_ordersTabs ul#parentTab > li.nav-item button {
        width: 100%;
        background: #f5f5f5;
        border-color: #1111110d;
        border-radius: 5px;
        padding: 10px 15px;
    }
    .z_ordersTabs ul#parentTab > li.nav-item button.active {
        background: var(--primary-color);
        color: #fff;
        border-color: var(--primary-color);
    }
    .tab-content.parentTabContent .tab-pane .z_rightCol {
        padding: 15px 15px;
    }
    table.table.z_tableSucess thead th {
        padding: 10px 12px;
    }
    .tab-content.parentTabContent .tab-pane .z_rightCol {
        padding: 15px 15px;
    }

    table.table.z_tableSucess thead th {
        padding: 10px 12px;
    }

    .tab-content.parentTabContent .tab-pane .z_rightCol .z_new-orderResponsiveTable table.table thead th {
        min-width: 130px;
    }

    .tab-content.parentTabContent .tab-pane .z_rightCol .z_new-orderResponsiveTable table.table thead  tr th:first-child {
        min-width: 30px;
    }
    .z_cartBtnRow button {
        width: 100%;
    }
    .z_cartBtnRow {
        gap: 10px !important;
    }
}