@font-face {
  font-family: "roboto-400";
  src: url("../fonts/Roboto/Roboto-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "roboto-500";
  src: url("../fonts/Roboto/Roboto-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "roboto-600";
  src: url("../fonts/Roboto/Roboto-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "barlow-300";
  src: url("../fonts/Barlow/Barlow-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "barlow-400";
  src: url("../fonts/Barlow/Barlow-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "barlow-500";
  src: url("../fonts/Barlow/Barlow-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "barlow-600";
  src: url("../fonts/Barlow/Barlow-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "barlow-700";
  src: url("../fonts/Barlow/Barlow-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "good-boy";
  src: url("../fonts/GoodBoySans/GoodBoySans-Regular.otf") format("opentype");
  font-style: normal;
}

:root {
  --imb-primary: #004F48;
  --imb-primary-light: #EEF4E9;
  --imb-secondary: #E1504D;
  --imb-light: #FFFBF5;
  --imb-dark: #161616;
  --imb-green-dark: #115440;
  --imb-green-light: #23A880;
  --imb-green-thin: #91D3BF;
  --imb-neutral: #6E6E6E;
  --imb-neutral-dark: #373737;
  --imb-blue-light: #065E78;
  --imb-Dark-blue: #213A8F;


  --imb-navbar-height: 60px;
  --imb-forms-height: calc(100vh - calc(var(--imb-navbar-height) + 121px));
  --imb-forms-button-height: 156px;

  --font-roboto-400: "roboto-400", sans-serif;
  --font-roboto-500: "roboto-500", sans-serif;
  --font-roboto-600: "roboto-600", sans-serif;
  --font-barlow-300: "barlow-300", sans-serif;
  --font-barlow-400: "barlow-400", sans-serif;
  --font-barlow-500: "barlow-500", sans-serif;
  --font-barlow-600: "barlow-600", sans-serif;
  --font-barlow-700: "barlow-700", sans-serif;
  --font-good-boy: "good-boy", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--imb-light);
  font-family: var(--font-barlow-400);
  margin: 0;
}

.container{
  max-width: 1440px;
  padding: 0 64px;
}

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

.green-gradient{
  background: linear-gradient(0deg, #EEF4E9 0%, #EEF4E9 100%), #E9F6F2;
}

.subscription-section{
  border-bottom: 1px solid var(--imb-green-thin);
}

.font-good-boy {
  font-family: var(--font-good-boy);
}
.font-barlow-300 {
  font-family: var(--font-barlow-300);
}
.font-barlow-400 {
  font-family: var(--font-barlow-400);
}
.font-barlow-500 {
  font-family: var(--font-barlow-500);
}
.font-barlow-600 {
  font-family: var(--font-barlow-600);
}
.font-barlow-700 {
  font-family: var(--font-barlow-700);
}
.font-roboto-400 {
  font-family: var(--font-roboto-400);
}
.font-roboto-500 {
  font-family: var(--font-roboto-500);
}
.font-roboto-600 {
  font-family: var(--font-roboto-600);
}

.font-xl {
  font-size: 18px;
}
.font-sm {
  font-size: 14px;
}
.font-xs {
  font-size: 12px;
}

.pink-500{
  color:#C0175D;
}

.title-40{
  font-family: var(--font-good-boy);
  font-size: 40px;
  color: var(--imb-green-dark);
}

.title-24{
  font-family: var(--font-good-boy);
  font-size: 24px;
  color: var(--imb-green-dark);
}

.gap-1{
  gap:4px;
}

.gap-2{
  gap:8px;
}

.gap-3{
  gap:12px;
}

.gap-4{
  gap:16px;
}

.gap-5{
  gap:20px;
}

.gap-6{
  gap:24px;
}

.gap-7{
  gap:28px;
}

.gap-8{
  gap:32px;
}


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

label {
  color: white;

  & span {
    color: red;
  }
}

.custom-checkbox {
  border: 1px solid var(--imb-green-dark);
  accent-color: var(--imb-green-light);
  border-radius: 5px;
  margin-right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 8px !important;
  cursor: pointer;
}

.custom-checkbox .checkmark{
  border-radius: 8px !important;
}
input:not([type="checkbox"]) {
  height: 55px;
  padding: 18px 16px;
  box-sizing: border-box;
  outline: none;
  font-family: var(--font-barlow-400);
  color: #757575;
  margin-top: 10px;
  border: none;
  border-radius: 4px;
}
select {
  border-radius: 4px;
  border: 1px solid var(--imb-green-dark);
  color: var(--imb-green-dark);
  opacity: 1;
  background: #FFF;
  box-shadow: 0px 4px 4px 0px rgba(7, 34, 26, 0.08);
  padding: 8px 10px;
  width: 100%;
  outline: none;
  -moz-appearance: none; /* Firefox */
  -webkit-appearance: none; /* Safari and Chrome */
  appearance: none;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M16.59 8.29492L12 12.8749L7.41 8.29492L6 9.70492L12 15.7049L18 9.70492L16.59 8.29492Z" fill="%23115440"/></svg>'), transparent !important;
  background-repeat: no-repeat !important;
  background-position-x: calc(100% - 4px) !important;
  background-position-y: 6px !important;
}
a.imb-button-primary,
a.imb-button-primary-outline,
button {
  background: none;
  outline: none;
  border: none;
  font-family: var(--font-good-boy);
  font-size: 17px;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  white-space: nowrap;
}

.desktop-header {
  display: block !important;
  position: sticky;
  top: -42px;
  z-index: 1020;
}
.desktop-flex {
  display: flex !important;
}
.mobile {
  display: none !important;
}

.imb-button {
  background: url(../images/bg-btn-white.svg) no-repeat center center !important;
  background-size: 100% !important;
}
.imb-button-primary {
  background: url(../images/bg-btn-primary.svg) no-repeat center center !important;
  background-size: 100% !important;
  height: 48px;
  min-width: 164px;
  padding: 0 10px;
}
.imb-button-primary.imb-button-primary-long {
  background: url(../images/bg-btn-primary-long.svg) no-repeat center center !important;
}
.imb-button-primary-outline {
  background: url(../images/bg-btn-primary-outline.svg) no-repeat center center !important;
  background-size: 100% !important;
  color: var(--imb-secondary) !important;
  height: 52px;
  padding: 0 16px;
}
.imb-button-primary-outline.imb-button-primary-outline-long {
  background: url(../images/bg-btn-primary-outline-long.svg) no-repeat center center !important;
}

/** short / simple nav css **/
.imb-header{
  display: block !important;
  position: sticky;
  top: 0px;
  z-index: 1020;
}

.lang-selector-nav{
  max-width: unset;
}

/** short / simple nav css ends**/
.imb-header {
  & .imb-header-info {
    background: var(--imb-green-thin);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 6px 0;

    & p {
      font-size: 20px;
      color: var(--imb-green-dark);
      margin: 0;

      & strong {
        font-family: var(--font-barlow-700);
      }
    }

    button {
      width: fit-content;
      height: 26px;
    }
  }

  & .imb-header-menu {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 64px;
    background: var(--imb-primary);
    /* flex: 1; */
    height: 67px;
    /* max-width: 1440px; */
    overflow: visible;
    box-sizing: border-box;
    
    & .imb-header-menu__left,
    & .imb-header-menu__right {
      padding-left: 0;
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
      margin: 0;

      & .brand {
        margin-right: 32px;

        & img {
          height: 80px;
          margin-bottom: -22px;
        }
      }

      & li a {
        font-family: var(--font-barlow-700);
        text-decoration: none;
        color: #fff;
      }
    }

    & .imb-header-menu__left {
      & li {
        position: relative;

        a {
          display: flex;
          align-items: center;
          gap: 4px;
          font-size: 18px;
  
          & img {
            transform: translateY(2px);
          }
        }
      }

      & .imb-header-menu__dropdown {
        position: absolute;
        /* opacity: 0; */
        display: none;
        top: 16px;
        transition: all 0.5s ease-in-out;
        list-style: none;
        background: #fff;
        box-shadow: 0px 4px 4px 0px rgba(7, 34, 26, 0.08);
        border-radius: 6px;
        padding: 16px;

        & li {
          &:not(:first-child) {
            margin-top: 16px;
          }
          & a {
            white-space: nowrap;
            font-family: var(--font-barlow-600);
            color: var(--imb-green-dark);
          }
        }
      }
      & .imb-header-menu__dropdown.show {
        top: 32px;
        /* opacity: 1; */
        display: block;
      }
    }

    & .imb-header-menu__right {
      gap: 16px;

      & li {
        position: relative;
      }

      & .imb-lang-trigger {
        background: #fff;
        border-radius: 6px;
        height: 32px;
        color: var(--imb-green-dark);
        font-family: var(--font-barlow-600);
        font-size: 14px;
        text-transform: uppercase;
        display: flex;
        align-items: center;
        gap: 8px;
        white-space: nowrap;
        width: 100%;
        padding: 0 8px;

        & img:first-child {
          height: 20px;
        }
        & img:last-child {
          height: 28px;
        }
        & span {
          display: inline-block;
          width: 80px;
          text-align: left;
        }
      }
      & .imb-lang-dropdown {
        opacity: 0;
        pointer-events: none;

        transition: all 0.5s ease-in-out;
        position: absolute;
        top: 16px;
        padding: 10px;
        background: white;
        border-radius: 6px;
        z-index: 1;
        box-shadow: 0px 4px 4px 0px rgba(7, 34, 26, 0.08);
        width: 100%;
        box-sizing: border-box;

        & li {
          display: flex;
          align-items: center;
          gap: 8px;
          color: var(--imb-green-dark);
          font-family: var(--font-barlow-600);
          font-size: 14px;
          text-transform: uppercase;

          &:not(:first-child) {
            margin-top: 10px;
          }

          & img {
            height: 20px;
          }
          & img:last-child {
            height: 32px;
            opacity: 0;
          }

          & span {
            display: inline-block;
            width: 100%;
          }
        }

        & li.selected {
          font-family: var(--font-barlow-700);

          & img:last-child {
            opacity: 1;
          }
        }
      }
      & .imb-lang-dropdown.show {
        opacity: 1;
        top: 36px;
      }

      & li:has(.imb-lang-dropdown.show) {
        & .imb-lang-trigger img:last-child {
          transform: rotate(180deg);
        }
      }

      & .cart {
        position: relative;

        & .cart-count {
          background: var(--imb-green-light);
          height: 18px;
          width: 18px;
          font-size: 11px;
          display: flex;
          align-items: center;
          justify-content: center;
          position: absolute;
          top: -6px;
          right: -6px;
          border-radius: 100%;
        }
      }
    }
  }
}

.imb-header-menu__left li a:hover {
 color: var(--imb-green-light) !important;
}

.imb-header-menu__right li a:hover {
  color: var(--imb-green-light) !important;
 }

.imb-page-nav {
  padding: 40px 0px 24px 0px;
  /* border-bottom: 1px solid var(--imb-green-thin); */

  & .back {
    font-family: var(--font-good-boy);
    text-decoration: underline;
    color: var(--imb-secondary);
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 4px;
  }

  & h1 {
    font-family: var(--font-good-boy);
    font-size: 40px;
    color: var(--imb-green-dark);
    margin-top: 16px;
    margin-bottom: 0;
  }

  & > div {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: space-between;
    align-items: flex-end;

    & form {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      align-items: center;
      gap: 40px;

      & > div {
        display: flex;
        align-items: center;
        gap: 16px;
      }
      
      & label {
        white-space: nowrap;
        font-family: var(--font-barlow-700);
        color: var(--imb-primary);
      }
    }
  }
}

/* .imb-header-menu-main{
  background: var(--imb-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
} */

.imb-subs-empty {
  padding: 40px 0px;
  color: var(--imb-green-dark);
  text-align: center;

  & h4 {
    font-family: var(--font-good-boy);
    font-size: 40px;
    margin-top: 0;
    margin-bottom: 18px;
  }

  & p {
    font-size: 20px;
    margin: 0;
  }
}

.imb-vet-cta {
  border-radius: 24px;
  border: 1px solid var(--imb-green-light);
  background: var(--imb-primary-light);
  box-shadow: 0px 4px 4px 0px rgba(7, 34, 26, 0.08);
  margin: 0 0px 104px 0px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 337px auto;

  & > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  & > div {
    padding: 40px;

    & .imb-vet-cta__header {
      display: flex;
      align-items: center;
      font-family: var(--font-good-boy);

      & img {
        width: 127px;
        margin-right: -20px;
        margin-left: -16px;
      }

      & p {
        border-radius: 4px;
        background: var(--imb-green-dark);
        padding: 4px 8px;
        width: fit-content;
        font-size: 18px;
        color: #fff;
        margin: 0;
        position: relative;

        &::before {
          content: "";
          position: absolute;
          display: inline-block;
          width: 16px;
          height: 8px;
          bottom: -8px;
          left: 4px;
          background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="13" height="8" viewBox="0 0 13 8" fill="none"><path d="M13 0H3.71698C3.71698 3.07342 2.37557 4.90353 0.86114 6.05226C0.015801 6.69347 0.275303 7.8216 1.32139 7.64427C8.18414 6.4809 12.4741 2.70865 13 0Z" fill="%23115440"/></svg>');
          background-repeat: no-repeat;
        }
      }

      & h4 {
        color: var(--imb-green-dark);
        font-size: 48px;
        margin-top: 16px;
        margin-bottom: 0;
      }
    }

    & > p {
      color: var(--imb-green-dark);
      font-family: var(--font-barlow-500);
      font-size: 18px;
      margin-top: 8px;
      margin-bottom: 24px;
    }

    & > div:last-child {
      display: flex;
      gap: 8px;
      justify-content: flex-start;
  
      & button {
        width: fit-content;
        padding: 0 16px;
      }

      & a {
        width: fit-content;
        padding: 0 16px;
      }
    }
  }
}

.imb-supplements {
  background: linear-gradient(0deg, var(--imb-primary-light) 0%, var(--imb-primary-light) 100%), #E9F6F2;
  padding: 80px 0px;

  & > h4 {
    font-family: var(--font-good-boy);
    font-size: 40px;
    color: var(--imb-green-dark);
    text-align: center;
    margin-top: 0;
    margin-bottom: 28px;
  }
  
  & > p {
    text-align: center;
    font-family: var(--font-barlow-600);
    font-size: 24px;
    margin: 0;
  }

  & .imb-supplements-specs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 26px;
    margin-bottom: 16px;
    list-style: none;

    & li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-barlow-500);
      color: var(--imb-green-dark);
      padding: 10px;

      & img {
        width: 32px;
      }
    }
  }

  & .imb-supplements-products {
    padding: 48px 0;
    margin: 16px 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 56px;

    & .imb-supplements-products__card {
      display: flex;
      flex-direction: column;
      gap: 16px;
      align-items: center;

      & h4 {
        font-family: var(--font-good-boy);
        font-size: 28px;
        margin: 0;
      }

      & p {
        color: rgba(0, 79, 72, 0.56);
        font-family: var(--font-barlow-700);
        font-size: 22px;
        margin: 0;
      }

      & img {
        height: 252px;
        width: 100%;
        object-fit: contain;
      }
    }
  }
}

.imb-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: 40px;
  padding: 32px 24px;
  background: #fff;
  border-radius: 16px;

  & > div {
    text-align: center;

    & h4 {
      font-family: var(--font-good-boy);
      font-size: 40px;
      color: var(--imb-green-dark);
      margin-top: 0;
      margin-bottom: 16px;
      width: 100%;

      & strong {
        color: var(--imb-green-light);
      }
    }

    & img {
      width: 100%;
      height: 277px;
      margin: 0 auto;
    }

    & a {
      margin: 0 auto;
    }
  }

  & ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;

    & li {
      display: flex;
      align-items: center;
      font-size: 18px;
      gap: 8px;

      & img {
        height: 24px;
      }
    }

    & li:first-child {
      margin-bottom: 40px;

      & h4 {
        font-size: 48px;
        font-family: var(--font-good-boy);
        color: #871E40;
        margin-top: 24px;
        margin-bottom: 40px;
      }
      & img {
        height: 108px !important;
      }
    }
  }

  & ul:nth-child(2) {
    padding-left: 72px;
  }
}

footer{
  background: var(--imb-primary);
}

.imb-footer {
  max-width: 1440px;
  /* background: var(--imb-primary); */
  /* padding: 20px 64px 45px 64px; */
  padding: 20px 64px 20px 64px;

  & .imb-footer__top {
    border-bottom: 2px solid var(--imb-green-light);
    padding-bottom: 28px;
    display: flex;
    justify-content: space-between;

    & h4 {
      font-family: var(--font-good-boy);
      font-size: 20px;
      color: #fff;
      margin-top: 0;
      margin-bottom: 10px;
    }

    & .imb-footer__top-left {
      & .regist-form {
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: flex-end;
        gap: 16px;
        
        & button {
          width: 216px;
          height: 55px;
          padding: 0 16px;
        }
      }

      & .consent {
        display: flex;
        align-self: center;
        gap: 8px;
        margin: 24px 0;
      }

      & p {
        font-family: var(--font-barlow-300);
        color: #fff;
        font-weight: 300;
      }
    }

    & .imb-footer__top-right {
      padding-top: 16px;
      padding-right: 132px;

      & img {
        height: 80px;
      }
    }
  }

  & .imb-footer__bottom {
    /* margin-top: 28px; */

    & > div:first-child {
      display: flex;
      justify-content: space-between;

      & .imb-footer__bottom-left {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 40px;

        & .imb-footer__bottom-left-menus {
          list-style: none;
          padding-left: 0;

          & li {
            &:not(:first-child) {
              margin-top: 10px;
            }

            * {
              color: #fff;
              text-decoration: none;
            }

            & h4 {
              font-family: var(--font-good-boy);
              font-size: 18px;
              margin: 0;
            }
          }
        }
      }

      & .imb-footer__bottom-right {
        padding-right: 150px;

        & h4 {
          font-family: var(--font-good-boy);
          font-size: 18px;
          margin-top: 0;
          margin-bottom: 10px;
          color: #fff;

          &:not(:first-child) {
            margin-top: 20px;
          }
        }

        & > img {
          width: 175px;
        }

        & .social-links {
          display: flex;
          align-items: center;
          gap: 16px;

          & img {
            width: 48px;
            height: 48px;
            object-fit: cover;
          }
        }
      }
    }

    & .imb-footer__bottom-copy {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 14px;
      /* margin-top: 25px; */

      & * {
        color: #fff;
        margin: 0;
      }
    }
  }
}

/** new language selector in nav **/

.custom-select-wrapper {
  width: 220px;
}

.custom-select-toggle {
  width: 100%;
  background-color: #FFF;
  color: var(--imb-green-dark);
  font-family: var(--font-barlow-700);
  font-size: 14px;
  text-transform: uppercase;
  padding: 3px 10px;
  box-shadow: none !important;
  outline:  none !important;
  border-radius: 6px;
  font-weight: 500;
}

.lang-check{
 width: 30px;
}

.custom-select-menu {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: 0px;
  padding: 0 !important;
}

.custom-select-menu .dropdown-item:hover{
  background: transparent;
  color: var(--imb-green-dark);

}

.custom-select-menu .dropdown-item {
  padding: 6px 10px 8px 10px !important;
  background: #FFF !important;
  font-size: 16px;
  font-weight: 400;
  height:auto;
  line-height:16px;
  font-family: var(--font-barlow-400);
  border-bottom: 1px solid #cdcdcd;
  min-height: 38px;
  max-height: 38px;
}

.dropdown-item {
  padding: 0 !important;
}

.flag-icon {
  width: 24px;
  height: 16px;
}

.checkmark {
  color: var(--imb-green-dark);
  font-family: var(--font-barlow-600);
  font-size: 14px;
  text-transform: uppercase;
}

.dropdown-item.active,
.dropdown-item:active {
  color: inherit;
  padding: 6px 10px 8px 10px !important;
  line-height:16px;
}


/** ends **/

/** New subscriber page css **/
.product-box-div{
  border: 1px solid var(--imb-green-thin);
  border-radius: 16px;
  margin-top: 24px;
  margin-bottom: 24px;
}

.bottom-box-product{
  padding: 24px;
}

.bottom-box-product .product-details{
  display: flex;
  gap:24px;
  flex-wrap: wrap;
  row-gap: 8px;
}


.product-details .line-item-form{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.product-details .line-item-form p{
  display: flex;
  gap: 4px;
  /* flex: 1; */
}

.single-item-strip-right-inner{
  display: flex; 
  gap: 16px;
}

.top-strip-right .single-item-strip-right .status-text{
  color: var(--imb-green-dark);
  font-family: var(--font-good-boy);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; 
}

.top-strip-right .single-item-strip-right p{
  color: var(--imb-green-dark);
  font-family: var(--font-good-boy);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; 
}

.top-strip-right .single-item-strip-right span{
  color: var(--imb-green-dark);
  font-family: var(--font-good-boy);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  margin: 0;
  padding: 0;
}
.top-strip-right .single-item-strip-right span.status-active{
  border-radius: 100px;
  background: var(--Light-green-300, #91D3BF);
  color: var(--imb-green-dark);
  padding: 8px 12px;
}

.top-strip-right .single-item-strip-right span.status-pause{
  border-radius: 100px;
  background: #F0A7A6;
  color: #702827;
  padding: 4px 12px;
}

.stript-border-verticle{
  display: block;
}

.top-strip-right .single-item-strip-right a{
  color: var(--imb-secondary);
  text-decoration: underline;
  font-family: var(--font-good-boy);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; 
 }

 .info-icon::after {
  content: "i";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 16px;
    font-weight: bold;
    color: #2E2E2E;
    background-color: transparent; /* Tailwind blue-500 */
    border-radius: 50%;
    border: 1px solid #2e2e2e; /* Tailwind blue-600 */
    /* margin-bottom: 3px; */
    cursor: pointer;
    margin-left: 4px;
    font-family: var(--font-roboto-400);
 }

.top-strip-right .single-item-strip-right p a{
  color: var(--imb-secondary);
  text-decoration: underline;
  gap: 8px;
}

/* .status-active {
  color: #2b5c4d;
  font-weight: bold;
} */

.order-box {
  background: transparent;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 12px;
  gap: 10px;
}

.order-box.status-active-box{
  background-color: var(--imb-primary-light);
}

.order-box.status-pause-box{
  background-color: #FCEDED;
}

.order-box .product-img {
  width: 80px;
  height: auto;
}

.top-strip {
  border-bottom: 2px solid #eee;
  padding-bottom: 12px;
  margin-bottom: 20px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  row-gap: 8px;
}

.top-strip-left{
/* min-width: 200px; */
flex-grow: 1;
flex-shrink: 0;
}

.top-strip-left h3{
  margin: 0;
  font-family: var(--font-good-boy);
  font-size: 32px;
  color: var(--imb-green-dark);
  margin-bottom: 0;
}

.top-strip-right{
  display: flex;
  gap: 24px;
  align-items: center;
  column-gap: 24px;
  flex-wrap: wrap;
  row-gap: 8px;
}

.top-strip-right .single-item-strip-right{
  display: flex;
}

.top-strip-right .single-item-strip-right p{
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.order-box h3{
    font-family: var(--font-good-boy);
    font-size: 24px;
    color: var(--imb-green-dark);
}
.order-box .product-details p{
  color: var(--imb-green-dark);
  font-family: var(--font-good-boy);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height:20px;
  margin: 0;
  display: flex;
  gap: 4px;
}

.order-box .product-details p span{
  color: var(--imb-green-dark);
  font-family: var(--font-barlow-500);
  /* margin-top: 8px; */
  padding-left: 6px;
}

.order-box .imb-button-primary-outline-medium{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    color: #e0514c;
    font-weight: bold;
    border: none;
    cursor: pointer;
    text-transform: uppercase;
    background-image: url('/assets/images/medium-btn-svg.svg'); 
    background-repeat: no-repeat;
    background-size: 100% 100%;
    font-family: var(--font-good-boy);
    text-decoration: none;
}

.imb-button-primary-outline-medium, .imb-button-primary-outline{
  transition: all 0.3s;
}

.imb-button-primary-outline-medium:hover, .imb-button-primary-outline:hover{
  transform: translateY(-6px);
}

.imb-button-primary{
  transition: all 0.3s;
}

.imb-button-primary:hover{
  transform: translateY(-6px);
}

/* .order-box .imb-button-primary-outline1 img {
  width: 20px;
  fill: #e0514c;
} */

/** order cancellation questionaire nested checkbox**/

.nested-checkbox .form-group{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nested-checkbox .custom-radio-label, .nested-checkbox .custom-checkbox-label{
  color: var(--imb-green-dark);
    font-family: var(--font-barlow-500);
    font-size: 18px; 
}

.nested-checkbox input:not([type="checkbox"]){
  margin-top: 0;
}

.custom-radio-label,
.custom-checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.custom-radio-label input,
.custom-checkbox-label input {
  margin-right: 0.6rem;
  transform: scale(1.2);
}

.nested-options {
  padding-left: 2rem;
  margin-top: -0.5rem;
  margin-bottom: 0;
}

.custom-radio-wrapper {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
  user-select: none;
  display: inline-block;
  margin-bottom: 10px;
  color: var(--imb-green-dark);
  font-family: var(--font-barlow-500);
  font-size: 18px;
}

.custom-radio-wrapper input[type="radio"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.custom-radio-checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 24px;
  width: 24px;
  background-color: #fff;
  border: 2px solid #2d6b57;
  border-radius: 50%;
  transition: background-color 0.3s, border-color 0.3s;
}

.custom-radio-wrapper input:checked ~ .custom-radio-checkmark {
  background-color: #d7f3e3; /* light green background */
  border-color: #2d6b57;
}

.custom-radio-checkmark::after {
  content: "";
  position: absolute;
  display: none;
}

.custom-radio-wrapper input:checked ~ .custom-radio-checkmark::after {
  display: block;
}

/* Tick symbol */
.custom-radio-wrapper .custom-radio-checkmark::after {
  left: 8px;
  top: 3px;
  width: 7px;
  height: 12px;
  border: solid var(--imb-green-dark);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg);
}

.nested-options .custom-checkbox{
  width: 16px;
  height: 16px;
}

.imb-button-primary-outline.imb-button-primary-cancel{
  background: url(../images/cancel-subscription.svg) no-repeat center center !important;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  color: #e0514c;
  font-weight: bold;
  border: none;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  font-family: var(--font-good-boy);
  text-decoration: none;
}







/* .order-box .imb-button-primary-outline1 img{
 width: 24px;
} */

.bottom-total-div p{
  color: var(--imb-neutral);
  font-family: var(--font-good-boy);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 162.5% */
}

.bottom-total-div p span{
  font-family: var(--font-barlow-500);
}

.order-footer {
  border: 2px dashed #213A8F;
  padding: 24px 32px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #E7F8FE;
}

.order-footer img {
  width: 115px;
  height: auto;
}

.order-footer-text h3{
  color: var(--imb-Dark-blue);
  font-family: var(--font-good-boy);
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 40px;
  margin: 0;
}
.order-footer-text p{
  color: #909DC7;
  font-family: var(--font-good-boy);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; 
  margin: 0;
}

.subscriber-modal .modal-content{
  background: #FFFBF5;
  box-shadow: 0px 25px 25px 0px rgba(0, 0, 0, 0.15);
  border-radius: 16px;
  border: none;
  outline: none;
}

.subscriber-modal  .modal-title{
  margin: 0;
  font-family: var(--font-good-boy);
  font-size: 32px;
  color: var(--imb-green-dark);
  margin-bottom: 0;
}

.frequencyModal .schedule-inner-div,
.changesubscriptionstatus .schedule-inner-div,
.changeordermodal .schedule-inner-div{
  position: relative;
  padding: 11px 15px 4px 16px;
  border-bottom: solid 1px var(--imb-green-light);
}

.frequencyModal .abs-radio{
  position: absolute;
  right: 52px;
  top: 16px;
}

.frequencyModal .schedule-inner-div .form-check-input,
.changesubscriptionstatus .schedule-inner-div .form-check-input,
.changeordermodal .schedule-inner-div .form-check-input{
  position: absolute;
  right: 16px;
}

.changesubscriptionstatus .abs-radio{
  position: absolute;
  right: 52px;
  top: 16px;
}

.frequencyModal .schedule-inner-div span,
.changesubscriptionstatus .schedule-inner-div span,
.changeordermodal .schedule-inner-div span{
  color: var(--imb-green-dark);
  font-family: var(--font-barlow-500);
  font-size: 18px;
}

.changeordermodal  .quantity-selector-div{
  border-bottom: solid 1px var(--imb-green-light);
}

.changeordermodal  .quantity-selector-div p{
  color: var(--imb-green-dark);
  font-family: var(--font-barlow-700);
  font-size: 18px;
  margin: 0;
}

.changeordermodal  .quantity-selector-div #quantityInput{
  margin: 0;
  background: #FFF;
  color: var(--imb-green-dark);
  font-size: 20px;
}

.changeordermodal  .quantity-selector-div .input-group{
  border-radius: 4px;
  border: 1px solid var(--imb-green-dark);
  background: #FFF;
  color: var(--imb-green-dark);
  font-family: var(--font-barlow-500);
}

.changeordermodal p{
  color: var(--imb-green-dark);
  font-family: var(--font-barlow-700);
  font-size: 18px;
  margin: 0;
}

.changeordermodal  .quantity-selector-div .increment-decrement-button{
  color: var(--imb-green-dark);
  min-width: 32px;
  font-family: var(--font-barlow-500);
  font-size: 20px;
}

.changeordermodal  .quantity-selector-div .form-control:focus{
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
  margin: 0;
}

.changeordermodal .quantity-selector-div input:not([type="checkbox"]) {
  height: 44px;
}

.subscriber-modal .grey-link{
  color: var(--imb-neutral);
  font-family: var(--font-good-boy);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-decoration: underline;
}

.quitchangesubscriptionstatus p{
  color: var(--imb-green-dark);
  font-family: var(--font-barlow-500);
  font-size: 20px;
}

.beforeyougo .before-you-go-label{
  position: relative;
  padding: 16px;
}
.beforeyougo .before-you-go-label span{
  color: var(--imb-green-dark);
  font-family: var(--font-barlow-500);
  font-size: 18px;
  margin-left: 48px;
}

.beforeyougo .abs-radio {
  position: absolute;
  left: -16px;
  top: 4px;
}

.beforeyougo .modal-title{
  text-align: center !important;
}

#other-textarea{
  padding: 0 34px;
  display: none;
}

/**new subscirber css ends **/


/** modals level **/
.removeforsure.fade .level-2{
  position: fixed;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1050;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.beforeyougo.fade .level-3{
  position: fixed;
  width: 100vw; height: 100vh;
  background-color: rgba(0, 0, 0, 0.5); 
  z-index: 1060;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}


/**modal levels ends  **/

/** My subscription questionaire **/
.main-div-page p{
  color: var(--imb-green-dark);
  font-family: var(--font-barlow-500);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 160% */
}

.question-buttons{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;

}

.question-buttons a{
  border-radius: 8px;
  border: 1px solid var(--imb-green-light);
  background: #FFF;
  color: var(--imb-green-dark);
  text-align: center;
  font-family: var(--font-good-boy);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  padding: 24px;
  max-width: 320px;
  min-height:120px;
  display: flex;
  align-items: center;
  transition: all ease-in-out 0.3s;
}

.question-buttons a:hover{
  background: var(--imb-primary-light);
  text-decoration: none;
}

.here-to-help{
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-bottom: 32px;
}

.here-to-help h4{
  font-family: var(--font-good-boy);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  color: var(--imb-green-dark);
  margin: 0;
}

.here-to-help p{
  color: var(--imb-green-dark);
  font-family: var(--font-barlow-500);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

/** Date pciker calendar css **/
.calendar {
  text-align: center;
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.calendar-days, .calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
}

.calendar-days div {
  color: #6E6E6E;
  font-family: var(--font-barlow-500);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 175% */
}

.calendar-dates div {
  padding: 16px 1px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--imb-green-dark);
  font-family: var(--font-barlow-500);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px; 
}

.calendar-dates div:hover {
  background-color: #E9F6F2;
  color: var(--imb-green-dark);
}

.calendar-dates .selected {
  background-color: #23A880;
  color: #FFF;
}

.modal-content {
  border-radius: 15px;
}

.modal-footer .btn {
  border-radius: 10px;
}

.month-display {
  font-family: var(--font-good-boy);
  font-size: 24px;
  color: var(--imb-green-dark);
}

.arrow {
  cursor: pointer;
  font-size: 1.5rem;
  user-select: none;
}

.dates-bottom{
  border-top: 1px solid #F0F0F0;
  border-bottom: 1px solid #F0F0F0;
  padding: 12px 0;
  margin-top: 10px;

}

.dates-bottom a{
  color: var(--imb-green-dark);
  text-align: center;
  font-family: var(--font-barlow-500);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px; /* 160% */
  margin: 0;
}

.dates-bottom a:hover{
  text-decoration: none;
  opacity: 0.8;
}

.today-date{
  border: 1px solid #999;
  border-radius: 4px;
  padding: 2px;
  color: #333;
}

.pre-schedule-date-cal{
  background: #E9F6F2 !important;
  color: var(--imb-green-dark) !important;
}

/** date picker calendar css ends **/

/**login screen css **/

.login-wrapper {
  /* min-height: 90vh; */
  padding-top: 90px;
  padding-bottom: 40px;
  flex-direction: column;
  gap: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-wrapper .login-anim{
  min-width: 500px;
}

.login-wrapper h1{
  font-family: var(--font-good-boy);
  font-size: 55px;
  color: var(--imb-green-dark);
  margin-bottom: 0;
}

.toggle-password{
  position: absolute; top: 50px; right: 15px; cursor: pointer;
}

.login-box .eye-icon{
  width: 20px;
}

.login-box {
  width: 100%;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.login-wrapper label{
  font-family: var(--font-barlow-600);
  color: var(--imb-primary);
  margin: 0;

}

.login-box .input-field{
  height: 50px;
  border-radius: 5px !important;
  color: #004F48;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #004F48;
  padding: 10px 15px 10px 15px !important;
  font-family: var(--font-barlow-400);
  font-weight: 400;
  font-size: 16px;
  width: 100%;
}

.login-box button {
  width: 100%;
  padding: 10px;
  background: #2271b1;
  border: none;
  color: white;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
}

.login-box .imb-button-primary{
  width: max-content;
  display: block;
  margin-left: auto;
  margin-right: auto;
  background-size: 100% !important;
  height: 48px;
  width: 164px;
}

.login-box button:hover {
  background: #165a91;
}

.login-box .new-reg{
  margin-top: -20px;
}

/* .login-box .lost-pass{
    color: #C0175D !important;
} */

/** loader css **/
.imb-loader {
  width: 100%;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  /* top: 60px; */
  background: rgba(0, 79, 72, 0.90);
  z-index: 9999999999999;
  height: 100vh;
  /* height: calc(100vh - 60px); */
  font-family: 'Good Boy', sans-serif; 
  font-size: 28px;
  color: #ffffff;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  display: none;
}

.imb-loader img {
  width: 232px;
  height: 232px;
}

.imb-loader.show {
  display: flex;
}

body.no-scroll {
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}
.disabled-date {
  pointer-events: none;
  opacity: 0.4;
  background-color: #f5f5f5;
  cursor: not-allowed;
}
#updateOrderModal .abs-radio {
    top: 8px !important;
}


.calendar-dates .disabled {
  color: #ccc;
  pointer-events: none;
  opacity: 0.5;
}

#updateOrderModal.changeordermodal .schedule-inner-div {
    padding: 8px 16px 8px 16px !important;
    margin: 0;
}

/** New add new PLP page **/

.imb-page-nav {
  & .add-new-plp-new{
  display: flex;
  align-items: center;
}
}

.add-new-plp-new-inside{
  margin-top: 16px;
  display: flex;
  align-items: center;
}

.add-new-plp-new-inside span{
  font-family: var(--font-barlow-700);
  color: var(--imb-primary);
  margin-right: 20px;
}

.add-new-plp-new-inside p{
  display: inline;
  padding: 8px 48px 8px 12px;
  background: #F0F0F0;
  border-radius: 24px;
  color:  #B7B7B7;
  font-family:var(--font-barlow-500);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; 
  margin: 0;
  position: relative;
}

.add-new-plp-new-inside p:after {
  content: ''; 
  position: absolute;
  top: 42%;
  right: 16px;
  transform: translateY(-50%) rotate(45deg); 
  width: 8px;
  height: 8px;
  border-right: 2px solid #B7B7B7;
  border-bottom: 2px solid #B7B7B7;
  pointer-events: none; 
}

.food-section-pdp{
  background: #FFF;
}

.sticky-nav-pdp {
  display: block !important;
  position: sticky;
  top: 67px;
  padding-top: 24px;
  padding-bottom: 24px;
  z-index: 999;
  background: #FFF;
}

.sticky-nav{
  display: flex;
  gap: 4px;
  /* flex-wrap: nowrap;
  overflow-x: scroll; */
}

.category-btn {
  border: 1px solid var(--imb-green-dark);
  color: var(--imb-green-dark);
  background: #FFFBF5;
  border-radius: 30px;
  margin-right: 10px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  padding: 8px 15px 8px 12px;
  align-items: center;
  max-width: max-content;
  font-family: var(--font-barlow-700);
  color: var(--imb-primary);
  margin-right: 14px;
  gap: 6px;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
}

.category-btn svg {
  /* filter: invert(82%) sepia(71%) saturate(600%) hue-rotate(100deg) brightness(95%) contrast(95%); */
  fill: currentColor !important;
  transition: fill 0.3s ease, transform 0.3s ease;
}

.category-btn:hover {
  filter: invert(0);
  color: #004c3f;
  text-decoration: none;
  background: #23A880;
  color: #FFF;
}

.category-btn:hover svg {
  transform: rotate(10deg);
  fill: currentColor; 
  filter: brightness(2000%);
}

.category-btn.active {
  background-color: var(--imb-green-dark);
  color: #FFFBF5;
}

.category-btn.active svg {
  filter: brightness(2000%);
}

.product-card {
  background-color: #E9F6F2;
  border-radius: 24px;
  padding: 24px 24px;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.opt-nd-quantity{
  gap: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.product-card .input-group {
  border-radius: 4px;
  border: 1px solid var(--imb-green-dark);
  background: #FFF;
  color: var(--imb-green-dark);
  font-family: var(--font-barlow-500);
  max-width: 90px;
  display: flex;
  flex-wrap: nowrap;
}

.product-card .increment-decrement-button {
  color: var(--imb-green-dark);
  min-width: 32px;
  font-family: var(--font-barlow-500);
  font-size: 20px;
}

.product-card .quantityInput {
  margin: 0;
  background: #FFF;
  color: var(--imb-green-dark);
  font-size: 20px;
  padding: 2px 4px;
  max-height: 38px;
}

.product-card img {
  max-width: 118px;
  object-fit: contain;
  margin-bottom: 0.5rem;
}

.product-card h6{
  color: #07221A;
  font-family: var(--font-good-boy);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}

.product-card  p{
  font-family: var(--font-good-boy);
    font-size: 24px;
    color: var(--imb-green-dark);
    text-align: left;
}

.product-card select, .product-card option {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.product-card .imb-button-primary.imb-button-primary-medium{
  background: url(../images/red-btn-medium.svg) no-repeat center center !important;
  width: 100%;
}

/** login screen css ends **/

@media screen and (max-width: 1024px) {
  .container{
    max-width: 1440px;
    padding: 0 20px;
  }
  .desktop,
  .desktop-flex {
    display: none !important;
  }
  .mobile {
    display: block !important;
  }

  .imb-header {
    & .imb-header-info {
      padding: 8px;

      & p {
        font-size: 16px;
      }

      button {
        white-space: nowrap;
      }
    }
  }

  .imb-page-nav {
    padding: 32px 0px;

    & .back {
      font-size: 16px;
    }

    & > div {
      display: block;

      & h1 {
        margin: 16px 0;
        font-size: 32px;
      }

      & form {
        gap: 16px;

        & > div {
          display: block;

          & label {
            display: block;
            margin-right: 0;
            margin-bottom: 8px;
          }

          & select {
            opacity: 1;
          }
        }
      }
    }
  }

  .imb-subs-empty,
  .imb-supplements {
    padding: 32px 0px;

    & h4 {
      font-size: 32px;
    }
    & p {
      font-size: 18px;
    }
  }

  .imb-supplements {
    & .imb-supplements-specs {
      padding: 0;

      & li {
        display: block;
        text-align: center;

        & img {
          display: block;
          margin: 0 auto 8px auto;
        }
      }
    }

    & .imb-supplements-products {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 64px 32px;

      & .imb-supplements-products__card {
        & h4 {
          font-size: 24px;
        }
        & p {
          font-size: 18px;
        }
      }
    }

    & .imb-benefits {
      padding: 32px 16px;
      display: block;

      & > div {
        & h4 {
          font-size: 32px;
        }
        & img {
          height: 200px;
        }
      }

      & ul {
        padding: 0;

        &:last-child {
          margin-top: 64px;

          & li h4 {
            margin-bottom: 0;
          }
        }
      }
    }
  }

  .imb-vet-cta {
    margin: 0 0px 64px 0px;
    display: block;

    & > div {
      padding: 16px;

      & .imb-vet-cta__header {
        & img {
          width: 96px;
          height: auto;
        }
        & p {
          font-size: 14px;
        }
        & h4 {
          font-size: 28px;
        }
      }

      & > p {
        font-size: 16px;
      }

      & > div:last-child {
        display: block !important;

        & button {
          font-size: 15px;
          width: 100%;

          &:last-child {
            margin-top: 8px;
          }
        }
      }
    }
  }

  .imb-footer {
    padding: 16px 16px;

    & .imb-footer__top {
      display: flex;
      flex-direction: column-reverse;
      border-bottom: 1px solid var(--imb-green-light);

      & .imb-footer__top-right {
        padding: 0;
        text-align: center;
        margin-bottom: 48px;
      }
      & .imb-footer__top-left {
        & .regist-form button {
          display: none;
        }

        & .consent {
          margin: 8px 0;
        }

        & button {
          width: 50%;
          height: 48px;
        }
      }
    }

    & .imb-footer__bottom {
      & > div:first-child {
        display: block;

        & .imb-footer__bottom-left {
          grid-template-columns: repeat(2, minmax(0, 1fr));
          gap: 16px;
        }

        & .imb-footer__bottom-right {
          padding: 0;
          text-align: center;
        }

        & .imb-footer__bottom-left {
          & .imb-footer__bottom-left-menus:has(img) {
            & li {
              display: flex;
              gap: 10px;

              & img {
                width: 32px;
                height: 32px;
                object-fit: cover;
              }
            }
          }
        }
      }

      & .imb-footer__bottom-copy {
        display: block;
        text-align: center;
        font-family: var(--font-barlow-300);

        & > a {
          display: inline-block;
          margin-top: 24px;
        }
      }
    }
  }
}

.imb-header-info-mob{
  display: none;
}

.mob-header{
  display: none;
}
#mobileDrawer{
  display: none;
}

@media only screen and (max-width: 1024px) and (min-width: 768px) {
.sticky-nav-pdp {
  margin-top: 16px;
  padding-top: 16px;
  padding-bottom: 16px;

}
.product-card {
    padding: 12px 12px;
    border-radius: 16px;
}

.product-card img {
  max-width: 96px;
}
.product-card h6 {
  font-size: 18px;
  line-height: 22px;
}
}

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

  .imb-header {
    & .imb-header-menu {
        padding: 20px 20px;
      }
    }

    .imb-page-nav {
      & > div {
          & h1 {
              width: 40%;
            }
          }
        }

        .imb-page-nav {
          & > div {
              display: flex !important;
          }
        }

        .imb-page-nav {
          & > div {
              & form {
                  width: 60%;
              }
            }
          }

  .top-strip {
    flex-direction: column; 
    align-items: flex-start;
  }

  .top-strip-right .single-item-strip-right p, .top-strip-right .single-item-strip-right span{
    white-space: nowrap;
}

.single-item-strip-right-inner {
  flex-wrap: wrap;
}

}

@media (max-width: 767px) {
/** Mobile navigation **/
/* #mobileDrawer {
  display: block;
} */

.desktop-header{
  display: none !important;
}

/** short / simple nav css **/

.imb-header .go-back{
  display: none !important;
}

.custom-select-wrapper {
  width: 180px;
}

.imb-header-menu {
  padding: 24px 10px !important;
}

.imb-header-menu__right a{
  display: none;
}

.lang-selector-nav{
  max-width: 175px !important;
}

/** short / simple nav css ends**/

.popup-open::after {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.698);
  margin: auto;
  scroll-behavior: none;
}

.no-scroll{
  overflow: hidden;
}


.container{
  max-width: 1440px;
  padding: 0 16px;
}
.title-40 {
  font-size: 32px;
}
.promo-bar {
  background-color: #a0d4b2;
  text-align: center;
  padding: 8px;
  font-size: 14px;
}

.imb-header-info-mob{
    background: var(--imb-green-thin);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 6px 12px;
}

.imb-header-info-mob .imb-button-primary{
  display: none;
}

.imb-header-info-mob p {
  font-size: 14px;
  color: var(--imb-green-dark);
  margin: 0;
  line-height: 18px;
  text-align: center;
}

.imb-header-info-mob  strong {
  font-family: var(--font-barlow-700);
}

.mob-header {
  background-color: #004c3f;
  color: white;
  padding: 8px 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
    position: sticky;
    top: 0px;
    z-index: 1020;
}

.cart-link-header{
  position: relative;
}

.cart-link-header .cart-count {
    background: var(--imb-green-light);
    height: 18px;
    width: 18px;
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -6px;
    right: -6px;
    border-radius: 100%;
    color: #FFF;
}

.mob-header .mobile-logo{
  margin-bottom: -18px;
}

.mob-header img.logo {
  height: 56px;
}

.mob-header .icons {
  display: flex;
  align-items: center;
  gap: 32px;
}

.drawer {
  position: fixed;
  top: 0;
  left: -100%;
  width: 85%;
  height: 100%;
  background: white;
  z-index: 9999;
  transition: left 0.3s ease-in-out !important; /* Smooth transition */
  overflow-y: auto;
  padding: 20px;
  animation-duration: 1.2s;
  background-color: #FFFBF5;
  box-shadow: 2px 8px 23px 3px rgba(0, 0, 0, 0.2);
}

.drawer .product-item img{
  background: #e5eded;
  border-radius: 8px;
  padding: 4px;
}

.product-item a{
  color: #000 !important;
  font-size: 15px !important;
  font-family: var(--font-good-boy) !important;
}

.drawer .rating-section{
  border-bottom: 1px solid #23A880;
  border-top: 1px solid #23A880;
  padding: 10px 0;
}

/* .drawer .rating-section .stars{
  display: flex;
  align-items: flex-start;
  gap: 4px;
} */

.drawer .rating-section .stars svg{
  fill:#f0ad4e;
}

.rating-section p{
  font-size: 13px;
  line-height: 16px;
  font-family: var(--font-good-boy) !important;
  color: var(--imb-green-dark);
  text-align: right;
  text-transform: capitalize !important;
}

.drawer.open {
  left: 0;
}

#mobileDrawer.open {
  display: block;
  left: 0;
  z-index: 9999999;
} 

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.drawer-header img {
  height: 56px;
}

.drawer-header button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
}

.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer nav .main-links-mob {
  color: var(--imb-green-dark);
  font-size: 18px;
  font-family: var(--font-good-boy);
  border-bottom: 1px solid #23A880;
  padding-bottom: 14px;
}

.drawer nav .main-links-mob-top{
  color: var(--imb-green-dark);
  font-size: 18px;
  font-family: var(--font-good-boy);
}

.language-selector {
  margin-top: 40px;
  max-width: 300px;
}

.language-selector select {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  background: #FFF !important;
  color: var(--imb-green-dark);
}

.menu-icon {
  font-size: 24px;
  cursor: pointer;
  background: none;
  border: none;
  color: white;
}
.cross-drawer{
  color: #004F48;
}
/** any subscriber **/
.top-strip {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 12px;
  padding: 12px;
}

.stript-border-verticle{
  display: none;
}

.bottom-box-product {
  padding: 0px 12px 12px 12px;
}

.top-strip-right {
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.single-item-strip-right-inner {
  flex-direction: column;
  width: 100%;
}

.top-strip-right .single-item-strip-right{
  width: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #91D3BF;
  padding-bottom: 8px;
}

.top-strip-right .single-item-strip-right p {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  white-space: normal;     
  max-width: 70px;         
  line-height: 1.4;       
}

.top-strip-right .single-item-strip-right a {
  text-align: right ;
  font-size: 16px;
  line-height: 24px;
}

.bottom-box-product .product-details {
  flex-direction: column;
  gap: 16px;
}

.product-details p {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.order-box .product-details p span{
  margin-top: 0;
  text-align: end;
}

.order-footer {
 flex-direction: column;
 align-items: flex-start;
 padding: 16px 16px;
}

.imb-footer {
  & .imb-footer__top {
      & .imb-footer__top-right {
          & img {
              width: 100%;
          }
      }
  }
}

.custom-checkbox {
  margin-right: 8px;
  width: 20px;
  height: 20px;
}

.subscriber-modal .modal-dialog-centered {
  align-items: end;
  min-height: calc(100% - 0rem);
}
.subscriber-modal .modal-content {
  border-radius: 16px 16px 0 0;
}
.subscriber-modal .modal-dialog {
  margin: 0;
}
.subscriber-modal .modal-title {
  font-size: 24px;
}
.quitchangesubscriptionstatus p {
  font-size: 18px;
}
.frequencyModal .schedule-inner-div span, .changesubscriptionstatus .schedule-inner-div span, .changeordermodal .schedule-inner-div span {
  font-size: 16px;
}
.question-buttons {
 flex-direction: column;
}
.question-buttons a {
  width: 100%;
}
.here-to-help {
 flex-direction: column;
}
.login-wrapper .login-anim {
  min-width: 100%;
}
.product-details .line-item-form {
  flex-wrap: wrap;
}
.bottom-total-div p {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 4px;
}
.order-box .product-details p {
  justify-content: space-between;
  width: 100%;
}
/** for single status div **/
.imb-page-nav {
  & > div {
      grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
    }
}
.imb-page-nav {
  & > div {
      & form {
          grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
      }
  }
}
.imb-page-nav .filter-label {
     min-width: 50% !important;
  }

.filter-status-div{
  display: flex !important;
  gap: 8px !important;
}
/** for single status div ends**/
.ask-email{
  width: 100%;
  /* word-break: break-word; */
  margin-top: 10px;
}
#variations-div {
max-height: 400px;
overflow: scroll;
}

/** New pdp listings **/
.imb-page-nav {
  & .add-new-plp-new {
     flex-direction: column;
     align-items: flex-start;
  }
}

.row-cols-2 > .col:nth-child(odd) {
  padding-right: 8px;
  padding-left: 15px;
}
.row-cols-2 > .col:nth-child(even) {
  padding-left: 8px;
  padding-right: 15px;
}

.add-new-plp-new-inside {
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.add-new-plp-new-inside p {
  width: 90vw;
}

.sticky-nav-pdp {
  padding-top: 20px;
  padding-bottom: 20px;
}

.sticky-nav {
  width: 100%;
  flex-wrap: nowrap;
  overflow-x: scroll;
}

.sticky-nav .category-btn{
  white-space:nowrap;
}

.product-card {
  flex-direction: column;
  padding: 12px 12px;
  border-radius: 12px;
}

.opt-nd-quantity{
flex-direction: column;
align-items: flex-start;
}

.product-card h6 {
  font-size: 14px;
  line-height: 18px;
}

.product-card p {
  font-size: 16px;
}

.product-card .imb-button-primary.imb-button-primary-medium {
  font-size: 12px;
  width: -webkit-fill-available;
  background: url(../images/bg-btn-primary.svg) no-repeat center center !important;
}

.product-card .input-group {
  max-width: 100%;
}
  .imb-button-primary {
        min-width: unset !important;
    }

}