:root {
    /* Font family set Global */
    --font-montserrat: "Montserrat", sans-serif;
    /* Root Theme colors */
    --color-white: #ffffff;
    --color-black: #000000;
    --color-primary: #c2d500;
    --color-secondary: #313e48;
    --color-dark-secondary: #404554;
    --color-sky-blue-light: #bfd7dd; 
    --color-gray-1: #ececee;
    --color-gray-2: #c8c4cc;
    --color-danger-primary: #d2232a;
    --color-success-primary: #1d9f1e;

    --link-color: var(--color-white);
    --text-white: var(--color-white);

    /* 20% secondary overlay - #313e48 */
    --secondary-overlay: rgba(49, 62, 72, 0.2);

    /* 60% secondary overlay - #313e48 */
    --secondary-overlay-dark: rgba(49, 62, 72, 0.6);

    --btn-transition: 0.2s all ease;
}

/* PAgination */
.page-item .page-link {
    color: var(--color-dark-secondary);
}

.page-item .page-link:focus {
    outline: none;
    box-shadow: none;
}

.page-item.active .page-link {
    background-color: var(--color-dark-secondary);
    color: var(--color-white);
    border-color: var(--color-dark-secondary);
}

#alert {
    position: fixed;
    z-index: 99;
}

.force-hide {
    display: none !important;
}

/* Global Style */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-montserrat);
}

/* Utilities */
.text-white {
    color: var(--text-white);
}

.text-secondary {
    color: var(--color-secondary);
}

.text-dark-secondary {
    color: var(--color-dark-secondary);
}

.text-danger {
    color: var(--color-danger-primary) !important;
}

.text-success {
    color: var(--color-success-primary) !important;
}

.text-primary {
    color: var(--color-primary) !important;
}

.pb-6 {
    padding-bottom: 4rem;
}

.pt-6 {
    padding-top: 4rem;
}

.ps-6 {
    padding-left: 4rem;
}

.pe-6 {
    padding-right: 4rem;
}

.bg-secondary {
    background-color: var(--color-secondary) !important;
}

.bg-gray-1 {
    background-color: var(--color-gray-1) !important;
}

.bg-gray-2 {
    background-color: var(--color-gray-2) !important;
}

.bg-primary {
    background-color: var(--color-primary) !important;
}

.btn-primary {
    text-transform: uppercase;
    transition: var(--btn-transition);
    font-size: 1rem;
    height: 3.125rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--color-white);
    --bs-btn-bg: var(--color-secondary);
    --bs-btn-border-color: var(--color-secondary);
    --bs-btn-border-radius: 50px;
    --bs-btn-hover-color: var(--color-secondary);
    --bs-btn-hover-bg: var(--color-primary);
    --bs-btn-hover-border-color: var(--color-primary);
    --bs-btn-focus-shadow-rgb: transparent;
    --bs-btn-active-color: var(--bs-btn-hover-color);
    /* --bs-btn-active-bg: #{shade-color($bd-violet, 20%)};
  --bs-btn-active-border-color: #{shade-color($bd-violet, 20%)}; */
}

.btn-primary-sustain {
    text-transform: uppercase;
    transition: var(--btn-transition);
    font-size: 1rem;
    height: 3.125rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--color-secondary);
    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-border-radius: 50px;
    --bs-btn-hover-color: var(--color-white);
    --bs-btn-hover-bg: var(--color-secondary);
    --bs-btn-hover-border-color: var(--color-secondary);
    --bs-btn-focus-shadow-rgb: transparent;
    --bs-btn-active-color: var(--bs-btn-hover-color);
    /* --bs-btn-active-bg: #{shade-color($bd-violet, 20%)};
  --bs-btn-active-border-color: #{shade-color($bd-violet, 20%)}; */
}

.btn-primary-nohover {
    text-transform: uppercase;
    transition: var(--btn-transition);
    font-size: 0.9rem;
    height: 2.4rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--color-secondary);
    --bs-btn-bg: var(--color-primary);
    --bs-btn-border-color: var(--color-primary);
    --bs-btn-border-radius: 50px;
    --bs-btn-hover-color: var(--color-secondary);
    --bs-btn-hover-bg: var(--color-primary);
    --bs-btn-hover-border-color: var(--color-primary);
    --bs-btn-focus-shadow-rgb: transparent;
    --bs-btn-active-color: var(--bs-btn-hover-color);
    /* --bs-btn-active-bg: #{shade-color($bd-violet, 20%)};
  --bs-btn-active-border-color: #{shade-color($bd-violet, 20%)}; */
}

.btn-secondary {
    text-transform: uppercase;
    transition: var(--btn-transition);
    font-size: 1rem;
    height: 3.125rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--color-secondary);
    --bs-btn-bg: var(--color-white);
    --bs-btn-border-color: var(--color-white);
    --bs-btn-border-radius: 50px;
    --bs-btn-hover-color: var(--color-secondary);
    --bs-btn-hover-bg: var(--color-primary);
    --bs-btn-hover-border-color: var(--color-primary);
    --bs-btn-focus-shadow-rgb: transparent;
    --bs-btn-active-color: var(--bs-btn-hover-color);
    /* --bs-btn-active-bg: #{shade-color($bd-violet, 20%)};
  --bs-btn-active-border-color: #{shade-color($bd-violet, 20%)}; */
}

.btn-primary-outline {
    text-transform: uppercase;
    transition: var(--btn-transition);
    font-size: 1rem;
    height: 3.125rem;
    padding-left: 1.8rem;
    padding-right: 1.8rem;
    border-width: 2px;
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--color-white);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: var(--color-white);
    --bs-btn-border-radius: 50px;
    --bs-btn-hover-color: var(--color-secondary);
    --bs-btn-hover-bg: var(--color-primary);
    --bs-btn-hover-border-color: var(--color-primary);
    --bs-btn-focus-shadow-rgb: transparent;
    --bs-btn-active-color: var(--bs-btn-hover-color);
    /* --bs-btn-active-bg: #{shade-color($bd-violet, 20%)};
  --bs-btn-active-border-color: #{shade-color($bd-violet, 20%)}; */
}

.btn-secondary-outline-account {
    text-transform: uppercase;
    transition: var(--btn-transition);
    font-size: 0.9rem;
    height: 2.4rem;
    padding-left: 1.6rem;
    padding-right: 1.6rem;
    border-width: 2px;
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--color-secondary);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: var(--color-secondary);
    --bs-btn-border-radius: 50px;
    --bs-btn-hover-color: var(--color-white);
    --bs-btn-hover-bg: var(--color-secondary);
    --bs-btn-hover-border-color: var(--color-secondary);
    --bs-btn-focus-shadow-rgb: transparent;
    --bs-btn-active-color: var(--bs-btn-hover-color);
    /* --bs-btn-active-bg: #{shade-color($bd-violet, 20%)};
  --bs-btn-active-border-color: #{shade-color($bd-violet, 20%)}; */
}

.btn-secondary-outline-table-square {
    text-transform: capitalize;
    transition: var(--btn-transition);
    font-size: 0.75rem;
    padding: 2px;
    padding-left: 10px;
    padding-right: 10px;
    border-width: 2px;
    --bs-btn-font-weight: 600;
    --bs-btn-color: var(--color-secondary);
    --bs-btn-bg: transparent;
    --bs-btn-border-color: var(--color-secondary);
    --bs-btn-border-radius: 0px;
    --bs-btn-hover-color: var(--color-white);
    --bs-btn-hover-bg: var(--color-secondary);
    --bs-btn-hover-border-color: var(--color-secondary);
    --bs-btn-focus-shadow-rgb: transparent;
    --bs-btn-active-color: var(--bs-btn-hover-color);
    /* --bs-btn-active-bg: #{shade-color($bd-violet, 20%)};
  --bs-btn-active-border-color: #{shade-color($bd-violet, 20%)}; */
}

.btn:disabled, .btn.disabled {
    color: var(--color-dark-secondary);
    pointer-events: none;
    background-color: var(--color-gray-1);
    border-color: var(--color-gray-1);
    opacity: 1;
    cursor: not-allowed;
}

.btn.btn-checkout:disabled, .btn.btn-checkout.disabled {
    color: var(--color-white);
    pointer-events: none;
    background-color: var(--color-gray-2);
    border-color: var(--color-gray-2);
    opacity: 1;
    cursor: not-allowed;
}

/* Hero Section */
section.hero-section {
    max-width: 100vw;
    height: 100dvh;
}

section.about-hero-section {
    max-width: 100vw;
    height: calc(100dvh - 140px);
}

section.home-hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* About Hero section */
.about-hero {
    max-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.about-hero-overlay {
    position: absolute;
    z-index: 1;
    left: 50%;
    width: 50%;
    height: 100%;
    background-color: var(--secondary-overlay);
}

.about-hero-content-wrapper {
    z-index: 2;
    position: relative;
}

/* Header */
header.header {
    height: 140px;
    position: absolute;
    top: 0;
    z-index: 8;
}

/* Following class will be used add the top gap for the header for some pages adding this class to any section will add the additional margin as the height for the header */
.header-gap {
    margin-top: 140px;
}

/* Dark header */
header.header.shaded {
    background-color: var(--color-white);
    position: relative;
}

header.header .hamburger-wrapper {
    cursor: pointer;
}

header.header .hamburger-wrapper i {
    font-size: 1.8rem;
    cursor: pointer;
}

header.header .hamburger-wrapper i.shaded {
    display: none;
}

header.header.shaded .hamburger-wrapper i {
    display: none;
}

header.header.shaded .hamburger-wrapper i.shaded {
    display: block;
}

.header-logo {
    width: 150px;
    height: 70px;
}
header.header.shaded .header-logo img {
   filter: invert(1) contrast(0.5);
}

.header-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Normal white color link */
.link {
    font-size: 1rem;
    color: var(--link-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

/* Shaded color for nav links */
header.header.shaded .link {
    color: var(--color-secondary);
}

/* Normal After color */
.link::after {
    content: '';
    transition: var(--btn-transition);
    width: 0;
    height: 2px;
    background-color: var(--text-white);
    border-radius: 10px;
    position: absolute;
    bottom: -50%;
    left: 0;
}

/* Shaded dark color for after */
header.header.shaded .link::after {
    background-color: var(--color-secondary);
}

.link:hover {
    color: var(--link-color);
}

.link:hover::after {
    width: 100%;
}

.link.active::after {
    width: 100%;
}

.nav-page-item .item-image {
    width: 80px;
    height: 44px;
}

.nav-page-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header.header.shaded .nav-page-item .item-image img {
    filter: invert(1) contrast(0.5);
}

/* Mobile Nav */
.slide-nav-wrapper {
    width: 80vw;
    opacity: 1;
    position: fixed;
    top: 0;
    bottom: 0;
    right: -80vw;
    height: 100vh;
    background-color: var(--color-white);
    transition: var(--btn-transition);
    z-index: 10;
}

.slide-nav-wrapper .nav-item a {
    text-decoration: none;
}

.slide-nav-wrapper .close {
    color: var(--color-white);
    font-size: 1.6rem;
    transform: rotate(180deg);
    transition: var(--btn-transition);
    transition-duration: 0.6s;
    cursor: pointer;
    position: absolute;
    left: 0px;
    opacity: 0;
}

.slide-nav-wrapper.show {
    opacity: 1;
    right: 0px;
}

.slide-nav-wrapper + .slide-nav-overlay {
    width: 100vw;
    height: 100vh;
    position: fixed;
    backdrop-filter: blur(3px);
    z-index: 9;
    top: 0;
    bottom: 0;
    left: auto;
    right: -100vw;
    background-color: var(--secondary-overlay-dark);
    transition: var(--btn-transition);
}

.slide-nav-wrapper.show + .slide-nav-overlay {
    right: 0px;
}

.slide-nav-wrapper.show .close {
    left: -50px;
    opacity: 1;
    transform: rotate(0deg);
}

/* Common style */
h1 {
    font-size: 4.5rem;
    line-height: 4.75rem;
    font-weight: 700;
    letter-spacing: -4px;
    margin: 0;
    color: var(--text-white);
}

h2 {
    font-size: 3.125rem;
    line-height: 3.375rem;
    font-weight: 400;
    letter-spacing: -3px;
    margin: 0;
    color: var(--text-white);
}

h3 {
    margin: 0;
    font-size: 1.75rem;
    color: var(--text-white);
}

h4 {
    margin: 0;
    color: var(--text-white);
    font-size: 1.2rem;
    letter-spacing: -1px;
}

.underlined {
    border-bottom: 2px solid var(--color-dark-secondary);
}

.underlined-thin {
    border-bottom: 1px solid var(--color-secondary);
}

p {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--color-dark-secondary);
}

/* FOR CART ONLY */
.p {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--color-dark-secondary);
}

hr.divider {
    width: 100%;
    height: 2px;
    background-color: var(--color-secondary);
    color: var(--color-secondary);
    margin: 0;
    border-radius: 50px;
    border: none;
    opacity: 1;
}

/* labelled input group */
.labelled-input-group {
    /* max-width: 800px; */
    width: 100%;
}

.labelled-input-group.signin-width {
    max-width: 800px;
}

.labelled-input-group .label {
    font-weight: 500;
}

.labelled-input-group a {
    text-decoration: none;
}

.labelled-input-group .forgot-pass,
.labelled-input-group .need-help {
    font-weight: 500;
    font-size: 0.8rem;
    text-decoration: underline;
    text-transform: uppercase;
}

.labelled-input-group .validation-wrapper {
    height: 50px;
    width: 230px;
    margin: -2px;
    background-color: var(--color-danger-primary);
    border: 2px solid var(--color-danger-primary);
}

.labelled-input-group .validation-wrapper .validation-title {
    font-size: 0.8rem;
    line-height: 1;
    text-transform: uppercase;
}

.labelled-input-group .agree-text {
    font-size: 0.8rem;
    line-height: 1;
    font-weight: 500;
}

.labelled-input-group .validation-wrapper .validation-desc {
    line-height: 1;
    text-transform: uppercase;
}

.labelled-input-group .validation-wrapper.valid {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.labelled-input-group .input-wrapper {
    height: 50px;
    border: 2px solid var(--color-dark-secondary);
    background-color: var(--color-gray-1);
}

.labelled-input-group .input-wrapper .form-control, .labelled-input-group .input-wrapper .form-select {
    width: 100%;
    border: none;
    background: transparent;
    color: var(--color-dark-secondary);
    font-size: 1rem;
    padding: 0;
    font-weight: 500;
}

.labelled-input-group .input-wrapper .form-control:focus, .labelled-input-group .input-wrapper .form-select:focus {
    box-shadow: none;
    outline: none;
}

.labelled-input-group .input-wrapper .form-control::placeholder, .labelled-input-group .input-wrapper .form-select::placeholder {
    color: var(--color-dark-secondary);
    font-weight: 500;
}

.labelled-input-group .input-wrapper .show-hide-trigger {
    font-weight: 500;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.labelled-input-group .input-wrapper .show-hide-pass-wrapper {
    cursor: pointer;
}

.hero-content h1 {
    max-width: 950px;
}

/* Find more section */
section.find-more {
    max-width: 100vw;
    height: 100vh;
}

section.find-more .max-content {
    max-width: 22rem;
}

.find-more-bg {
    position: absolute;
    z-index: -1;
    left: 50%;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

/* Why choose section */
.choose-item-wrapper .item-image {
    width: 12rem;
    height: 6rem;
}

.choose-item-wrapper .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* Community Impact */
section.community-impact {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom;
}

.impact-wrapper .impact-image {
    width: 10rem;
    height: 8rem;
}

.impact-wrapper .impact-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.impact-wrapper .impact-title {
    font-size: 1.8rem;
    line-height: 1;
}

/* Our work section */
/* section.our-work {
    background-color: var(--color-gray-1);
} */

.work-item .item-wrapper .item-image {
    width: 12rem;
    height: 7rem;
}

.work-item .item-wrapper .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Footer - REquest Callback */
.request-callback .form-control {
    background-color: var(--color-dark-secondary);
    border: none;
    border-radius: 0;
    height: 50px;
    font-size: 1rem;
    color: var(--color-white);
}

.request-callback .form-control::placeholder {
    color: var(--color-white);
}

.request-callback .form-control:focus {
    background-color: var(--color-dark-secondary);
    outline: none;
    box-shadow: none;
    color: var(--color-white);
}

.footer-links-wrapper .footer-link {
    font-size: 0.8rem;
    color: var(--color-secondary);
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--btn-transition);
    font-weight: 500;
}

.footer-links-wrapper .footer-link:hover {
    color: var(--color-dark-secondary);
    transform: translateX(4px);
}

.footer-payments-wrapper .payment-item .item-image {
    width: 4.5rem;
    height: 2.3rem;
}

.footer-payments-wrapper .payment-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-social-wrapper .item-title {
    font-size: 0.8rem;
}

.footer-social-icons-wrapper .social-item .item-image {
    width: 26px;
    height: 26px;
}

.footer-social-icons-wrapper .social-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-logo {
    width: 130px;
    height: 70px;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* About us page */
.manage-image-wrapper {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.about-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
}

.about-grid .item-title {
    font-size: 1.2rem;
}


/* Accounts page */
.acc-nav-wrapper .acc-nav-item {
    text-decoration: none;
}

.acc-nav-wrapper .acc-nav-item {
    transition: var(--btn-transition);
    position: relative;
    display: flex;
    justify-content: start;
    align-items: start;
}

.acc-nav-wrapper .acc-nav-item p {
    line-height: 1.3;
    font-size: 0.9rem;
}

/* .acc-nav-wrapper .acc-nav-item:hover {
    transform: translateX(4px);
} */

.acc-nav-wrapper .acc-nav-item::before {
    content: '';
    transition: var(--btn-transition);
    position: absolute;
    top: 3px;
    left: -28px;
    background-color: var(--color-secondary);
    height: 12px;
    width: 0;
}

.acc-nav-wrapper .acc-nav-item:hover::before {
    width: 21px;
}

.acc-nav-wrapper .acc-nav-item.active::before {
    width: 21px;
}

.acc-content-wrapper {
    width: 100%;
    max-width: 950px;
}

.acc-address-list-item {
    position: relative;
}

.acc-address-list-item:hover .acc-address-hover-actions-wrapper {
    display: flex;
}

.acc-address-hover-actions-wrapper {
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 10px;
    right: 10px;
    gap: 0.5rem;
}

.acc-address-hover-actions-wrapper a {
    width: 30px;
    height: 30px;
    padding: 0.8rem;
    border-radius: 5px;
    transition: var(--btn-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.acc-address-hover-actions-wrapper a i {
    font-size: 0.8rem;
    color: var(--color-white);
}

.acc-address-hover-actions-wrapper a.edit {
    background-color: var(--color-dark-secondary);
}

.acc-address-hover-actions-wrapper a.delete {
    background-color: var(--color-danger-primary);
}

.acc-address-hover-actions-wrapper a.edit:hover {
    background-color: var(--color-primary);
}


/* Table Css - Accounts */
/* Head */
.acc-table-wrapper table thead tr th:first-child {
    text-align: left;
}

.acc-table-wrapper table thead tr th:last-child {
    text-align: right;
}

.acc-table-wrapper table thead tr th {
    text-align: center;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--color-secondary);
}

/* .acc-table-wrapper table thead tr th::before {
    content: attr(data-test);
} */

.acc-table-wrapper table thead tr {
    height: 40px;
    border-bottom: 2px solid var(--color-secondary);
}

/* Body */
.acc-table-wrapper table tbody tr td:first-child {
    text-align: left;
}

.acc-table-wrapper table tbody tr td:last-child {
    text-align: right;
}

.acc-table-wrapper table tbody tr td {
    text-align: center;
    font-size: 0.9rem;
    height: 40px;
}

.acc-input-field-wrapper {
    width: 100%;
    border: 2px solid var(--color-dark-secondary);
    background: var(--color-gray-1);
    color: var(--color-dark-secondary);
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
    border-radius: 0;
}

.acc-input-field-wrapper .form-control, .acc-input-field-wrapper .form-select {
    width: 100%;
    height: 100%;
    border: none;
    background: transparent;
    color: var(--color-dark-secondary);
    font-size: 1rem;
    font-weight: 500;
    border-radius: 0;
    padding: 0;
}

/* Labelled input with no border */
.acc-input-field-wrapper.labelled {
    border: none;
}

.acc-input-field-wrapper .form-control:focus, .acc-input-field-wrapper .form-select:focus {
    box-shadow: none;
    outline: none;
}

.acc-input-field-wrapper .form-control::placeholder, .acc-input-field-wrapper .form-select::placeholder {
    color: var(--color-dark-secondary);
    font-weight: 500;
}

.label-required {
    position: relative;
    width: fit-content;
}

.label-required::after {
    content: '*';
    position: absolute;
    font-size: 1.2rem;
    top: -4px;
    right: -12px;
    color: var(--color-danger-primary);
}

.acc-choice-input-wrapper {
    position: relative;
}

.acc-choice-input-wrapper input[type="checkbox"] {
    border-radius: 100%;
    width: 25px;
    height: 25px;
    margin: 0;
    box-shadow: none;
    border-color: var(--color-secondary);
    cursor: pointer;
}

.acc-choice-input-wrapper input[type="radio"] {
    border-radius: 100%;
    width: 25px;
    height: 25px;
    margin: 0;
    box-shadow: none;
    border-color: var(--color-secondary);
}

.acc-choice-input-wrapper input[type="checkbox"]:checked {
    background-color: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.acc-choice-input-wrapper input[type="radio"]:checked {
    background-color: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.acc-choice-input-wrapper .checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.acc-choice-input-wrapper input[type="checkbox"]:checked~.checkmark:after {
    display: block;
}

/* Show the radio when checked */
.acc-choice-input-wrapper input[type="radio"]:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.acc-choice-input-wrapper .checkmark:after {
    left: 10px;
    top: 6px;
    width: 6px;
    height: 12px;
    border: solid var(--color-secondary);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Shop Page */
.school-hero {
    position: relative;
}

.school-logo {
    width: 10rem;
    height: 6rem;
}

.school-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.school-hero .school-hero-right {
    position: absolute;
    width: 50%;
    height: 100%;
    left: 50%;
    top: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.product-item-wrapper a {
    text-decoration: none;
}

.product-item-wrapper .product-image-wrapper {
    width: 100%;
    height: 19rem;
}

.product-item-wrapper .product-image-wrapper .add-basket-btn {
    position: absolute;
    top: 60%;
    left: 0;
    right: 0;
    transform: translateY(5px);
    opacity: 0;
    transition: var(--btn-transition);
}

.product-item-wrapper .product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-item-wrapper .product-image-wrapper img.hover {
    display: none;
}

.product-item-wrapper .product-image-wrapper:hover img.active {
    display: none;
}

.product-item-wrapper .product-image-wrapper:hover img.hover {
    display: block;
}

.product-item-wrapper .product-image-wrapper:hover .add-basket-btn {
    opacity: 1;
    transform: translateY(-5px);
}

.product-item-wrapper .product-tag-wrapper {
    border-bottom: 2px solid var(--color-dark-secondary);
}

.product-item-wrapper .product-tag-wrapper .product-tag p,
.product-item-wrapper .title,
.product-item-wrapper .desc,
.product-item-wrapper .rec {
    font-size: 0.9rem;
}

.ad-item-wrapper {
    background-size: cover;
    height: 100%;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.ad-item-wrapper .ad-fade {
    position: absolute;
    height: 100px;
    bottom: 0;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 2;
    background: linear-gradient(transparent 0%, var(--color-dark-secondary) 100%);
}

.ad-item-wrapper .ad-action {
    position: absolute;
    bottom: 50px;
    top: auto;
    left: 30px;
    right: 30px;
    z-index: 3;
}

/* Product details page */
.validation-wrapper {
    display: none;
}

.validation-wrapper.show {
    display: block;
}

.validation-wrapper .alert:last-child {
    margin-bottom: 0 !important;
}

.selection-section .stock {
    font-size: 0.9rem;
    text-transform: uppercase;
}

.selection-wrapper {
    height: 9rem;
}

.selection-wrapper .qty-btn {
    height: 30px;
    width: 30px;
    cursor: pointer;
}

.size-dropdown-trigger.show .size-dropdown-wrapper {
    display: flex;
}

.size-dropdown-wrapper {
    display: none;
    position: absolute;
    bottom: auto;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-white);
    /* border: 2px solid var(--color-dark-secondary);
    border-top: none; */
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.size-dropdown-wrapper .size-dropdown-item:hover {
    background-color: var(--color-gray-1);
}

.size-dropdown-wrapper .size-dropdown-item.selected {
    background-color: var(--color-gray-1);
}

.color-selector {
    width: 50px;
    height: 50px;
    border: 2px solid transparent;
    /* transition: var(--btn-transition); */
}

.color-selector.selected {
    width: 48px;
    height: 48px;
    border: 2px solid var(--color-primary);
}

.color-selector img {
    width: 100%;
    height: 100%;
}

.collapse-item-wrapper .collapse-item {
    border-top: 2px solid var(--color-secondary);
}

.collapse-item-wrapper .collapse-item:last-child {
    border-bottom: 2px solid var(--color-secondary);
}

.collapse-item-wrapper .collapse-item .title-wrapper {
    cursor: pointer;
}

.collapse-item-wrapper .collapse-item.visible .title-wrapper .minus {
    display: flex;
}

.collapse-item-wrapper .collapse-item .title-wrapper .minus {
    display: none;
}

.collapse-item-wrapper .collapse-item.visible .title-wrapper .plus {
    display: none;
}

.collapse-item-wrapper .collapse-item .title-wrapper .plus {
    display: flex;
}

.collapse-item-wrapper .collapse-item .content-wrapper {
    display: none;
}

.collapse-item-wrapper .collapse-item.visible .content-wrapper {
    display: flex;
}

.recycle-wrapper {
    position: absolute;
    top: 20px;
    right: 20px;
}

.recycled-bottle-wrapper {
    position: relative;
    width: 4.8rem;
    z-index: 1;
}

.recycled-bottle-wrapper:hover .bottle-text {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.recycled-bottle-wrapper .bottle-text {
    width: 160%;
    margin-left: -30%;
    background-color: #555;
    color: #fff;
    text-align: center;
    border-radius: 16px;
    padding: 24px 8px;
    position: absolute;
    z-index: 1;
    border: 4px solid #C5D92C;
    font-size: 10px;
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transition: var(--btn-transition);
}

.recycled-bottle-wrapper .bottle-text::before,
.recycled-bottle-wrapper .bottle-text::after {
    content: "";
    position: absolute;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    top: -25px;
    left: 50%;
    margin-left: -25px;
    border-bottom: 20px solid #555;
    margin-top: 5px;
    z-index: 1;
}

.recycled-bottle-wrapper .bottle-text::before {
    border-bottom: 20px solid #C5D92C;
    margin-top: 4px;
}

.recycled-bottle-wrapper .bottle-text::after {
    border-bottom: 20px solid #555;
    margin-top: 10px;
    z-index: 1;
}

.tip-image {
    width: 60px;
    height: 60px;
}

.tip-image img {
    width: 100%;
}

/* Delivery Page */
.summary-wrapper .sm {
    font-size: 0.85rem;
    font-weight: 500;
}

.summary-items-wrapper .summary-item .item-image {
    height: 100px;
    border: 2px solid var(--color-dark-secondary);
    border-bottom: 0;
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.summary-items-wrapper .summary-item .item-image img {
    height: 100%;
    object-fit: contain;
}

/* .summary-items-wrapper .summary-item .title {
    display: -webkit-box;
    -webkit-line-clamp: 3;
} */

.summary-items-wrapper .summary-item .summary-qty-wrapper p {
    border: 2px solid var(--color-dark-secondary);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-bottom: none;
    user-select: none;
}

.summary-items-wrapper .summary-item .summary-qty-wrapper p:first-child {
    border-right: none;
}

.summary-items-wrapper .summary-item .summary-qty-wrapper p:last-child {
    border-left: none;
}

.summary-items-wrapper .summary-item .summary-qty-wrapper .qty-btn {
    cursor: pointer;
    font-size: 1.2rem;
}

.deliver-select-item .item-image {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deliver-select-item .item-image img {
    height: 100%;
    object-fit: contain;
}

.deliver-select-item label {
    cursor: pointer;
    border: 2px solid var(--color-dark-secondary);
    background-color: var(--color-gray-1);
}

.deliver-select-item input {
    display: none;
}

.deliver-select-item input+label .item-image img.unchecked {
    display: block;
}

.deliver-select-item input+label .item-image img.checked {
    display: none;
}

.deliver-select-item input:checked+label .item-image img.unchecked {
    display: none;
}

.deliver-select-item input:checked+label .item-image img.checked {
    display: block;
}

.deliver-select-item input:checked+label {
    background-color: var(--color-dark-secondary);
}

.deliver-select-item input:checked+label p {
    color: var(--color-white);
}

.recurr-choice-input-wrapper {
    position: relative;
}

.recurr-choice-input-wrapper input[type="checkbox"] {
    border-radius: 0;
    background-color: var(--color-gray-1);
    width: 25px;
    height: 25px;
    margin: 0;
    box-shadow: none;
    border-color: var(--color-secondary);
}

.recurr-choice-input-wrapper input[type="checkbox"]:checked {
    background-color: var(--color-secondary);
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.recurr-choice-input-wrapper .checkmark:after {
    content: '';
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.recurr-choice-input-wrapper input[type="checkbox"]:checked~.checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.recurr-choice-input-wrapper .checkmark:after {
    left: 10px;
    top: 6px;
    width: 6px;
    height: 12px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.address-choice-input-wrapper {
    position: relative;
}

.address-choice-input-wrapper input[type="checkbox"] {
    border-radius: 100%;
    background-color: var(--color-white);
    width: 25px;
    height: 25px;
    margin: 0;
    box-shadow: none;
    border-color: var(--color-secondary);
}

.address-choice-input-wrapper input[type="radio"] {
    border-radius: 100%;
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--color-white);
    width: 25px;
    height: 25px;
    margin: 0;
    box-shadow: none;
    border-color: var(--color-secondary);
}

.address-choice-input-wrapper input[type="checkbox"]:checked {
    background-color: var(--color-secondary);
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.address-choice-input-wrapper input[type="radio"]:checked {
    background-color: var(--color-secondary);
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}

.address-choice-input-wrapper .checkmark::after {
    content: '';
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.address-choice-input-wrapper input[type="checkbox"]:checked~.checkmark::after {
    display: block;
}

/* Show the checkmark when checked */
.address-choice-input-wrapper input[type="radio"]:checked~.checkmark::after {
    display: none;
}

/* Style the checkmark/indicator */
.address-choice-input-wrapper .checkmark::after {
    left: 10px;
    top: 6px;
    width: 6px;
    height: 12px;
    border: solid var(--color-white);
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.deliver-address-wrapper {
    border: 2px solid var(--color-dark-secondary);
}

.payment-method-item .item-image {
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-method-item .item-image img {
    height: 100%;
    object-fit: contain;
}

.payment-method-item label {
    cursor: pointer;
    border: 1px solid var(--color-dark-secondary);
    background-color: var(--color-white);
}

.payment-method-item input {
    display: none;
}

.payment-method-item input:checked+label {
    border-width: 3px;
    border-color: var(--color-dark-secondary);
}

/* Contact us page */
.contact-overlay-section {
    width: 100%;
    max-width: 400px;
}

.contact-overlay-section a {
    text-decoration: none;
}

.map-overlay-wrapper {
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 25px;
    background-size: cover;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.map-overlay-wrapper i {
    color: var(--text-white);
    font-size: 1.6rem;
}

.map-overlay-wrapper .bg-overlay {
    background-color: var(--secondary-overlay-dark);
}

.full-map-wrapper {
    height: 450px;
}

.basket-item-wrapper {
    height: 120px;
}

.basket-item-wrapper .item-image {
    height: 100%;
    background-color: var(--text-white);
}
.basket-item-wrapper .item-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.basket-qty-wrapper p {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-dark-secondary);
    user-select: none;
}

/* JUST FOR CART */
.basket-qty-wrapper .p {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-dark-secondary);
    user-select: none;
}

.basket-item-wrapper .qty-btn {
    font-size: 1.3rem;
    cursor: pointer;
}

/* FOR CART ONLY */
.basket-item-wrapper .qty-count {
    text-align: center;
    pointer-events: none;
    user-select: none;
}

.basket-qty-wrapper p:first-child {
    border-right: none;
}
.basket-qty-wrapper p:last-child {
    border-left: none;
}
/* JUST FOR CART */
.basket-qty-wrapper .p:first-child {
    border-right: none;
}
/* JUST FOR CART */
.basket-qty-wrapper .p:last-child {
    border-left: none;
}

/* Sustainability Page */
.section-border {
    border-radius: 30px;
}

.solution-section-wrapper {
    background-color: var(--color-sky-blue-light);
    background-image: url('/image/zeco/images/ECO-BOTTLE-WHITE.svg');
    background-size: 70%;
    background-position: top -100px right -100px;
    background-repeat: no-repeat;
    background-blend-mode: soft-light;
}

.solution-item {
    background-color: var(--color-white);
    border-radius: 20px;
    overflow: hidden;
    background-image: url('/image/zeco/images/eco-facts/ARROW-RECYCLE-GRN-50TINT.svg');
    background-position: left 60px top 0px;
    background-size: 30%;
    background-repeat: no-repeat;
    min-height: 450px;
}

.solution-item p {
    font-size: 11px;
    font-weight: 500;
}

.solution-item .mini {
    font-size: 8px;
}

.solution-item .item-header {
    min-height: 110px;
}

.solution-item .item-image-wrapper {
    background-size: 160%;
    background-position: top 0 left 0;
    background-repeat: no-repeat;
}

.solution-item .icon-image-wrapper .item-image {
    height: 60px;
}

.solution-item .icon-image-wrapper .item-image img {
    height: 100%;
    object-fit: contain;
}

.solution-item .icon-image-wrapper p {
    font-size: 11px;
    text-transform: uppercase;
    font-weight: normal;
}

.pp-sections-wrapper {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

/* .pp-sections-wrapper.packing {
    background-image: url('/assets/images/eco-facts/LABELS.jpg');
} */

.pp-sections-wrapper.product {
    /* background-image: url('/assets/images/eco-facts/OUR-FACTORIES-2.jpg'); */
    background-position: top;
}

.pp-sections-wrapper .gap-image {
    width: 100%;
    opacity: 0;
    visibility: hidden;
}

.reducing-item .item-image {
    height: 120px;
}

.reducing-item .item-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.sustain-ad {
    overflow: hidden;
}

.sustain-ad img {
    width: 100%;
    object-fit: cover;
}

.initiative-item .item-image {
    height: 120px;
}

.initiative-item .item-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.initiative-item p {
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.initiative-item p:last-child {
    border-bottom: none;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Media Queries */
@media screen and (max-width: 992px) {

    /* Header */
    /* header.header .nav-link {
        display: none !important;
    } */

    /* Common */
    h1 {
        font-size: 3.125rem;
        line-height: 3.25rem;
    }

    h2 {
        font-size: 2.75rem;
        line-height: 2.875rem;
    }

    h3 {
        font-size: 1.3rem;
    }

    h4 {
        font-size: 1.1rem;
    }

    /* Why choose section */
    .choose-item-wrapper .item-image {
        width: 10rem;
        height: 5rem;
    }

    /* Product details page */
    .recycle-wrapper {
        top: 10px;
        right: 10px;
    }

    .recycled-bottle-wrapper {
        width: 3rem;
    }

    .recycled-bottle-wrapper .bottle-text {
        width: 220%;
        margin-left: -60%;
    }

    /* Contact Us Page */
    .contact-overlay-section {
        max-width: 100%;
    }
}

@media screen and (max-width: 768px) {

    /* Utilities */
    .ps-6 {
        /* Go with the bootstrap */
        padding-left: calc(var(--bs-gutter-x) * .5);
    }

    .pe-6 {
        /* Go with the bootstrap */
        padding-right: calc(var(--bs-gutter-x) * .5);
    }

    .pt-6 {
        padding-top: 3rem;
    }

    .pb-6 {
        padding-bottom: 3rem;
    }

    /* Find out more section */
    .find-more-bg {
        width: 100%;
        left: 0;
        filter: brightness(0.5);
    }

    section.find-more .max-content {
        max-width: 100%;
    }

    section.find-more .max-content p {
        color: var(--text-white);
    }

    /* about us */
    .about-hero-overlay {
        width: 100%;
        left: 0;
    }

    .about-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Accounts Page */
    .acc-table-wrapper table thead {
        display: none;
    }

    .acc-table-wrapper table tbody tr {
        display: grid;
        width: 100%;
        grid-template-columns: repeat(3, 1fr);
        border-bottom: 1px solid var(--color-dark-secondary);
        grid-gap: 5px;
        padding-bottom: 10px;
        padding-top: 10px;
    }

    .acc-table-wrapper table tbody tr td {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        position: relative;
    }

    .acc-table-wrapper table tbody tr td::before {
        content: attr(data-label);
        font-size: 0.7rem;
        color: var(--color-secondary);
        font-weight: 600;
        position: absolute;
        top: 3px;
        left: 0;
        text-transform: capitalize;
    }

    .acc-table-wrapper table tbody tr td:last-child::before {
        content: '';
    }

    .acc-address-hover-actions-wrapper {
        display: flex;
    }

    /* Shop page */
    .ad-item-wrapper {
        height: 500px;
    }
}

@media screen and (max-width: 576px) {

    /* Labelled input wrapper  */
    .labelled-input-group .input-wrapper {
        width: 100%;
    }

    /* Labelled input validation wrapper  */
    .labelled-input-group .validation-wrapper {
        width: 100%;
    }

    /* About Us */
    .about-grid-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    /* Full with btn on mobile screen */
    .sm-full {
        width: 100% !important;
    }

    /* Product details page */
    .recycle-wrapper {
        top: 10px;
        right: 35px;
    }
}

/* For ultra small screeens like Iphone SE <= 375px */
@media screen and (max-width: 375px) {
    .footer-payments-wrapper .payment-item .item-image {
        max-width: 4.2rem;
    }
}