body {
    display: flex !important;
    flex-direction: column !important;
    height: 100vh !important;
    font-family: "Inter", sans-serif;
    font-optical-sizing: auto;
    /* font-weight: <weight>; */
    font-style: normal;
}

div.contentWrapper {
    background: white !important;
}

div.contentWrapper div.site {
    background: white !important;
}

.contentWrapper {
    flex-grow: 1
}

.entry-content {
    padding: 0 40px !important;
}

.sectionContent {
    padding: 20px 0 !important;

}

.alert {
    border-width: 1px !important;
    border-style: solid !important;
    border-radius: 10px !important;
    padding: 10px 0 !important;
    margin: 0 !important;
    width: 100%;
    text-align: center !important;
    font-size: 1rem;
}

.error {
    background: #ffe2e2 !important;
    color: #991919 !important;
    border-color: #991919 !important;
}

.success {
    background: #dcfce7 !important;
    color: #116932 !important;
    border-color: #116932 !important;
}

.warning {
    background: #ffedd5 !important;
    color: #92310a !important;
    border-color: #92310a !important;
}

.info {
    background: #dceafe !important;
    color: #173da6 !important;
    border-color: #173da6 !important;
}



table.noBorder {
    border: none !important;
}

table.noBorder td {
    border: none !important;
}

input[type="text"],
input[type="number"],
input[type="password"] {
    padding: 0.5rem 0.75rem !important;
    border: 1px solid lightgray !important;
    /* border-radius: 10px !important; */
    background: #fff !important;
    color: #374151 !important;
    box-shadow: 0px 0px 4px 0px #0000001f !important;
    font-size: 0.75rem !important;
    min-height: 34px;
}

.w-full {
    width: 100% !important;
}

.w-fit {
    width: fit-content !important;
}

.h-full {
    height: 100% !important;
}

.sectionTitle {
    margin-top: 10px !important;
}

.para {
    padding: 6px 0 16px !important;
}

.objectControls {
    margin-top: 20px !important;
}

table {
    margin: 0 !important;
}

.objectListingTable.data {
    margin: 0 !important;
}

/* Modal */
/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    /* Could be more or less, depending on screen size */
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-top: -10px;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.title {
    font-size: 0.75rem;
    font-weight: bold;
}

/* Buttons */
.btn-sm {
    padding: 0.25rem 0.5rem !important;
    font-size: 0.75rem !important;
}

.btn {
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05) !important;
    border-radius: 8px !important;
    color: white !important;
    padding: 0.5rem 0.75rem !important;
    align-items: center;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    border: none !important;
}

.btn-link:link {
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05) !important;
    border-radius: 8px !important;
    padding: 0.5rem 0.75rem !important;
    align-items: center;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    background: #fff !important;
    color: #7F56D9 !important;
    border: 1px solid #7F56D9 !important;
    transition: all 0.3s;
}

.btn-link:hover {
    background: #f0f0f0 !important;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05) !important;
}



button.primary {
    background: #7F56D9 !important
}

button.primary:hover {
    background: #6c4bb1 !important;
}

button.primary:focus {
    outline: none !important;
    background: #7a5ac3 !important;
}

button.primary:active {
    background: #5b3f8f !important;
}

button.primary-outline {
    background: #fff !important;
    color: #7F56D9 !important;
    border: 1px solid #7F56D9 !important;
}

button.primary-outline:hover {
    background: #f9fafb !important;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05) !important;
}


/* Secondary */
button.secondary {
    background: #f9fafb !important;
    color: #475467 !important;
    border: 1px solid lightgray !important;
}

button.secondary {
    background: #f9fafb !important;
}

button.secondary:hover {
    background: #f0f2f5 !important;
}

button.secondary:focus {
    outline: none !important;
    background: #e5e7eb !important;
}

button.secondary:active {
    background: #d1d5db !important;
}

/* disabled property styles */
button:disabled {
    cursor: not-allowed !important;
    opacity: 0.75 !important;
}

/* Buttons end */

.link-primary {
    color: #7F56D9 !important;
    font-weight: 600;
}

.link-primary:hover {
    color: #6c4bb1 !important;
}

.link-primary:link {
    text-decoration: none !important;
}

.mt-5 {
    margin-top: 1.25rem !important;
}

.mt-1 {
    margin-top: 0.25rem !important;
}

.my-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important;
}
.my-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}
.my-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}
.my-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

.mb-5 {
    margin-bottom: 1.25rem !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}


.content-card {
    /* display: flex; */
    flex-direction: column;
    background: white;
    border-radius: 10px;
    align-items: center;
    border: 1px solid lightgray;
    padding: 1rem;
    box-shadow: 0px 0px 10px 0px #0000001f;
}

.card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 3rem 0;
    background: white;
    border-radius: 10px;
    align-items: center;
    min-width: 500px;
}

.card img {
    border: 1px solid lightgray;
    border-radius: 10px;
}

.card h1 {
    color: #101828 !important;
}

.card span {
    color: #475467;
    font-size: 1rem;
}

.card form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    align-items: flex-end
}

.offside-js--init {
    /* overflow-x: visible !important; */
}

.flex-grow {
    flex-grow: 1;
}

#title-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.flex {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flex-col {
    flex-direction: column;
}

.align-items-start {
    align-items: flex-start !important;
}

.justify-between {
    justify-content: space-between;
}
.justify-center {
    justify-content: center !important;
}

.flex-start {
    justify-content: flex-start !important;
}

.flex-end {
    justify-content: flex-end !important;
}

.align-start {
    align-items: flex-start !important;
}


.AI {
    color: #16a34a !important;
}

.predicted {
    color: #3b82f6 !important;
}

.icon-sm {
    width: 1rem;
    height: 1rem;
}

.flex-row-center {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
}

.grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    grid-column-gap: 1rem !important;
    grid-row-gap: 1rem !important;
}


@media (max-width: 1024px) {
    .grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}


@media (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .grid {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}


.productItem {
    display: flex;
    flex-direction: column;
    padding: 1rem;
    background: white;
    align-items: center;
    transition: all 0.5s ease;
    border-bottom: 1px solid lightgray;
    box-shadow: 0px 0px 10px 0px #0000001f;
    border-radius: 10px;
}

.productItem:hover {
    /* extra shadow */
    box-shadow: 0px 0px 10px 0px #0000003f;
    transform: translateY(-5px);
    /* scale zoom */
    transform: scale(1.05);
}

.productItem img.constrainedImage {
    border-radius: 10px;
    max-width: 225px;
    max-height: 225px;
}

.productItem .bottom {
    display: flex;
    flex-direction: column;
    gap: 1px !important;
    width: 100%;
    justify-content: space-between;
    height: 100%;
}

.gap-25 {
    gap: 0.25rem !important;
}

.gap-0 {
    gap: 0 !important;
}

.productItem .bottom .name {
    /* font-size: 1rem; */
    font-size: 0.75rem;
    font-weight: 600;
    color: #101828;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.productItem .bottom div.viewLink {
    display: none;
}

.priceBox {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.boxLabel {
    color: #101828;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
    font-size: 0.75rem;
}

.boxPrice {
    color: #24133A;
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 20px;
}

.profit {
    color: #0388A9 !important;
}

.none {
    display: none !important;
}

.loading {
    pointer-events: none;
    display: inline-block;
    aspect-ratio: 1 / 1;
    width: 1.5rem;
    background-color: currentColor;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 stroke=%27%23000%27 viewBox=%270 0 24 24%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cstyle%3E.spinner_V8m1%7Btransform-origin:center;animation:spinner_zKoa 2s linear infinite%7D.spinner_V8m1 circle%7Bstroke-linecap:round;animation:spinner_YpZS 1.5s ease-out infinite%7D%40keyframes spinner_zKoa%7B100%25%7Btransform:rotate%28360deg%29%7D%7D%40keyframes spinner_YpZS%7B0%25%7Bstroke-dasharray:0 150;stroke-dashoffset:0%7D47.5%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-16%7D95%25%2C100%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-59%7D%7D%3C%2Fstyle%3E%3Cg class=%27spinner_V8m1%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%279.5%27 fill=%27none%27 stroke-width=%273%27%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 stroke=%27%23000%27 viewBox=%270 0 24 24%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cstyle%3E.spinner_V8m1%7Btransform-origin:center;animation:spinner_zKoa 2s linear infinite%7D.spinner_V8m1 circle%7Bstroke-linecap:round;animation:spinner_YpZS 1.5s ease-out infinite%7D%40keyframes spinner_zKoa%7B100%25%7Btransform:rotate%28360deg%29%7D%7D%40keyframes spinner_YpZS%7B0%25%7Bstroke-dasharray:0 150;stroke-dashoffset:0%7D47.5%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-16%7D95%25%2C100%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-59%7D%7D%3C%2Fstyle%3E%3Cg class=%27spinner_V8m1%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%279.5%27 fill=%27none%27 stroke-width=%273%27%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}

.loading-spinner {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 stroke=%27%23000%27 viewBox=%270 0 24 24%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cstyle%3E.spinner_V8m1%7Btransform-origin:center;animation:spinner_zKoa 2s linear infinite%7D.spinner_V8m1 circle%7Bstroke-linecap:round;animation:spinner_YpZS 1.5s ease-out infinite%7D%40keyframes spinner_zKoa%7B100%25%7Btransform:rotate%28360deg%29%7D%7D%40keyframes spinner_YpZS%7B0%25%7Bstroke-dasharray:0 150;stroke-dashoffset:0%7D47.5%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-16%7D95%25%2C100%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-59%7D%7D%3C%2Fstyle%3E%3Cg class=%27spinner_V8m1%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%279.5%27 fill=%27none%27 stroke-width=%273%27%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg width=%2724%27 height=%2724%27 stroke=%27%23000%27 viewBox=%270 0 24 24%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cstyle%3E.spinner_V8m1%7Btransform-origin:center;animation:spinner_zKoa 2s linear infinite%7D.spinner_V8m1 circle%7Bstroke-linecap:round;animation:spinner_YpZS 1.5s ease-out infinite%7D%40keyframes spinner_zKoa%7B100%25%7Btransform:rotate%28360deg%29%7D%7D%40keyframes spinner_YpZS%7B0%25%7Bstroke-dasharray:0 150;stroke-dashoffset:0%7D47.5%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-16%7D95%25%2C100%25%7Bstroke-dasharray:42 150;stroke-dashoffset:-59%7D%7D%3C%2Fstyle%3E%3Cg class=%27spinner_V8m1%27%3E%3Ccircle cx=%2712%27 cy=%2712%27 r=%279.5%27 fill=%27none%27 stroke-width=%273%27%3E%3C%2Fcircle%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}


.sectionTitle {
    /* font-size:20px; 
  font-weight:500; 
  border-top:3px solid <?=$this->darkColour?>;
  border-left:3px solid <?=$this->darkColour?>;
  border-right:3px solid <?=$this->darkColour?>; */

    /* background-color:<?=$this->darkColour?>;
  color:#FFF;
  margin-top: 50px;
  padding:8px 20px 6px;  */

    color: #24133A;
    font-weight: 600;
    /* font-size: 2rem; */
    font-size: 1.5rem;
    line-height: 38px;
}



/* Tabs */
.tab {
    overflow: hidden;
    border: 1px solid #ccc;
    background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 0.5rem 0.75rem;
    transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
    margin-bottom: 1rem;
}

.tablinks {
    border-right: 1px solid #ccc !important;
    font-size: 0.75rem;
}




.searchProductResult {
    /* background: #f0f0f0; */
    border: solid 1px lightgray;
    border-top: none;
    height: 165px;
    min-height: 165px;
}

.searchProductResult img {
    padding: 0.5rem;
    max-width: 125px;
    max-height: 125px;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px #0000001f;
}

.m-1 {
    margin: 1rem;
}

.p-1 {
    padding: 1rem;
}

.p-05 {
    padding: 1rem;
}

.pt-0 {
    padding-top: 0 !important;
}

.searchProductResult div.name {
    font-size: 1rem;
    font-weight: 600;
    color: #101828;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.rating {
    position: relative;
    font-size: 0.8em;
    padding: 3px;
    height: 1.5rem;
    background-color: #DEDEDE;
    overflow: hidden;
    text-align: center;
    border-radius: 4px;
    display: inline-block;
    border: 1px solid #000;
    width: 100%;
}

.rating .ratingBar {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 100%;
    background-color: white;
    mix-blend-mode: difference;
}

.favIcon {
    font-size: 2rem;
    cursor: pointer;
}

.favActive {
    color: #ef4444;
}

.favInactive {
    color: #9CA3AF;
}

#note {
    resize: none;
    /* box-sizing: content-box; */
}

textarea {
    padding: 0.5rem 0.75rem !important;
}


table.table {
    border-collapse: separate;
    width: 100%;
}

table.table th {
    background: #f9fafb;
    border-bottom: 1px solid lightgray;
    padding: 0.5rem 0.75rem;
    text-align: left;
}

table.table tr {
    border-bottom: 1px solid lightgray;
}

table.table td {
    padding: 0.5rem 0.75rem;
}

.right {
    text-align: right;
}

.bold {
    font-weight: 600;
}

hr.divider {
    margin: 0;
    width: 100%;
}

.input-group{
    display: flex;
    align-items: center;
    color: var(--contrast);
    background-color: var(--base-2);
    border-color: var(--base)
}

.input-group-append{
    padding: 0 0.5rem;
}




.gb-container-eae04a8a{
    padding: 40px 0 !important;
}

.gb-container-39517758{
    padding: 0 !important;
    margin-top: 0 !important;   
}

.cursor-disabled {
    cursor: not-allowed !important;
}

.v-divider{
    width: 10px;
}

.swal2-title{
    font-size: 1rem !important;
}