@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;700;800&display=swap');
/*@font-face {
    font-family: 'MyCustomFont';
    src: url('../fonts/Gilroy-Regular.ttf') format('truetype'),
         url('../fonts/Gilroy-Medium.ttf') format('truetype'),
         url('../fonts/Gilroy-Bold.ttf') format('truetype');
}*/

*{
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}
:root {
    --primary: #0086b3;
    --primary-dark: #cc2c00;
    /*--secondary: #33d6ff;*/
    --secondary: #00e6b8;
    --primary-light: #B7FFDB;
    --secondary-light: #ebfaff;
    --dark: #000e14;
    --primary-tone: #897b76;
    --secondary-tone: #768489;
    --dark-text: #000e14;
    /*--normal-text: #897b76;*/
    --normal-text: #595959;
    --normal-text-darker: #595959;
    --light-ash: #eee;
    --light-text: #ffffff;
}
.emph-text {
    font-weight: bold;
}
.primary-bg {
    background-color: var(--primary) !important;
}
.primary-text {
    color: var(--primary) !important;
}
html {
    font-size: 16px;
}
body {
    font-family: 'MyCustomFont', Poppins, Gilroy, Roboto, Inter, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    /*background: #eee;*/
    letter-spacing: .5px;
    -ms-overflow-style: none;
    /*scrollbar-width: none;*/
    scrollbar-width: thin;
    font-size: 1rem;
}

body::-webkit-scrollbar {
  width: 8px; /* or any other value */
}
body::-moz-scrollbar {
  width: 8px; /* or any other value */
}
a {
    text-decoration: none;
}
li {
    list-style: none;
}
p {
/*    color: var(--normal-text);*/
    color: #333;
    /*font-size: .95rem;*/
    font-size: .8rem;
    line-height: 26px;
}

p.small-text {
    font-size: 12px;    
}

button {
    outline: none;
    border: none;
}
button:hover {
    opacity: 0.8;
}
input, textarea, select, button {
    font-family: MyCustomFont, Poppins,  sans-serif;
    resize: none;
}
select {
    padding: 5px;
    background: white;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: var(--normal-text);
    font-size: 12px;
}
input:focus, textarea:focus, select:focus {
/*    outline-color: black !important;*/
/*    border: 2px solid black;*/
}
input[type="checkbox"] {
    cursor: pointer;
    width: 30px !important;
}
.inline-condition-check {
    font-size: 12px;
    color: var(--normal-text);
}
.inline-condition-check input[type="checkbox"] {
    accent-color: var(--secondary);
    display: inline-block;
    width: 30px;
}
.inline-condition-check label {
    cursor: pointer;
}
.container {
    width: 90%;
    margin: auto;
}
.relative {
    position: relative;
}
.text-center {
    text-align: center;
}
.img-fluid {
    display: block;
    width: 100%;
}
.round-small {
    border-radius: 5px;
}
.round-medium {
    border-radius: 15px;
}
.round-large {
    border-radius: 25px;
}
/* headings */

/* General Heading Styles */
.heading {
  font-family: 'Poppins', sans-serif;
  font-weight: bold;
  color: #333;
  margin-bottom: 1rem;
}

/* Size Variations */
.heading-xl {
  font-size: 3rem;
  line-height: 1.2;
}

.heading-lg {
  font-size: 2.5rem;
  line-height: 1.3;
}

.heading-md {
  font-size: 2rem;
  line-height: 1.4;
}

.heading-sm {
  font-size: 1.5rem;
  line-height: 1.5;
}

.heading-xs {
  font-size: 1.25rem;
  line-height: 1.6;
}

.heading-s {
  font-size: .9rem;
  line-height: 1.6;
}

/* Base Margin Reset */
.m-0   { margin: 0; }
.mt-0  { margin-top: 0; }
.mr-0  { margin-right: 0; }
.mb-0  { margin-bottom: 0; }
.ml-0  { margin-left: 0; }
.mx-0  { margin-left: 0; margin-right: 0; }
.my-0  { margin-top: 0; margin-bottom: 0; }

/* Small Margins */
.m-0_25 { margin: 0.25rem; } /* 4px */
.mt-0_25 { margin-top: 0.25rem; }
.mr-0_25 { margin-right: 0.25rem; }
.mb-0_25 { margin-bottom: 0.25rem; }
.ml-0_25 { margin-left: 0.25rem; }
.mx-0_25 { margin-left: 0.25rem; margin-right: 0.25rem; }
.my-0_25 { margin-top: 0.25rem; margin-bottom: 0.25rem; }

/* Medium Margins */
.m-0_5 { margin: 0.5rem; } /* 8px */
.mt-0_5 { margin-top: 0.5rem; }
.mr-0_5 { margin-right: 0.5rem; }
.mb-0_5 { margin-bottom: 0.5rem; }
.ml-0_5 { margin-left: 0.5rem; }
.mx-0_5 { margin-left: 0.5rem; margin-right: 0.5rem; }
.my-0_5 { margin-top: 0.5rem; margin-bottom: 0.5rem; }

/* Large Margins */
.m-1 { margin: 1rem; } /* 16px */
.mt-1 { margin-top: 1rem; }
.mr-1 { margin-right: 1rem; }
.mb-1 { margin-bottom: 1rem; }
.ml-1 { margin-left: 1rem; }
.mx-1 { margin-left: 1rem; margin-right: 1rem; }
.my-1 { margin-top: 1rem; margin-bottom: 1rem; }

/* Extra Large Margins */
.m-1_5 { margin: 1.5rem; } /* 24px */
.mt-1_5 { margin-top: 1.5rem; }
.mr-1_5 { margin-right: 1.5rem; }
.mb-1_5 { margin-bottom: 1.5rem; }
.ml-1_5 { margin-left: 1.5rem; }
.mx-1_5 { margin-left: 1.5rem; margin-right: 1.5rem; }
.my-1_5 { margin-top: 1.5rem; margin-bottom: 1.5rem; }

/* Double Margins */
.m-2 { margin: 2rem; } /* 32px */
.mt-2 { margin-top: 2rem; }
.mr-2 { margin-right: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.ml-2 { margin-left: 2rem; }
.mx-2 { margin-left: 2rem; margin-right: 2rem; }
.my-2 { margin-top: 2rem; margin-bottom: 2rem; }

/* Extra Large Spacing */
.m-3 { margin: 3rem; } /* 48px */
.mt-3 { margin-top: 3rem; }
.mr-3 { margin-right: 3rem; }
.mb-3 { margin-bottom: 3rem; }
.ml-3 { margin-left: 3rem; }
.mx-3 { margin-left: 3rem; margin-right: 3rem; }
.my-3 { margin-top: 3rem; margin-bottom: 3rem; }

/* Maximum Margins */
.m-4 { margin: 4rem; } /* 64px */
.mt-4 { margin-top: 4rem; }
.mr-4 { margin-right: 4rem; }
.mb-4 { margin-bottom: 4rem; }
.ml-4 { margin-left: 4rem; }
.mx-4 { margin-left: 4rem; margin-right: 4rem; }
.my-4 { margin-top: 4rem; margin-bottom: 4rem; }

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* Alignment Variations */
.text-left {
  text-align: left;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* Text Transformations */
.text-uppercase {
  text-transform: uppercase;
}

.text-capitalize {
  text-transform: capitalize;
}

/* grid and flex */
.grid-center-y {
    place-items: center;
}
.grid-2-in-1 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
}
.grid-2-in-1-ratio-2-to-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-ratio-1-to-2 {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: 10px;
}
.grid-2-in-1-ratio-1-to-2-wrap {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-column-gap: 10px;
}
.grid-2-in-1-ratio-1-to-3 {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-ratio-1-to-3-wrap {
    display: grid;
    grid-template-columns: 1fr 3fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-ratio-1-to-4 {
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-ratio-1-to-4-wrap {
    display: grid;
    grid-template-columns: 1fr 4fr;
    grid-column-gap: 20px;
}

.grid-2-in-1-ratio-1-to-5 {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-ratio-1-to-5-wrap {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-column-gap: 20px;
}

.grid-2-in-1-ratio-4-to-1 {
    display: grid;
    grid-template-columns: 4fr 1fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-ratio-4-to-1-wrap {
    display: grid;
    grid-template-columns: 4fr 1fr;
    grid-column-gap: 20px;
}

.grid-2-in-1-ratio-4-to-1-5 {
    display: grid;
    grid-template-columns: 4fr 1.5fr;
    grid-column-gap: 20px;
}

.grid-2-in-1-ratio-5-to-1 {
    display: grid;
    grid-template-columns: 5fr 1fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-ratio-5-to-1-wrap {
    display: grid;
    grid-template-columns: 5fr 1fr;
    grid-column-gap: 20px;
}
.grid-2-in-1-member-contact-display-select {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-column-gap: 10px;
/*    justify-items: center;*/
}
.grid-2-in-1-ratio-2-to-1-wrap {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-column-gap: 10px;
}

.grid-3-in-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
}

.grid-3-in-1-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 30px;
}
.grid-4-in-1 {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 30px;
}
.grid-4-in-1-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 30px;
}

/* input container */
@media(max-width: 450px) {

    .grid-2-in-1-wrap, .grid-2-in-1-ratio-1-to-2-wrap, .grid-2-in-1-ratio-2-to-1-wrap, .grid-2-in-1-ratio-1-to-3-wrap, .grid-2-in-1-ratio-1-to-4-wrap, .grid-3-in-1-wrap, .grid-4-in-1-wrap, .grid-2-in-1-ratio-1-to-5-wrap, .grid-2-in-1-ratio-5-to-1-wrap {
        grid-template-columns: 1fr;
        /*grid-column-gap: 50px;*/
        grid-row-gap: 5px;
    }
}

.btn-full {
    display: block;
    width: 100%;
    margin-top: 1rem;
    outline: none;
    padding: 12px 20px;
    border-radius: 5px;
    /*background: var(--primary);*/
    background: black;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
}
.btn-content {
    display: block;
    max-width: 250px;
    margin-top: 1rem;
    outline: none;
    padding: 12px 40px;
    border-radius: 5px;
    /*background: var(--primary);*/
    background: black;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
}

.btn-full:hover, .btn-content:hover {
    opacity: 0.9;
}



.add-row-btn {
    display: inline-block;
    margin: 1rem 0;
}



/* dashboard form */
.transaction-form {
    max-width: 450px;
    margin: auto;
    padding-bottom: 0 auto 3rem;
}
.update-form {
    padding: 2rem 0;
}


/* one line form */
.one-liner-form {
    max-width: 100%;
    /*background: black;*/
    margin-bottom: 1rem;
    display: flex;
    flex-grow: 1;
    justify-content: flex-start;
}
.one-liner-form .input-field {
    width:  calc(100% - 70px);
    /*background: red;*/
}
.one-liner-form .input-field input {
    height: 100%;
    font-size: 14px;
    color: black;
    letter-spacing: 1px; 
    border-radius: 5px 0 0 5px;
}
.one-liner-form .button-box {
    width: 70px;
}
.one-liner-form .input-field .input-container {
    margin-bottom: 0;
}
.one-liner-form .button-box button {
    width: 100%;
    display: block;
    border-radius: 0 5px 5px 0;
    height: 100%;
    cursor: pointer;
    background: var(--primary);
    color: white;
}
@media(max-width: 450px) {
    .one-liner-form .input-field {

    }
    
}

/* // one line form */


/* alert */

.alert {
    /*display: none;*/
    position: fixed;
    top: 0;
    right: -350px;
/*    min-width: 350px;*/
    width: 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
    min-height: 50px;
    /*line-height: 50px;*/
    background: white;
    color: var(--dark-text);
    font-weight: 400;
    font-size: 12px;
    /*text-align: center;*/
    z-index: 2000;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.05);
    /*transition: width 2s ease;*/
    transition: all 0.5s ease;

}
.alert .close-alert {
/*    padding: 8px;*/
    font-size: 20px;
/*    border-radius: 15px;*/
    cursor: pointer;
}
.alert-flex {
    display: flex;
    height: inherit;
}
.alert-flex div:first-child {
    width: calc(100% - 50px);
    padding: 10px;
    text-align: left;
}
.alert-flex div:last-child {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
}
.alert-flex div:last-child span {
    color: black;
    cursor: pointer;
}

/*.alert-failed {
    background-color: #ffcccc;
}

.alert-success {
    background-color: #99ffbb;
}
.alert-info {
    background: #b3e0ff;
}*/


.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error, .alert-failed {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* // alert */

/* page title */
.page-title {
    font-size: 18px;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: bold;
}
.page-title-and-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    margin-bottom: 2rem;
    font-size: 18px;
}
.page-title-and-action .page-title {
    margin-bottom: 0;
}

.page-title-and-action a svg {
    margin-right: 15px;
}
@media(max-width: 810px) {
    .page-title, .page-title-and-action {
        font-size: 14px;
    }
    
    
}
/* // page title */



.btn-small {
    display: inline-block;
    /*width: 100%;*/
    /*margin-top: 20px;*/
    /*margin-bottom: 1rem;*/
    outline: none;
    padding: 7px 20px;
    border-radius: 5px;
    background: black;
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    cursor: pointer;
    /*margin-right: 1rem;*/
    text-align: center;
}

.btn-small:hover {
    opacity: 0.9;
}


/* Table */
table {
    width: 100%;
    white-space: nowrap;
    border-collapse: collapse;
}
.table {
/*    border-radius: 25px;*/
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 2rem;
    margin-bottom: 1rem;
    color: #212529;
    /*border: 2px solid var(--border-lighter);*/
    background: var(--bg-lighter);
    background: #fff;
}

.table th,
.table td {
    text-align: left;
    padding: 0.85rem;
    vertical-align: top;
    border: none;
}
.slim-cell td {
    padding-top: 5px;
    padding-bottom: 5px;
}

.table td {
    border-top: 1px solid var(--light-text);
}
.table thead {
    border-radius: 10px;
    background-color: var(--light-theme);
/*    position: sticky;*/
/*    top: 60px;*/
}
.table thead th, .table thead th label {
    color: #4d4d4d;
    font-weight: 600;
    vertical-align: bottom;
    /*border-bottom: 2px solid var(--border-lighter);*/
}
.table thead th label {
    padding: 0px;
    margin: 0px;
}
/*.table tbody+tbody {
    border-top: 2px solid var(--border-lighter);
}*/


.table th {
    color: var(--dark-text);
    font-size: 13px;
    font-weight: 600 !important;
}

.table td, .table select {
    color: var(--normal-text);
    font-size: 11px;
    vertical-align: middle;
}
.slim-cell select {
    padding: 5px;
}


.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(#eee, 0.05);
}
/*tr:nth-of-type(odd) td {*/
.table td {
    border-top: 1px solid #eee;
}
/*.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}*/
@media (max-width: 430px) {
    .table {
        padding: 5px;
    }

}

.table-filters {
    /*padding: 10px;*/
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}
.table-filters input[type='search'], .table-filters .select-filter, .select-filter {
    padding: 5px 7px 5px 20px !important;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white !important;
    /*display: inline-block;*/
    width: 130px;
}
/*.table-filters input[type='checkbox'] {
    width: 40px !important;
}
.table-filters .select-all {
    width: 40px !important;
}*/
.table-filters .export {
    padding: 3px 10px;
    border: none;
    background: var(--secondary);
    color: black;
    font-size: 10px;
    cursor: pointer;
    border-radius: 5px;
}
.table-filters .export:hover {
/*  background: var(--secondary);*/
    opacity: 0.8;
/*  color: black;*/
}
.input-filter {
    position: relative;
    width: 200px;
}
.input-filter .left-search-icon {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    left: 5px;
    color: #aaa;
    font-size: 13px;
}
.table-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    font-size: 12px;

}


.table-pagination button {
    margin: 5px;
}
.table-pagination a {
    display: inline-block;
    padding: 5px;
    border-radius: 5px;
    background: #eee;
    cursor: pointer;
    align-content: center;
    text-align: center;
    margin: 0 10px;
}
.table-pagination button.active {
    background-color: var(--primary);
}
.table-row-setter {
    padding: 5px;
    margin-left: 0px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-transform: capitalize;
}

.row-checkbox {
    width: 30px;
}
/* Style for action box */
.action-box {
    display: none;
    bottom: 20px;
    right: 20px;
    padding: 5px 0px;
    border: 1px solid #ccc;
    border-radius: 5px;
    justify-content: flex-end;
}
.action-box button {
    padding: 4px 5px;
    margin: 0 5px;
    font-size: 11px;
    cursor: pointer;

}
.action-box p {
    font-size: 11px;
}
/* // table */

/* toggle switch */

.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
}

/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* // toggle switch */


.body-background {
    /*padding: 5px 15px;*/
    background-color: #eee;
}
/* header */
.header {
    height: 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*background: #eee;*/
    background: #fff;
    border-bottom: 1px solid #ddd;
    border-radius: 0 0 25px 25px;
    padding: 0 20px;
    margin-bottom: 1rem;
    position: sticky;
    margin-bottom: 15px;
    top: 0;
    z-index: 4;
}
/* nav toggler */
.nav-toggler {
    /*display: none;*/
    background-color: #eee;
    outline: none;
    border: none;
    color: black;
    /*font-size: 32px;*/
    padding: 10px;
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}
.nav-toggler .nav-toggler-icon {
    cursor: pointer;
    color: var(--primary);

}

.sidebar-toggler {
    /*display: none;*/
    background-color: white;
    outline: none;
    border: none;
    color: black;
    /*font-size: 32px;*/
    padding: 10px;
    display: flex;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 2s ease;
    z-index: 20;

}
.sidebar-toggler .sidebar-toggler-icon {
    cursor: pointer;
    color: var(--primary);

}

.header-logo {
    /*background: white;*/
    padding-left: 1.5rem;
}
.dashboard-logo {
    width: 130px;
    vertical-align: middle;
    /*height: auto;*/
    /*display: inline-block;*/
}
.header-left {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.header-user-info {
    display: flex;
    align-items: center;
    /*background: teal;*/
}
.header-user-info span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #fff;
}
.header-user-info small {
    font-size: 12px;
    display: inline-block;
    padding-left: 1rem;
    color: var(--normal-text);
}
.nav-toggler svg, .header-user-info span svg {
    width: 20px;
    height: 20px;
}
@media(max-width: 450px) {
    .dashboard-logo {
        width: 100px;
    }
    .header-user-info span {
        width: 25px;
        height: 25px;
    }
    .nav-toggler, .sidebar-toggler {
        width: 25px;
        height: 25px;
        padding: 0; 
    }
    .nav-toggler svg, .sidebar-toggler svg, .header-user-info span svg {
        width: 14px;
        height: 14px;
    }
    .header .notification-link {
        display: none;   
    }

}
/* // end of header */

.logo {
    width: 100px;
}

.page-content {
    /*position: fixed;
    top: 0;
    right: 0;
    overflow-y: auto;*/
    width: calc(100% - 250px);
    margin-left: 250px;
    /*width: 100%;*/
    min-height: 100%;
    background: #eee;
    padding: 0 20px 120px 20px ;
    /*padding-top: 1rem;*/
    /*padding-bottom: 2rem;*/
    /*padding-top: 50px;*/
    transition: all 0.5s ease;
/*    background: red;*/

}

@media(max-width:  430px) {
    .page-content {
        padding-bottom: 80px;
    }
}

.preview-page-content {
    padding: 0 20px 120px 20px;
    width: 100%;
}

.page-white {
/*    overflow-x: auto;*/
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 1rem;
    color: #212529;
    /*border: 2px solid var(--border-lighter);*/
    background: var(--bg-lighter);
    background: #fff;
}

.center-page-content {
    max-width: 700px;
    margin: auto;
}

/* sidebar */
.sidebar {
    position: relative;
    width: 250px;
    position: fixed;
    top: 0px;
    left: 0;
    z-index: 8;
    background: #fff;
    height: 100%;
    padding: 0px 15px 5px 15px;
    transition: all 0.5s ease;
    background: linear-gradient(90deg, #fff, #eee);
    /*background: white;*/
    overflow-y: auto;
    -ms-overflow-style: none;
    /*scrollbar-width: none;*/
    scrollbar-width: thin;
}
.sidebar::-webkit-scrollbar {
  width: 8px; /* or any other value */
}
.sidebar::-moz-scrollbar {
  width: 8px; /* or any other value */
}
.sidebar-biz {
    position: sticky;
    top: 0;
    /*background-color: red;*/
    padding-left: 15px;


}
.sidebar .logo-container {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    position: relative;

}
.sidebar .logo {
    width: 110px;
    display: block;
    /*margin-bottom: 15px;*/
    /*margin-left: 30px;*/
}
.sidebar .business-switch {
    width: 100%;
    border-radius: 5px;
}
.sidebar .business-label {
    font-size: 12px;
}
.add-business {
    display: block;
    width: 100%;
    border-radius: 5px;
    padding: 5px;
    margin: .5rem 0;
    background-color: var(--primary);
    color: white;
    cursor: pointer;
    text-align: center;
    font-size: 12px;
}

.add-business:hover {
    opacity: .6;
}


.sidebar ul {
    display: block;
}
.sidebar li {
    /*display: block;*/
    list-style-type: none;
    font-size: 12px;
    /*display: flex;*/
    align-items: center;
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 5px 0px 5px 5px;
}


.sidebar .active {
/*    background: #eee;*/
/*    border-left: 3px solid var(--primary);*/
}
/*.sidebar li.dropdown.active {
    color: var(--primary);
}*/
.sidebar li.active a.main-link {
    color: var(--primary);
}
.sidebar li.active svg {
    fill: var(--primary);
}

.sidebar li.active .dropdown-content a.active {
    color: var(--primary);
/*    font-weight: bold;*/
}
.sidebar a.main-link {
    width: 100%;
    display: flex;
    align-items: center;
    /*justify-content: space-between;*/
    color: black;
    cursor: pointer;
}
.sidebar a.main-link svg {
    width: 20%;
    fill: #555;
}
.sidebar a.main-link span {
    width: 74%;
}
.sidebar a.main-link i {
    width: 6%;
}
.sidebar a.main-link:hover {
    color: var(--primary);
}
.sidebar a.main-link:hover svg {
    /*stroke: var(--primary);*/
    fill: var(--primary);
}
.sidebar svg {
    /*margin-right: 15px;*/
    /*width: 20px;*/
    height: 20px;
}

.sidebar li a.main-link i {
    /*margin-left: 20px;*/
    font-size: 20px;
}

body.active .sidebar {
    left: -250px;
}
body.active .page-content {
    width: 100%;
    margin-left: 0px;
}

body.active .sidebar-toggler {
    position: fixed;
    top: 12.5px;
    left: 50px;
    background: #eee;
}

.nav-toggler .close, .sidebar-toggler .close {
    display: block;
}
.nav-toggler .open, .sidebar-toggler .open {
    display: none;
}
body.active .nav-toggler .close, body.active .sidebar-toggler .close {
    display: none;
    /*background: brown;*/
}
body.active .nav-toggler .open, body.active .sidebar-toggler .open {
    display: block;
    /*background: brown;*/
}


@media (max-width: 1080px) {
    .nav-toggler .close, .sidebar-toggler .close {
        display: none;
    }
    .nav-toggler .open, .sidebar-toggler .open {
        display: block;
    }
    body.active .nav-toggler .close, body.active .sidebar-toggler .close {
        display: block;
        /*background: brown;*/
    }
    body.active .nav-toggler .open, body.active .sidebar-toggler .open {
        display: none;
        /*background: brown;*/
    }

    .sidebar {
        left: -250px;

    }
    .sidebar-toggler {
        position: fixed;
        top: 12.5px;
        left: 50px;
        background: #eee;
    }
    .page-content {
        width: 100%;
        margin-left: 0;
    }
    body.active .sidebar {
        left: 0px;
        top: 0px;
    }
    body.active .sidebar-toggler {
        position: fixed;
        top: 12.5px;
        left: 200px;
    }
    body.active .page-content {
        width: 100%;
        margin-left: 0;
    }
}
@media (max-width: 430px) {
    .desktop-only {
        display: none;
    }
    
    .sidebar {
        /*top: 80px;*/
        /*border-radius: 0 15px 15px 0;*/
    }
    
    /*.container {
        width: 95%;
    }*/
    .page-content {
        /*padding: 80px 10px;*/
    }
    
}

.dropdown {
    /*position: relative;*/
}
.dropdown-content {
    /*display: none;*/
    transition: all 2s ease;
    /*background-color: #fff;*/
    padding: 0px 5px 0px 0;
    margin-left: 40px;
    height: 1px;
    overflow-y: hidden;
}
.sidebar .dropdown-content a {
    color: black;
    display: block;
    padding: 5px;
    font-size: 11px;
}
.sidebar .dropdown-content a:hover {
    color: var(--primary);
}
/* //sidebar */


/* task ui */
.launch-task {
    display: block;
    margin: auto;
}
.launch-task img {
    /*width: 200px;*/
}
.launch-task-button {
    position: fixed;
    left: calc(50% - 100px);
    width: 200px;
    bottom: 70px;
    z-index: 7;
}

.ripple-container {
    position: relative;
    width: 150px;
    margin: auto;
}

.ripple-image {
    display: block;
    margin: auto;
    width: 150px;
    height: auto;
    position: relative; /* Added position relative */
    z-index: 1; /* Added z-index */
    animation: pulse 2s infinite;
}
.ripple-image:hover {
    animation: none;
    cursor: pointer;
}

.ripple-container::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px; /* Adjust size based on your needs */
    height: 150px; /* Adjust size based on your needs */
    background-image: radial-gradient(circle at center, #fff 50%, transparent 40%);
    /*background-color: rgba(255, 255, 255, 0.3); /* Adjust color and opacity */*/
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: ripple-animation 2s linear infinite;
    z-index: 0;
}

@keyframes ripple-animation {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}


.pulsating-image {
    width: 150px;
    animation: pulse 2s infinite;
    /*box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);*/
}

.pulsating-image:hover {
    animation: none;
    cursor: pointer;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        /*box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);*/
    }
    50% {
        transform: scale(1.1);
        /*box-shadow: 0 0 20px 10px rgba(255, 255, 255, 0.5);*/
    }
    100% {
        transform: scale(1);
        /*box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);*/
    }
}
.task-form-top {
    max-width: 200px;
}
.task-form-top select {
    padding: 5px 7px 5px 20px !important;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: white !important;
    width: 100%;
}
.task-form-top label {
    font-size: 12px;
    display: block;
    margin-bottom: 7px;
}
.task-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 30px;
    grid-row-gap: 30px;
}
@media (max-width: 780px) {
    .task-container {
        grid-template-columns: 1fr;
        grid-column-gap: 10px;
    }
}
.task-filter-container {
    font-size: 14px;
    color: black;
    /*font-weight: bold;*/
    margin-bottom: 1rem;
}
.task {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    /*margin-bottom: 1rem;*/
}
.task-status-success {
    border-left: 5px solid #00e699;
}
.task-status-pending {
    border-left: 5px solid tomato;
}
.task .img-and-name {
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-column-gap: 10px;
    margin-bottom: 10px;
    /*border-bottom: 1px solid #ddd;*/
}
.task .img-and-name div:first-child {

}

.task .img-and-name div:last-child {
    font-size: 12px;
    color: var(--normal-text-darker);
    height: 30px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: .3px;
}
.task .finance {
    display: flex;
    justify-content: space-between;
}
.task .finance div {
    text-align: center;
}
.task .finance div:first-child {
    /*border-right: 1px solid black;*/
}
.task .finance div:last-child {
    /*border-left: 1px solid black;*/
}
.task .finance .label {
    font-size: 11px;
    color: var(--primary);
}
.task .finance .value {
    font-size: 12px;
    color: black;
}
.generated-info {
    padding-top: 5px;
}
.generated-info div:last-child {
    /*display: flex;
    justify-content: flex-end;
    align-items: center;*/
    text-align: right;

}
.generated-info div span {
    display: block;
}

.task .generated-info .label {
    font-size: 11px;
    /*color: var(--primary);*/
}
.task .generated-info .value {
    font-size: 12px;
    color: black;
}

.task-executor {
    max-width: 430px;
}
.task-executor .task .img-and-name {
    grid-template-columns: 1fr 3fr;
}
.task-executor .task .img-and-name div:last-child {
    font-size: 12px;
    height: 43px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    letter-spacing: .3px;
}
.task-action {
    border-top: 2px solid #eee;
    margin-top: .5rem;
    padding-top: 1rem;
    font-size: 12px;
}
.task-action i {
    font-size: 16px;
    color: gold;
    cursor: pointer;
    /*float: right;*/
}
.task-action a, .task-action button {
    /*text-align: right;*/
    /*background-color: blueviolet;*/
    display: inline-block;
    float: right;
}

/* dashboard widget */
.widget-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 20px;
    margin-bottom: 1.5rem;
}
@media(max-width: 700px) {
    .widget-container {
        grid-template-columns: 1fr;
        grid-column-gap: 20px;
    }

}
.widget {
    background: white;
    overflow: hidden;
    border-radius: 10px;
    /*max-width: 320px;*/
    margin-bottom: 1rem;
    min-height: 150px;
}
.widget-top-item {
    padding: 15px;
    background-color: #fff6e6;
    border-radius: 0 0 20px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.widget-top-item span {
    margin-right: 1rem;
    background: transparent !important;
}
.widget-bottom-item {
    padding: 1rem;
    font-size: 12px;
}
.widget span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: #eee;
}
.customer-care {
    /*background-color: var(--primary);*/
    padding: 15px;
    /*background: var(--primary) url('../images/customer-care.png') no-repeat top right;*/
    background-color: var(--primary);
    background-image: url('../images/customer-care.png');
    background-repeat: no-repeat;
    background-position: top right;
    position: relative;
}
.customer-care svg path {
    stroke: var(--primary);
    /*fill: transparent;*/
}
.dashboard-links {
    padding: 5px 10px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: ghostwhite;
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 100px;
}
.dashboard-whatsapp svg path{
    stroke: transparent !important;
    fill: #00e699;
}
.dashboard-telegram svg path{
    stroke: transparent !important;
    fill: dodgerblue;
}
.customer-care p {
    font-size: 12px;
    color: white;
    margin-right: 100px;
    line-height: 1.2;
    margin-top: 10px;
}
.dashboard-links a {
    display: flex;
    align-content: center;
}

.widget-slim {
    background: white;
    overflow: hidden;
    border-radius: 10px;
    /*max-width: 320px;*/
    margin-bottom: 1rem;
    min-height: 80px;
    padding: 7px;
    background-color: white;
    border-radius: 40px;
}


.widget-slim .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    /*background: #eee;*/
}
.divided {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.divided .left, .divided .right {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.divided .left div, .divided .right .div {
    /*display: flex;
    align-items: center;
    justify-content: space-between;*/
    width: calc(100% - 10px);
}

.divided .right {
    text-align: right;
    /*border-left: 4px solid #eee;*/
}
.widget-slim svg path{
    stroke: transparent;
    fill: var(--primary);
}
.widget-slim .label {
    color: black;
    display: block;
    font-size: 10px;
    text-transform: capitalize;
}
.widget-slim .value {
    font-weight: 600;
    font-size: 10px;
    display: block;
    margin-top: 5px;
}

@media(max-width: 450px) {
    .widget-slim, .widget {
        max-width: 100%;
        width: 100%;
    }
    .widget-slim .label {
        color: var(--primary);
        display: block;
        font-size: 10px;
    }
    .widget-slim .value {
        font-weight: 600;
        font-size: 12px;
        display: block;
        margin-top: 5px;
    }
}

.widget-button {
    width: 55px;
    height: 55px;
    margin-right: 10px;
    background-color: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.5);
}
.widget-button:hover {
    opacity: .5;
}
.widget-button svg path {
    stroke: white;
    fill: white;
}

.dashboard-top-performers {
    padding: 20px;
}

.dashboard-top-performers h3 {
    font-size: 12px;
    margin-bottom: 5px;
}
.dashboard-top-performers ul {
    margin-bottom: .5rem;
}
.dashboard-top-performers li {
    font-size: 10px;
    color: #777;
}

.customer-care-link {
    padding: 20px;
    background: white;
    border-radius: 45px;
    display: flex;
    align-items: center;
}
.customer-care-link input {
    padding: 7px;
    margin: 0 10px;
    /*outline: none;*/
    border-radius: 5px;
    border: 1px solid #ccc;
}
/* extras */
.remove-row {
    cursor: pointer;
    color: tomato;
}
.add-item {
    display: inline-block;
    margin: 1rem 0;
}
table select {
    padding: 5px;
    background: white;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 3px;
}
table input {
    padding: 5px 5px;
    width: 100%;
    background: ghostwhite;
    border: none;
/*    border-bottom: 1px solid var(--secondary-tone);*/
    border-radius: 2px;
    font-size: 12px;
    letter-spacing: 1px;
    outline: none;
    font-family: "Poppins", "inter", Arial, Helvetica, sans-serif;
    font-weight: 300;
}
table input[type="file"] {
    background: transparent;
    font-family: Poppins, sans-serif;
}
table td {
    /*display: inline-flex;
    align-items: center;
    justify-content: center;*/
}
table td button, table td input {
    padding: 5px !important;
    margin: 0 !important;
}
.table-image-holder {
    display: inline-block;
    width: 30px;
    height: 30px;
    border-radius: 15px;
}

.bottom-quick-link {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    border-top: 1px solid #eee;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    height: 60px;
    padding: 0 1rem;
    border-radius: 20px 20px 0 0;
    z-index: 6;
    display: none;
    align-items: center;
    justify-content: space-evenly;
}
@media(max-width: 810px) {
    .bottom-quick-link {
        display: flex;
    }
}
/*.bottom-quick-link a span {

}*/
.bottom-quick-link a {
    /*background: beige;*/
}

/*.bottom-quick-link {*/
    /*position: relative;*/
/*}*/
.bottom-quick-link span i, .header i {
    position: absolute;
    top: 10px;
    left: 25px;
    color: white;
    font-size: 10px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-style: normal;
}
.header i {
    /*position: absolute;*/
    left: unset;
    top: -10px;
    right: 0px;
}
.bottom-quick-link a span svg {
    display: block;
    margin: auto;
    width: 18px;
    height: 18px;
}
.bottom-quick-link a {
    /*margin-left: 1rem;*/
}
.bottom-quick-link a:first-child {
    /*margin-left: 0;*/
}
.bottom-quick-link a span svg path {
    stroke: black;
}
.bottom-quick-link a span small {
    font-size: 8px;
    color: var(--normal-text);
}

/*.bottom-quick-link .launch-task {
    width: 100px;
    height: 100px;
    border-radius: 50%;

}
.bottom-quick-link .launch-task span {
    display: flex;
    justify-content: center;
}*/

/* Modal  */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*padding: 15px;*/
    overflow-y: auto;
    overflow-x: hidden;
    outline: none;
    background: rgba(255,255,255,0.5);
    /*background: rgba(0,0,0,0.9);*/
    /*box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);*/
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);


    /* background: rgba(var(--modal-bg), 0.4); */
    /*opacity: 0.4;*/
    /*transition: transform 0.8s ease-out;*/
    transition: all 0.5s ease;

}
.fade {
    transition: opacity 0.15s linear;
}
/*@media (prefers-reduced-motion: reduce) {
    .fade {
        transition: none;
    } 
}
.fade:not(.show) {
    opacity: 0; 
}*/
.modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    /*transform: translate(0, -50px); */
}
@media (prefers-reduced-motion: reduce) {
    .modal.fade .modal-dialog {
        transition: none; 
    } 
}

.modal-content-full-screen {
  width: 100%;
  min-height: 100%;
}
.modal-content {
    padding: 0 1rem;
    padding-bottom: 20px;
    background: white;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);

}


.modal-content-full {
    height: 100%;
}
.modal-content-lg {
    width: 980px;
}
.modal-content-medium {
    width: 700px;
}

.modal-content-small {
    width: 380px;
}
.modal-body {
/*    padding-bottom: 30px;*/
    padding: 0 10px;
    overflow-y: auto;
    max-height: 70vh;
    -ms-overflow-style: none;
    /*scrollbar-width: none;*/
    scrollbar-width: thin;
/*    padding-top: 1rem;*/
    max-height: 80vh;
}
.modal-body::-webkit-scrollbar {
  width: 8px; /* or any other value */
}
.modal-body::-moz-scrollbar {
  width: 8px; /* or any other value */
}

@media (max-width: 1080px) {
    /*.modal-content {
        margin-right: 20px;
        margin-left: 20px;
    }*/

    .modal-content-lg {
        width: 800px;
    }

}
@media (max-width: 810px) {
    /*.modal-content {
        margin-right: 20px;
        margin-left: 20px;
    }*/

    .modal-content-lg, .modal-content-medium {
        width: 95%;
    }

}

@media (max-width: 440px) {

    .modal-content-lg, .modal-content-medium, .modal-content-small {
        width: 95%;
    }
    
}

.modal-dialog-top {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
}

.modal-dialog-middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*max-height: 80vh;
    justify-content: center;
    align-items: center;*/
}

.modal-dialog-bottom {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 0;
}
.underlined {
    border-bottom: 1px solid #ccc;    
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}
.modal-header h3 {
    font-size: 14px;
    font-weight: normal;
}
.modal .close {
    font-size: 32px;
    line-height: inherit;
    font-weight: bold;
    cursor: pointer;
    /*color: var(--dark-text);*/
    /*border-radius: 25px;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal .close:hover {
    color: #000;
}
.modal-header .close svg {
    width: 16px;
    height: 16px;
    z-index: 999999;
}

/* // Modal */
.read {
    width: 90%;
    margin: 0 auto;
}
.read h3 {
    display: block;
    font-size: 16px;
    font-weight: 500;
    color: black;
    margin-top: 15px;
    margin-bottom: 5px;
}
.read p {
    display: block;
    font-size: 13px;
    color: var(--normal-text);
    line-height: 1.7;
}

/* progress bar */
.right-for-progress {
    display: grid;
    grid-template-columns: 2fr 1fr;
}
.progress-circle {
    position: relative;
    width: 70px;
    height: 70px;
    /*margin-right: -10px;*/
    /*background: black;*/
    /*border-radius: 50%;*/

}

.progress-svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.progress-circle-bar {
    fill: none;
    stroke: var(--primary);
    stroke-width: 5;
    stroke-linecap: round;
    transition: stroke-dasharray 0.3s;
    transform-origin: center;
}

.progress-circle-bg {
    fill: none;
    stroke: #ddd;
    stroke-width: 5;
}

.progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    font-weight: bold;
    color: #333;
}

/* 404 page */
.page-404 {

}
.img-box-404 {
    max-width: 450px;
    margin: auto;
}
.page-404 p {
    font-size: 16px;
    text-align: center;
}
.page-404 a {
    padding: 7px 20px;
    border-radius: 5px;
    color: whitesmoke;
    /*background: var(--primary);*/
    background-color: black;
    display: block;

    width: 150px;
    text-align: center;
    margin: auto;
    margin-top: 1rem;
    /*margin-bottom: 2rem;*/
}
/* // 404 page */

/*.whatsapp {
    position: fixed;
    bottom: 98px;
    right: 15px;
    z-index: 99;
    font-size: 16px;
    border: none;
    outline: none;
    cursor: pointer;
    color: #fff;
    width: 80px;
    height: 80px;
    background: red;
    border-radius: 50%;
    -webkit-border-radius: 50px;
    -o-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    padding: 0;
}*/

.whatsapp span.fa-whatsapp {
    vertical-align: middle;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 30px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    background-color: #33cc33;
}

.se-pre-con {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 1999;
/*    background: url(../images/Preloader_11.gif) center no-repeat rgba(255, 255, 255, 0.80);*/
    background: url(../images/spinner-2x.gif) center no-repeat rgba(255, 255, 255, 0.80);
}


/* notification */

 .notification input, .notification textarea {
    display: block;
    width: 100%;
    padding: 7px;
    margin-bottom: 20px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 12px;
    resize: none;
}

.notification label {
    font-size: 12px;
    display: block;
    margin-bottom: 10px;
}
.notifications-container {

}
.notifications-container .message {
    background: white;
    padding: 10px;
    margin-bottom: 20px;
    max-width: 520px;
    font-size: 12px;
    border-radius: 5px;
    color: var(--normal-text);
}
.notifications-container .message  pre {
    white-space: pre-wrap;
    word-wrap: break-word;
    font-family: inherit;
}
.notifications-container .date {
    font-size: 10px;
    color: black;
    margin-top: 10px;
}

.modal-image {
    max-width: 900px;
    margin: 20px auto;
}
.date-range-container {
    margin-bottom: 1.5rem;
    width: 350px;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 5px;
    padding: 10px;
    font-size: 11px;
}
.date-range-container input {
    padding: 7px;
    border-radius: 5px;
    border: 1px solid #ccc;
    color: #666;
    margin: 0 5px;
    font-size: 11px;
}
.date-range-container button {
    padding: 7px;
    background: var(--primary);
    border-radius: 5px 15px;
    margin-left: 10px;
    cursor: pointer;
    color: white;
}
.invite-code-container {
    margin-bottom: 1.5rem;
    max-width: 210px;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 5px;
    padding: 10px;
    font-size: 13px;
}
.invite-code-container input {
    display: inline-block;
    margin: 0 10px;
    color: var(--primary);
    font-weight: bold;
    border: none;
    width: 50px;
}

.invite-code-container svg {
    cursor: pointer;
}
.invite-code-container svg:hover .invite-code-container svg path {
    stroke: var(--primary);
    fill: var(--primary);
}


/* autocomplete css */
.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    background-color: var(--white-bg);
}

.autocomplete-items div {
    /* height: 40px; */
    line-height: 40px;
    padding-left: 10px;
    cursor: pointer;
    background-color: #fff; 
    border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
    background-color: #e9e9e9; 
}

.autocomplete-items a {
    display: block;
    line-height: 40px;
    padding-left: 10px;
    border-bottom: 1px solid #d4d4d4;
    color: var(--dark-text);
    font-size: 14px;
}

.autocomplete-items a:hover {
    color: var(--emphasized-text);
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: DodgerBlue !important; 
    color: #ffffff; 
}
/* // autocomplete css */


/* 404 */
.page-404 {
    padding: 2 rem;
    padding-top: 100px;
    text-align: center;
    color: var(--primary);
}
.invalid {
    border-color: red !important;
}
.valid {
    border-color: #ccc !important;
}

.modal-form {
/*    padding: 30px 0;*/
}
.modal-form input, .modal-form textarea, .modal-form select {
    padding: 8px 15px;
    display: block;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
    color: #555;
    background-color: white;
    margin-bottom: 0px;
    font-family: Poppins, sans-serif;
    resize: none;
}
.modal-form button {
    display: block;
    padding: 15px;
    width: 100%;
    border-radius: 5px;
    font-size: 12px;
    background: #538cc6;
    color: white;
    font-weight: bold;
    margin-top: 1.5;
    cursor: pointer;
}
.modal-form button:hover {
    opacity: 0.9;
}

.modal-form label {
    font-size: 11px;
    color: var(--normal-text);
/*    font-weight: bold;*/
    display: inline-block;
    margin-bottom: 0px;

}

.form-receivers {
    padding: 10px 15px;
    display: block;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 12px;
    color: #555;
    background-color: white;
    /*margin-bottom: 1rem;*/
    font-family: Poppins, sans-serif;
}
.form-labels {
    font-size: 12px;
    color: var(--normal-text);
/*    font-weight: bold;*/
    display: inline-block;
    margin-top: 10px;    
    margin-bottom: 5px;    
}
legend.normal {
    font-size: 15px;
    margin: 1.5rem 0 1rem 0;
    font-weight: bold;
    color: var(--primary);
}
legend.small {
    font-size: 13px;
    margin: 1rem 0 1rem 0;
}
.twin-inputs {
    display: flex;

}
.twin-inputs input {
    display: inline-block;
}
.twin-inputs input:first-child {
    padding-right: 1px !important;
    border-right: none;
    border-radius: 5px 0 0 5px;
    width: 190px;
    text-align: right;
}
.twin-inputs input:last-child {
    padding-left: 0 !important;
    border-left: none;
    border-radius: 0 5px 5px 0;
    width: calc(100% - 190px);

}
.twin-inputs input:last-child:focus {
    border: solid 2px dodgerblue;
    border-left: none;
    outline: none;

}
.pretyped-input-container {
    position: relative;
}
.pretyped-input-container .pretyped-input-text {
    font-size: 11px;
    position: absolute;
    top: 50%;
    transform: translate(0%, -50%);
    left: 0;
    padding-left: 15px;
    padding-bottom: 2px;
    color: var(--normal-text);
}
.pretyped-input {
    padding-left: 175px;
    margin-bottom: 0 !important;
    font-size: 11px;
}

.help-link {
    font-size: 12px;
    font-style: italic;
    text-decoration: underline;
    color: var(--normal-text);
    display: block;
    margin: .5rem 0;
}

.help-link:hover {
    color: black;
}
/* input tags */
#tags{
/*    background:#eee;*/
/*  float:left;*/
    border:1px solid #ccc;
    border-radius: 5px;
/*  padding:5px;*/
    font-family:Arial;
}
#tags > span{
    cursor:pointer;
    display:block;
    align-items: center;
    justify-content: space-between;
    float:left;
    color:#000;
    border-radius: 23px;
    font-size: 11px;
    background: var(--secondary);
    padding:4px;
    padding-right:25px;
    margin:3px;

}
#tags > span:hover{
    opacity:0.7;
}
#tags > span:after{
    position:absolute;
    content:"×";
/*  border:1px solid;*/
    padding:0px 3px;
    margin-left:3px;
    font-size:11px;
}
#tags > input{
    display: inline-block;
/*    background:#eee;*/
    border: none;
    margin-top: 4px;
    padding:7px;
    width: 100%;
}
#tags:focus {
/*    border-color: dodgerblue;*/
    border-color: transparent !important;
}
#tags > input:focus {
  outline-color: transparent !important;
    border: none !important;
}

/* options container */

.options-container {
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.options-container a {

}

.top-quick-link {
    position: sticky;
    top: 90px;
    width: 100%;
    border-top: 1px solid #eee;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    height: 70px;
    padding: 0 1rem;
/*    border-radius: 20px 20px 0 0;*/
    border-radius: 20px;
    margin-bottom: 1rem;
    z-index: 6;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
@media(max-width: 810px) {
    .top-quick-link {
        display: flex;
    }
}
/*.top-quick-link a span {

}*/
.top-quick-link a {
    /*background: beige;*/
}

/*.top-quick-link {*/
    /*position: relative;*/
/*}*/
.top-quick-link span i, .header i {
    position: absolute;
    top: 10px;
    left: 25px;
    color: white;
    font-size: 10px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-style: normal;
}
.header i {
    /*position: absolute;*/
    left: unset;
    top: -10px;
    right: 0px;
}
.top-quick-link a span svg {
    display: block;
    margin: auto;
    width: 18px;
    height: 18px;
}
.top-quick-link a {
    /*margin-left: 1rem;*/
}
.top-quick-link a:first-child {
    /*margin-left: 0;*/
}
.top-quick-link a span svg path {
    stroke: black;
}
.top-quick-link a span small {
    font-size: 8px;
    color: var(--normal-text);
}

.unit-details {
    background: var(--primary);
    padding: 2rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}
.unit-details-title {
    color: white;
    font-size: 14px;
}
.unit-details p, .unit-details li {
    font-size: 12px;
    color: whitesmoke;
    white-space: pre-wrap;
}


.member-container {
/*    min-height: 250px;*/
    height: 350px;
    overflow-y: auto;
    -ms-overflow-style: none;
    /*scrollbar-width: none;*/
    scrollbar-width: thin;
    padding-top: 1rem;
}
.member-container::-webkit-scrollbar {
  width: 8px; /* or any other value */
}
.member-container::-moz-scrollbar {
  width: 8px; /* or any other value */
}
.member-container p {
    font-size: 12px;
}
.member-container li {
    font-size: 12px;
    list-style-type: circle;
}
.member-container label {
    width: 100%;
    font-weight: normal;
}
.grid-2-in-1-member-contact-display-select {
    border-bottom: 1px dashed #eee;
    border-radius: 5px;
}
.grid-2-in-1-member-contact-display-select:hover {
    background: #eee;
    cursor: pointer;
}
.grid-2-in-1-member-contact-display-select .select, .leader-role-container .leadership-role {
    display: flex;
    align-items: center;
    justify-content: center;
}
.grid-2-in-1-member-contact-display-select input[type="checkbox"] {
    width: 20px;
    padding: 0;
    display: block;
    margin: auto;
    accent-color: var(--secondary);
}
.
.grid-2-in-1-member-contact-display-select .display, .leader-role-container .display {
    background: ghostwhite;
/*    height: 30px;*/
}
.grid-2-in-1-member-contact-display-select .display p, .leader-role-container .display p {
    font-size: 13px;
    line-height: 20px;
    padding: 0;
    color: var(--normal-text);
}
.grid-2-in-1-member-contact-display-select .display small, .leader-role-container small {
    font-size: 11px;
    color: black;
    line-height: 20px;
}
.leadership-role select {
    padding: 5px;
    background: white;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: var(--normal-text);
    font-size: 12px;
}

.input-icon {
    color: #aaa;
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translate(0, -50%);
    right: .75rem;
    font-size: 18px;
    cursor: pointer;
}

.badge, .action {
    padding: 5px 7px;
    border-radius: 10px;
    background-color: #ddd;
    display: inline-block;
    text-align: center;
    min-width: 70px;
    font-size: 10px;
}
.status-pending {
    background-color: #FFC107; /* Yellow */
    color: #000;
}
.status-ongoing {
    background-color: #28A745; /* Green */
    color: #fff;
}
.status-finished {
    background-color: #DC3545; /* Red */
    color: #fff;
}

.status-sleep, .status-incomplete {
    background-color: tomato;
    color: white;
}

/* work flow */
.container-wf {
    position: relative;
    width: 100%;
    height: 400px;
    margin: 50px 0;
}

.box {
    width: 100px;
    height: 100px;
    background-color: #007bff;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    position: absolute;
    cursor: move;
}

.box1 {
    top: 50px;
    left: 50px;
}

.box2 {
    top: 250px;
    left: 300px;
}

.container-wf svg {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Ensures the arrow is behind the boxes */
}

/* Style for the arrow line */
.arrow {
    stroke: black;
    stroke-width: 2;
    fill: none;
}

/* Style for the arrowhead */
marker {
    fill: black;
}

.dragging {
    opacity: 0.5;
    background-color: var(--secondary);
}
.drag-handle {
    cursor: grab;
}

.event-banner-container {
    overflow: hidden;
    margin-bottom: 2rem;
}
.event-preview-date {
    font-size: .9rem;
}
.event-description {
    white-space: pre-wrap;
    font-size: 1rem;
    color: var(--normal-text);
    -ms-overflow-style: none;
    /*scrollbar-width: none;*/
    scrollbar-width: thin;
}
/*.event-sessions {
    overflow-x: auto;
    display: block;
}
.event-sessions::-webkit-scrollbar {
  width: 8px;
}
.event-sessions::-moz-scrollbar {
  width: 8px;
}
.event-session {
    width: 120px;
    border: 2px solid #eee;
    padding: .5rem;
    border-radius: 15px;
    text-align: center;
    display: inline-block;

}*/

.event-sessions {
    overflow-x: auto;
    white-space: nowrap; /* Prevents line breaks, making children line up horizontally */
    display: block;
    scroll-behavior: smooth; /* Makes scrolling smooth when triggered */
    padding-bottom: 10px; /* Adds some space for the scrollbar */
}

.event-sessions::-webkit-scrollbar {
    height: 8px; /* Horizontal scrollbar height */
}

.event-sessions::-webkit-scrollbar-thumb {
    background-color: #888; /* Scrollbar color */
    border-radius: 10px;
}

.event-sessions::-webkit-scrollbar-thumb:hover {
    background-color: #555; /* Hover effect */
}

.event-sessions::-moz-scrollbar {
    height: 8px; /* Horizontal scrollbar height */
}

.event-sessions::-moz-scrollbar-thumb {
    background-color: #888;
    border-radius: 10px;
}

.event-sessions::-moz-scrollbar-thumb:hover {
    background-color: #555;
}

.event-session {
    width: 120px;
    border: 2px solid #eee;
    padding: .5rem;
    border-radius: 15px;
    text-align: center;
    display: inline-block; /* Keep each event-session in one line horizontally */
    margin-right: 10px; /* Add some space between the cards */
    white-space: normal; /* Allows text within the cards to wrap */
}



.event-session:hover {
    opacity: .7;
    cursor: pointer;
}
.event-session p {
    font-size: .8rem;
    color: var(--normal-text);
}
.event-session .day, .event-session .month-year {
    color: var(--normal-text);
    font-weight: 500;
    font-size: .9rem;
    margin-bottom: .5rem;
}
.event-session .date {
    display: block;
    width: 40px;
    height: 40px;
    margin: auto;
    background: var(--secondary);
    color: black;
    line-height: 40px;
    border-radius: 5px;
    margin-bottom: .5rem;
    font-weight: 600;
}
/*.event-session .month-year {

}*/

.preview-actions {
    position: fixed;
    top: 150px;
    right: 20px;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.07);
    width: 150px;
    height: 200px;
    background: white;
    border-radius: 15px;
    color: var(--normal-text);
    border: .5px solid #eee;
    padding: 1rem .5rem;
    padding-left: 1rem;
    font-size: .7rem;
}

.preview-actions a {
    color: var(--primary);
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: .5rem;
}
.preview-actions a svg {
    margin-right: 10px;
}
.preview-actions a svg path {
    stroke: var(--primary);
    /*fill: transparent;*/
}

/* store customization */
.logo-customization-and-preview {
    display: flex;
    align-items: center;
}
.logo-customization-and-preview input {
    width: 200px;
}

.logo-customization-preview {
    border: 1px solid #ddd;
    font-size: 12px;
    font-weight: thin;
    padding: 5px;
    min-height: 50px;
    min-width: 120px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--normal-text);
}

.color-customization {
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 1rem;
}
.color-customization label {
    width: 200px;
}
/*.color-customization {
    width: 200px;
}*/



/* step form */

.progress-bar {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}
.step {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #ddd;
    text-align: center;
    line-height: 20px;
    font-size: 12px;
}
.step.active {
    background-color: #4CAF50;
    color: #fff;
}
.form-step {
/*    display: none;*/
    display: block;
}
.form-step.active {
    display: block;
}
.form-step input,
.form-step textarea,
.form-step select {
    width: 100%;
    padding: 10px;
    margin: 0 0 10px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}
.button-group {
    display: flex;
    justify-content: flex-end;
    column-gap: 15px;
    margin-top: 1.5rem;
}
/*button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}*/
button.next {
    background-color: #4CAF50;
    color: #fff;
    width: 100px;
}
button.back {
    background-color: #ddd;
    width: 100px;
}


/* product attribute */
.attribute-list {
    padding: 1rem;
    padding-right: 0;
    font-size: 13px;
}
.attribute-item {
    background-color: #F6F9FA;
    border: 1px solid #ddd;
    padding: 5px;
    margin-bottom: 5px;
}
.attribute-name {
    font-size: 14px;
    font-weight: bold;
}
.attribute-values {
    font-size: 13px;
    color: var(--normal-text);
}
.attribute-item button {
    display: inline-block;
/*    padding: 0px;*/
    max-width: 50px !important;
}

@media(max-width: 450px) {
    .attribute-item button {
        display: inline-block;
        padding: 5px;
/*        max-width: 20px !important;*/
    }
    .attribute-item button:nth-child(2) {
        margin-top: 5px;
    }
}

/*order page*/


.checkout-total, .checkout-discount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .5rem;
/*    border-bottom: 1px solid #ccc;*/
}
.order-item {
    /*column-gap: 5px;*/
    /*margin-bottom: 1rem;*/
    /*place-items:  center;*/
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}
.order-item .order-right {
    place-items: center;
    /*background: beige;*/
    padding-left: 0 !important;
}
/*.order-item > .product-img {*/
.order-item .product-img {
    /*width: 10%;*/
    position: relative;
    border: 1px solid #ddd;
    padding: 5px;
    border-radius: 5px;
}
/*.order-item > .product-img span {*/
.order-item .product-img span {
    position: absolute;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    font-size: 12px;
    font-weight: bold;
    line-height: 20px;
    padding: 0px;
    text-align: center;
    width: 20px;
    height: 20px;
    bottom: 0px;
    right: -3px;
}

/*.order-item > .product-name {*/
.order-item .product-name {
    /*width: 50%;*/
    font-size: 12px;
    color: var(--dark-text);
    text-align: left;
}
@media(max-width: 450px) {
    .order-left {
        margin-bottom: 3px;
    }

}

/*.order-item > .product-name .details {*/
.order-item .product-name .details {
    color: var(--normal-text);
    margin-top: 5px;
    display: block;
}

/*.order-item > .product-price {*/
.order-item .product-price {
    /*width: 23%;*/
    font-size: 10px;
    text-align: left;
}

/*.order-item > .product-quantity {*/
.order-item .product-quantity {
    /*width: 10%;*/
    /*font-size: 10px;*/
    /*text-align: right;*/
}
/*.order-item > .product-quantity input{*/
.order-item .product-quantity input{
    /*max-width: 70px;*/
    padding: 5px 3px;
}
.order-item > .action {
    width: 10%;
}
.order-subtotal-container {
    font-size: 12px;
}
.order-subtotal {
    text-align: right;
    color: var(--normal-text);
}
.order-total-container {
    border-top: 1px solid #ddd;
    margin: 1rem 0;
    padding-top: .5rem;
}
.order-total {
    text-align: right;
    font-size: 12px;
    font-weight: bold;
}
.order-item-delete {
    background: none;
    cursor: pointer;
}
.order-item-button {
    padding: 5px 10px !important;
    background-color: black !important;
    width: 100% !important;
    display: block !important;
}


.btn-small svg {
    display: inline-block;
    margin: auto 0;
}
.btn-small svg path {
    fill: #fff;
}

.status-success, .status-delivered, .status-paid {
    background-color: #d4edda;
    color: #155724;
    /*border: 1px solid #c3e6cb;*/
}

.status-error, .status-failed {
    background-color: #f8d7da;
    color: #721c24;
    /*border: 1px solid #f5c6cb;*/
}

.status-warning, .status-pending  {
    background-color: #fff3cd;
    color: #856404;
    /*border: 1px solid #ffeeba;*/
}

.status-info, .status-processing, .status-shipped {
    background-color: #d1ecf1;
    color: #0c5460;
    /*border: 1px solid #bee5eb;*/
}


/* shipping */

.shipping-container {
    margin-bottom: 2rem;
    font-size: 12px;
}

.shipping-container .shipping-option-heading {
    margin-bottom: 1rem;
}
.shipping-rates p {
    font-size: 12px;
    color: var(--normal-text);
}

.shipping-rate {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.shipping-rate > div:first-child {
    display: flex;
    align-items: center;
}
.shipping-rate > div:first-child label {
    margin-left: 10px;
    cursor: pointer;
}
.shipping-rate > div:last-child {
    text-align: right;
    font-size: 12px;
}
.shipping-rate .rate-name {
    display: block;
    color: black;
    line-height: 20px;
}

.shipping-rate .rate-details {
    display: block;
    color: var(--normal-text);
}


.pickup-select {
    height: 55px;
/*    background-color: var(--primary-light);*/
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 1rem;
}
.pickup-address-selector {
    padding: 10px;
    text-align: left;
    font-size: 13px;
    background-color: #f1f1f1;
    color: var(--normal-text);
    margin-bottom: 1rem;
    border: 1px solid powderblue;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    width: 100%;
}
button.pickup-address-selected {
    background-color: dodgerblue !important;
    color: #eee;
}



/* blog post */
.create-post-container {
    background: white;
    max-width: calc(100% - 250px);
    padding: 1rem;
}
.blog-editor {
/*  border-radius: 15px;*/
    font-family: arial, sans-serif !important;
    font-weight: 500;
    line-height: 40px !important;
}
.editor-container {
    padding: 40px;
    border: 1px solid green;
}
.create-post-container-right {
    position: fixed;
    top: 60px;
    right: 0;
    width: calc(250px);
    height: calc(100% - 60px);
    overflow-y: auto;
    padding: 1rem 10px 0 10px;
    background: white;

}
.blog-featured-image {
    height: 150px;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px;
    overflow: hidden;
    text-align: center;
    line-height: 150px;
    font-size: 12px;
    background: #eee;
    cursor: pointer;
}
.blog-featured-image:hover {
    background-color: #ccc;
}
.side-item {
    margin-bottom: 1.5rem;
}

.side-item label {
    font-size: 12px;
    color: #555;
    margin-bottom: 10px;
}
.side-item input, .side-item select {
    display: block;
    padding: 5px;
    margin-bottom: 10px;
    font-size: 12px;
}
.side-item input[type="checkbox"] {
    display: inline-block; margin-right: 10px;
}
.side-item .inline-label {
    margin-bottom: 0 !important;
    font-size: 10px;
    color: #888;
}
.side-item small {
    font-weight: 500;
    font-size: 11px;
    line-height: 5px;
/*  color: dodgerblue;*/
}
.blog-excerpt {
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    font-size: 12px;
    padding: 10px;
}

@media(max-width: 450px) {
    .create-post-container {
        max-width: calc(100%);
        padding: 1rem;
    }

    .create-post-container-right {
        
        right: -240px;
/*        width: calc(250px);*/

    }
}

/* // blog post */

.scheduler-control {
    display: inline-block;
/*  margin-top: 2rem;*/
}
.scheduler {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    column-gap: 50px;
}
.scheduler-slider {
    display: flex;
    align-items: center;
    column-gap: 15px;
}
.scheduler-input {
    display: none;
}
@media(max-width: 450px) {
    .scheduler-slider {
        margin-bottom: 1rem;
    }
}
.scheduler-slider label {
    margin-bottom: 0;
}
.scheduler span {
    align-self: inherit;
    font-size: 12px;
}
.scheduler input {
    padding: 7px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
/* draft slider */

.draft-slider {
    display: flex;
    align-items: center;
    column-gap: 15px;
    margin-bottom: 1rem;
}
.draft-input {
    display: none;
}
@media(max-width: 450px) {
    .draft-slider {
        margin-bottom: 1rem;
    }
}
.draft-slider label {
    margin-bottom: 0;
}
.draft-slider span {
    align-self: inherit;
    font-size: 12px;
}



/* input container */

.input-container { 
    background-color: white;
    height: 55px;
    position: relative;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 5px;
    overflow: hidden;
}
.input-container.show-overflow {
    overflow: visible !important;
}

.input-container input, .input-container select {
    background-color: white;
    padding: 0 1rem;
    width: 100%;
    border: none;
    font-size: 13px;
    letter-spacing: 1px;
    outline: none;
    position: absolute;
    bottom: 0;
    left: 0;
    padding-bottom: 10px;
/*    border: 1px solid red;*/
}

.input-container select {
/*    border: 1px solid red;*/
/*    height: 55px;*/
}

.input-container textarea:focus, .input-container input:focus, .input-container select:focus {
/*    border: 1.5px solid var(--primary);*/
    border: none;
/*    border: 1px solid var(--secondary-tone);*/

}
.contact-form-div textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 5px 1rem;

}
.input-container:focus {
    border-color: dodgerblue;
}

.auth-container .input-container {
    border: none;
    border: 1px solid var(--secondary-tone);
    border-radius: 0;
}
.auth-container .input-container-focus {
    border-color: dodgerblue;
}

.auth-container textarea:focus, .auth-container input:focus {
    border: none;
    border-bottom: 1px solid var(--secondary-tone);
}


.input-container > label {
    color: var(--normal-text);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    z-index: 2;
    padding-left: 1rem;
    left: 0;
    right: 0;
    font-size: 14px;
}
/*input:focus ~ label, input:active ~ label{
    font-size: 10px;
    color: red;
    bottom: 40px;
}*/
.label-up {
    font-size: 12px !important;
    top: 15px !important;
    transition: 1s ease;
}
.input-container-focus {
    border-color: dodgerblue;
}
.input-icon {
    color: var(--dark);
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translate(0, -50%);
    right: 1rem;
    font-size: 22px;
    cursor: pointer;
}


/* // input container */

/* one line form */
.one-liner-form {
    max-width: 500px;
    /*background: black;*/
    margin-bottom: 1rem;
    display: flex;
    justify-content: flex-start;
}
.one-liner-form .input-field {
    width:  70%;
    /*background: red;*/
}
.one-liner-form .input-field .input-container {
    margin-bottom: 0;
}
.one-liner-form button {
    margin-left: 1rem;
}
@media(max-width: 450px) {
    .one-liner-form .input-field {

    }
    .one-liner-form .input-field {
        width: 70%;
        /*background: pink;*/
        /*border: 2px solid red;*/
    }

}



/* drop zone  */
.drop-zone-container {
    padding: 0 50px;
}
.drop-zone {
    border: 2px dashed #ccc;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}
@media(max-width: 450px) {
    .drop-zone-container {
        padding: 0 10px;
    }
    .drop-zone {
        min-height: 120px;
        padding: 5px;
    }
}
.drop-zone-container li {
    list-style-type: none;
    font-size: 13px;
    margin-bottom: 1rem;
}

.highlight {
    background-color: #f0f0f0;
    border-style: solid;
    border-color: dodgerblue;
}
.mg-upload-progress::-webkit-progress-bar {
    background-color: #eee; /* Background color of the progress bar container in WebKit browsers */
}

.mg-upload-progress::-webkit-progress-value {
    background-color: #007bff; /* Color of the progress bar in WebKit browsers */
}

.mg-upload-progress::-moz-progress-bar {
    background-color: #007bff; /* Color of the progress bar in Mozilla Firefox */
}

/* nav-tabs */

.nav-tabs {
    display: flex;
/*  justify-content: space-between;*/
    column-gap: 50px;
    margin: 0;
    padding: 0;
    margin-bottom: 20px;
}

.nav-tabs li.full {
    flex-grow: 1;
    text-align: center;
    list-style-type: none;

}
.nav-tabs li.packed {
/*  flex-grow: 1;*/
    text-align: center;
    list-style-type: none;

}

.nav-tabs li a {
    display: block;
    padding: 10px;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 2px solid transparent;
}

.nav-tabs li:first-child {
    padding-left: 0px;
    color: red;
}
.nav-tabs li a.active {
    border-bottom: 2px solid #000;
}
.tab-content .tab-pane {
    display: none;
    padding: 20px 0;
}

.tab-content .tab-pane.active {
    display: block;
}
.tab-pane#media-gallery {
    padding: 0;
}
.media-gallery-nav-tab {
    position: sticky;
    top: 0;
    z-index: 4;
}
.media-gallery-container {
    height: 400px;
    position: relative;
}
.media-gallery-container .mg-header {
    height: 45px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    width: 100%;
    padding-right: 10px;
    background: white;
    z-index: 1;
}
.mg-header input {
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
}
.mg-header select {
    background: white;
    font-size: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px;
}
.media-gallery-container .mg-body {
    height: 100%;
    width: calc(100% - 230px);
    position: relative;
    padding-right: 10px;
    overflow-y: auto;
}
.media-gallery-container .mg-footer {
    height: 50px;
    position: sticky;
    top: 450px;
/*  right: 0;*/
    width: 100%;
/*    background: black;*/
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    column-gap: 20px;
    padding-right: 10px;
}
.media-gallery-container .mg-footer button {
    background: black;
}
.media-gallery {
/*  padding-top: 50px;*/
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
/*  background-color: cyan;*/
    overflow-y: auto;
}
/*.media-gallery-item {
    width: 12%;
    border: 3px solid #ddd;
    overflow: hidden;
}*/
.media-gallery-item {
    width: 22%;
    border: 3px solid #ddd;
    overflow: hidden;
    position: relative; /* Required for absolutely positioned content */
    margin-bottom: 20px;
}

.media-gallery-item::before {
    content: "";
    display: block;
    padding-bottom: 100%; /* 1:1 aspect ratio (width:height) */
}

/* Your media content (e.g., images or videos) */
.media-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the content fits and covers the space */
}
.media-gallery-item.selected {
    border: 3px solid var(--primary) !important;
}
.media-gallery-item img {
    width: 100%;
    height: auto;
}

.media-gallery-item img {
    opacity: 0;
    transition: opacity 0.3s ease-in;
}

.media-gallery-item.loaded img {
    opacity: 1;
}

.media-gallery-item-details {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 230px;
    padding: 15px;
    background: var(--ash-background);
    overflow-y: auto;
}
.mg-peview-area {
/*  height: ;*/
    margin-bottom: 40px;
}
.mg-name-area {
    font-size: 10px;
    font-weight: 400;
    margin-bottom: 20px;
}
.mg-edit-area {

}
.mg-disable {
/*    background: rgba(170, 170, 255, 0.9);*/
    color: #ddd;
    backdrop-filter: blur(3px);
}

/* input tags */
#tags{
    background:#eee;
/*  float:left;*/
    border:1px solid #ccc;
    border-radius: 5px;
/*  padding:5px;*/
    font-family:Arial;
}
#tags > span{
    cursor:pointer;
    display:block;
    float:left;
    color:#fff;
    border-radius: 23px;
    font-size: 11px;
    background: #444;
    padding:4px;
    padding-right:25px;
    margin:3px;
}
#tags > span:hover{
    opacity:0.7;
}
#tags > span:after{
    position:absolute;
    content:"×";
/*  border:1px solid;*/
    padding:0px 3px;
    margin-left:3px;
    font-size:11px;
}
#tags > input{
    display: inline-block;
    background:#eee;
    border: none;
    margin-top: 4px;
    padding:7px;
    width: 100%;
}
#tags:focus {
    border-color: dodgerblue;
}
#tags > input:focus {
/*  outline-color: transparent;*/
    border: none !important;
}


/* ======================
    POS STYLE
========================= */
.pos-layout {

}
.pos-layout .product-container {
    width: calc(100% - 260px);
}
.pos-layout .pos-order-summary {
    width: 250px;
    position: fixed;
    top: 65px;
    right: 20px;
    height: calc(100vh - 70px);
    background: white;
}
.pos-menu {
    position: sticky;
    top: 65px;
    z-index: 3;
    display: flex;
    justify-content: flex-start;
    gap: 10px;

    background-color: white;
    border-bottom: 1px solid #ddd;
    margin-bottom: 5px;
    padding: 5px 10px;
    border-radius: 5px;
}
.pos-menu a, .pos-menu button {
    font-size: 12px;
    color: #333;
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
.pos-menu a.active, .pos-menu button.active {
    background: #333;
    color: #fff;
}
.pos-menu-search {
    padding: 10px;
    background: white;
    margin-bottom: 10px;
}
.pos-menu-search input {
    font-size: 12px;
    padding: 5px;
    border: 1px solid #ddd;
    border-radius: 5px;
    height: 30px;
}
.pos-menu-search button {
    padding: 5px;
    height: 30px;
    border-radius: 5px;
    font-size: 12px;
}
.pos-listings-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 10px;
    margin: 0 auto;
}
.pos-listing-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pos-listing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.pos-listing-card.is-hidden {
  display: none;
}

.pos-listing-card img {
    width: 100%;
    object-fit: cover;
}

.pos-listing-info {
    padding: 0px 5px 5px;
/*    background-color: beige;*/
    text-align: left;
    position: relative;
}

.pos-listing-info h3 {
    font-size: 11px;
    font-weight: 500;
    line-height: 17px;
    color: #444;
    margin-bottom: 5px;
}

.pos-listing-info p {
    font-size: 10px;
    color: #555;
    margin-bottom: 10px;
}

.pos-listing-info .price {
    font-size: 11px;
    line-height: 14px;
    color: #444;
    margin-bottom: 5px;
}

.pos-listing-info button {
    padding: 5px;
    display: block;
    width: 100%;
    background-color: #333;
    color: white;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}
.clamp-box {
    overflow: hidden;
}

.line-clamp-1, .line-clamp-2 {
    overflow: hidden;
    margin-bottom: 5px;
    color: var(--dark);
    word-spacing: 1px;
    display: -webkit-box;
    -webkit-box-orient: vertical;  
}
.line-clamp-1 {
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
    height: 35px;
}
.clamp-one-line {
/*  white-space: nowrap;*/
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
}
.clamp-two-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
    height: 35px;
}

@media(max-width: 810px) {
    .pos-listings-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media(max-width: 510px) {
    .pos-listings-grid {
        grid-template-columns: 1fr 1fr;
    }

    .pos-order-summary {

    }

}


/*.pos-order-summary {
    background: white;
    height: calc(100vh - 70px);
    position: relative;
}*/

.pos-order-summary-header {
    border-bottom: 1px solid #ddd;
    margin-bottom: 5px;
    padding: 5px 10px;
}

.pos-order-summary-header p {
    font-size: 11px;
    font-weight: 500;
}

.pos-order-summary-header p:last-child {
    text-align: right;
}

.pos-cart-item {
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #eee;
    margin: 10px;
    padding: 5px;

    display: grid;
    grid-template-columns: 1fr 3fr;
    column-gap: 10px;
    /*display: flex;
    justify-content: flex-start;
    gap: 10px;*/
}
.pos-cart-item .left {
/*    width: 70px;*/
}

.pos-cart-item img {
    border-radius: 10px;
}
.pos-cart-item .right {
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}
.pos-cart-item .info-top .name {
    font-size: 10px;
    font-weight: 500;
    line-height: 12px;

}
.pos-cart-item .info-top .others {
    font-size: 9px;
    color:;
    font-weight: 400;
    margin: 0;
    line-height: 12px;
}
.muted { 
    color:rgba(0,0,0,.78);
}
.pos-cart-item .info-bottom {
    display: grid;
    grid-template-columns: 3fr 1fr;
    align-items: baseline;
}
.pos-cart-item .info-bottom p {
    line-height: 12px;
    font-size: 10px;
    font-weight: 500;
}

.pos-cart-item .info-bottom div {
    display: flex;
    justify-content: flex-end;
}
.pos-cart-item .info-bottom div button:hover {
    cursor: pointer;
    background: transparent !important;
}

.pos-order-summary-footer {
    position: absolute;
    bottom: 0px;
    width: 100%;
    padding: 5px 10px 10px;
/*    padding: 10px;*/
    border-top: 1px solid #ddd;
}

.pos-order-summary-footer button, .cta-button {
    padding: 5px;
    display: block;
    width: 100%;
    background-color: #333;
    color: white;
    border-radius: 5px;
    font-size: 12px;
    cursor: pointer;
}
.pos-order-summary-footer label {
    font-size: 10px;
    display: block;
    margin-bottom: 3px;
}
.pos-order-summary-footer select {
    padding: 5px;
    display: block;
    width: 100%;
    color: #333;
    border: 1px solid #333;
    border-radius: 5px;
    font-size: 10px;
    margin-bottom: 5px;
}

.pos-order-summary-footer .pos-total, .pos-variations {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}
.pos-order-summary-footer .pos-total p {
    font-size: 10px;
    font-weight: 500;
    line-height: 15px;
}


.cart-item-quantity {
    display: inline;
    margin-right: 10px;
    font-size: 12px;
/*    margin-bottom: 1.5rem;*/
}
.increase-quantity-btn, .decrease-quantity-btn {
    color: var(--dark-text);
    font-weight: bold;
    background-color: white;
    border: 1px solid black;
    border-radius: 5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 15px;
    height: 15px;
}
.increase-quantity-btn {
    margin-right: 10px;
}
.increase-quantity-btn:hover, .decrease-quantity-btn:hover {
    background-color: #ddd;
}
.cart-quantity-value {
    padding: 5px;
}

/*  */

.shipping-container {
    margin-bottom: 2rem;
    font-size: 12px;
}

.shipping-container .shipping-option-heading {
    margin-bottom: 1rem;
}
.shipping-rates p {
    font-size: 12px;
    color: var(--normal-text);
}

.shipping-rate {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.shipping-rate > div:first-child {
    display: flex;
    align-items: center;
}
.shipping-rate > div:first-child label {
    margin-left: 10px;
    cursor: pointer;
}
.shipping-rate > div:last-child {
    text-align: right;
    font-size: 12px;
}
.shipping-rate .rate-name {
    display: block;
    color: black;
    line-height: 20px;
}

.shipping-rate .rate-details {
    display: block;
    color: var(--normal-text);
}


/* Keep receipt hidden during normal UI */
.pos-receipt-print {
    position: fixed;
    left: -99999px;
/*    left: 0px;*/
    top: 0;
    width: 320px; /* good for 80mm thermal */
}

/* Receipt styling */
.pos-receipt-print .receipt {
    font-family: Arial, sans-serif;
    font-size: 12px;
    line-height: 1.2;
    width: 320px;
    margin: 0 auto;
    padding: 12px;
    color: #000;
    page-break-inside: avoid;
    background: white;
}

.pos-receipt-print .store-name {
    margin: 0;
    font-size: 16px;
    text-align: center;
}

.pos-receipt-print .muted {
    opacity: 0.75;
    text-align: center;
    margin: 4px 0;
}

.pos-receipt-print .meta {
    margin-top: 8px;
    font-size: 12px;
}

.pos-receipt-print .meta .label {
    font-weight: 700;
}

.pos-receipt-print .items-head,
.pos-receipt-print .item-row {
    display: grid;
    grid-template-columns: 1fr 50px 90px;
    gap: 6px;
    align-items: center;
}

.pos-receipt-print .totals .row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 6px;
    align-items: center;
}


.pos-receipt-print .items-head {
    font-weight: 700;
    margin-top: 10px;
    padding: 6px 0;
    border-top: 1px dashed #000;
    border-bottom: 1px dashed #000;
}

.pos-receipt-print .item-row {
    padding: 6px 0;
    border-bottom: 1px dotted rgba(0,0,0,0.35);
}

.pos-receipt-print .qty {
    text-align: center;
}

.pos-receipt-print .amt {
    text-align: right;
}

.pos-receipt-print .divider {
    margin: 10px 0;
    border-top: 1px dashed #000;
}

.pos-receipt-print .totals .row {
    padding: 4px 0;
}

.pos-receipt-print .totals .grand {
    font-weight: 800;
    border-top: 1px solid #000;
    padding-top: 8px;
}

.pos-receipt-print .small {
    font-size: 11px;
}

/* PRINT ONLY: show receipt, hide everything else */
@media print {
    body * {
/*        visibility: hidden !important;*/
    }
    .page-content, .sidebar {
        display: none;
    }

    #pos-receipt-print,
    #pos-receipt-print * {
        visibility: visible !important;
    }

    #pos-receipt-print {
        position: static !important;
        width: auto !important;
        left: 0 !important;
        top: 0 !important;
    }

    @page {
        margin: 6mm;
    }
}

.flash-container {
    margin-bottom: 15px;
}

.flash {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.flash-success {
    background: #ecfdf5;
    color: #065f46;
}

.flash-error {
    background: #fef2f2;
    color: #991b1b;
}

.flash-warning {
    background: #fff7ed;
    color: #9a3412;
}