/*new css -start*/
@charset "UTF-8";
:root {
  --color-primary: #9dbf69;
  --color-primary-light: #afd379;
  --color-primary-dark: #8bab5b;
  --color-secondary: #de6d11;
  --color-secondary-light: #f27714;
  --color-secondary-dark: #c66312;
  --color-tertiary: #68788c;
  --color-tertiary-light: #8da0b8;
  --color-tertiary-dark: #5f6e80;
  --color-grey-light-1: #faf9f9;
  --color-grey-light-2: #f4f2f2;
  --color-grey-light-3: #f0eeee;
  --color-grey-light-4: #ccc;
  --color-grey-dark: #333;
  --color-grey-dark-2: #777;
  --color-grey-dark-3: #999;
  --color-white: #fff;
  --color-black: #000000;
  --color-btn1: #bc4519;
  --color-btn1-hover: #de6d11;
  --shadow-dark: 0 2rem 8rem rgba(0, 0, 0, 0.3);
  --shadow-medium: 0 2rem 8rem rgba(0, 0, 0, 0.2);
  --shadow-small: 0 0rem 4rem rgba(0, 0, 0, 0.1);
  --line: 1px solid var(--color-grey-light-3);
  --fc-burnt-orange: #bc4519;
  --fc-orange: #de6d11;
  --fc-orange-light: hsl(27, 100%, 64%);
  --fc-blueish: #68788c;
  --fc-brown: #8c5642;
  --fc-dark-grey: #252525;
  --fc-green-light-1: #8bab5b;
  --fc-gold-1: #bfb45a;
  --fc-gold-2: #a59a40;
  --grad-burnt-orange: linear-gradient(90deg, #e5551f 0%, #b44015 100%);
  --grad-orange: linear-gradient(90deg, #f27714 0%, #c66312 100%);
  --grad-blueish: linear-gradient(90deg, #8294aa 0%, #5f6e80 100%);
  --grad-brown: linear-gradient(90deg, #a4664f 0%, #855340 100%);
  --grad-dark-grey: linear-gradient(90deg, #474747 0%, #000 100%);
  --grad-green-light-1: linear-gradient(90deg, #afd379 0%, #8bab5b 100%);
  --grad-gold: linear-gradient(90deg, #c8bb50 0%, rgb(164, 153, 63) 100%);
  --fc-bronze-linear: linear-gradient(90deg, #944721 0%, #6f3519 100%);
  --fc-silver-linear: linear-gradient(90deg, #9aa8b4 0%, #78838c 100%);
  --fc-gold-linear: linear-gradient(90deg, #bfb45a 0%, #a59a40 100%);
  --fc-platinum-linear: linear-gradient(90deg, #d1d1d1 0%, #f2f2f2 100%);
  --fc-grey-linear: linear-gradient(90deg, rgba(97, 97, 97, 0.7) 0%, rgba(58, 58, 58, 0.7) 100%); }

* {
  margin: 0;
  /*padding: 0;*/ }

*,
::before,
::after {
  box-sizing: inherit; }

html {
  box-sizing: border-box;
  font-size: 62.5%; }
  @media only screen and (max-width: 68.75em) {
    html {
      font-size: 50%; } }

body {
  /* Font settings in HTML
    <link
      href="https://fonts.googleapis.com/css2?family=Assistant:wght@300;400;500;600;800;&display=swap"
      rel="stylesheet"
    />
*/
  font-family: 'Assistant', Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-grey-dark-2); }

/* Styles for the slider container */
.slider-container {
  width: 100%;
  display: grid;
  justify-content: start;
  align-items: center;
  gap: 10px;
  grid-template-columns: repeat(4, max-content);
  position: relative;
  background: greenyellow; }

/* Styles for the slider label */
.slider-label {
  display: grid;
  grid-template-columns: max-content max-content;
  cursor: pointer;
  z-index: 10;
  line-height: 30px;
  font-size: 18px;
  font-weight: 400; }

/* Styles for the slider track */
.slider-track {
  width: 50px;
  height: 26px;
  padding: 1px 1px;
  background-color: #d3d3d3;
  border-radius: 13px;
  cursor: pointer; }

/* Styles for the slider thumb */
.slider-thumb {
  display: grid;
  width: 24px;
  height: 24px;
  background-color: grey;
  border-radius: 50%;
  transition: transform 0.2s; }

.slider-input {
  display: none; }

.slider-input:checked ~ .slider-label {
  font-weight: 700; }

.slider-input:checked + .slider-label .slider-track .slider-thumb {
  transform: translateX(100%);
  background-color: orangered; }

/* Styles for the slider thumb when active */
.slider-input:checked + .slider-label .slider-track {
  background-color: yellow; }

/*
breakpoint argument choices
- phone  <600px   37.5em
- tab-port  <900px   56.25em
- tab-land  <1200px   75em
- big-desktop  >1800px   112.5em
*/
.container {
  font-size: 3rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: min-content;
  justify-items: center;
  align-items: center;
  gap: 1rem;
  max-width: 120rem;
  background-color: var(--color-grey-light-1);
  margin: 8rem auto;
  box-shadow: var(--shadow-dark);
  min-height: 50rem; }

.blocks {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center; }

@media only screen and (max-width: 31.25em) {
  .header {
    height: 11rem; } }

.fc-menu-area {
  font-family: 'Assistant', Helvetica, sans-serif;
  --menu-max-width: 50%;
  /* min-width: 375px;*/
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  padding: 10px;
  z-index: 1000;
  overflow: scroll;
  padding-top: 10px;
  display: grid;
  grid-template-columns: [left-start] 50px [left-end middle-start] minmax(var(--menu-max-width), 1fr) [middle-end right-start] 50px [right-end];
  grid-template-rows: [top-start] 1fr [top-end center-start] min-content [center-end bottom-start] 1fr [bottom-end];
  background: linear-gradient(130deg, #474747 0%, #000 100%);
  box-shadow: 0 20px 10px rgba(0, 0, 0, 0.9);
  opacity: 0;
  height: 0px;
  top: -10px;
  display: none; }
  @media (max-width: 1800px) {
    .fc-menu-area {
      --menu-max-width: 50%; } }
  @media (max-width: 1000px) {
    .fc-menu-area {
      --menu-max-width: 65%; } }
  @media (max-width: 700px) {
    .fc-menu-area {
      --menu-max-width: 70%; } }
  @media only screen and (max-width: 575px) {
    .fc-menu-area {
      grid-template-columns: [left-start] 25px [left-end middle-start] minmax(var(--menu-max-width), 1fr) [middle-end right-start] 25px [right-end]; } }

.fc-menu {
  position: relative;
  display: grid;
  justify-items: center;
  width:100%;
  grid-column: middle-start / middle-end;
  grid-row: center-start / center-end;
  transform: translateY(-80%);
  transition: all 0.5s;
  padding-top: 20px; }
 @media screen and (max-width: 575px) {  .fc-menu{width:min-content !important;justify-self: center;margin:0 !important;} }

.fc-close-btn {
  grid-column: right-start / right-end;
  position: fixed;
  margin-top: 5px;
  width: 34px;
  height: 34px;
  border-radius: 100px;
  background-color: var(--fc-blueish);
  color: white;
  box-shadow: 20px 40px 80px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transform: rotate(45deg);
  z-index: 1002; }
  .fc-close-btn:hover {
    background-color: red; }
  .fc-close-btn:active {
    background-color: greenyellow; }
  .fc-close-btn::before, .fc-close-btn::after {
    content: '';
    top: 44%;
    left: 12%;
    position: absolute;
    width: 25px;
    height: 3px;
    background-color: white;
    z-index: 100;
    display: block; }
  .fc-close-btn::before {
    transform: rotate(90deg); }

.fc-back-btn {
  grid-column: left-start / left-end;
  left: 3px;
  cursor: pointer;
  font-size: 40px;
  line-height: 0;
  z-index: 100;
  margin-top: 10px; }
  .fc-back-btn:hover {
    color: white; }

.active-pop-up {
  display: grid;
  opacity: 1;
  top: 0;
  height: 100vh; z-index: 999999999;}
  .active-pop-up .fc-menu {
    opacity: 1;
    display: grid;
    transform: translateY(0%); }

.big-btn-area {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 30px;
  row-gap: 20px;
  padding-top: 1vmin;
  padding-bottom: 10px; }
  @media (max-width: 900px) {
    .big-btn-area {
      grid-template-columns: repeat(2, 1fr);
      column-gap: 5vmin;
      row-gap: 4vmin; } }
  @media (max-width: 900px) {
    .big-btn-area {
      column-gap: 5vmin;
      row-gap: 4vmin; } }

.big-btn {
  line-height: 20px;
  padding: 10px 5px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-white);
  transition: all 0.2s ease-out;
  border-radius: 3px;
  letter-spacing: 2px; }
  .big-btn:hover {
    border-radius: 20px;
    font-size: 26px;
    opacity: 95%;
    font-weight: 300;
    color: var(--color-grey-light-3);
    box-shadow: inset 0px 0px 5px black; }
  .big-btn--kits {
    background: linear-gradient(120deg, #e5551f 0%, #b44015 85%) !important; }
  .big-btn--meals {
    background: linear-gradient(120deg, #f27714 0%, #c66312 85%) !important; }
  .big-btn--drinks {
    background: linear-gradient(120deg, #8294aa 0%, #5f6e80 85%) !important; }
  .big-btn--snacks {
    background: linear-gradient(120deg, #a4664f 0%, #855340 85%) !important; }
  .big-btn--search {
    background: linear-gradient(120deg, #fff 0%, #fff 85%); }
.big-btn-black {
  line-height: 20px;
  padding: 10px 5px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-black);
  transition: all 0.2s ease-out;
  border-radius: 3px;
  letter-spacing: 2px; }
.icon-btn-area {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  column-gap: 10px;
  padding-bottom: 1dvh; }
  @media (max-width: 700px) {
    .icon-btn-area {
      grid-template-columns: repeat(3, 1fr); } }

.icon-btn {
  display: grid;
  flex-direction: column;
  justify-items: center;
  padding: 1dvh;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-grey-light-1);
  transition: all 0.2s ease-out; }
  .icon-btn__icon {
    width: 20px;
    height: 20px;
    fill: var(--color-grey-light-1); }

.fc-subscr-area {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  background: linear-gradient(90deg, #474747 0%, #3e3e3e 100%);
  box-shadow: 20px 40px 80px rgba(0, 0, 0, 0.3);
  border: 2px solid var(--fc-gold-2); }

.fc-subscr__rollover {
  background: linear-gradient(110deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.05) 50%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.2) 100%);
  background-size: 210% 210%;
  background-position: 0% 50%;
  transition: background-position 0.2s ease-out;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3); }
  .fc-subscr__rollover:hover {
    background-position: 100% 50%; }
  .fc-subscr__rollover:active {
    background-color: rgba(255, 255, 255, 0.2); }

.fc-subscr__head {
  padding: 3px 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative; }

.fc-subscr__head-icon {
  fill: var(--fc-gold-2);
  width: 30px;
  height: 30px;
  margin-right: 5px; }

.fc-subscr__head-text {
  color: var(--fc-gold-2);
  font-size: 20px;
  text-align: center;
  align-self: center;
  text-transform: uppercase;
  line-height: 1; }

.fc-subscr__head-gear {
  position: absolute;
  fill: var(--fc-gold-2);
  width: 20px;
  height: 20px;
  right: 10px;
  margin: 5px;
  cursor: pointer; }

.fc-subscr__info-columns {
  background: linear-gradient(130deg, #c8bb50 0%, #a4993f 70%);
  display: grid;
  row-gap: 20px;
  column-gap: 20px;
  padding: 12px;
  grid-template-columns: repeat(3, 1fr); }
  @media (max-width: 1400px) {
    .fc-subscr__info-columns {
      grid-template-columns: repeat(2, 1fr);
      row-gap: 2vmin;
      column-gap: 2vmin; } }
  @media (max-width: 350px) {
    .fc-subscr__info-columns {
      grid-template-columns: repeat(1, 1fr); } }

.fc-subscr__status {
  border-radius: 18px;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: min-content min-content;
  place-content: center;
  place-items: center;
  padding-top: 10px; }

.fc-subscr__level {
  font-size: 15px;
  color: white;
  text-transform: uppercase;
  grid-column: 1/2;
  grid-row: 1/2;
  align-self: self-end;
  line-height: 0.5; }

.fc-subscr__checkbox {
  line-height: 1;
  grid-column: 1/2;
  grid-row: 2/3;
  align-self: self-start;
  text-transform: uppercase; }

.fc-subscr__cart {
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr min-content min-content 1fr;
  grid-template-rows: 1fr 1fr;
  place-items: center;
  column-gap: 10px;
  line-height: 1; }

.fc-subscr__cart-icon {
  width: 40px;
  height: 40px;
  fill: white;
  grid-column: 2/3;
  grid-row: 1/-1; }

.fc-subscr__cart-text {
  color: white;
  font-size: 25px;
  align-self: self-end;
  line-height: 0.7;
  grid-column: 3/3;
  grid-row: 1/1;
  text-decoration: none; }

.fc-subscr__cart-value {
  grid-column: 3/3;
  grid-row: 2/2;
  color: white;
  margin-top: -2px;
  font-size: 14px;
  text-wrap: nowrap;
  font-weight: 400;
  text-decoration: none; }

.fc-subscr__right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px; }
  @media (max-width: 1400px) {
    .fc-subscr__right {
      grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
      grid-column: 1 / -1; } }

.fc-subscr__help, .fc-subscr__about {
  display: grid;
  grid-template-columns: min-content min-content;
  place-content: center;
  font-size: 15px;
  border-radius: 14px;
  height: 36px;
  text-transform: uppercase;
  text-decoration: none;
  color: white; }

.fc-subscr__sub-sml-icon {
  place-content: end;
  width: 18px;
  height: 18px;
  margin: 0px 3px;
  margin-top: 2px; }

.fc-subscr__levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12vmin, 1fr));
  grid-column: 1 / -1;
  color: #000;
  text-align: center;
  place-content: center;
  letter-spacing: -1px;
  line-height: 1;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  text-decoration: none; }
  @media only screen and (max-width: 575px) {
    .fc-subscr__levels {
      font-size: 10px;
      letter-spacing: 0; } }
  .fc-subscr__levels > * {
    place-content: center;
    padding: 0 10px;
    height: 40px; }
    .fc-subscr__levels > *::before {
      content: '';
      position: absolute;
      top: 5px;
      /* Adjust to control the outline size */
      left: 10px;
      /* Adjust to control the outline size */
      right: 10px;
      /* Adjust to control the outline size */
      bottom: 5px;
      /* Adjust to control the outline size */
      background: transparent;
      clip-path: inherit;
      /* Use the same clip-path */
      z-index: -1;
      /* Place it behind the original element */ }

.fc-subscr__levels-bronze {
  background: linear-gradient(90deg, #944721 0%, #6f3519 100%);
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
  padding: 5px 0;
  width: 110%;
  position: relative;
  color: white; }
  @media (max-width: 900px) {
    .fc-subscr__levels-bronze {
      width: 100%; } }

.fc-subscr__levels-silver {
  background: linear-gradient(90deg, #9aa8b4 0%, #78838c 100%);
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
  position: relative;
  width: 110%; }
  @media (max-width: 1200px) {
    .fc-subscr__levels-silver {
      width: 100%; } }

.fc-subscr__levels-gold {
  background: linear-gradient(90deg, #bfb45a 0%, #898035 100%);
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
  position: relative;
  width: 110%; }
  @media (max-width: 900px) {
    .fc-subscr__levels-gold {
      width: 100%; } }

.fc-subscr__levels-platinum {
  padding-right: 7px;
  background: linear-gradient(90deg, #d1d1d1 0%, #f2f2f2 100%);
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%, 10% 50%);
  width: 100%;
  position: relative; }

.fc-subscr__selected {
  color: #fff;
  font-weight: 400; }
  .fc-subscr__selected::before {
    background: orangered; }

.fc-subscr__delivery {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 10px;
  place-content: center; }

.fc-subscr__del-icon {
  width: 20px;
  height: 20px;
  line-height: 0; }

.fc-subscr__del-text {
  text-transform: uppercase;
  font-size: 14px;
  text-wrap: nowrap;
  color: var(--color-grey-light-1);
  color: var(--fc-gold-2);
  text-decoration: none;
  border-bottom: 1px solid white; }
  .fc-subscr__del-text--orange {
    color: orangered; }

.fc-subscr__cal-icon {
  width: 20px;
  height: 20px;
  line-height: 0; }

.fc-subscr__cal-text {
  place-content: center;
  text-wrap: nowrap;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--color-grey-light-1);
  text-decoration: none;
  border-bottom: 1px solid white; }
  .fc-subscr__cal-text--orange {
    color: orangered; }

.menu__find {
  width: 100%;
  padding-top: 2vmin;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(4, min-content);
  column-gap: 40px;
  grid-template-areas: "top top top top "
 "head head head head "
 "left content1 content2 right "
 "bottom bottom bottom bottom"; }

.find-head {
  width: 100%;
  display: grid;
  grid-area: head;
  align-items: center;
  grid-template-columns: 1fr max-content 1fr;
  column-gap: 10px;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 2px;
  color: white;
  text-wrap: nowrap;
  text-transform: uppercase; }
  .find-head::before, .find-head::after {
    content: '';
    display: inline-block;
    background-color: white;
    height: 2px;
    width: 50%; }
  .find-head::before {
    justify-self: end; }
  .find-head::after {
    justify-self: start; }

.find-dietitian,
.find-pt {
  font-size: 18px;
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  line-height: 0.9;
  background-color: rgba(255, 255, 255, 0.01);
  background-color: rgba(255, 255, 255, 0.05);
  padding: 2dvh; }

.find-dietitian {
  grid-area: content1;
  place-content: center; }

.find-pt {
  place-content: center;
  grid-area: content2; }

/* Styles for the slider container */
.fc-slider-container {
  justify-content: center;
  align-items: center;
  gap: 3px;
  display: flex;
  position: relative; }

/* Styles for the fc-slider label */
.fc-slider-label {
  user-select: none;
  display: flex;
  cursor: pointer;
  z-index: 10;
  line-height: 30px;
  color: var(--color-grey-light-4);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  text-decoration: line-through; }
  .fc-slider-label:hover {
    opacity: 0.7; }

/* Styles for the fc-slider track */
.fc-slider-track {
  width: 38px;
  height: 20px;
  padding: 1px 1px;
  background-color: #d3d3d3;
  border-radius: 12px;
  cursor: pointer; }
  .fc-slider-track:hover {
    opacity: 0.7; }

/* Styles for the fc-slider thumb */
.fc-slider-thumb {
  display: grid;
  width: 18px;
  height: 18px;
  background-color: grey;
  border-radius: 50%;
  transition: transform 0.2s; }
  .fc-slider-thumb:hover {
    opacity: 0.7; }

.fc-slider-input {
  display: none; }

.fc-slider-input:checked ~ .fc-slider-label {
  display: block;
  color: orangered;
  text-decoration: none; }

.fc-slider-input:checked + .fc-slider-label .fc-slider-track .fc-slider-thumb {
  transform: translateX(100%);
  background-color: orangered; }

/* Styles for the fc-slider thumb when inactive */
.fc-slider-input:checked + .fc-slider-label .fc-slider-track {
  background-color: var(--color-grey-light-3); }

.rollover {
  transition: all 0.2s;
  position: relative; }
  .rollover:hover {
    background-color: rgba(255, 255, 255, 0.05); }
  .rollover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.2s; }
  .rollover:hover::before {
    opacity: 0;
    transform: scale(0.5, 0.5); }
  .rollover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transform: scale(1.2, 1.2); }
  .rollover:hover::after {
    opacity: 1;
    transform: scale(1, 1); }

.simple-rollover:hover {
  opacity: 0.6;
  box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.15); }

.menu__end {
  height: 50px;
  margin: 50px; }

:root {
  --menu-bar-gradient: linear-gradient(90deg, #252525 0%, black 100%);
  --orange-gradient-1: linear-gradient(90deg, #e46615 0%, #bc4519 100%);
  --grey-gradient-1: linear-gradient(90deg, #f8f8f8 0%, #cccccc 100%);
  --grey-gradient-meal-plan: linear-gradient(150deg, rgba(160, 160, 160, 0.23) 23.96%, rgba(255, 255, 255, 0) 98.44%);
  --black-gradient-meal-plan: linear-gradient(0deg, #000000 0%, #212121 100%);
  --grey-checkout-outline: #d9d9d9;
  --menu-text: #d9d9d9;
  --name-area-bg: #8294aa;
  --brown-1: #8c5642;
  --green-light-1: #8bab5b;
  --blue-light-1: #5f6e80; }

.assistant-300 {
  font-family: 'Assistant', sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal; }

.assistant-400 {
  font-family: 'Assistant', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal; }

.assistant-500 {
  font-family: 'Assistant', sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal; }

.assistant-600 {
  font-family: 'Assistant', sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal; }

.assistant-700 {
  font-family: 'Assistant', sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal; }

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Assistant', sans-serif; }

.meal-plan {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  justify-content: center;
  text-align: center;
  padding: 10px;
  user-select: none;
  text-rendering: optimizeLegibility; }
  .meal-plan div {
    background: var(--grey-gradient-meal-plan); }
    .meal-plan div[type="head"] {
      background: white;
      border: none;
      color: black;
      font-size: 20px;
      font-weight: 700; }
    .meal-plan div ul {
      margin: 0;
      padding: 10px;
      row-gap: 5px;
      display: grid;
      grid-template-columns: 1fr;
      align-content: space-evenly; }
    .meal-plan div li {
      font-size: 15px;
      color: #000000;
      list-style-type: circle;
      max-width: 100%;
      background-color: #ffffff;
      border-radius: 20px;
      padding: 0 10px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
      box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
      text-transform: capitalize; }
      .meal-plan div li[type="day"] {
        background-color: #000000;
        color: #f8f8f8; }
      .meal-plan div li[type="free"] {
        color: #000000;
        opacity: 0.4; }
      .meal-plan div li[type="intermittent"] {
        border-radius: 5px;
        padding-top: 10px;
        padding-bottom: 10px;
        white-space: wrap;
        line-height: 1;
        text-overflow: ellipsis;
        background-color: rgba(255, 255, 255, 0.5);
        box-shadow: none; }
        .meal-plan div li[type="intermittent"]:before {
          content: "🕛";
          padding-right: 5px; }
      .meal-plan div li[type="breakfast"] {
        font-weight: 600; }
        .meal-plan div li[type="breakfast"]:before {
          content: "🍳";
          padding-right: 5px; }
      .meal-plan div li[type="meal"] {
        font-weight: 600; }
        .meal-plan div li[type="meal"]:before {
          content: "🍽️";
          padding-right: 5px; }
      .meal-plan div li[type="smoothie"] {
        background-color: rgba(255, 255, 255, 0.3); }
        .meal-plan div li[type="smoothie"]:before {
          content: "🥤";
          padding-right: 5px; }
      .meal-plan div li[type="protein-snack"]:before {
        content: "💪";
        padding-right: 5px; }
      .meal-plan div li[type="snack"]:before {
        content: "🍏";
        padding-right: 5px; }
      .meal-plan div li[type="grocery"]:before {
        content: "🛒";
        padding-right: 5px; }
      .meal-plan div li[type="cooking-kit"]:before {
        content: "🧑‍🍳";
        padding-right: 5px; }
      .meal-plan div li[type="add"]:after {
        content: "➕";
        padding-left: 5px; }
      .meal-plan div li[type="nutri"] {
        content: none;
        margin-top: auto;
        line-height: 1;
        padding-top: 5px;
        padding-bottom: 5px;
        border-radius: 5px;
        color: var(--color-primary);
        background-color: rgba(255, 255, 255, 0.6);
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        column-gap: 10px;
        box-shadow: none; }

@keyframes landingScaleIn {
  from {
    opacity: 0;
    transform: scale(1.3);
    /* Start slightly larger */
    mix-blend-mode: screen;
    /* Works best on dark backgrounds! */ }
  to {
    opacity: 1;
    transform: scale(1);
    /* End at normal size */
    mix-blend-mode: normal;
    /* Works best on dark backgrounds! */ } }
.fc-land-1 {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 0px;
  /*margin-top: 80px;*/
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-grey-dark);
  overflow: hidden; }
  .fc-land-1__rollover {
    display: inline-block;
    transition: transform 0.3s ease, filter 0.3s ease;
    height: min-content; }
    .fc-land-1__rollover:hover {
      transform: translateY(-5px);
      mix-blend-mode: luminosity;
      cursor: pointer;
      filter: drop-shadow(0 8px 5px rgba(0, 0, 0, 0.2)); }
  .fc-land-1__animate-on-scroll--delay-1 {
    animation-delay: 0.1s; }
  .fc-land-1__animate-on-scroll--delay-2 {
    animation-delay: 0.3s; }
  .fc-land-1__animate-on-scroll--delay-3 {
    animation-delay: 0.5s; }
  .fc-land-1__animate-on-scroll--is-visible {
    animation-name: landingScaleIn;
    animation-duration: 0.6s;
    /* How long the animation takes */
    animation-timing-function: ease-out;
    /* A smooth easing curve */
    animation-fill-mode: backwards; }
  .fc-land-1__dir {
    display: grid;
    column-gap: 3rem;
    row-gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    width: 100%;
    padding: 20px 40px; }
    @media screen and (max-width: 600px) {
      .fc-land-1__dir {
        padding: 60px 5px; } }
    .fc-land-1__dir > div:first-child {
      padding: 10px 20px;
      background-color: black;
      border-radius: 100px;
      color: white; }
    .fc-land-1__dir > div:last-child {
      padding: 10px 20px;
      background-color: #dadada;
      border-radius: 100px;
      color: black; }
    .fc-land-1__dir--do_we {
      position: relative;
      display: flex;
      flex-direction: column;
      row-gap: 5px; }
      .fc-land-1__dir--do_we input {
        width: 100%;
        font-size: 1.8rem;
        border-radius: 50px;
        border: 0px;
        padding: 5px;
        position: relative; }
        .fc-land-1__dir--do_we input::before {
          content: "search";
          display: block;
          height: 10px;
          width: 10px;
          font-size: 1.8rem;
          position: absolute;
          left: 10px;
          top: 50%; }
    .fc-land-1__dir--search {
      position: relative;
      font-family: sans-serif;
      /* Styles for the icon */
      /* When the wrapper is focused (i.e., the user clicks the input), make icon sharper */
      /* Styles for the input field itself */ }
      .fc-land-1__dir--search::before {
        content: "";
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 20px;
        /* Icon size */
        height: 20px;
        /* Icon size */
        z-index: 1;
        /* SVG icon embedded directly into CSS.
          This is a "map pin" icon, similar to what you'd see on a map.
          You can change the 'fill' color to any hex code or color name.
        */
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 384 512'%3E%3Cpath fill='%23808080' d='M215.7 499.2C267 435 384 279.4 384 192C384 86 298 0 192 0S0 86 0 192c0 87.4 117 243 168.3 307.2c12.3 15.3 35.1 15.3 47.4 0zM192 256c-35.3 0-64-28.7-64-64s28.7-64 64-64s64 28.7 64 64s-28.7 64-64 64z'/%3E%3C/svg%3E");
        background-size: contain;
        background-repeat: no-repeat;
        opacity: 0.6;
        transition: opacity 0.2s ease-in-out; }
      .fc-land-1__dir--search:focus-within::before {
        opacity: 1; }
      .fc-land-1__dir--search input {
        width: 100%;
        padding: 12px 15px 12px 40px;
        /* Left padding makes space for the icon */
        border: 1px solid #ccc;
        border-radius: 50px;
        /* Pill shape */
        font-size: 16px;
        outline: none;
        /* Removes the default browser outline */
        box-sizing: border-box;
        /* Ensures padding doesn't affect the final width */
        transition: all 0.2s ease-in-out;
        /* Style for when the user clicks into the input */ }
        .fc-land-1__dir--search input::placeholder {
          color: #b7b6b6; }
        .fc-land-1__dir--search input:focus {
          border-color: #007bff;
          box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); }
    .fc-land-1__dir--title {
      font-size: 2rem;
      font-weight: 600;
      line-height: 1.2;
      text-transform: uppercase;
      align-self: center; }
    .fc-land-1__dir --head {
      font-size: 2.4rem;
      font-weight: 600;
      line-height: 1.2;
      text-transform: uppercase;
      color: var(--color-grey-dark);
      align-self: center; }
    .fc-land-1__dir--flag {
      display: grid;
      height: 100%;
      position: relative;
      grid-template-columns: min-content 1fr min-content;
      text-align: center;
      padding: 5px 20px; }
      .fc-land-1__dir--flag--img {
        place-items: center;
        display: grid;
        align-items: center; }
        .fc-land-1__dir--flag--img img {
          width: 70px;
          height: auto;
          object-fit: cover;
          object-position: center center;
          mix-blend-mode: multiply; }
      .fc-land-1__dir--flag--title {
        font-size: 2rem;
        font-weight: 600;
        line-height: 1.2;
        text-transform: uppercase;
        color: var(--color-grey-dark);
        align-self: center; }
      .fc-land-1__dir--flag--link {
        font-size: 1.2rem;
        font-weight: 500;
        line-height: 1.2;
        text-transform: capitalize;
        align-self: center;
        text-wrap: nowrap;
        color: white; }
        .fc-land-1__dir--flag--link > a {
          color: var(--color-grey-dark);
          background-color: var(--color-grey-light-3);
          padding: 10px 20px;
          border-radius: 50px;
          text-decoration: none; }
          .fc-land-1__dir--flag--link > a::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; }
          .fc-land-1__dir--flag--link > a:hover {
            color: white;
            background-color: var(--color-secondary);
            border-radius: 50px; }
          .fc-land-1__dir--flag--link > a:visited {
            color: var(--color-grey-dark); }
          .fc-land-1__dir--flag--link > a:active {
            color: white; }
          .fc-land-1__dir--flag--link > a:focus {
            outline: none; }
  .fc-land-1__eatclean {
    background-color: #f27714;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    column-gap: 20px;
    position: relative;
    padding-bottom: 60px; }
    .fc-land-1__eatclean--grp {
      display: grid;
      grid-template-columns: 1fr; }
    .fc-land-1__eatclean--skeptical {
      position: relative;
      display: flex;
      flex-direction: column;
      z-index: 2;
      top: 40px;
      left: 40px;
      font-size: 2.5rem;
      font-weight: 600;
      line-height: 0;
      color: rgba(0, 0, 0, 0.5); }
      .fc-land-1__eatclean--skeptical a {
        color: rgba(0, 0, 0, 0.5);
        text-decoration: none;
        font-weight: 600; }
        .fc-land-1__eatclean--skeptical a:hover {
          color: black;
          text-decoration: none; }
        .fc-land-1__eatclean--skeptical a:visited {
          color: rgba(0, 0, 0, 0.5);
          text-decoration: underline; }
        .fc-land-1__eatclean--skeptical a:active {
          color: black;
          text-decoration: none; }
        .fc-land-1__eatclean--skeptical a:focus {
          outline: none; }
      .fc-land-1__eatclean--skeptical img {
        padding-top: 10px;
        width: 65%;
        height: auto;
        object-fit: contain;
        object-position: center center; }
        @media screen and (max-width: 600px) {
          .fc-land-1__eatclean--skeptical img {
            width: 60%; } }
      .fc-land-1__eatclean--skeptical--btn {
        text-transform: uppercase;
        width: 100%;
        padding-bottom: 39px;
        padding-left: 5px;
        margin-top: -100px;
        text-align: left;
        font-size: 1.6rem;
        font-weight: 400;
        line-height: 0;
        color: rgba(0, 0, 0, 0.5); }
    .fc-land-1__eatclean--img_word_grp {
      grid-template-columns: 1fr 1fr;
      display: grid;
      justify-items: stretch;
      position: relative;
      left: 40px; }
    .fc-land-1__eatclean--words {
      position: relative;
      bottom: 0px;
      left: 0;
      padding-top: 50px;
      width: 100%;
      color: rgba(0, 0, 0, 0.5); }
      .fc-land-1__eatclean--words img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: bottom; }
    .fc-land-1__eatclean--person {
      position: relative;
      opacity: 1;
      left: 0;
      bottom: 0px;
      width: 100%;
      z-index: 1; }
      .fc-land-1__eatclean--person img {
        position: absolute;
        left: -5dvw;
        bottom: -4dvh;
        width: 150%;
        height: 150%;
        object-fit: contain;
        object-position: right bottom; }
        @media screen and (max-width: 600px) {
          .fc-land-1__eatclean--person img {
            left: -10dvw;
            bottom: -2dvh;
            width: 130%;
            height: 130%; } }
    .fc-land-1__eatclean--21day_grp {
      display: grid;
      grid-template-columns: 4fr 1fr;
      gap: 10px;
      padding: 20px 10px;
      position: relative;
      justify-items: center;
      align-items: center; }
      @media screen and (max-width: 600px) {
        .fc-land-1__eatclean--21day_grp {
          grid-template-columns: 1fr; } }
    .fc-land-1__eatclean--kit {
      text-transform: uppercase; }
    .fc-land-1__eatclean--notetxt {
      padding-left: 20px;
      padding-bottom: 10px;
      font-family: "Indie Flower", cursive;
      line-height: 1.1;
      position: relative;
      color: white;
      font-weight: 600;
      letter-spacing: 1px;
      width: 75%;
      text-transform: none; }
      .fc-land-1__eatclean--notetxt::before {
        content: "";
        width: 50px;
        /* Or whatever size you need */
        height: 50px;
        /* Or whatever size you need */
        position: absolute;
        top: 30px;
        left: 0px;
        /* Set the background image */
        background-image: url("/assets/img/landing/arrow_orange_area.png");
        /* Control the background image's size and repetition */
        background-size: contain;
        /* Or 'cover', or '100% 100%' */
        background-repeat: no-repeat;
        background-position: center; }
    .fc-land-1__eatclean--circle {
      display: grid;
      padding: 0px 10px;
      cursor: pointer;
      align-content: center;
      width: 100%;
      justify-self: center;
      align-self: center;
      text-align: center;
      color: white;
      background-color: black;
      aspect-ratio: 1 / 1;
      border-radius: 500px;
      border: 6px solid orange;
      box-shadow: var(--shadow-dark); }
    .fc-land-1__eatclean--txt {
      padding: 10px; }
      .fc-land-1__eatclean--txt--t1 {
        font-size: 55px;
        font-weight: 600;
        line-height: 0.8; }
      .fc-land-1__eatclean--txt--t2 {
        font-size: 40px;
        font-weight: 600;
        line-height: 0.8; }
      .fc-land-1__eatclean--txt--t3 {
        font-size: 40px;
        font-weight: 200;
        line-height: 0.8;
        color: orange; }
      .fc-land-1__eatclean--txt--t4 {
        font-size: 16px;
        font-weight: 200;
        line-height: 1;
        padding-top: 30px;
        text-wrap: balance; }
      .fc-land-1__eatclean--txt--t5 {
        font-size: 20px;
        font-weight: 400;
        line-height: 1;
        padding-top: 10px; }
    .fc-land-1__eatclean--logos {
      width: 100px;
      display: grid;
      grid-template-columns: 100px;
      width: 100px;
      row-gap: 0px;
      margin-right: 10px;
      margin-left: 10px; }
      @media screen and (max-width: 600px) {
        .fc-land-1__eatclean--logos {
          grid-template-columns: repeat(3, 150px);
          justify-content: center;
          justify-items: center; } }
      .fc-land-1__eatclean--logos div img {
        width: 80px;
        height: auto;
        object-fit: contain;
        object-position: center center; }
  .fc-land-1__create_plan {
    background-color: #fff;
    margin: -30px 100px 0px 100px;
    z-index: 2;
    border-radius: 50px; }
    .fc-land-1__create_plan--btn {
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: center;
      justify-items: center;
      padding: 20px 60px; }
      .fc-land-1__create_plan--btn a {
        padding: 10px 30px;
        border-radius: 100px;
        border: 2px solid #ffffff;
        box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.4);
        background: linear-gradient(180deg, #ffbf92 0%, #e46615 40%, #e46615 70%, #8a3213 100%), #d9d9d9;
        text-wrap: nowrap;
        width: min-content;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
        font-size: 20px;
        font-weight: 600;
        line-height: 1.2; }
        .fc-land-1__create_plan--btn a:hover {
          color: white;
          text-decoration: none; }
        .fc-land-1__create_plan--btn a:visited {
          color: white;
          text-decoration: none; }
        .fc-land-1__create_plan--btn a:active {
          color: white;
          text-decoration: none; }
        .fc-land-1__create_plan--btn a:focus {
          outline: none; }
        .fc-land-1__create_plan--btn a div:last-child {
          color: rgba(0, 0, 0, 0.9);
          font-size: 16px; }
  .fc-land-1__eet {
    background-color: #000;
    height: 10dvw;
    min-height: 100px;
    display: grid;
    grid-template-columns: min-content 1fr min-content;
    font-size: 3dvw;
    letter-spacing: 2px;
    justify-items: center;
    align-items: center;
    color: white;
    text-wrap: balance;
    text-align: center; }
    @media screen and (max-width: 600px) {
      .fc-land-1__eet {
        grid-template-columns: min-content 1fr;
        font-size: 7dvw;
        line-height: 1;
        letter-spacing: 1px; } }
    .fc-land-1__eet img {
      width: auto;
      height: 10dvw;
      min-height: 100px;
      object-fit: contain;
      object-position: center center; }
      @media screen and (max-width: 600px) {
        .fc-land-1__eet img:last-child {
          display: none; } }
    .fc-land-1__eet--flip {
      transform: scaleX(-1); }
  .fc-land-1__start {
    background: linear-gradient(180deg, #00b9bf 0%, #008a8e 100%);
    position: relative;
    margin-top: 20px;
    padding: 60px 40px;
    z-index: 0; }
    @media screen and (max-width: 600px) {
      .fc-land-1__start {
        padding: 60px 10px; } }
    .fc-land-1__start--grp {
      display: flex;
      flex-direction: column;
      gap: 20px;
      top: 40px;
      left: 40px; }
    .fc-land-1__start--sect_title {
      position: relative;
      z-index: 2;
      font-size: 2.5rem;
      font-weight: 600;
      line-height: 1.2;
      color: rgba(0, 0, 0, 0.7);
      padding-bottom: 40px; }
    .fc-land-1__start--best_bg {
      position: relative;
      display: flex;
      padding: 40px 10px;
      flex-direction: column;
      border-radius: 40px;
      border: 3px solid #fff;
      background: linear-gradient(180deg, #7b5500 0%, #ac7b10 8%, #fdb517 46%, #fcb417 92%, #cd9313 100%);
      box-shadow: 0 4px 35px 17px rgba(123, 85, 0, 0.6) inset; }
      .fc-land-1__start--best_bg::before {
        content: "";
        z-index: -1;
        position: absolute;
        width: 100%;
        /* Or whatever size you need */
        height: 100%;
        /* Or whatever size you need */
        top: 15px;
        left: 15px;
        border-radius: 40px;
        background: linear-gradient(180deg, #002728 0%, #008a8e 100%);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center; }
    .fc-land-1__start--txt--img {
      position: absolute;
      left: 50%;
      top: -25px;
      transform: translateX(-50%); }
      .fc-land-1__start--txt--img img {
        height: auto;
        width: 80px;
        background-size: contain;
        /* Or 'cover', or '100% 100%' */
        background-repeat: no-repeat;
        background-position: center; }
        @media screen and (max-width: 800px) {
          .fc-land-1__start--txt--img img {
            display: none; } }
    .fc-land-1__start--txt--t1 {
      margin-top: 15px;
      font-size: 70px;
      font-weight: 600;
      line-height: 0.8;
      color: white;
      text-align: center;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); }
    .fc-land-1__start--txt--t2 {
      font-size: 25px;
      font-weight: 600;
      line-height: 0.8;
      color: white;
      text-wrap: nowrap;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
      text-align: center; }
    .fc-land-1__start--txt--t3--bold {
      font-size: 25px;
      margin-top: 10px;
      font-weight: 600;
      line-height: 1;
      text-align: center;
      text-wrap: balance; }
    .fc-land-1__start--txt--t3 {
      font-size: 20px;
      padding-top: 10px;
      padding-bottom: 20px;
      font-weight: 400;
      line-height: 1;
      text-align: center; }
    .fc-land-1__start--txt--view {
      margin-top: -20px;
      display: grid;
      position: relative;
      justify-content: center; }
      .fc-land-1__start--txt--view div {
        border-radius: 100px;
        font-weight: 600;
        width: max-content;
        font-size: 25px;
        text-align: center;
        text-wrap: nowrap;
        top: 0%;
        left: 0%;
        border: 3px solid #000;
        background: linear-gradient(180deg, #fb9e5b 0%, #e46615 40%, #e46615 70%, #8a3213 100%), #d9d9d9;
        box-shadow: 4.871px 4.871px 30.441px 0 rgba(0, 0, 0, 0.25); }
        .fc-land-1__start--txt--view div a {
          color: rgba(255, 255, 255, 0.9);
          text-decoration: none;
          text-transform: uppercase;
          padding: 60px 30px; }
          .fc-land-1__start--txt--view div a:hover {
            color: white;
            text-decoration: none; }
          .fc-land-1__start--txt--view div a:visited {
            color: white;
            text-decoration: none; }
          .fc-land-1__start--txt--view div a:active {
            color: white;
            text-decoration: none; }
          .fc-land-1__start--txt--view div a:focus {
            outline: none; }
    .fc-land-1__start--txt--t5 {
      position: relative;
      text-align: center;
      color: rgba(255, 255, 255, 0.7);
      width: 100%;
      font-size: 17px;
      font-weight: 500;
      line-height: 0;
      padding-top: 10px;
      opacity: 0.5;
      top: -14px;
      transform: translateY(5%); }
    .fc-land-1__start--img_word_grp {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      justify-items: stretch;
      position: relative;
      left: 40px; }
      @media screen and (max-width: 800px) {
        .fc-land-1__start--img_word_grp {
          display: flex;
          flex-direction: column-reverse;
          left: 0px; } }
    .fc-land-1__start--img_word_grid {
      display: grid;
      grid-template-columns: 1fr 1fr; }
    .fc-land-1__start--words {
      position: relative;
      bottom: -10px;
      left: 0;
      width: 100%;
      padding-right: 40px;
      color: rgba(0, 0, 0, 0.5); }
      @media screen and (max-width: 600px) {
        .fc-land-1__start--words {
          padding-right: 0px; } }
      .fc-land-1__start--words img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: bottom; }
    .fc-land-1__start--person {
      position: relative;
      left: 0;
      bottom: 0px;
      width: 100%;
      z-index: 1; }
      .fc-land-1__start--person img {
        position: absolute;
        left: -8dvw;
        bottom: -4dvh;
        width: 140%;
        height: 140%;
        object-fit: contain;
        object-position: right bottom; }
        @media screen and (max-width: 800px) {
          .fc-land-1__start--person img {
            left: -6dvw; } }
        @media screen and (max-width: 800px) {
          .fc-land-1__start--person img {
            width: 120%;
            height: 120%; } }
    .fc-land-1__start--kits {
      padding-top: 50px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 20px; }
    .fc-land-1__start--budget_bg {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 14px;
      align-items: center;
      border-radius: 40px;
      border: 5px solid #000;
      background: linear-gradient(180deg, #653e72 0%, #a171b1 8%, #d1a0e1 46%, #d1a0e1 92%, #9870a5 100%);
      box-shadow: 0 4px 35px 17px rgba(0, 0, 0, 0.27) inset; }
      .fc-land-1__start--budget_bg::before {
        content: "";
        z-index: -1;
        position: absolute;
        width: 85%;
        /* Or whatever size you need */
        height: 115%;
        /* Or whatever size you need */
        top: 30px;
        left: calc((90% * width) / 2);
        border-radius: 40px;
        background: linear-gradient(180deg, #002728 0%, #008a8e 100%);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center; }
    .fc-land-1__start--lowcarb_bg {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 14px;
      align-items: center;
      border-radius: 40px;
      border: 5px solid #000;
      background: linear-gradient(180deg, #106f4b 0%, #3ab083 8%, #66dcaf 46%, #66dcaf 92%, #106f4b 100%);
      box-shadow: 0 4px 35px 17px rgba(0, 0, 0, 0.27) inset; }
      .fc-land-1__start--lowcarb_bg::before {
        content: "";
        z-index: -1;
        position: absolute;
        width: 85%;
        /* Or whatever size you need */
        height: 115%;
        /* Or whatever size you need */
        top: 30px;
        left: calc((90% * width) / 2);
        border-radius: 40px;
        background: linear-gradient(180deg, #002728 0%, #008a8e 100%);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center; }
    .fc-land-1__start--veggie_bg {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 14px;
      align-items: center;
      border-radius: 40px;
      border: 5px solid #000;
      background: linear-gradient(180deg, #3c6200 0%, #67ab00 8%, #9be032 46%, #9be032 92%, #3c6200 100%);
      box-shadow: 0 4px 35px 17px rgba(0, 0, 0, 0.27) inset; }
      .fc-land-1__start--veggie_bg::before {
        content: "";
        z-index: -1;
        position: absolute;
        width: 85%;
        /* Or whatever size you need */
        height: 115%;
        /* Or whatever size you need */
        top: 30px;
        left: calc((90% * width) / 2);
        border-radius: 40px;
        background: linear-gradient(180deg, #002728 0%, #008a8e 100%);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center; }
  .fc-land-1__higher {
    display: flex;
    gap: 5px;
    flex-direction: column;
    background-color: white;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    width: 100dvw; }
    @media screen and (max-width: 600px) {
      .fc-land-1__higher {
        padding: 60px 10px;
        min-height: 90dvh; } }
    .fc-land-1__higher--title {
      font-size: 2.5rem;
      font-weight: 600;
      line-height: 1.2;
      text-align: center;
      color: var(--color-grey-dark);
      padding-bottom: 20px;
      text-transform: capitalize; }
      @media screen and (max-width: 600px) {
        .fc-land-1__higher--title {
          font-size: 5rem; } }
    .fc-land-1__higher--grid {
      display: flex;
      flex-wrap: wrap;
      gap: 20px;
      width: 100%;
      justify-content: center;
      align-items: center; }
    .fc-land-1__higher--ingredient_iq_block {
      display: grid;
      grid-template-columns: 100px 1fr;
      align-items: center;
      justify-items: center;
      column-gap: 2px;
      padding: 0 20px;
      background-color: #000;
      border-radius: 100px;
      width: 100%;
      height: auto;
      text-wrap: pretty;
      max-width: 400px; }
      @media screen and (max-width: 600px) {
        .fc-land-1__higher--ingredient_iq_block {
          grid-template-columns: 1fr;
          text-align: center; } }
    .fc-land-1__higher--ingredient_iq_img {
      width: 100%;
      height: 100%;
      max-width: 100px;
      height: auto; }
      @media screen and (max-width: 600px) {
        .fc-land-1__higher--ingredient_iq_img {
          max-width: 150px;
          padding-top: 20px; } }
      .fc-land-1__higher--ingredient_iq_img img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center center; }
    .fc-land-1__higher--ingredient_iq_txt {
      color: white;
      font-size: 15px;
      font-weight: 400;
      line-height: 1.2;
      padding: 10px 10px 10px 10px; }
      @media screen and (max-width: 600px) {
        .fc-land-1__higher--ingredient_iq_txt {
          font-size: 18px; } }
      .fc-land-1__higher--ingredient_iq_txt > :first-child {
        font-weight: 800; }
    .fc-land-1__higher--logos {
      width: 80px;
      height: auto;
      object-fit: contain;
      object-position: center center; }
  .fc-land-1__imges {
    min-height: 100px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); }
    .fc-land-1__imges img {
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: center center; }
    .fc-land-1__imges div:nth-child(n + 4):nth-child(-n + 5) {
      display: block; }
      @media screen and (max-width: 800px) {
        .fc-land-1__imges div:nth-child(n + 4):nth-child(-n + 5) {
          display: none; } }
  .fc-land-1__imges2 {
    background-color: #000;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc(33.3dvw), 1fr));
    gap: 0; }
    .fc-land-1__imges2 img {
      width: 100%;
      height: auto;
      object-fit: contain;
      object-position: center center; }
    @media screen and (max-width: 800px) {
      .fc-land-1__imges2 div:nth-child(n + 4):nth-child(-n + 5) {
        display: none; } }
    .fc-land-1__imges2 div:last-child {
      grid-column: x/-1; }
  .fc-land-1__results--grp {
    display: grid;
    grid-template-columns: 1fr;
    background-color: #00b4e6; }
  .fc-land-1__results--toptxt {
    position: relative;
    z-index: 2;
    top: 40px;
    left: 40px;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    padding-bottom: 40px;
    color: rgba(0, 0, 0, 0.5); }
    @media screen and (max-width: 800px) {
      .fc-land-1__results--toptxt {
        opacity: 0; } }
  .fc-land-1__results--img_word_grp {
    grid-template-columns: 1fr 1fr 1fr;
    display: grid;
    column-gap: 20px;
    justify-items: stretch;
    position: relative;
    left: 40px; }
    @media screen and (max-width: 800px) {
      .fc-land-1__results--img_word_grp {
        grid-template-columns: 1fr 1fr; } }
  .fc-land-1__results--words {
    position: relative;
    top: -30px;
    bottom: 0px;
    left: 0;
    width: 100%;
    color: rgba(0, 0, 0, 0.5); }
    .fc-land-1__results--words img {
      height: 120%;
      width: 120%;
      object-fit: contain;
      object-position: bottom; }
  .fc-land-1__results--person {
    position: relative;
    left: 0;
    bottom: 0px;
    width: 100%;
    z-index: 1; }
    .fc-land-1__results--person img {
      position: absolute;
      left: 1dvw;
      bottom: -4dvh;
      height: 150%;
      width: auto;
      object-fit: contain;
      object-position: right bottom; }
      @media screen and (max-width: 800px) {
        .fc-land-1__results--person img {
          left: 1dvw;
          bottom: 0dvh;
          height: 170%; } }
  .fc-land-1__results--text {
    margin-right: 80px;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(0, 0, 0, 0.5);
    text-align: left; }
    @media screen and (max-width: 800px) {
      .fc-land-1__results--text {
        display: none; } }
    .fc-land-1__results--text div:first-child {
      font-size: 2.3rem;
      font-weight: 500;
      line-height: 1.2;
      color: rgba(255, 255, 255, 0.5); }
    .fc-land-1__results--text div:last-child {
      margin-left: 20px;
      width: auto;
      height: 30px; }
      .fc-land-1__results--text div:last-child img {
        width: auto;
        height: 30px;
        object-fit: contain;
        object-position: center center; }
    .fc-land-1__results--text span {
      font-family: "Indie Flower", cursive;
      font-size: 2.5rem;
      font-weight: 700;
      color: yellowgreen; }
  .fc-land-1__results--heading {
    margin-top: 50px;
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.2;
    color: #3df6fc;
    text-transform: capitalize;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); }
  .fc-land-1__results--txt {
    text-align: center;
    font-size: 2.3rem;
    font-weight: 400;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 20px;
    text-wrap: balance; }
    @media screen and (max-width: 800px) {
      .fc-land-1__results--txt {
        padding-bottom: 0; } }
  .fc-land-1__results--pics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0 10%;
    width: 100%;
    margin-top: -30px;
    height: auto;
    transform: translateX(-5%);
    position: relative;
    z-index: 0; }
    @media screen and (max-width: 800px) {
      .fc-land-1__results--pics {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        justify-self: center; } }
  .fc-land-1__results--photos {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    position: relative;
    text-shadow: 2px 4px 20px rgba(0, 0, 0, 0.3); }
    .fc-land-1__results--photos img {
      position: relative;
      width: 110%;
      height: auto;
      object-fit: contain;
      object-position: center center; }
    @media screen and (max-width: 800px) {
      .fc-land-1__results--photos:first-child {
        grid-column: 1/-1; } }
    @media screen and (max-width: 800px) {
      .fc-land-1__results--photos:nth-child(n + 2) {
        margin-top: -110px; } }
  .fc-land-1__results--bg {
    position: relative;
    border-radius: 40px;
    margin: 20px;
    padding: 10px;
    background-color: #048099;
    z-index: 0;
    height: calc(100% - 150px); }
  .fc-land-1__results--result-grp {
    position: relative;
    display: flex;
    flex-direction: row;
    margin-top: -100px;
    row-gap: 20px;
    padding: 20px 0;
    align-items: center;
    justify-items: center;
    z-index: 100; }
    @media screen and (max-width: 600px) {
      .fc-land-1__results--result-grp {
        flex-direction: column; } }
    @media screen and (max-width: 600px) {
      .fc-land-1__results--result-grp {
        margin-top: -50px; } }
    @media screen and (max-width: 600px) {
      .fc-land-1__results--result-grp {
        row-gap: 0px; } }
  .fc-land-1__results--grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-right: 10dvw; }
    @media screen and (max-width: 600px) {
      .fc-land-1__results--grid {
        gap: 10px; } }
    @media screen and (max-width: 600px) {
      .fc-land-1__results--grid {
        margin-right: 0; } }
  .fc-land-1__results--card {
    background-color: #fff;
    padding: 10px 10px 20px 10px;
    box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
    aspect-ratio: 1 / 0.7; }
    @media screen and (max-width: 600px) {
      .fc-land-1__results--card {
        aspect-ratio: 1/0.7; } }
    .fc-land-1__results--card div:first-child {
      display: flex;
      flex-direction: column;
      font-size: 17px;
      font-weight: 600;
      line-height: 1;
      padding: 5px 2px;
      height: 100%;
      justify-content: center;
      align-items: center;
      text-wrap: balance;
      color: #fff;
      background-color: #01bac0; }
    .fc-land-1__results--card div:last-child {
      padding-top: 10px;
      font-size: 16px;
      font-weight: 400;
      line-height: 1.2;
      font-weight: 600;
      color: #000; }
  .fc-land-1__results--12wks img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center center;
    max-width: 500px;
    border-radius: 20px;
    z-index: 5; }
    @media screen and (max-width: 800px) {
      .fc-land-1__results--12wks img {
        margin-top: -50px;
        max-width: 200px; } }
  .fc-land-1__medical {
    background-color: #fff;
    padding: 60px 10px; }
    .fc-land-1__medical--grp {
      display: grid;
      grid-template-columns: 1fr; }
    .fc-land-1__medical--toptxt {
      position: relative;
      z-index: 2;
      top: 40px;
      font-size: 2.5rem;
      font-weight: 600;
      line-height: 1.2;
      padding-bottom: 40px;
      color: rgba(0, 0, 0, 0.5); }
      @media screen and (max-width: 600px) {
        .fc-land-1__medical--toptxt {
          display: none; } }
    .fc-land-1__medical--img_word_grp {
      grid-template-columns: 1fr min-content 1fr;
      width: 90%;
      position: relative;
      margin-top: 2rem;
      display: grid;
      column-gap: 20px;
      justify-items: stretch;
      position: relative;
      left: 40px; }
      @media screen and (max-width: 600px) {
        .fc-land-1__medical--img_word_grp {
          grid-template-columns: 1fr 1fr; } }
    .fc-land-1__medical--words {
      position: relative;
      bottom: 0px;
      left: -10px;
      width: 100%;
      height: auto;
      color: rgba(0, 0, 0, 0.5); }
      .fc-land-1__medical--words img {
        height: 100%;
        width: 100%;
        object-fit: contain;
        object-position: right bottom; }
    .fc-land-1__medical--person {
      display: grid;
      position: relative;
      left: 0;
      bottom: 0px;
      width: 150%;
      z-index: 1; }
      @media screen and (max-width: 600px) {
        .fc-land-1__medical--person {
          width: 190%;
          left: -70px; } }
      .fc-land-1__medical--person img {
        position: absolute;
        right: -5dvw;
        bottom: -4dvh;
        width: auto;
        height: 150%;
        object-fit: contain;
        object-position: right bottom; }
        @media screen and (max-width: 600px) {
          .fc-land-1__medical--person img {
            right: 14dvw;
            bottom: -1dvh; } }
    .fc-land-1__medical--heading {
      margin-top: 50px;
      font-size: 4rem;
      font-weight: 600;
      line-height: 1.2;
      color: #01bac0;
      text-transform: capitalize;
      text-align: center;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); }
    .fc-land-1__medical--subheading {
      font-size: 2rem;
      font-weight: 600;
      line-height: 1.2;
      color: #f27714;
      padding-bottom: 20px;
      text-transform: capitalize;
      text-align: center;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); }
    .fc-land-1__medical--subheading2 {
      display: table-cell;
      font-size: 3.5rem;
      font-weight: 600;
      line-height: 3;
      color: blueviolet;
      text-transform: capitalize;
      text-align: center;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); }
      .fc-land-1__medical--subheading2--2 {
        color: green; }
      .fc-land-1__medical--subheading2--3 {
        color: red; }
    .fc-land-1__medical--txt {
      text-wrap: balance;
      text-align: center;
      font-size: 2rem;
      font-weight: 400;
      line-height: 1.5;
      color: rgba(0, 0, 0, 0.8);
      max-width: 600px;
      margin: 0 auto;
      padding-bottom: 30px;
      text-wrap: balance; }
      .fc-land-1__medical--txt p {
        margin-bottom: 10px; }
      @media screen and (max-width: 800px) {
        .fc-land-1__medical--txt {
          padding-bottom: 0; } }
    .fc-land-1__medical--table {
      display: flex;
      justify-content: center;
      position: relative;
      margin-top: 50px; }
      @media screen and (max-width: 800px) {
        .fc-land-1__medical--table {
          margin-top: 100px; } }
      .fc-land-1__medical--table table {
        border-collapse: separate; }
        border .fc-land-1__medical--table table th,
        .fc-land-1__medical--table table td {
          font-size: 17px;
          line-height: 0.9;
          padding: 3px 5px;
          text-align: center; }
          border .fc-land-1__medical--table table th:first-child,
          .fc-land-1__medical--table table td:first-child {
            font-weight: 600; }
        .fc-land-1__medical--table table th {
          color: #fff; }
        .fc-land-1__medical--table table td {
          background-color: #c0c0c0;
          padding: 10px 1px; }
        .fc-land-1__medical--table table tr:nth-child(even) td {
          background-color: #e6e5e5; }
        .fc-land-1__medical--table table img {
          position: absolute;
          width: 100px;
          top: -60px;
          transform: translateX(-50px); }
          @media screen and (max-width: 600px) {
            .fc-land-1__medical--table table img {
              top: -90px; } }
        .fc-land-1__medical--table table td[colspan="3"] {
          background-color: white !important;
          font-size: 25px; }
          @media screen and (max-width: 600px) {
            .fc-land-1__medical--table table td[colspan="3"] {
              font-size: 33px; } }
  .fc-land-1__pf {
    position: relative;
    display: grid;
    background-color: #2a65b0;
    min-height: 700px;
    align-items: center;
    padding: 40px 60px; }
    @media screen and (max-width: 600px) {
      .fc-land-1__pf {
        align-items: center;
        min-height: 90dvh;
        align-content: center;
        row-gap: 30px; } }
    .fc-land-1__pf--title {
      font-size: 2.5rem;
      font-weight: 600;
      line-height: 1.2;
      color: white;
      padding: 20px 0px;
      text-transform: capitalize;
      text-align: center; }
    .fc-land-1__pf--img {
      width: 100%;
      height: auto; }
      .fc-land-1__pf--img img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center center; }
    .fc-land-1__pf--ice_button {
      width: 100%;
      display: flex;
      justify-content: center;
      justify-items: center; }
      .fc-land-1__pf--ice_button a {
        padding: 10px 20px;
        border-radius: 100px;
        border: 1.378px solid #3df6fc;
        background: linear-gradient(174deg, #29e9ef -5.73%, #01bac0 34.1%, #01bac0 71.72%, #006a6d 109.33%), #d9d9d9;
        text-wrap: nowrap;
        box-shadow: 4px 4px 12px 0 rgba(0, 0, 0, 0.25);
        width: min-content;
        text-decoration: none;
        color: rgba(0, 0, 0, 0.5);
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        line-height: 25px; }
        .fc-land-1__pf--ice_button a:hover {
          color: white;
          text-decoration: none; }
        .fc-land-1__pf--ice_button a:visited {
          color: white;
          text-decoration: none; }
        .fc-land-1__pf--ice_button a:active {
          color: white;
          text-decoration: none; }
        .fc-land-1__pf--ice_button a:focus {
          outline: none; }
  .fc-land-1__builder {
    position: relative;
    display: grid;
    background-color: var(--color-grey-light-3);
    width: 100%;
    height: 100%;
    min-height: 600px;
    align-items: center;
    align-content: center;
    overflow: hidden;
    aspect-ratio: 2.6 / 1; }
    @media screen and (max-width: 600px) {
      .fc-land-1__builder {
        aspect-ratio: unset;
        min-height: 90dvh; } }
    .fc-land-1__builder--background {
      position: absolute;
      width: auto;
      height: 100%; }
      .fc-land-1__builder--background img {
        width: auto;
        height: 100%;
        object-fit: contain;
        object-position: center center; }
    .fc-land-1__builder--circle {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      justify-items: center;
      top: 50%;
      left: 50%;
      transform: translateX(-50%) translateY(-50%);
      width: auto;
      height: 90%;
      max-height: 400px;
      aspect-ratio: 1 / 1;
      border-radius: 100%;
      background: black;
      color: white;
      line-height: 1.2;
      text-align: center; }
      .fc-land-1__builder--circle--l1 {
        font-size: 4rem;
        font-weight: 300; }
      .fc-land-1__builder--circle--l2 {
        font-weight: 600;
        font-size: 4.5rem; }
      .fc-land-1__builder--circle--l3 {
        font-weight: 600;
        color: orange;
        font-size: 3rem; }
      .fc-land-1__builder--circle--btn {
        width: 100%;
        display: flex;
        justify-content: center;
        justify-items: center;
        padding-top: 30px; }
        .fc-land-1__builder--circle--btn a {
          padding: 10px 30px;
          border-radius: 100px;
          border: 1px solid #fb974f;
          box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.9);
          background: linear-gradient(180deg, #fb9e5b 0%, #e46615 40%, #e46615 70%, #8a3213 100%), #d9d9d9;
          text-wrap: nowrap;
          width: min-content;
          text-decoration: none;
          color: rgba(255, 255, 255, 0.7);
          text-align: center;
          font-size: 18px;
          font-weight: 600;
          line-height: 1.2; }
          .fc-land-1__builder--circle--btn a:hover {
            color: white;
            text-decoration: none; }
          .fc-land-1__builder--circle--btn a:visited {
            color: white;
            text-decoration: none; }
          .fc-land-1__builder--circle--btn a:active {
            color: white;
            text-decoration: none; }
          .fc-land-1__builder--circle--btn a:focus {
            outline: none; }
  .fc-land-1__no_plastic {
    background-color: darkblue;
    position: relative;
    display: block;
    background-color: var(--color-grey-light-3);
    width: 100%;
    min-height: 700px;
    align-items: center;
    align-content: center;
    aspect-ratio: 2.6 / 1;
    display: grid;
    align-items: center;
    align-content: center;
    aspect-ratio: unset;
    min-height: 90dvh; }
    .fc-land-1__no_plastic--background {
      position: absolute;
      width: auto;
      height: 100%;
      background-color: blue; }
      .fc-land-1__no_plastic--background img {
        width: auto;
        height: 100%;
        object-fit: contain;
        object-position: center center; }
    .fc-land-1__no_plastic--meal {
      position: absolute;
      top: 20px;
      right: 40px;
      width: 100px; }
      .fc-land-1__no_plastic--meal img {
        width: auto;
        height: 100px;
        object-fit: cover;
        object-position: center center; }
    .fc-land-1__no_plastic--arrow {
      position: absolute;
      flex-direction: column;
      display: flex;
      place-content: center;
      place-items: center;
      top: 10%;
      right: 40px;
      width: 100px;
      height: auto;
      padding-right: 10px; }
      @media screen and (max-width: 600px) {
        .fc-land-1__no_plastic--arrow {
          top: 5%;
          right: 10px;
          width: 150px; } }
      .fc-land-1__no_plastic--arrow img {
        width: 30px;
        height: auto;
        object-fit: contain;
        object-position: center center; }
        @media screen and (max-width: 600px) {
          .fc-land-1__no_plastic--arrow img {
            object-position: top center; } }
      .fc-land-1__no_plastic--arrow div {
        width: 150px;
        font-family: "Indie Flower", cursive;
        line-height: 1;
        color: #cbf58c;
        padding-right: 30px; }
    .fc-land-1__no_plastic--txt {
      position: relative;
      display: flex;
      flex-direction: column;
      row-gap: 10px;
      height: 100%;
      width: 100%;
      padding: 40px 0;
      align-items: center;
      justify-content: space-between;
      z-index: 2;
      font-size: 2.5rem;
      font-weight: 600;
      line-height: 1.2;
      padding-bottom: 20px;
      color: rgba(255, 255, 255, 0.8);
      text-transform: capitalize;
      gap: 20px; }
      @media screen and (max-width: 600px) {
        .fc-land-1__no_plastic--txt {
          row-gap: 30px; } }
      .fc-land-1__no_plastic--txt--l1 {
        position: relative;
        font-size: 4dvw;
        font-weight: 400;
        text-align: center;
        text-wrap: balance; }
        @media screen and (max-width: 600px) {
          .fc-land-1__no_plastic--txt--l1 {
            width: 80dvw;
            font-size: 7dvw;
            line-height: 1; } }
      .fc-land-1__no_plastic--txt--no {
        position: relative;
        text-wrap: nowrap;
        padding: unset;
        color: red;
        width: 100%;
        height: 100%; }
        .fc-land-1__no_plastic--txt--no::before {
          content: "";
          position: absolute;
          display: grid;
          background-color: red;
          height: 8%;
          width: 85%;
          top: 50%;
          left: 6%;
          transform: rotate(-45deg); }
      .fc-land-1__no_plastic--txt--l2 {
        font-size: 9dvw;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 0.2; }
        @media screen and (max-width: 600px) {
          .fc-land-1__no_plastic--txt--l2 {
            font-size: 18dvw; } }
      .fc-land-1__no_plastic--txt--l3 {
        font-size: 9dvw;
        font-weight: 500;
        text-transform: uppercase;
        line-height: 1; }
        @media screen and (max-width: 600px) {
          .fc-land-1__no_plastic--txt--l3 {
            font-size: 13dvw; } }
      .fc-land-1__no_plastic--txt--l4 {
        font-size: 3dvw;
        font-weight: 400;
        color: yellow;
        text-align: center;
        text-wrap: balance; }
        @media screen and (max-width: 600px) {
          .fc-land-1__no_plastic--txt--l4 {
            font-size: 4dvw;
            width: 80dvw; } }
  .fc-land-1__frozen {
    background-color: grey;
    display: block;
    position: relative;
    background-color: var(--color-grey-light-3);
    width: 100%;
    min-height: 700px;
    aspect-ratio: 2.6 / 1; }
    @media screen and (max-width: 600px) {
      .fc-land-1__frozen {
        display: grid;
        align-items: center;
        align-content: center; } }
    @media screen and (max-width: 600px) {
      .fc-land-1__frozen {
        display: grid;
        aspect-ratio: unset;
        min-height: 90dvh; } }
    .fc-land-1__frozen--background {
      position: absolute;
      width: auto;
      height: 100%; }
      .fc-land-1__frozen--background img {
        width: auto;
        height: 100%;
        object-fit: contain;
        object-position: center center; }
    .fc-land-1__frozen--img {
      position: absolute;
      flex-direction: column;
      display: flex;
      place-content: center;
      place-items: center;
      bottom: 10%;
      right: 20px;
      width: 100px;
      height: auto;
      padding-right: 10px;
      mix-blend-mode: darken; }
      .fc-land-1__frozen--img img {
        width: auto;
        height: 200px;
        object-fit: contain;
        object-position: center center; }
    .fc-land-1__frozen--txt {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      width: 100%;
      gap: 50px;
      align-items: center;
      justify-content: center;
      z-index: 2;
      font-size: 2.5rem;
      font-weight: 600;
      line-height: 1.2;
      color: rgba(0, 0, 0, 0.8);
      text-transform: capitalize; }
      @media screen and (max-width: 600px) {
        .fc-land-1__frozen--txt {
          row-gap: 30px; } }
      .fc-land-1__frozen--txt--l1 {
        font-size: 3dvw;
        font-weight: 500;
        text-align: center;
        text-wrap: balance; }
        @media screen and (max-width: 600px) {
          .fc-land-1__frozen--txt--l1 {
            font-size: 4dvw;
            width: 80dvw; } }
      .fc-land-1__frozen--txt--l2 {
        display: grid;
        row-gap: 20px;
        font-size: 14dvw;
        width: 80dvw;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 0.6;
        color: #2a65b0;
        text-align: center;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); }
        @media screen and (max-width: 600px) {
          .fc-land-1__frozen--txt--l2 {
            font-size: 18dvw;
            line-height: 0.8; } }
      .fc-land-1__frozen--txt--l3 {
        font-size: 10dvw;
        font-weight: 500;
        text-transform: uppercase;
        line-height: 0.6;
        color: #2a65b0; }
        @media screen and (max-width: 600px) {
          .fc-land-1__frozen--txt--l3 {
            font-size: 13dvw;
            line-height: 0.2; } }
      .fc-land-1__frozen--txt--l4 {
        font-size: 6dvw;
        font-weight: 500;
        text-transform: uppercase;
        line-height: 0.6;
        color: #2a65b0; }
      .fc-land-1__frozen--txt--l5 {
        font-size: 2.5dvw;
        font-weight: 400;
        color: #000;
        text-align: center;
        text-wrap: balance;
        text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2); }
        @media screen and (max-width: 600px) {
          .fc-land-1__frozen--txt--l5 {
            width: 60dvw;
            font-size: 3dvh; } }
  .fc-land-1__options {
    z-index: 10;
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
    min-height: 450px;
    align-content: center;
    padding: 60px 60px;
    justify-content: center;
    justify-items: center; }
    @media screen and (max-width: 600px) {
      .fc-land-1__options {
        padding: 60px 60px;
        min-height: 90dvh; } }
    .fc-land-1__options--btn {
      flex: 1 1 130px;
      /* grow | shrink | basis */
      width: 100%;
      display: flex;
      align-items: center; }
    .fc-land-1__options > div {
      display: flex;
      flex-direction: column;
      width: 100%;
      align-items: center;
      align-content: center;
      text-wrap: balance; }
      .fc-land-1__options > div a {
        display: grid;
        align-content: center;
        height: 100%;
        width: 100%;
        padding: 10px 20px;
        border-radius: 100px;
        border: 1px solid #3df6fc;
        background: linear-gradient(180deg, #00dee6 0%, #01bac0 34%, #01bac0 71%, #006a6d 100%), #d9d9d9;
        text-wrap: nowrap;
        text-decoration: none;
        box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.4) !important;
        color: rgba(255, 255, 255, 0.9);
        text-align: center;
        font-size: 16px;
        font-weight: 500;
        line-height: 1;
        text-transform: uppercase; }
        .fc-land-1__options > div a div:first-child {
          text-transform: uppercase;
          font-size: 15px;
          font-weight: 600; }
        .fc-land-1__options > div a div:nth-child(n + 2) {
          text-transform: uppercase;
          font-size: 20px;
          font-weight: 700; }
        .fc-land-1__options > div a:hover {
          color: white;
          text-decoration: none; }
        .fc-land-1__options > div a:visited {
          color: white;
          text-decoration: none; }
        .fc-land-1__options > div a:active {
          color: white;
          text-decoration: none; }
        .fc-land-1__options > div a:focus {
          outline: none; }
    .fc-land-1__options--meal_plan_btn {
      flex: 1 1 130px;
      /* grow | shrink | basis */
      width: 100%;
      display: flex;
      justify-content: center;
      justify-items: center; }
      .fc-land-1__options--meal_plan_btn a {
        height: 100%;
        flex: 1 1 130px;
        /* grow | shrink | basis */
        padding: 5px 10px;
        border-radius: 100px;
        border: 1px solid #fb974f !important;
        box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.9) !important;
        background: linear-gradient(180deg, #f9c199 0%, #e46615 40%, #e46615 70%, #873111 100%) !important;
        text-wrap: pretty !important;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.7);
        text-align: center;
        font-size: 20px !important;
        font-weight: 600;
        line-height: 1.2; }
        .fc-land-1__options--meal_plan_btn a:hover {
          color: white;
          text-decoration: none; }
        .fc-land-1__options--meal_plan_btn a:visited {
          color: white;
          text-decoration: none; }
        .fc-land-1__options--meal_plan_btn a:active {
          color: white;
          text-decoration: none; }
        .fc-land-1__options--meal_plan_btn a:focus {
          outline: none; }
  .fc-land-1__lowcarb {
    background-color: grey;
    position: relative;
    display: block;
    background-color: linear-gradient(150deg, #fff 0%, #fff 50%, #d6d5d5 80%, #f2f2f2 100%);
    width: 100%;
    min-height: 700px;
    aspect-ratio: 2.6 / 1; }
    @media screen and (max-width: 600px) {
      .fc-land-1__lowcarb {
        display: grid;
        aspect-ratio: unset;
        min-height: 90dvh; } }
    .fc-land-1__lowcarb--background {
      position: absolute;
      width: auto;
      height: 100%; }
      .fc-land-1__lowcarb--background img {
        width: auto;
        height: 100%;
        object-fit: contain;
        object-position: center center; }
    .fc-land-1__lowcarb--img {
      position: absolute;
      flex-direction: column;
      display: flex;
      place-content: center;
      place-items: center;
      bottom: 10%;
      right: 20px;
      width: 100px;
      height: auto;
      padding-right: 10px;
      mix-blend-mode: darken; }
      .fc-land-1__lowcarb--img img {
        width: auto;
        height: 200px;
        object-fit: contain;
        object-position: center center; }
    .fc-land-1__lowcarb--txt {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      width: 100%;
      padding: 30px 0;
      align-items: center;
      justify-content: center;
      row-gap: 20px;
      z-index: 2;
      text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2);
      font-size: 2.5rem;
      font-weight: 600;
      line-height: 1.2;
      padding-bottom: 20px;
      color: rgba(0, 0, 0, 0.4);
      text-transform: capitalize; }
      .fc-land-1__lowcarb--txt--l1 {
        font-size: 10dvw;
        line-height: 0.6;
        font-weight: 700;
        text-transform: uppercase;
        color: #fff; }
        @media screen and (max-width: 600px) {
          .fc-land-1__lowcarb--txt--l1 {
            font-size: 17dvw;
            line-height: 0.6; } }
      .fc-land-1__lowcarb--txt--l2 {
        font-size: 10dvw;
        font-weight: 500;
        text-transform: uppercase;
        line-height: 0.6;
        color: #fff; }
        @media screen and (max-width: 600px) {
          .fc-land-1__lowcarb--txt--l2 {
            font-size: 15dvw; } }
      .fc-land-1__lowcarb--txt--l3 {
        margin-top: 60px;
        font-size: 4dvw;
        font-weight: 600;
        color: #fff;
        text-align: center;
        text-wrap: balance; }
        @media screen and (max-width: 600px) {
          .fc-land-1__lowcarb--txt--l3 {
            width: 40dvw; } }
        .fc-land-1__lowcarb--txt--l3 a {
          color: white;
          text-decoration: none; }
          .fc-land-1__lowcarb--txt--l3 a:hover {
            color: orange;
            text-decoration: none; }
          .fc-land-1__lowcarb--txt--l3 a:visited {
            color: white;
            text-decoration: none; }
          .fc-land-1__lowcarb--txt--l3 a:active {
            color: white;
            text-decoration: none; }
          .fc-land-1__lowcarb--txt--l3 a:focus {
            outline: none; }
  .fc-land-1__intermittent {
    background-color: #ff9b7f;
    position: relative;
    display: block;
    width: 100%;
    min-height: 700px;
    aspect-ratio: 2.6 / 1; }
    @media screen and (max-width: 600px) {
      .fc-land-1__intermittent {
        aspect-ratio: unset;
        display: grid;
        min-height: 90dvh; } }
    .fc-land-1__intermittent--clock {
      position: relative;
      width: auto;
      height: 50px;
      flex-direction: column;
      display: flex;
      place-content: center;
      place-items: center;
      bottom: 5%;
      left: 10%;
      padding-left: 10px;
      z-index: 2; }
      .fc-land-1__intermittent--clock img {
        width: auto;
        height: 100px;
        object-fit: contain;
        object-position: center center; }
    .fc-land-1__intermittent--txt {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      width: 100%;
      padding: 30px 0;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
      font-weight: 600;
      line-height: 1.2;
      padding-bottom: 20px;
      color: rgba(0, 0, 0, 0.8);
      text-transform: capitalize;
      text-align: center; }
      .fc-land-1__intermittent--txt a {
        color: rgba(0, 0, 0, 0.7);
        text-decoration: none; }
        .fc-land-1__intermittent--txt a:hover {
          color: rgba(0, 0, 0, 0.7);
          text-decoration: none; }
        .fc-land-1__intermittent--txt a:visited {
          color: rgba(0, 0, 0, 0.7);
          text-decoration: none; }
        .fc-land-1__intermittent--txt a:active {
          color: white;
          text-decoration: none; }
        .fc-land-1__intermittent--txt a:focus {
          outline: none; }
      .fc-land-1__intermittent--txt--l1 {
        font-size: 13dvw;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 0.8;
        color: #fff;
        text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7); }
      .fc-land-1__intermittent--txt--l2 {
        font-size: 10dvw;
        font-weight: 600;
        color: rgba(0, 0, 0, 0.5);
        text-align: center;
        text-wrap: balance;
        padding-top: 20px; }
        @media screen and (max-width: 600px) {
          .fc-land-1__intermittent--txt--l2 {
            width: 40dvw; } }
  .fc-land-1__juice {
    background-color: #ffe57f;
    position: relative;
    width: 100%;
    min-height: 700px;
    aspect-ratio: 2.6 / 1; }
    @media screen and (max-width: 600px) {
      .fc-land-1__juice {
        aspect-ratio: 1.3 / 1;
        min-height: 90dvh; } }
    .fc-land-1__juice--photo {
      position: absolute;
      width: 100%;
      height: 100%;
      flex-direction: column;
      display: flex;
      place-content: center;
      place-items: center; }
      .fc-land-1__juice--photo img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: center center; }
    .fc-land-1__juice--txt {
      position: relative;
      display: flex;
      flex-direction: column;
      height: 100%;
      width: 100%;
      padding: 30px 0;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      font-weight: 600;
      line-height: 1.2;
      padding-bottom: 20px;
      color: rgba(0, 0, 0, 0.8);
      text-transform: capitalize;
      text-align: center; }
      .fc-land-1__juice--txt--l1 {
        font-size: 10dvw;
        font-weight: 700;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        text-transform: uppercase;
        line-height: 0.8;
        color: #fff;
        text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7); }
        @media screen and (max-width: 900px) {
          .fc-land-1__juice--txt--l1 {
            grid-template-columns: repeat(1, 1fr);
            row-gap: 5%;
            font-size: 18dvw; } }
      .fc-land-1__juice--txt--l2 {
        font-size: 10dvw;
        font-weight: 600;
        color: rgba(0, 0, 0, 0.5);
        text-align: center;
        text-wrap: balance;
        padding-top: 20px; }
        @media screen and (max-width: 600px) {
          .fc-land-1__juice--txt--l2 {
            width: 40dvw; } }
        .fc-land-1__juice--txt--l2 a {
          color: rgba(0, 0, 0, 0.7);
          text-decoration: none; }
          .fc-land-1__juice--txt--l2 a:hover {
            color: rgba(0, 0, 0, 0.7);
            text-decoration: none; }
          .fc-land-1__juice--txt--l2 a:visited {
            color: rgba(0, 0, 0, 0.7);
            text-decoration: none; }
          .fc-land-1__juice--txt--l2 a:active {
            color: white;
            text-decoration: none; }
          .fc-land-1__juice--txt--l2 a:focus {
            outline: none; }
  .fc-land-1__range {
    background-color: black;
    position: relative;
    width: 100%;
    display: block;
    min-height: 700px;
    aspect-ratio: 2.6 / 1; }
    @media screen and (max-width: 600px) {
      .fc-land-1__range {
        display: grid;
        aspect-ratio: unset;
        min-height: 90dvh; } }
    .fc-land-1__range--photo {
      position: absolute;
      width: 100%;
      height: 100%;
      flex-direction: column;
      display: flex;
      place-content: center;
      place-items: center; }
      .fc-land-1__range--photo img {
        width: 80%;
        height: auto;
        object-fit: contain;
        object-position: center center; }
    .fc-land-1__range--txt {
      position: relative;
      display: flex;
      flex-direction: column;
      row-gap: 4%;
      height: 100%;
      width: 100%;
      padding: 30px 0;
      align-items: center;
      justify-content: center;
      font-size: 2.5rem;
      font-weight: 600;
      line-height: 1.2;
      padding-bottom: 20px;
      color: rgba(0, 0, 0, 0.8);
      text-transform: capitalize;
      text-align: center; }
      .fc-land-1__range--txt--l1 {
        display: grid;
        grid-template-columns: 1fr;
        font-size: 18dvw;
        gap: 10px;
        font-weight: 700;
        text-transform: uppercase;
        line-height: 0.8;
        color: #fff;
        text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7); }
      .fc-land-1__range--txt--l2 {
        font-size: 4dvw;
        font-weight: 500;
        text-transform: uppercase;
        line-height: 0.8;
        color: #fff;
        text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.7); }

.fc-main-header {
  background: var(--menu-bar-gradient);
  display: grid;
  position: fixed;
  z-index: 900;
  top: 0;
  left: 0;
  transition: all 0.6s ease;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  width: 100vw; }
  .fc-main-header--hidden {
    top: -90px; }
    .fc-main-header--hidden .fmn__container .fmn__checkout {
      top: 90px;
      box-shadow: -4px 6px 4px rgba(0, 0, 0, 0.2); }

.fmn__container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas: 'logo menu checkout';
  column-gap: 2px;
  margin: 10px;
  column-gap: 30px;
  padding: 0 20px;
  align-content: center;
  justify-items: center; }
  @media only screen and (max-width: 1000px) {
    .fmn__container {
      column-gap: 2px; } }
  @media only screen and (max-width: 575px) {
    .fmn__container {
      margin: 10px 0px;
      padding: 0 10px;
      column-gap: 5px; } }

.fmn__logos {
  align-self: center;
  display: grid;
  align-items: center;
  max-width: 200px;
  grid-area: logo; }
  @media only screen and (max-width: 575px) {
    .fmn__logos {
      grid-area: menu; } }
  .fmn__logos img:last-child {
    display: none; }
  @media only screen and (max-width: 1050px) {
    .fmn__logos img:first-child {
      display: none;
      padding-right: 0px;
      min-height: 50px; }
    .fmn__logos img:last-child {
      display: grid;
      border-radius: 100px; } }
  @media only screen and (max-width: 575px) {
    .fmn__logos img:first-child {
      display: grid;
      padding-right: 0px;
      min-height: 20px; }
    .fmn__logos img:last-child {
      display: none; } }

.fmn__logo {
  grid-area: logo;
  width: 100%;
  max-height: 64px;
  object-fit: contain;
  object-position: center center;
  align-self: center;
  margin-right: 10px; }
  @media only screen and (max-width: 575px) {
    .fmn__logo {
      grid-area: menu; } }

.fmn__menu-area {
  display: grid;
  grid-template-columns: repeat(7, min-content);
  grid-template-rows: repeat(2, 1fr);
  grid-template-areas: 'sub sub sub sub sub sub sub'
 'kit meals drinks contact search more name';
  column-gap: 15px;
  row-gap: 10px;
  padding-right: 8px;
  justify-content: center; }
  @media only screen and (max-width: 850px) {
    .fmn__menu-area {
      grid-template-columns: repeat(6, auto);
      grid-template-rows: repeat(1, 1fr);
      align-content: space-evenly;
      grid-template-areas: 'sub sub sub name name name '
 'kit meals drinks contact search more';
      column-gap: 10px; } }
  @media only screen and (max-width: 575px) {
    .fmn__menu-area {
      grid-template-areas: 'more more more name name name'; } }

.fmn__subscription {
  background: var(--orange-gradient-1);
  grid-area: sub;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 1;
  color: white;
  font-size: 21px;
  font-weight: 600;
  display: grid;
  grid-template-columns: repeat(2, min-content);
  justify-content: center;
  align-items: center;
  padding: 3px;
  border-radius: 5px; }
  @media only screen and (max-width: 575px) {
    .fmn__subscription {
      display: none; } }

.fmn__subscription-icon {
  height: 20px;
  padding-right: 10px; }

.fmn__nav-text {
  text-transform: uppercase;
  text-decoration: none;
  color: #cccccc;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 1px;
  align-content: center;
  line-height: 0.8;
  align-self: center; }
  @media only screen and (max-width: 575px) {
    .fmn__nav-text {
      letter-spacing: 0px; } }

.fmn__kits {
  grid-area: kit; }
  @media only screen and (max-width: 575px) {
    .fmn__kits {
      display: none;
      pointer-events: none; } }

.fmn__meals {
  grid-area: meals; }
  @media only screen and (max-width: 575px) {
    .fmn__meals {
      display: none;
      pointer-events: none; } }

.fmn__drinks {
  grid-area: drinks; }
  @media only screen and (max-width: 575px) {
    .fmn__drinks {
      display: none;
      pointer-events: none; } }

.fmn__contact {
  grid-area: contact; }
  @media only screen and (max-width: 575px) {
    .fmn__contact {
      display: none;
      pointer-events: none; } }

.fmn__search {
  grid-area: search; }
  @media only screen and (max-width: 575px) {
    .fmn__search {
      display: none;
      pointer-events: none; } }

.fmn__nav-icon {
  width: 25px;
  height: 25px; }

.fmn__more {
  grid-area: more;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: min-content min-content; }
  .fmn__more span:first-child {
    font-size: 19px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 0.8;
    align-items: start; }
    @media only screen and (max-width: 575px) {
      .fmn__more span:first-child {
        display: none;
        pointer-events: none; } }
  .fmn__more span:last-child {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 0;
    justify-self: end; }
    @media only screen and (max-width: 575px) {
      .fmn__more span:last-child {
        display: none;
        pointer-events: none; } }
  @media only screen and (max-width: 575px) {
    .fmn__more::before {
      content: '';
      font-size: 16px;
      letter-spacing: 0;
      margin-right: 5px;
      width: 64px;
      height: 64px;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      background-image: url(/assets/img/icon-hamburger-menu.svg);
      background-color: rgba(0, 0, 0, 0.2); } }

.fmn__customer-name {
  grid-area: name;
  background-color: #8294aa;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  text-transform: uppercase;
  text-decoration: none;
  text-wrap: nowrap;
  color: white;
  font-size: 17px;
  font-weight: 500;
  padding: 2px 8px;
  line-height: 0.7;
  border-radius: 5px; }
  @media (min-width:320px) and (max-width:568px){
    .fmn__customer-name {padding: 2px 4px;}
  }
  @media only screen and (max-width: 575px) {
    .fmn__customer-name {
      border-radius: 5px; } }
  .fmn__customer-name span:last-child {
    color: white;
    font-size: 20px;
    font-weight: 700;
    padding-left: 0px;
    margin-top: -2px; }

.fmn__checkout {
  grid-area: checkout;
  border-radius: 5px;
  background: var(--grey-gradient-1);
  display: grid;
  grid-template-columns: repeat 2, min-content;
  grid-template-rows: repeat 3, min-content;
  border: 1px solid black;
  column-gap: 5px;
  padding: 8px;
  width: 100%;
  position: relative;
  max-width: 200px; }
  @media only screen and (max-width: 575px) {
    .fmn__checkout {
      width: 64px;
      border-radius: 5px;
      margin-left: 5px; padding: 10px;} }

.fmn__checkout-icon {
  align-self: center;
  max-width: 40px;
  grid-column: 1/2;
  grid-row: 1 / span 3; }
  @media only screen and (max-width: 800px) {
    .fmn__checkout-icon {
      display: none; } }
  @media only screen and (max-width: 675px) {
    .fmn__checkout-icon {
      display: block; } }

.fmn__checkout-top {
  text-transform: uppercase;
  grid-column: 2/3;
  grid-row: 1/2;
  font-size: 13px;
  font-weight: 600;
  line-height: 1; }
  @media only screen and (max-width: 675px) {
    .fmn__checkout-top {
      display: none; } }

.fmn__checkout-main {
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  grid-column: 2/3;
  grid-row: 2/3;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  color: #000000; }
  @media only screen and (max-width: 675px) {
    .fmn__checkout-main {
      display: none; } }

.fmn__checkout-price {
  font-size: 15px;
  font-weight: 400;
  grid-column: 2/3;
  grid-row: 3/4;
  line-height: 1;
  letter-spacing: 1px;
  color: #000000; }
  @media only screen and (max-width: 675px) {
    .fmn__checkout-price {
      display: none; } }

.fmn__checkout-view-icon {
  position: absolute;
  right: 4px;
  bottom: 4px;
  height: 16px; }
  @media only screen and (max-width: 675px) {
    .fmn__checkout-view-icon {
      display: none; } }

.fmn__rollover {
  transition: all 0.2s; }
  .fmn__rollover:hover {
    opacity: 0.5;
    cursor: pointer; }

.section__text-animate {
  left: 50% !important;
  transform: translateX(-50%);
  opacity: 1 !important; }

.section__main {
  width: 100vw;
  box-sizing: border-box; }

.section__product {
  margin-top: 20px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  padding: 0px 10%;
  min-width: 375px; }
  @media only screen and (max-width: 575px) {
    .section__product {
      padding: 0 20px; } }
  .section__product h1 {
    font-weight: 400;
    font-size: 30px;
    line-height: 1.6;
    text-transform: uppercase;
    color: #000000; }

.section__large-top-image {
  font-family: 'Assistant', Helvetica, sans-serif;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 375px;
  height: 100vh;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: url(/assets/img/top-image-1-1x.jpg); }
  .section__large-top-image .anim-text-1 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-wrap: nowrap;
    text-align: center;
    display: block;
    top: 46%;
    font-size: 17px;
    font-weight: 600;
    color:white;}
    .section__large-top-image .anim-text-1::before {
      content: 'Dedicated';
      text-wrap: nowrap;
      display: inline-block;
      letter-spacing: 2px;
      background-color: #000000;
      border-radius: 100px;
      padding: 4px 20px; }
  .section__large-top-image .anim-text-2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    min-width: 375px;
    top: 52%;
    font-weight: 700;
    text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.9);
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 1px; color:white;}
    .section__large-top-image .anim-text-2::before {
      content: 'To Delicious';
      text-align: center;
      text-transform: uppercase; }

.section__announcement {
  position: absolute;
  font-family: 'Assistant', Helvetica, sans-serif;
  display: grid;
  width: 100%;
  min-width: 375px;
  justify-items: center;
  align-content: center;
  height: calc(6vh);
  bottom: 0px;
  grid-template-columns: 1fr;
  font-size: clamp(15px, 3.5vmin, 16px);
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  padding: 0 15px;
  line-height: 1;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 100; }
  @media only screen and (max-width:1024px) {
  .section__announcement {height: calc(4vh);}
  }

.product__para {
  font-size: 17px;
  column-gap: 40px;
  padding-bottom: 40px;}

.product__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 60px;
  justify-content: space-between;
  justify-content: center;
  padding-left:10px;padding-right:10px;}

.product__card {
  width: 100%;
  display: grid;
  grid-template-rows: 30px min-content auto auto;
  /*justify-content: center;*/
  background: linear-gradient(130deg, white 0%, white 59%, #cccccc 120%);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  /*overflow: hidden;*/
  position: relative;
  cursor: pointer;
  border-radius: 4px; max-height: 800px;}
  .product__card:hover {
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.6); }

.product__brand {
  display: grid;
  text-wrap: nowrap;
  justify-content: center;
  align-content: center;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 2px;
  font-family: 'Assistant', Helvetica, sans-serif;
  padding: 2px;
  line-height: 1;
  background: #252525;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase; }

.product__images {
  position: relative;}

.product__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; }
.dt__image1 {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center center; }
.dt__images {
  position: relative;
  }
.dt__image {
  max-height: 30dvh;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; }
.dt__image2 {
    max-height: 50dvh;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; }
.pt_dt_hover:hover{color:rgba(0, 0, 0, 0.6) !important;text-decoration:none;}
.product__protein-status {
  position: absolute;
  left: 10px;
  bottom: 10px;
  font-size: 12px;
  font-weight: 600;
  padding: 2px 10px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
  border: 1px solid white;
  z-index: 1;
  display: block;
  background-color: rgba(0, 0, 0, 0.1);
  text-transform: uppercase; }
  .product__protein-status:hover {
    background-color: rgba(0, 0, 0, 0.4); }

.product__detail-area {
  padding: 2vmin 10px;
  justify-content: center; }

.product__name {
  font-family: 'Assistant', Helvetica, sans-serif;
  font-size: 22px;
  padding: 0 15px;
  min-height: 50px;
  padding-top: 10px;
  color: #000000;
  text-wrap: wrap;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase; margin-top: 0px !important;
   margin-bottom: 0px !important;}
  @media (max-width: 600px) {
    .product__name {
      font-size: 18px; } }

.product__name2 {
  font-family: 'Assistant', Helvetica, sans-serif;
  font-size: 17px;
  min-height: 15px;
  padding: 0 15px;
  padding-top: 5px;
  color: rgba(0, 0, 0, 0.4);
  text-wrap: wrap;
  line-height: 1;
  font-weight: 300;
  text-align: center;
  text-transform: none;
  margin-top: 0px !important;
   margin-bottom: 0px !important;}
  @media (max-width: 600px) {
    .product__name2 {
      font-size: 13px; } }

.product__meal-count {
  padding-top: 2vmin;
  text-wrap: wrap;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 400;
  line-height: 1; }
.dt_pt_specialities {
  text-wrap: wrap;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 400;}

.product__price {
  padding-top: 2vmin;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 1;
  color: #000000; }

.product__pricing {
  padding-top: 5vmin;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: 'was now' 'save save'; }

.product__pricing-meal {
  padding-top: 5vmin;
  display: grid;
  grid-template-columns: 50% 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: 'why now' 'why save';
  align-items: center; }

.product__why {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  grid-area: why;
  text-wrap: wrap;
  cursor: pointer;
  gap: 10px;
  color: rgba(0, 0, 0, 0.4);
  padding: 10px;
  font-size: 14px;
  line-height: 1; }
  .product__why::before {
    content: '★';
    font-size: 20px; }
  .product__why:hover {
    background-color: var(--color-grey-light-4); }

.product__was, .product__now {
  text-align: center;
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  position: relative;
  text-wrap: nowrap; }
  .product__was::before, .product__now::before {
    content: '';
    color: red;
    position: absolute;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
    left: 45%;
    transform: translateX(-50%);
    transform: translatey(-100%); }

.product__was {
  grid-area: was;
  text-decoration: line-through;
  color: rgba(0, 0, 0, 0.6); }
  .product__was::before {
    content: 'WAS'; }

.product__now {
  grid-area: now; }
  .product__now::before {
    content: 'NOW*'; }

.product__saved {
  grid-area: save;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: red; }
  .product__saved::before {
    content: 'Save: '; }

.product__add-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: 'count add-to-cart';
  align-items: center;
  gap: 5px;
  padding: 5px 20px;
  background-color: rgba(0, 0, 0, 0.05); }

.product__quantity {
  grid-area: count;
  justify-self: start;
  color: black;
  font-size: 17px;
  font-weight: 400;
  height: 30px;
  text-wrap: nowrap;
  position: relative;
  display: flex; }
  .product__quantity input {
    text-align: center;
    font-size: inherit;
    font-family: inherit;
    height: 30px;
    width: 50px;
    border: 1px solid rgba(0, 0, 0, 0.9); }
  .product__quantity::before, .product__quantity::after {
    content: '-';
    width: 30px;
    border: 1px solid rgba(0, 0, 0, 0.9);
    text-align: center;
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.1); }
    .product__quantity::before:hover, .product__quantity::after:hover {
      background-color: red;
      font-weight: 800; }
  .product__quantity::after {
    content: '+'; }

.product__add-to-cart {
  grid-area: add-to-cart;
  justify-self: end;
  background-color: var(--fc-orange);
  color: white;
  font-size: 17px;
  font-weight: 600;
  border-radius: 50px;
  padding: 4px 20px;
  text-wrap: nowrap; }
  .product__add-to-cart:hover {
    background-color: var(--fc-burnt-orange); }

.product__nutritionals {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 10px;
  justify-content: space-evenly;
  align-content: start;
  padding: 0 3px;
  padding-top: 10px; min-height: 70px;}

.product__nutri-block {
  background: var(--color-grey-light-3);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 20px;
  display: grid;
  grid-template-columns: 1fr;
  padding: 8px 5px;
  justify-items: center; }
  .product__nutri-block:hover {
    background-color: var(--color-grey-light-4); }

.nutri-head, .nutri-num, .nutri-num-small, .nutri-nutri-tick, .nutri-net-carbs, .nutri-net-carbs-num {
  color: var(--color-grey-dark-2);
  font-weight: 500;
  font-family: Helvetica, sans-serif; }

.nutri-head {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 1; }

.nutri-num {
  font-size: 15px;
  line-height: 1; }

.nutri-num-small {
  font-size: 15px; }

.nutri-nutri-tick::before {
  content: ' ';
  font-size: 17px;
  display: block; }

.nutri-tick--active::before {
  content: '✔️';
  display: block;
  padding-top: 5px; }

.nutri-net-carbs {
  font-size: 9px;
  text-transform: uppercase;
  line-height: 1;
  padding-top: 5px; }

.nutri-net-carbs-num {
  font-size: 12px;
  line-height: 1; }

@keyframes leftToMiddle {
  0% {
    opacity: 0;
    left: 0%;
    transform: translateX(-50%); }
  15% {
    opacity: 1;
    left: 50%;
    transform: translateX(-50%); }
  20% {
    opacity: 1;
    left: 50%;
    transform: translateX(-50%); }
  80% {
    opacity: 1;
    left: 50%;
    transform: translateX(-50%); }
  100% {
    opacity: 0;
    left: 50%;
    transform: translateX(-50%); } }

@keyframes rightToMiddle {
  0% {
    opacity: 0;
    left: 100%;
    letter-spacing: 1px; }
  15% {
    opacity: 0.5;
    transform: translateX(-50%);
    letter-spacing: 1px; }
  20% {
    opacity: 1;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 1px; }
  80% {
    opacity: 1;
    left: 50%;
    transform: translateX(-50%); }
  100% {
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 1px; } }

@keyframes leftToMiddle2 {
  0% {
    opacity: 0;
    left: 0%;
    transform: translateX(-50%); }
  30% {
    opacity: 0.9;
    left: 50%;
    transform: translateX(-50%); }
  40% {
    opacity: 0.9;
    left: 50%;
    transform: translateX(-50%); }
  80% {
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5px; }
  100% {
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5px; } }

@keyframes rightToMiddle2 {
  0% {
    opacity: 0.1;
    left: 100%;
    transform: translateX(-50%);
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 1px; }
  30% {
    font-size: 30px;
    opacity: 1;
    transform: translateX(-50%);
    line-height: 30px;
    letter-spacing: 1px; }
  40% {
    opacity: 1;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    line-height: 30px;
    letter-spacing: 1px; }
  80% {
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    line-height: 30px;
    letter-spacing: 4px; }
  100% {
    opacity: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    line-height: 30px;
    letter-spacing: 4px; } }

.section__large-top-image--1 {
  background-image: url(/assets/img/top-image-1-1x.jpg);
}
.section__large-top-image--1 .anim-text-1::before {
  content: 'NEW👏';
}
.section__large-top-image--1 .anim-text-2::before {
  content: 'Blueberry Chia Oats';
}
/* --------------->>>> */
.section__large-top-image--2 {
  background-image: url(/assets/img/top-image-2-1x.jpg);
}
.section__large-top-image--2 .anim-text-1::before {
  content: 'Healthier Granola';
}
.section__large-top-image--2 .anim-text-2::before {
  content: 'Coconut Oil, Honey, Almonds 🥣';
}
/* --------------->>>> */
.section__large-top-image--3 {
  background-image: url(/assets/img/top-image-3-1x.jpg);
}
.section__large-top-image--3 .anim-text-1::before {
  content: 'Best Brownies🍫';
}
.section__large-top-image--3 .anim-text-2::before {
  content: 'Almond Flour, Dark Chocolate';
}
/* --------------->>>> */
.section__large-top-image--4 {
  background-image: url(/assets/img/top-image-4-1x.jpg);
}
.section__large-top-image--4 .anim-text-1::before {
  content: 'Healthier Flapjacks';
}
.section__large-top-image--4 .anim-text-2::before {
  content: 'Buckwheat & Flaxseed 🥞';
}
/* --------------->>>> */
.section__large-top-image--5 {
  background-image: url(/assets/img/top-image-5-1x.jpg);
}
.section__large-top-image--5 .anim-text-1::before {
  content: 'Better Breakfasts 😋';
}
.section__large-top-image--5 .anim-text-2::before {
  content: 'Macadamia Nut, Pears & Honey';
}
/* --------------->>>> */
.section__large-top-image--6 {
  background-image: url(/assets/img/top-image-6-1x.jpg);
}
.section__large-top-image--6 .anim-text-1::before {
  content: 'Exciting Breakfast🍳🍳';
}
.section__large-top-image--6 .anim-text-2::before {
  content: 'Shakshuka Time';
}
/* --------------->>>> */
.section__large-top-image--7 {
  background-image: url(/assets/img/top-image-7-1x.jpg);
}
.section__large-top-image--7 .anim-text-1::before {
  content: 'New Juices🍎🍍🍋';
}
.section__large-top-image--7 .anim-text-2::before {
  content: 'Juice Cleanse Kits';
}
/* --------------->>>> */
.section__large-top-image--8 {
  background-image: url(/assets/img/top-image-8-1x.jpg);
}
.section__large-top-image--8 .anim-text-1::before {
  content: 'Delicious Smoothies';
}
.section__large-top-image--8 .anim-text-2::before {
  content: 'Perfect Health Smoothies🤩';
}
/* --------------->>>> */
.section__large-top-image--9 {
  background-image: url(/assets/img/top-image-9-1x.jpg);
}
.section__large-top-image--9 .anim-text-1::before {
  content: 'Healthy Delicious';
}
.section__large-top-image--9 .anim-text-2::before {
  content: 'Flavour Specialists👈';
}
/* --------------->>>> */

/*new css - end*/
.product__name3 {
  font-family: 'Assistant', Helvetica, sans-serif;
  font-size: 17px;
  padding: 0 13px;
  padding-top: 5px;
  min-height: 15px;
  color: rgba(0, 0, 0, 0.4);
  text-wrap: wrap;
  line-height: 1;
  font-weight: 300;
  text-align: center;
  text-transform: none;
  margin-top: 0px !important;
   margin-bottom: 0px !important;}
  @media (max-width: 600px) {
    .product__name3 {
      font-size: 13px; } }
.product__name1 {
  font-family: 'Assistant', Helvetica, sans-serif;
  font-size: 22px;
  padding: 20px 15px;
  min-height: 50px;
  padding-top: 10px;
  color: #000000;
  text-wrap: wrap;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase; margin-top: 0px !important;
   margin-bottom: 0px !important;}
  @media (max-width: 600px) {
    .product__name1 {
      font-size: 18px; } }

.product__add-btns1 {text-align: center;color: red;padding: 7px 20px;background-color: rgba(0, 0, 0, 0.05);font-size: 20px;}
.product__was1, .product__now1 {
  text-align: center;
  font-size: 19px;
  font-weight: 400;
  line-height: 1;
  color: #000000;
  position: relative;
  text-wrap: nowrap; }
.product__pricing1 {
    padding-top: 5vmin;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
}
.section__announcement1 {
  /*position: absolute;*/
  font-family: 'Assistant', Helvetica, sans-serif;
  display: grid;
  width: 100%;
  min-width: 375px;
  justify-items: center;
  align-content: center;
  height: calc(10vh);
  bottom: 0px;
  grid-template-columns: 1fr;
  font-size: clamp(15px, 3.5vmin, 30px);
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #000000;
  text-align: center;
  padding: 0 15px;
  line-height: 1;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  z-index: 100; }
  .product__image1 {
  width: 100%;
  height: 80%;
  object-fit: cover;
  object-position: center center; }
.product__card1 {
  width: 100%;
  display: grid;
  grid-template-rows: 30px 1fr auto auto;
  /*justify-content: center;*/
  overflow: hidden;
  position: relative;
  cursor: pointer;
  border-radius: 4px; max-height: 700px;}
.big-btn-area1 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 30px;
  row-gap: 20px;
  padding-top: 1vmin;
  padding-bottom: 10px; }
  @media (max-width: 900px) {
    .big-btn-area1 {
      grid-template-columns: repeat(1, 1fr);
      column-gap: 5vmin;
      row-gap: 4vmin; } }
  @media (max-width: 900px) {
    .big-btn-area1 {
      column-gap: 5vmin;
      row-gap: 4vmin; } }
.whatsapp-div {
    position: fixed !important;
    bottom: 12% !important;
    right: 20px !important;
    z-index: 10005 !important;
    font-weight: 600 !important;
    text-decoration: none;
}
.whatsapp-div-a:hover{color: #fff !important;}
.whatsapp-btn-text {
    border-radius: 24px !important;
    color: white !important;
    display: flex !important;
    align-items: center !important;
    font-weight: 600 !important;
    letter-spacing: .25px !important;
    transition: all .08s linear !important;
    cursor: pointer !important;
    padding-right: 15px !important;
    padding-left: 10px !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    font-size: 18px !important;
    margin-top: 15px !important;
    background-color: #4dc247;
    box-shadow: rgb(0 0 0 / 20%) 0px 0px 0.428571rem 0px !important;
}
.max-width-div{max-width: 850px !important;}
.div-center{max-width: fit-content;margin-inline: auto;}
.pf-bk-color{background-color: #008fd514;}
.pf-title{color: #215AA8;}
.pf-msg{color: #e6f90f;font-weight: 800;font-size:15px;}
.btn-pf {
    color: #fff;
    background-color: #008FD5;
    border-color: #fff;
    font-weight: bold;
    font-size:20px;
}
.sa-id-input{width:50%;}
.loginscreen.middle-box{width:460px;background-color:#2A65B0;}
.password-toggle-icon {
position: absolute;
right: 25%;
color: black;
top: 50%;
padding-right: 5px;
transform: translateY(-50%);
cursor: pointer;
}
.limited-lines {
  display: -webkit-box;
  -webkit-line-clamp: 2; /* Limit to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis; /* Optional, adds ... at the end */
}
.section__text-animate {
  left: 50% !important;
  transform: translateX(-50%);
  opacity: 1 !important; }

.section__main {
  /*margin-top: 130px;*/
  width: 100vw;
  box-sizing: border-box;
  font-size: var(--section-font-size);
  font-weight: 400;
  line-height: 1.6;
  /*color: var(--color-grey-dark-2);*/
  position: relative; }
  @media (max-width: 1050px) {
    .section__main {
      /*margin-top: 100px;*/ } }
  .section__main h1 {
    font-weight: 700;
    font-size: 30px;
    line-height: 1.6;
    text-transform: uppercase;
    color: var(--color-grey-dark); margin-top: 0px !important;
    margin-bottom: 0px !important;}
  @media screen and (max-width: 450px) {
      .section__main h1 {
        line-height: 1.2;
        text-align: center; } }
  .section__main h2 {
    font-weight: 700;
    font-size: 25px;
    line-height: 1.6;
    text-transform: uppercase;
    color: var(--color-grey-dark); margin-top: 0px !important;
    margin-bottom: 0px !important;}
  .section__main h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.6;
    text-transform: uppercase;
    color: var(--color-grey-dark); margin-top: 0px !important;
    margin-bottom: 0px !important;}
  @media screen and (max-width: 575px) {
      .section__main h3 {
        align-items: center;
        text-align: center;
        margin-left: 0px; } }
  .section__main h4 {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.6;
    text-transform: uppercase;
    color: var(--color-grey-dark); margin-top: 0px !important;
    margin-bottom: 0px !important;}
  .section__main h5 {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.6;
    text-transform: capitalize;
    color: var(--color-grey-dark); margin-top: 0px !important;
    margin-bottom: 0px !important;}
  .section__main h6 {
    font-weight: 700;
    font-size: 14px;
    line-height: 1.6;
    text-transform: capitalize;
    color: var(--color-grey-dark); margin-top: 0px !important;
    margin-bottom: 0px !important;}
  .section__main ul {
    list-style: none;
    margin-left: 10px;
    line-height: 1.5;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    column-gap: 15px; }
   @media screen and (max-width: 950px) {
      .section__main ul {
        grid-template-columns: 1fr 1fr;
        column-gap: 5px;
        margin-left: 0px; } }
    @media screen and (max-width: 575px) {
      .section__main ul {
        grid-template-columns: 1fr;
        column-gap: 5px;
        margin-left: 0px; } }
    .section__main ul li {
      white-space: nowrap;
      /* Prevent text from wrapping */
      overflow: hidden;
      /* Hide overflowing text */
      text-overflow: ellipsis; }

.section__yes {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-left: 20px; }
  .section__yes span:first-child {
    min-width: 200px;
    margin-left: -20px;
    background-color: var(--color-black);
    color: #fff;
    background-color: green;
    padding: 2px 15px;
    border-radius: 100px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.15); }
  @media screen and (max-width: 575px) {
    .section__yes {
      align-items: center;
      text-align: center;
      margin-left: 0px; } }

.section__target {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  margin-top: 20px;
  margin-left: 20px; }
  .section__target span:first-child {
    min-width: 200px;
    margin-left: -20px;
    background-color: var(--color-black);
    color: #fff;
    background-color: black;
    padding: 2px 15px;
    border-radius: 100px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.15); }
  @media screen and (max-width: 575px) {
    .section__target {
      align-items: center;
      text-align: center;
      margin-left: 0px; } }

.section__no {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 20px; }
  .section__no span:first-child {
    min-width: 200px;
    margin-left: -20px;
    background-color: var(--color-black);
    color: #fff;
    background-color: red;
    padding: 2px 15px;
    border-radius: 100px;
    box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.15); }
  @media screen and (max-width: 575px) {
    .section__no {
      align-items: center;
      text-align: center;
      margin-left: 0px; } }

.section__product {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  padding: 0px 10%;
  min-width: 375px;
  margin-bottom: 4dvh; }
  @media (max-width: 575px) {
    .section__product {
      align-items: center;
      text-align: center;
      margin-left: 0px;
      padding-top: 20px; } }
  .section__product--pill {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    column-gap: 10px;
    font-weight: 500;
    align-items: first baseline;
    padding: 2px; }
  @media (max-width: 575px) {
      .section__product--pill {
        justify-content: center;
        gap: 10px;
        padding-top: 20px; } }
    .section__product--pill__data span:nth-child(1) {
      background-color: var(--color-black);
      color: #fff;
      padding: 2px 10px;
      border-radius: 100px 0 0px 100px;
      box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.15); }
    .section__product--pill__data span:nth-child(2) {
      background-color: var(--color-grey-light-2);
      color: #000;
      padding: 2px 15px;
      transform: translateX(-10px);
      border-radius: 0 100px 100px 0px;
      box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.15); }
  .section__product--price {
    padding: 10px 20px;
    display: grid;
    grid-auto-flow: column;
    border-radius: 20px;
    border: 1px dashed rgba(0, 0, 0, 0.4);
    justify-self: left; }
  .section__product--price div:nth-child(1) > :nth-child(2) {
      opacity: 0.4; }
    @media (max-width: 800px) {
      .section__product--price {
        justify-self: center;
        padding: 0px 0px 20px 0px; } }
  .section__product--kit-info ul li {
    display: flex;
    align-items: center;
    justify-content: center; }
   @media screen and (max-width: 575px) {
      .section__product--kit-info ul li {
        flex: none;
        display: none; } }
    .section__product--kit-info ul li svg {
      display: flex;
      justify-content: center;
      align-items: center;
      border: 1px;
      fill: white;
      width: 30px;
      height: 30px; }
    .section__product--kit-info ul li span {
      flex: 1 1 auto;
      /*background-color: purple;*/
      background: var(--grey-gradient-meal-plan);
      padding: 2px 20px;
      border-radius: 20px;
      box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.1);
      white-space: nowrap;
      /* Prevent text from wrapping */
      overflow: hidden;
      /* Hide overflowing text */
      text-overflow: ellipsis; }
   @media screen and (max-width: 575px) {
        .section__product--kit-info ul li span {
          flex: none;
          display: none; } }
  .section__product--meal-list ul li {
    display: flex;
    align-items: center; }
    .section__product--meal-list ul li span:nth-child(1) {
      margin-right: 10px;
      font-weight: 600; }
    .section__product--meal-list ul li span:nth-child(2) {
      white-space: nowrap;
      /* Prevent text from wrapping */
      overflow: hidden;
      /* Hide overflowing text */
      text-overflow: ellipsis; }
  @media only screen and (max-width: 575px) {
    .section__product {
      padding: 0 15px; } }
  .section__product--images {
    margin-top: 20px;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
    .section__product--images div {
      justify-self: center;
      padding: 20px 2cqh 20px 20px;
      box-shadow: 2px 4px 8px rgba(0, 0, 0, 0.15);
      background: var(--grey-gradient-meal-plan);
      display: grid;
      width: 100%; }
      .section__product--images div h3 {
        align-self: flex-end;
        text-align: center; }
        .section__product--images div h3 + span {
          text-align: center;
          font-size: 20px; }
      .section__product--images div img {
        width: 100%;
        height: 90%;
        object-fit: cover;
        object-position: center center; }
    .section__product--images span {
      font-family: "Indie Flower", cursive;
      font-weight: 400;
      font-style: normal;
      color: #000000;
      width: 100%;
      height: 100%;
      text-align: center;
      white-space: wrap;
      /* Prevent text from wrapping */
      text-overflow: ellipsis;
      line-height: 1.4;
      display: block;
      overflow: hidden;
      text-overflow: ellipsis;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical; }
  .section__product--meal-plan {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-content: center;
    text-align: center;
    user-select: none;
    text-rendering: optimizeLegibility; }
    .section__product--meal-plan div {
      display: grid;
      background: var(--grey-gradient-meal-plan);
      box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1); }
      @media (min-width: 575px) {
        .section__product--meal-plan div {
          padding: 8%; } }
      @media (min-width: 700px) {
        .section__product--meal-plan div {
          padding: 10%; } }
      @media (max-width: 700px) {
        .section__product--meal-plan div {
          padding: 2% 10%; } }
      .section__product--meal-plan div[type="head"] {
        background: white;
        border: none;
        color: black;
        font-size: 20px;
        font-weight: 700;
        visibility: hidden;
        position: absolute; }
      .section__product--meal-plan div ul {
        margin: 0;
        padding: 10px;
        row-gap: 5px;
        display: grid;
        grid-template-columns: 1fr;
        align-content: space-evenly; }
      .section__product--meal-plan div li {
        font-size: 15px;
        color: #000000;
        list-style-type: circle;
        max-width: 100%;
        background-color: #ffffff;
        border-radius: 20px;
        padding: 0 10px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        box-shadow: 2px 4px 6px rgba(0, 0, 0, 0.1);
        text-transform: capitalize; }
        .section__product--meal-plan div li[type="day"] {
          background-color: #000000;
          color: #f8f8f8; }
        .section__product--meal-plan div li[type="free"] {
          color: #000000;
          opacity: 0.4; }
        .section__product--meal-plan div li[type="reorder"] {
          color: #000000;
          padding: 20px 0px;
          opacity: 1; }
        .section__product--meal-plan div li[type="reorder"]:hover {
            opacity: 0.7; }
        .section__product--meal-plan div li[type="reorder"]:active {
            opacity: 0.5; }
        .section__product--meal-plan div li[type="recurring"] {
          color: #000000;
          padding: 20px 0px;
          opacity: 1; }
        .section__product--meal-plan div li[type="recurring"]:hover {
            opacity: 0.7; }
        .section__product--meal-plan div li[type="recurring"]:active {
            opacity: 0.5; }
        .section__product--meal-plan div li[type="intermittent"] {
          border-radius: 5px;
          padding-top: 10px;
          padding-bottom: 10px;
          white-space: wrap;
          line-height: 1;
          text-overflow: ellipsis;
          background-color: rgba(255, 255, 255, 0.5);
          box-shadow: none; }
          .section__product--meal-plan div li[type="intermittent"]:before {
            content: "🕛";
            padding-right: 5px; }
        .section__product--meal-plan div li[type="breakfast"] {
          font-weight: 600; }
          .section__product--meal-plan div li[type="breakfast"]:before {
            content: "🍳";
            padding-right: 5px; }
        .section__product--meal-plan div li[type="meal"] {
          font-weight: 600; }
          .section__product--meal-plan div li[type="meal"]:before {
            content: "🍽️";
            padding-right: 5px; }
        .section__product--meal-plan div li[type="smoothie"] {
          background-color: rgba(255, 255, 255, 0.3); }
          .section__product--meal-plan div li[type="smoothie"]:before {
            content: "🥤";
            padding-right: 5px; }
        .section__product--meal-plan div li[type="protein-snack"]:before {
          content: "💪";
          padding-right: 5px; }
        .section__product--meal-plan div li[type="snack"]:before {
          content: "🍏";
          padding-right: 5px; }
        .section__product--meal-plan div li[type="grocery"]:before {
          content: "🛒";
          padding-right: 5px; }
        .section__product--meal-plan div li[type="cooking-kit"]:before {
          content: "🧑‍🍳";
          padding-right: 5px; }
        .section__product--meal-plan div li[type="add"]:hover {
          opacity: 0.7; }
        .section__product--meal-plan div li[type="add"]:active {
          opacity: 0.5; }
        .section__product--meal-plan div li[type="add"]:after {
          content: "➕";
          padding-left: 5px; }
        .section__product--meal-plan div li[type="nutri"] {
          content: none;
          margin-top: auto;
          line-height: 1;
          padding-top: 5px;
          padding-bottom: 5px;
          border-radius: 5px;
          color: var(--color-primary);
          background-color: rgba(255, 255, 255, 0.6);
          display: flex;
          flex-wrap: wrap;
          justify-content: center;
          column-gap: 10px;
          box-shadow: none; }

.cart-select {
  margin-right: 2%;
  width: 100%;
  position: absolute;
  right: 0;
  /*display: inline-block;*/
  width: min-content;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  text-wrap: nowrap;
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15); }
  @media only screen and (max-width: 1000px) {
    .cart-select {
      position: relative;
      padding: 5px;
      margin-right: 0;
      width: auto;
      margin-bottom: 20px; } }
  @media (max-width: 575px) {
    .cart-select {
      justify-content: stretch;
      padding-top: 0px;
      margin-bottom: 20px; } }
  .cart-select > *:hover {
    opacity: 0.6;
    cursor: pointer; }
  .cart-select__icon {
    width: 20px;
    height: 20px;
    margin: 5px 5px; }
  .cart-select__head {
    color: var(--fc-gold-2);
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    line-height: 0; }
  @media (max-width: 850px) {
      .cart-select__head {
        display: none; } }
  .cart-select__small {
    color: #000000;
    font-size: 13px; }
  @media (max-width: 1050px) {
      .cart-select__small {
        display: none; } }
  .cart-select__cart {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    width: 100%;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    text-transform: uppercase;
    background-color: #bc4519;
    line-height: 1;
    text-wrap: nowrap;}
  @media (max-width: 1050px) {
      .cart-select__cart {
        font-size: 16px; } }
  .cart-select__change-cart {
    color: #000000;
    font-size: 12px;
    text-transform: uppercase;
    line-height: 1.2; }

.icon {
  line-height: 1;
  color: #fff;
  background: #000;
  border-radius: 100px;
  width: 25px;
  height: 25px;
  padding: 4px;
  margin: 3px;  }

.bottom-padding__small {
  padding-bottom: 5px; }

.bottom-padding__medium {
  padding-bottom: 10px; }

.bottom-padding__large {
  padding-bottom: 30px; }

.bottom-padding__xlarge {
  padding-bottom: 40px; }

.para-style__normal {
  font-size: 19px; }

.para-style__big {
  font-size: 19px; }

.para-style__extra-big {
  font-size: 19px;
  font-style: italic;
  letter-spacing: 20%; }
@media screen and (max-width: 575px) {
    .para-style__extra-big {
      align-items: center;
      text-align: center;
      margin-left: 0px; } }
.fc-menu-v2 {
  max-width:75%;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  display: grid;
  gap: 50px;
  font: "Assistant", helvetica, sans;
  font-size: 16px;
  text-align: center;
  color: #fff;
  padding: 10px;
  width: 100%;
  margin-bottom: 20px; }
  @media screen and (max-width: 575px) {  .fc-menu-v2{max-width: 95%;} }
  @media screen and (min-width: 1200px) {  .fc-menu-v2{max-width: 75%;} }
  @media (min-width:320px) and (max-width:568px){.fc-menu-v2{max-width: 100%;}}
  @media (min-width:375px) and (max-width:667px){.fc-menu-v2{max-width: 100%;}}
  .fc-menu-v2 > div {
    position: relative;
    border-radius: 5px;
    border: 1px solid white;
    justify-content: center;
    align-content: start;
    margin-bottom: 10px;
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.4);
    background: linear-gradient(3200deg, #474747 0%, #000 100%); }
    .fc-menu-v2 > div div:first-child {
      font-size: 50px;
      text-transform: uppercase;
      justify-items: center;
      align-content: center;
      border-radius: 100%;
      margin: 30px;
      aspect-ratio: 1/1;
      background-color: #fff;
      color: #000; }
    .fc-menu-v2 > div a {
      font-size: 17px;
      display: grid;
      grid-template-columns: 1fr min-content;
      letter-spacing: 2px;
      margin-bottom: 10px;
      padding: 0 20px;
      border-radius: 4px 4px 0 0;
      justify-items: center;
      text-transform: capitalize;
      text-decoration: none;
      color: #fff;
      line-height: 1; }
      .fc-menu-v2 > div a:nth-child(n + 2) {
        background-color: rgba(255, 255, 255, 0.02);
        padding: 4px;
        margin: 4px 10px;
        border-radius: 5px; }
        .fc-menu-v2 > div a:nth-child(n + 2):hover {
          background-color: rgba(255, 255, 255, 0.2); }
        .fc-menu-v2 > div a:nth-child(n + 2):active {
          background-color: rgba(255, 255, 255, 0.5); }
      .fc-menu-v2 > div a:first-child {
        padding: 15px 10px;
        text-transform: uppercase;
        background-color: #ffffff;
        color: #000;
        font-weight: 700;
        font-size: 26px;
        line-height: 1.2;
        word-wrap: break-word;
        margin-bottom: 15px; }
      .fc-menu-v2 > div a:last-child {
        margin-bottom: 20px; }
.kit-title{max-width:70%;}
/* iPhone 5 */
@media (min-width:320px) and (max-width:568px){
.sub-menu-div{padding-right: 0px !important;padding-left: 0px !important;margin-right: 0px !important; margin-left: 0px !important;}
.shopping-mode-popup-css1{width:-webkit-fill-available;margin: 0px 30px 15px 30px}
#hp-widget-vertical-feed-widget{display: none}
body {padding-top: 0px;}
    .eat-real-img{
        width: 40%;
    }
    .strict-keto-img{
        width: 50%;
    }
    .dropdown-menu>li>a{
        margin: 0px !important;
    }
    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
    color: #333 !important;
    border-bottom: 1px solid #cccccc73;
}
.solid-menus .navbar-default.navbar-dark.navbar-click .dropdown-menu > li > a:focus, .solid-menus .navbar-default.navbar-dark.navbar-click .dropdown-menu > li > a:hover {
    color: #000 !important;
    background-color: #EAEAEA !important;
}
.solid-menus .dropdown .dropdown-right > .dropdown-menu{
    left: 0px;
}
    .checkout-product-info{
        left: 69;
    }
    .MultiCarousel1{ Height: auto;display: inline-flex;overflow-x: scroll !important;width: 100%}
    .forgotten-item-boxm{
        width: 246px;
    }
.menu-margin-left-15{margin-left: 15px !important;}
.menu-padding-right-10{padding-right:10px}
.search-box-height-25{height: 18px;}
.category-menu-center{text-align: left;}
.category-menu-display{display: inherit;}
.checkout-size-40{font-size:30px;}
.checkout-size-40{font-size:28px;}
.checkout-title-font-size{font-size:17px;}
.checkout-title-css{font-size:13px;}
.recurring-title-font-size{font-size:15px;}
.checkout-margins{margin-left:10px !important;margin-right:10px !important;}
.checkout-margins-menu{margin-left:2px !important;margin-right:2px !important;}
.checkout-margins1{margin-left:10px !important;margin-right:10px !important;}
.textarea-checkout-margins{margin-left:30px !important;margin-right:30px !important;}
.hm-top-text-margins{margin-left:10px !important;margin-right:10px !important;}
.product-info-margins{margin-left:0px !important;margin-right:0px !important;}
.select-address-width{width: 80% !important;}
.manage-add-fontsize{font-size:10px;}
.checkout-image-height{height:30%;}
.checkout-image-width{width:55%;}
.secure-image-width{width:80%;}
.footer-image-width{width:70%;}
.text-area-image-width{width:60%;}
.lead-image-width{width:60%;}
.footer-middle-image-width{width:30%;}
.secure-image-margin{margin-top:10px;}
.margin-space-47px{margin-top: 25px !important;}
.margin-bottom-47px{margin-bottom: 25px !important;}
.add-margin-left-10{margin-left: 10px;}
.save-add-btn-width{width: 60%!important;}
.address-title-font-size{font-size:15px;}
.location-header-font-size{font-size:13px;}
.add-credit-css{margin-left:25px;width:85%;}

.home-image-box{
width: 48% !important;
float: right;
height: 135px;
margin-top: 12px;
}
.image-box{
width: 100% !important;
position: relative;
min-height: 1px;
float: none;
margin-bottom: 15px;
height: 300px;
}
.product-image-box{
width: 100% !important;
position: relative;
min-height: 1px;
float: none;
margin-bottom: 0px;
}
.fbadverts-image-box{
width: 100% !important;
/*margin-bottom: 15px;*/
}
.loyalty-settings-logo {margin-top: -11px;}
.payment-options-width{width: 90%;}
.reviews-more-css {margin-top: 25px;}
.textarea-width-3{float: none;}
.textarea-width-48{width: 100% !important;}
.fb-adverts-img-width{width:100%;}
.education-box{width: 100% !important;}
.margin-space-footer{margin-top: 20px;}
.footer-reviews-height{height: 350px;}
.padding-right-addCart{padding-right:18px;}
.margin-kitinfo{margin-left:5px;}
.margin-top-info{margin-top:0px;}
.help-image-width{width:8%;}
.magnifying-image{left: 49px;top:27px;}
.loyalty-club-box-height{height:100%;}
.discount-level-msg{margin-left:0px;}
.possible-discount{float: left;}
.credit-card-css{width: 50%;}
.select-pause-css{width: 70%;}
.margin-left-minus-55{margin-left: -136px !important;}
.line-height-2-5{line-height:1.5 !important;}
.total-width-35{width: 35%!important;}
.margin-top-add-button{margin-top:7px;}
.table>tbody>tr>td{padding-right:3px;padding-left:5px;line-height:1.6;}
.video-player-css{width:289px;height:163px;}
.width-video-65{width: 95% !important;}
.green-tick-css{width: 35%;}
.update-cart-item-loader-css{width: 24%;}
.you-are-img-css{width: 30%;position: absolute;margin-top: 9px;margin-left: 0px;right: 0; margin-right: 5px;}
.margin-logo{margin-left: -32px !important;}
.delivery-opt-label{margin-left: 10px;}
.delivery-opt-css{text-align: left !important;margin-left: 35px !important;}
.recurring-tab-css{padding-left:25px;}
.location-filter-wd{width: 74%;}
.location-box-wd{width:80%;}
.manual-order-css{text-align: center;}
.cc-manual-notes{margin-left:20px !important;}
.real-food-video-box{height: 168px;width: 100%;}
.video-carousel-css{height: 160px;}
.real-food-video-box1{height:170px; width:303px;}
.real-food-video-box2{height:127px; width:230px;}
.real-food-video-css1{float:right; margin:0 12px 10px 16px;}
.add-to-cart-loader-1{width: 10%;}
.add-to-cart-loader-2{width: 10%;}
.cart-menu{margin-left: -182px !important;}
.scrollable-bootstrap-menu ul {max-height: 225px;}
.logo-margin-top{margin-top: 12px !important;}
.img-5-div{height: 75px;}
.kc-float-right{float:right;}
.kc-float-left{float:left;}
.margin-right-16{margin-right: 0px;}
.margin-right-47{margin-right: 0px;}
/*.kc-name-fs{font-size: 14px;line-height: 40px;}*/
.kc-name-fs-m {
    font-size: 14px;
    text-align: center;
    line-height: 40px;
}
/*.kc-name-fs1{font-size: 14px;line-height: 40px;}*/
.kc-name-fs1-m {
    font-size: 14px;
    line-height: 40px;
    text-align: center;
}
/*.kc-name-fs2{font-size: 14px;line-height: 17px;}*/
.kc-name-fs2-m {
    font-size: 14px;
    line-height: 15px;
    padding: 5px;
    text-align: center;
}
.lead-image-css{width:30%;float: left; margin: 50px 3px 85px 0px;}
.fitchef_is_better-css{width:42%;float: right; margin: 38px -14px 0px 0px;}
.eat-clean-td-width{width:48%;}
.review-contents{height: 79px;overflow-y: hidden;word-break: break-all;}
.products-review-contents-ht{height: 245px;}
.products-review-contents-recu-ht{height: 250px;}
.review-carousel-control{font-size:16px;}
.menu-margin{margin-top: 10px;margin-bottom: 10px;}
.claim-vouchers-css{width: 12%;}
.error-img-30{width: 80%!important;}
.product-box-height-recu{height: 519px !important; }
.product-box-height-recu-opt-k{height: 519px !important; }
.product-name-min-ht{min-height: 100px !important;}
.product-review-box-height{height: auto !important; }
.product-review-box-height-sp{height: auto !important; }
.product-review-box-height-recu{height: auto !important; }
.product-review-box-height{height: auto !important; }
.product-review-box-height-sp{height: auto !important; }
.product-box-height{height: 465px !important; }
.product-box-height-recu-opt{height: 465px !important;}
.product-box-height-sp{height: 370px !important; }
.product-name-box{min-height: 75px;}
.product-box-height-380{height: 423px !important; }
.product-box-height-424{height: 423px !important; }
.product-box-height-391{height: 390px !important; }
.product-info-button{/*top:168px; left:36%*/}
.product-info-button-top{/*top: 167px;*/}
.checkout-product-info{top: 112px;}
.single-img-ht{height:179px !important;}
.single-img-ht-hm{height:179px !important;}
.width-80{width: 87% !important;}
.top-minus-30{top: -71% !important;}
.top-minus-27{top: -177% !important;}
.whats-new-video-css{height: 173px;width: 309px;}
.eat-clean-more-img{top: 112px;left: 134px;}
.drink-clean-more-img{top: 112px;left: 280px;}
.video-carousel-modal-css{height:140px;}
.add-to-cart-btn{width: 115%;}
.location-services-box1{width: 59% !important;}
.location-services-box2{width: 35% !important;}
.services-box2{width: 100% !important;line-height: 1.5;height: auto;margin-bottom: 11px;}
.services-img{margin-bottom: 5px;}
.btn-margin-top{margin-top:10px;}
.edu-carousel-arrow{width: 26px;height: 26px;top: 130%;position: absolute;opacity: 1;right: 0%;}
.video-carousel-arrow{width: 26px;height: 26px;top: 45%;position: absolute;opacity: 1;}
.logo-carousel-arrow{width: 26px;height: 26px;top: 10%;position: absolute;opacity: 1;}
.fb-carousel-arrow{height: 14% !important;}
.modal-img-wd{width:100%;margin-bottom: 20px;}
.modal-img-magnifying{left:88px;top:78px;}
.home-text-margin{margin-left:10px !important;margin-right:10px !important;}
.recurring-msg-div{padding-right: 0px;font-size: 13px;}
.menu-text-align{text-align: center;}
.services-table-mb{margin-top: 10px;}
.footer-table{
    background-color: #80808059;
    width: 100%;
    max-width: 100%;
    text-align: center;
}
.modal-width{width: 80% !important;}
.rec-level-img{width:90% !important;height:18px;}
.main-rec-level-indicator{top:3px;}
.main-bronze{left:22%}
.main-silver{left:43%}
.main-gold{left:65%}
.main-platinum{left:89%}
.youtube-video-box{height:145px; width:95%;}
.youtube-video-box-p{width: 95%;height: 130px;}
.btn-black {margin-left: 10px;font-size: 14px;float: right;margin-right: 5px;}
.btn-white {margin-left: 0px;font-size: 14px;margin-right: 0px;}
.btn-add-to-cart{font-size: 14px;}
.own-selection-div{margin-bottom: 0px !important;margin-top: 25px !important;}
.faq-title{width: 97%;}
.faq-div{width: 100%;padding-bottom: 0px;}
.padding-left-10-m{padding-left:10px;}
.padding-bottom-20-m{padding-bottom: 20px;}
.padding-bottom-10-m{padding-bottom: 10px;}
.textarea3{height:215px;}
.guest-login-div-css{width: 90%;padding-bottom: 20px;}
.dietitian-box{width: 296px !important;height: auto;}
.dietitian-box-info{width: 247px !important;height: 92px;}
.dietitian-img{width: 276px;height: 115px;margin-left: 10px;}
.bronze-inner{top: 232px;}
.silver-inner{top: 232px;}
.gold-inner{top: 232px;}
.platinum-inner{top: 232px;}
.rec-edit-cog-inner{padding-top: 3px;padding-left: 3px;}
.recu-td{font-size: 16px;}
.recu-inner-td{width: 51%;}
.add-to-recurring-loader{width: 10%;margin-left: -89px;}
.review-contents-info {height: 230px;}
.mobile-menu-btn {padding-left: 0px !important;}
.prev-next-cat{float:left;margin-top: 15px;}
.menu-font-size{font-weight: bold;font-size: 14px;}
.mobile-menu-border{border-bottom: 1px solid #ffffff;}
.mobile-menu-padding-b{padding-bottom: 10px !important;padding-top: 10px !important;}
.before-you-browse-css{width:80%;margin: 10px auto !important;}
.real-food-img-css{width:38%;margin-top: 10px;}
.eat-clean-real-food-img-css{width:40%;}
.eat-clean-img-css{margin-top: 10px;margin-bottom: 10px;}
.top-100-m{top:100px;}
.play-video-btn{width: 45px;height: 40px;}
.img-position {
    position: absolute;
    left: 83px;
    top: 44%;
}
.talk-to-us-img{}
.talk-to-us-img-m{width: 20px;height: 20px;}
.btn-talk-to-us {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 0px;
    border-radius: 4px !important;
}
.input-text-width{width: 90%  !important; margin-top:10px;}
.input-text-width-h{width: 75%  !important;}
.do-we-deliver{font-size: 16px;margin-left: 10px;}
.check-add-btn {
    padding-left: 30px;
    padding-right: 50px;
    margin-bottom: 20px;
    margin-left: 65px;
    margin-top: 0px;
}
.cart-menu-css{margin-top: 7px;margin-bottom: 7px !important;margin-left: -38px !important;}
.my-profile-css{margin-top: 7px;margin-bottom: 7px !important;margin-left: -50px !important;}
.my-course-video{width:300px;height:166px;}
.cart-cat-count-css{margin-bottom: 10px;height: 75px;}
.meals-per-td-width{width: 32%!important;}
.menu-z-index{z-index: 10000;}
.online-course-video-css{height: 100%;}
.online-course-img-wd{width:100%;}
.suggestion-img{width: 10%;}
.before-you-title{margin-left: 10px;}
.next-wizard-span{float: none;margin-right: 0px !important;}
.location-serach-div{text-align: center;margin-top: 20px;}
.filter-div-m{width: 60%;}
.social-media-div{width: 100% !important;}
.art-content-div{padding-left: 0px !important;padding-right: 0px !important;}
.margin-top-m{margin-top:10px;}
.shopping-mode-div-m{margin-top:15px;margin-bottom:15px;}
.margin-space-47px-m{margin-top: 47px !important;}
.margin-space-20px-m{margin-top: 20px !important;}
.articles-div{padding-right: 15px;}
.suggestion-textbox{width: 90%;}
.forgotten-item-r{margin: 0px 267px 36px !important;}
.medical-title{font-size: 15px;line-height: 32px;}
.contact-email-width{width: 84% !important;}
.submit-review-css{text-align: center;}
.submit-reviewbtn-css{margin-top: 10px !important;}
.add-to-cart-loader-5{width: 10%;margin-top: -6px;margin-left: -113px;}
.select-cart-btn{width: 10%;}
.cat-pg-video{width: 267px !important;height: 151px !important;margin-left: 8px;}
.wizard-list>li {padding-left: 0em;}
.logo-wd{width:40% !important;}
.dont-forget-div{margin-top:15px;}
.image-ht-1click{height: 142px;}
.float-right{float:none !important;}
.float-right-btn{float:none !important;}
.contact-table>tbody>tr>td{line-height: 2 !important;}
.text-left-m{text-align: left !important;}
.navbar-header{}
.payment-opt-img-css{width:90%;}
.td-width-m{width:30%;}
.eav-div{padding-right: 10px !important;padding-left: 10px !important;margin-right: 0px !important;width: 91%!important;}
.eav-div-checkout{padding-right: 10px !important;padding-left: 10px !important;margin-right: 0px !important;width: 91%!important;}
.checkout-notes-loader{width: 10%;}
.checkout-notes-tick{width: 11%;margin-top: 20px;}
.eatClean{line-height: 2;margin-left: 0px;}
.cravings{line-height: 2;padding: 0px 10px;}
.eatCleanCravings{line-height: 2;padding: 0px 10px;}
.view-food-ranges{line-height: 2;height: auto;text-align: center !important;padding-left: 0px;}
.mirror-css{height: 41px;}
.eatclean-img{width: 30% !important;margin-right: 10px;}
.eatclean-img1{width: 30% !important;margin-right: 10px;float:left !important;}
.eatclean-cravings{font-size: 27px;}
.eatclean-size{font-size: 27px;}
.eatclean-sub-title{font-size:13px;}
.subtitle-padding{padding-left: 10px;}
.img-px{width:100px;}
.img-px1{width:125px;}
.prod-desc-margin{margin-top:0px;}
.edgars-logo{float:none;}
.text-align-center-m{text-align: center;}
.strict-keto-title {
    font-size: 18px;
    letter-spacing: -1px;
}
.img-px2{width:100%;}
.edgars-info-logo{width:50%;}
.vegan-veg-animal-info{top: 368px}
.vegan-veg-animal{top: 180px}
.recurring-loader-css{left: 25%;}
.recurring-loader-css1{left: 10%;}
.recurring-loader-wd{width: 20%;}
.recurring-loader-wd1{width: 10%;}
.max-width-800{max-width: 280px !important;}
.pt-box-width{width: 100% !important;}
.pt-box-height{height: 407px;}
.fitchef-img{width: 100% !important;margin: 5px 5px;}
.new-range-title{margin-right: 0px;font-size: 12px;}
.plate-img{width: 100% !important;margin-left:0px;}
.hf-img{width: 100% !important;margin-left:0px;}
.recurring-btn-padding{padding-right:7px !important; padding-left:7px !important;}
.dual-mode-drop-down1{width: 10% !important;}
.shopping-mode-modal{width:95% !important;}
.shopping-mode-modal-div{width:8% !important;}
.shopping-mode-modal-recu{padding-left:0px;}
.top-content {max-height: 100px;}
.read-food-spe{font-size:20px;letter-spacing: 4px;}
.eat-range-range{font-size:20px;letter-spacing: 2px;}
.eatclean-text{font-size: 13px;}
.eatclean-sec1{width:94% !important;}
.eatclean-sec2{width:94% !important;}
.we-change-lives{font-size: 20px !important;}
.kit-starter{margin-left:15px;}
.more-sec{font-size: 30Px;}
.day-challenge-img {width: 60%;}
.eat-clean-range{font-size: 17px;}
.instant-healthy{font-size: 20px;}
.day-challenge-title{font-size: 25px;}
.home-food-spe{letter-spacing: 4px;text-transform: uppercase;font-size: 17px;}
.ethos-div{font-size: 25px;}
.kits-title{font-size: 25px;font-weight: 600;}
.product-name{font-size:16px;}
.loginscreen.middle-box{width:100%;margin-left: 5px;margin-right: 5px;}
.sa-id-input{width:40%;}
.btn-pf{font-size:17px;}
.kit-title{max-width:100%;}
.select-cart-mode-btn{width: 40%;font-size:14px;}
}
/* iPhone 6 */
@media (min-width:375px) and (max-width:667px){
.menu-margin-left-15{margin-left: 15px !important;}
.menu-padding-right-10{padding-right:10px}
.search-box-height-25{height: 18px;}
.category-menu-display{display: inherit;}
.checkout-size-40{font-size:30px;}
.checkout-title-font-size{font-size:17px;}
.checkout-title-css{font-size:17px;}
.recurring-title-font-size{font-size:16px;}
.checkout-margins{margin-left:10px !important;margin-right:10px !important;}
.checkout-margins-menu{margin-left:2px !important;margin-right:2px !important;}
.checkout-margins1{margin-left:10px !important;margin-right:10px !important;}
.textarea-checkout-margins{margin-left:30px !important;margin-right:30px !important;}
.hm-top-text-margins{margin-left:10px !important;margin-right:10px !important;}
.product-info-margins{margin-left:0px !important;margin-right:0px !important;}
.select-address-width{width: 80% !important;}
.manage-add-fontsize{font-size:10px;}
.checkout-image-height{height:30%;}
.checkout-image-width{width:55%;}
.secure-image-width{width:80%;}
.footer-image-width{width:70%;}
.text-area-image-width{width:60%;}
.lead-image-width{width:60%;}
.footer-middle-image-width{width:30%;}
.secure-image-margin{margin-top:10px;}
.margin-space-47px{margin-top: 25px !important;}
.margin-bottom-47px{margin-bottom: 25px !important;}
.add-margin-left-10{margin-left: 10px;}
.save-add-btn-width{width: 60%!important;}
.address-title-font-size{font-size:15px;}
.location-header-font-size{font-size:13px;}
.add-credit-css{margin-left:25px;width:85%;}
.home-image-box{
width: 100% !important;
position: relative;
min-height: 1px;
float: none;
margin-bottom: 15px;
height: 300px;
margin-top: 0px;
}
.image-box{
width: 100% !important;
position: relative;
min-height: 1px;
float: none;
margin-bottom: 15px;
height: 360px;
}
.product-image-box{
width: 100% !important;
position: relative;
min-height: 1px;
float: none;
margin-bottom: 0px;
}
.fbadverts-image-box{
width: 100% !important;
/*margin-bottom: 15px;*/
/*height: 335px;*/
height: auto;
}
.loyalty-settings-logo {margin-top: -11px;}
.payment-options-width{width: 90%;}
.reviews-more-css {margin-top: 25px;}
.textarea-width-3{float: none;}
.textarea-width-48{width: 100% !important;}
.fb-adverts-img-width{width:100%;}
.education-box{width: 100% !important;}
.margin-space-footer{margin-top: 20px;}
.footer-reviews-height{height: 350px;}
.padding-right-addCart{padding-right:18px;}
.margin-kitinfo{margin-left:5px;}
.margin-top-info{margin-top:0px;}
.help-image-width{width:4%;}
.magnifying-image{left: 170px;}
.loyalty-club-box-height{height:100%;}
.discount-level-msg{margin-left:0px;}
.possible-discount{float: left;}
.credit-card-css{width: 50%;}
.select-pause-css{width: 70%;}
.total-width-35{width: 30%!important;}
.margin-top-add-button{margin-top:7px;}
.video-player-css{width:328px;height:184px;}
.width-video-65{width: 95% !important;}
.green-tick-css{width: 35%;}
.update-cart-item-loader-css{width: 24%;}
.you-are-img-css{width: 30%;position: absolute;margin-top: 3px;margin-left: 0px;right: 0; margin-right: 10px;}
.margin-logo{margin-left: -40px !important;}
.delivery-opt-label{margin-left: 20px;}
.delivery-opt-css{text-align: left !important;margin-left: 35px !important;}
.recurring-tab-css{padding-left:36px;}
.location-filter-wd{width: 74%;}
.location-box-wd{width:80%;}
.manual-order-css{text-align: center;}
.cc-manual-notes{margin-left:20px !important;}
.real-food-video-box{height: 199px;width: 100%;}
.video-carousel-css{height: 160px;}
.real-food-video-box1{height:206px; width:366px;}
.real-food-video-box2{height:143px; width:260px;}
.real-food-video-css1{float:right; margin:0 20px 10px 16px;}
.real-food-video-css{float:right; margin:0 0px 10px 16px;}
.add-to-cart-loader-1{width: 10%;}
.add-to-cart-loader-2{width: 10%;}
.cart-menu{margin-left: -70px !important;}
.scrollable-bootstrap-menu ul {max-height: 260px;}
.logo-margin-top{margin-top: 12px !important;}
.img-5-div{height: 88px;}
/*.kc-name-fs{font-size: 14px;line-height: 43px;text-align: center;}*/
/*.kc-name-fs1{font-size: 14px;
    line-height: 15px;
    text-align: center;
    padding: 7px;}*/
/*.kc-name-fs2{font-size: 14px;line-height: 22px;}*/
.kc-float-right{float:right;}
.kc-float-left{float:left;}
.margin-right-16{margin-right: 0px;}
.margin-right-47{margin-right: 0px;}
.lead-image-css{width:30%;float: left; margin: 53px 3px 65px 0px;}
.fitchef_is_better-css{width:37%;float: right; margin: 46px -13px 0px 0px;}
.eat-clean-td-width{width:48%;}
.review-contents{height: 125px;overflow-y: hidden;word-break: break-all;}
.products-review-contents-ht{height: 210px;}
.products-review-contents-ht-sp{height: 200px;}
.products-review-contents-recu-ht{height: 214px;}
.menu-margin{margin-top: 10px;margin-bottom: 10px;}
.claim-vouchers-css{width: 11%;}
.error-img-30{width: 80%!important;}
.product-box-height-recu{height: 530px !important; }
.product-box-height-recu-opt-k{height: 530px !important; }
.product-name-min-ht{min-height: 100px !important;}
.product-review-box-height-recu{height: auto !important; }
.product-box-height-recu-opt-k{height: 530px !important;}
.product-box-height{height: 477px !important; }
.product-box-height-recu-opt{height: 477px !important;}
.product-box-height-sp{height: 406px !important; }
.product-name-box{min-height: 75px;}
.product-box-height-380{height: 453px !important; }
.product-box-height-424{height: 453px !important; }
.product-box-height-391{height: 425px !important; }
.product-info-button{/*top:166px;left:39%;*/}
.product-info-button-top{/*top: 177px;*/}
.checkout-product-info{top: 112px;}
.single-img-ht{height:215px !important;}
.single-img-ht-hm{height:215px !important;}
.top-minus-30{top: -42% !important;}
.top-minus-27{top: -88% !important;}
.whats-new-video-css{height: 202px;width: 360px;}
.eat-clean-more-img{top: 129px;left: 160px;}
.drink-clean-more-img{top: 129px;left: 336px;}
.video-carousel-modal-css{height:165px;}
.add-to-cart-btn{width: 100%;}
.location-services-box1{width: 59% !important;}
.location-services-box2{width: 35% !important;}
.services-box2{width: 100% !important;line-height: 1.5;height: auto;}
.services-img{margin-bottom: 5px;}
.btn-margin-top{margin-top:10px;}
.edu-carousel-arrow{width: 26px;height: 26px;top: 130%;position: absolute;opacity: 1;}
.video-carousel-arrow{width: 26px;height: 26px;top: 45%;position: absolute;opacity: 1;}
.logo-carousel-arrow{width: 26px;height: 26px;top: 10%;position: absolute;opacity: 1;}
.fb-carousel-arrow{height: 14% !important;width: 81% !important;}
.modal-img-wd{width:100%;margin-bottom: 20px;}
.modal-img-magnifying{left:110px;top:109px;}
.home-text-margin{margin-left:10px !important;margin-right:10px !important;}
.review-carousel-control{font-size:16px;}
.recurring-msg-div{padding-right: 15px;font-size: 14px;}
.menu-text-align{text-align: center;}
.services-table-mb{margin-top: 10px;}
.footer-table{
    background-color: #80808059;
    width: 100%;
    max-width: 100%;
    text-align: center;
}
.modal-width{width: 80% !important;}
.rec-level-img{width:90% !important;height:18px;}
.main-rec-level-indicator{top:3px;}
.main-bronze{left:22%}
.main-silver{left:43%}
.main-gold{left:65%}
.main-platinum{left:89%}
.youtube-video-box{height:171px; width:95%;}
.youtube-video-box-p{width: 95%;height: 158px;}
.btn-black {margin-left: 10px;font-size: 14px;float: right;margin-right: 15px;}
.btn-white {margin-left: 10px;font-size: 14px;margin-right: 15px;}
.btn-add-to-cart{font-size: 14px;}
.own-selection-div{margin-bottom: 0px !important;margin-top: 25px !important;}
.cart-items-table>tbody>tr>td {
    padding-right: 5px !important;
    padding-left: 5px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.recurring-table>tbody>tr>td {
    padding-right: 10px !important;
    padding-left: 10px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.faq-title{width: 97%;}
.faq-div{width: 100%;padding-bottom: 0px;}
.padding-left-10-m{padding-left:10px;}
.padding-bottom-20-m{padding-bottom: 20px;}
.textarea3{height:215px;}
.guest-login-div-css{width: 90%;padding-bottom: 20px;}
.dietitian-box{width: 341px !important;height: auto;}
.dietitian-box-info{width: 282px !important;height: 282px;}
.dietitian-img{width: 350px;height: 130px;}
.rec-edit-cog-inner{padding-left: 10px;}
.recu-td{font-size: 17px;}
.add-to-recurring-loader{width: 10%;margin-left: -89px;}
.review-contents-info {height: 230px;}
.mobile-menu-btn {padding-left: 10px !important;}
.prev-next-cat{float:left;margin-top: 15px;}
.menu-font-size{font-weight: bold;font-size: 14px;}
.mobile-menu-border{border-bottom: 1px solid #ffffff;}
.mobile-menu-padding-b{padding-bottom: 10px !important;padding-top: 10px !important;}
.before-you-browse-css{width:80%;margin: 10px auto !important;}
.real-food-img-css{width:32%;margin-top: 10px;}
.eat-clean-real-food-img-css{width:40%;}
.eat-clean-img-css{margin-top: 10px;margin-bottom: 10px;}
.top-100-m{top:100px;}
.play-video-btn{width: 45px;height: 40px;}
.talk-to-us-img{width: 20px;height: 20px;}
.btn-talk-to-us {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 0px;
    border-radius: 4px !important;
}
.input-text-width{width: 90%  !important; margin-top:10px;}
.input-text-width-h{width: 75%  !important;}
.do-we-deliver{font-size: 16px;margin-left: 10px;}
.check-add-btn {
    padding-left: 30px;
    padding-right: 50px;
    margin-bottom: 20px;
    margin-left: 65px;
    margin-top: 0px;
}
.cart-menu-css{margin-top: 7px;margin-bottom: 7px !important;margin-left: -38px !important;}
.my-profile-css{margin-top: 7px;margin-bottom: 7px !important;margin-left: -50px !important;}
.my-course-video{width:340px;height:187px;}
.cart-cat-count-css{margin-bottom: 10px;height: 75px;}
.meals-per-td-width{width: 32%!important;}
.menu-z-index{z-index: 10000;}
.online-course-video-css{height: 100%;}
.online-course-img-wd{width:100%;}
.suggestion-img{width: 10%;}
.before-you-title{margin-left: 10px;}
.next-wizard-span{float: none;margin-right: 0px !important;}
.location-serach-div{text-align: center;margin-top: 20px;}
.filter-div-m{width: 50%;}
.social-media-div{width: 100% !important;}
.art-content-div{padding-left: 0px !important;padding-right: 0px !important;}
.margin-top-m{margin-top:10px;}
.shopping-mode-div-m{margin-top:15px;margin-bottom:15px;}
.margin-space-47px-m{margin-top: 47px !important;}
.margin-space-20px-m{margin-top: 20px !important;}
.articles-div{padding-right: 15px;}
.suggestion-textbox{width: 90%;}
.forgotten-item-r{margin: 0px 302px 38px !important;}
.medical-title{font-size: 15px;line-height: 32px;}
.contact-email-width{width: 84% !important;}
.submit-review-css{text-align: center;}
.submit-reviewbtn-css{margin-top: 10px !important;}
.add-to-cart-loader-5{width: 9%;margin-top: -6px;margin-left: -113px;}
.select-cart-btn{width: 10%;}
.cat-pg-video{width: 331px !important;height: 186px !important;}
.wizard-list>li {padding-left: 0em;}
.logo-wd{width:40% !important;}
.dont-forget-div{margin-top:15px;}
.image-ht-1click{height: 142px;}
.float-right{float:none !important;}
.float-right-btn{float:none !important;}
.contact-table>tbody>tr>td{line-height: 2 !important;}
.text-left-m{text-align: left !important;}
.navbar-header{}
.payment-opt-img-css{width:90%;}
.eav-div{padding-right: 10px !important;padding-left: 10px !important;margin-right: 0px !important;width: 91%!important;}
.eav-div-checkout{padding-right: 10px !important;padding-left: 10px !important;margin-right: 0px !important;width: 91%!important;}
.checkout-notes-loader{width: 10%;}
.checkout-notes-tick{width: 11%;margin-top: 20px;}
.eatClean{line-height: 2;margin-left: 0px;}
.cravings{line-height: 2;padding: 0px 10px;}
.eatCleanCravings{line-height: 2;padding: 0px 10px;}
.view-food-ranges{line-height: 2;height: auto;text-align: center !important;padding-left: 0px;}
.mirror-css{height: 41px;}
.eatclean-img{width: 30% !important;margin-right: 10px;}
.eatclean-cravings{font-size: 27px;}
.eatclean-sub-title{font-size:14px;}
.subtitle-padding{padding-left: 20px;}
.prod-desc-margin{margin-top:0px;}
.edgars-logo{float:none;}
.vegan-veg-animal-info{top: 368px}
.vegan-veg-animal{top: 222px}
.max-width-800{max-width: 280px !important;}
.pt-box-width{width: 100% !important;}
.pt-box-height{height: 407px;}
.recurring-btn-padding{padding-right:7px !important; padding-left:7px !important;}
.top-content {max-height: 100px;}
.product-name{font-size:16px;}
.select-cart-mode-btn{width: 25%;}
.kit-title{max-width:100%;}
}
@media (min-width:359px) and (max-width:640px){
    .icon-container-pt {
    position: absolute;
    right: 35px;
    top: calc(49% - 9px);
}
    .pt-title{
        text-align: left !important;
    }
    .no-suger-white {
    filter: invert(1);
    width: 50% !important;
}
    .view-food-ranges{height: 50px;line-height: 3.5;display: flex; padding-left: 10px;border-top: 0px solid #6D6D6D !important;border-bottom: 0px solid #6D6D6D !important;margin-top: 0px !important;margin: 10px 0px 10px 0px;text-align: left !important;}
    .div-border-grey {
     border: 0px solid #6D6D6D !important;
}
    .border-color-ddd{
        border: 1px solid #ddd;
    }
    .kit-category-image-m{
        width: 230px;
    height: 169px;
    }
.first-magnifying-image {
    position: absolute;
    top: auto;
    left: auto;
    z-index: 3;
}
.home-carousel-img{
    /*height: 166px !important;
    width: auto;*/
    /*height: auto !important;*/

    height: 219px !important;
    width: 250px;
}
.delivery-opt-label{margin-left: 20px;}
.menu-margin-left-15{margin-left: 15px !important;}
.menu-padding-right-10{padding-right:10px}
.search-box-height-25{height: 18px;}
.category-menu-center{text-align: left;}
.category-menu-display{display: inherit;}
.checkout-size-40{font-size:22px;}
.checkout-title-font-size{font-size:17px;}
.checkout-title-css{font-size:15px;}
.recurring-title-font-size{font-size:16px;}
.checkout-margins{margin-left:10px !important;margin-right:10px !important;}
.checkout-margins-menu{margin-left:2px !important;margin-right:2px !important;}
.checkout-margins1{margin-left:10px !important;margin-right:10px !important;}
.textarea-checkout-margins{margin-left:30px !important;margin-right:30px !important;}
.hm-top-text-margins{margin-left:10px !important;margin-right:10px !important;}
.product-info-margins{margin-left:0px !important;margin-right:0px !important;}
.select-address-width{width: 80% !important;}
.manage-add-fontsize{font-size:10px;}
.checkout-image-height{height:auto;/*30%;*/}
.checkout-image-width{width:55%;}
.secure-image-width{width:80%;}
.footer-image-width{width:70%;}
.text-area-image-width{width:60%;}
.lead-image-width{width:60%;}
.footer-middle-image-width{width:30%;}
.secure-image-margin{margin-top:10px;}
.margin-space-47px{margin-top: 25px !important;}
.margin-bottom-47px{margin-bottom: 25px !important;}
.add-margin-left-10{margin-left: 10px;}
.save-add-btn-width{width: 60%!important;}
.address-title-font-size{font-size:15px;}
.location-header-font-size{font-size:13px;}
.add-credit-css{margin-left:25px;width:85%;}
/*.margin-top-40{margin-top:0 !important}*/
.home-image-box{
width: 48% !important;
position: relative;
min-height: 1px;
float: right;
margin-bottom: 15px;
height: 160px;
margin-top: 0px;
}
.image-box{
width: 100% !important;
position: relative;
min-height: 1px;
float: none;
margin-bottom: 15px;
height: 360px;
}
.product-image-box{
width: 100% !important;
position: relative;
min-height: 1px;
float: none;
margin-bottom: 0px;
}
.fbadverts-image-box{
width: 100% !important;
/*margin-bottom: 15px;*/
/*height: 335px;*/
height: auto;
}
.loyalty-settings-logo {margin-top: -11px;}
.payment-options-width{width: 90%;}
.reviews-more-css {margin-top: 25px;}
.textarea-width-3{float: none;}
.textarea-width-48{width: 100% !important;}
.fb-adverts-img-width{width:100%;}
.education-box{width: 100% !important;}
.margin-space-footer{margin-top: 20px;}
.footer-reviews-height{height: 350px;}
.padding-right-addCart{padding-right:18px;}
.margin-kitinfo{margin-left:5px;}
.margin-top-info{margin-top:0px;}
.help-image-width{width:8%;}
.magnifying-image{left: 56px;top:42px;}
.loyalty-club-box-height{height:100%;}
.discount-level-msg{margin-left:0px;}
.possible-discount{float: left;}
.credit-card-css{width: 50%;}
.select-pause-css{width: 70%;}
.margin-left-minus-55{margin-left: -136px !important;}
.location-filter-wd{width: 74%;}
.location-box-wd{width:80%;}
.manual-order-css{text-align: center;}
.cc-manual-notes{margin-left:20px !important;}
.real-food-video-box{height: 191px;width: 100%;}
.video-carousel-css{height: 115px;width: auto !important;}
.real-food-video-box1{height:191px; width:344px;}
.real-food-video-box2{height:143px; width:255px;}
.add-to-cart-loader-1{width: 10%;}
.add-to-cart-loader-2{width: 10%;}
.cart-menu{margin-left: -205px !important;}
.logo-margin-top{margin-top: 12px !important;}
.img-5-div{height: 88px;}
.margin-right-16{margin-right: 0px;}
.margin-right-review{margin-right: 16px;}
.margin-right-47{margin-right: 0px;}
.kc-float-right{float:right;}
.kc-float-left{float:left;}
.review-contents{height: 100px;overflow-y: hidden;word-break: break-all;}
.products-review-contents-ht{height: 210px;}
.products-review-contents-ht-sp{height: 200px;}
.products-review-contents-recu-ht{height: 214px;}
.menu-margin{margin-top: 10px;margin-bottom: 10px;}
.claim-vouchers-css{width: 11%;}
.error-img-30{width: 80%!important;}
.product-box-height-recu{height: 510px !important;}
.product-box-height-recu-opt-k{height: 572px !important; }
.product-box-height-eat-clean{height: 400px !important;}
.margin-top-90-cusine{margin-top: 100px !important;}
.select-cart-btn{padding-bottom: 0px !important;}
.product-name-min-ht{min-height: 100px !important;}
.product-review-box-height-recu{height: auto !important; }
.product-review-box-height{height: auto !important; }
.product-review-box-height-sp{height: auto !important; }
.product-box-height{height: 488px !important; }
.product-box-height-recu-opt{height: 552px !important;}
.product-box-height-sp{height: 406px !important; }
.product-name-box{min-height: 39px;}
.product-box-height-380{height: 453px !important; }
.product-box-height-424{height: 453px !important; }
/*.product-info-button{top: 193px;left: 37%;}
.product-info-button-top{top: 177px;}*/
.checkout-product-info{top: 92px;}
.single-img-ht{height:215px !important;}
.single-img-ht-hm{height:147px !important;}
.product-box-height-391{height: 425px !important; }
.eat-clean-more-img{top: 44px;left: 57px; position: absolute;padding: 0px;}
.drink-clean-more-img{top: 44px;left: 57px; position: absolute;}
.video-carousel-modal-css{height:158px;}
.location-services-box1{width: 59% !important;}
.location-services-box2{width: 35% !important;}
.services-box2{width: 100% !important;line-height: 1.5;height: auto;margin-bottom: 13px;}
.services-img{margin-bottom: 5px;}
.btn-margin-top{margin-top:10px;}
.edu-carousel-arrow{width: 26px;height: 26px;top: 130%;position: absolute;opacity: 1;}
.video-carousel-arrow{width: 26px;height: 26px;top: 45%;position: absolute;opacity: 1;}
.logo-carousel-arrow{width: 26px;height: 26px;top: 10%;position: absolute;opacity: 1;}
.fb-carousel-arrow{height: 14% !important;width: 81% !important;}
.modal-img-wd{width:100%;margin-bottom: 20px;}
.modal-img-magnifying{left:110px;top:109px;}
.home-text-margin{margin-left:10px !important;margin-right:10px !important;}
.review-carousel-control{font-size:16px;}
.recurring-msg-div{padding-right: 15px;font-size: 14px;}
.you-are-img-css{width: 30%;position: absolute;margin-top: 0px;margin-left: 0px;right: 0; margin-right: 10px;}
.menu-text-align{text-align: center;}
.services-table-mb{margin-top: 10px;}
.footer-table{
    background-color: #80808059;
    width: 100%;
    max-width: 100%;
    text-align: center;
}
.modal-width{width: 80% !important;}
.rec-level-img{width:90% !important;height:18px;}
.main-rec-level-indicator{top:3px;}
.main-bronze{left:22%}
.main-silver{left:43%}
.main-gold{left:65%}
.main-platinum{left:89%}
.youtube-video-box{height:164px; width:95%;}
.youtube-video-box-p{width: 95%;height: 143px;}
.green-tick-css{width: 35%;}
.btn-black {margin-left: 10px;font-size: 14px;float: right;margin-right: 15px;}
.btn-white {margin-left: 10px;font-size: 14px;margin-right: 15px;}
.btn-add-to-cart{font-size: 14px;}
.own-selection-div{margin-bottom: 0px !important;margin-top: 25px !important;}
.cart-items-table>tbody>tr>td {
    padding-right: 5px !important;
    padding-left: 5px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.recurring-table>tbody>tr>td {
    padding-right: 10px !important;
    padding-left: 10px !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
.faq-title{width: 97%;}
.faq-div{width: 100%;padding-bottom: 0px;}
.padding-left-10-m{padding-left:10px;}
.padding-bottom-20-m{padding-bottom: 20px;}
.textarea3{height:215px;}
.guest-login-div-css{width: 90%;padding-bottom: 20px;}
.dietitian-box{width: 341px !important;height: auto;}
.dietitian-box-info{width: 282px !important;height: 110px;}
.dietitian-img{width: 318px;height: 130px;margin-left: 15px;}
.rec-edit-cog-inner{padding-left: 10px;}
.recu-td{font-size: 17px;}
.add-to-recurring-loader{width: 10%;margin-left: -89px;}
.review-contents-info {height: 230px;}
.mobile-menu-btn {padding-left: 10px !important;}
.prev-next-cat{float:left;margin-top: 15px;}
.menu-font-size{font-weight: bold;font-size: 14px;}
.mobile-menu-border{border-bottom: 1px solid #ffffff;}
.mobile-menu-padding-b{padding-bottom: 10px !important;padding-top: 10px !important;}
.before-you-browse-css{width:80%;margin: 10px auto !important;}
.real-food-img-css{width:32%;margin-top: 10px;margin-bottom: 10px;}
.eat-clean-real-food-img-css{width:40%;}
.eat-clean-img-css{margin-top: 10px;margin-bottom: 10px;}
.video-player-css{width:328px;height:184px;}
.top-100-m{top:100px;}
.play-video-btn{width: 45px;height: 40px;margin-left: -98px;left: auto;}
.img-height-witdth-100{
    height: auto !important;
    width: 220px !important;
}
.logo-css{height: 70px;width: auto;}
.logo-carousel-css {
    height: auto !important;
}
.talk-to-us-img{width: 20px;height: 20px;}
.btn-talk-to-us {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 0px;
}
.input-text-width{width: 90%  !important; margin-top:10px;}
.input-text-width-h{width: 75%  !important;}
.do-we-deliver{font-size: 16px;margin-left: 10px;}
.check-add-btn {
    padding-left: 30px;
    padding-right: 50px;
    margin-bottom: 20px;
    margin-left: 65px;
    margin-top: 0px;
}
.cart-menu-css{margin-top: 7px;margin-bottom: 7px !important;margin-left: -38px !important;}
.my-profile-css{margin-top: 7px;margin-bottom: 7px !important;margin-left: -50px !important;}
.my-course-video{width:340px;height:187px;}
.cart-cat-count-css{margin-bottom: 10px;height: 75px;}
.meals-per-td-width{width: 32%!important;}
.menu-z-index{z-index: 10000;}
.online-course-video-css{height: 100%;}
.online-course-img-wd{width:100%;}
.suggestion-img{width: 10%;}
.before-you-title{margin-left: 10px;}
.next-wizard-span{float: none;margin-right: 0px !important;}
.location-serach-div{text-align: center;margin-top: 20px;}
.filter-div-m{width: 90%;}
.social-media-div{width: 100% !important;}
.art-content-div{padding-left: 0px !important;padding-right: 0px !important;}
.margin-top-m{margin-top:10px;}
.shopping-mode-div-m{margin-top:15px;margin-bottom:15px;}
.margin-space-47px-m{margin-top: 47px !important;}
.margin-space-20px-m{margin-top: 20px !important;}
.articles-div{padding-right: 15px;}
.suggestion-textbox{width: 90%;}
.forgotten-item-r{margin: 0px 302px 38px !important;}
.medical-title{font-size: 15px;line-height: 32px;}
.contact-email-width{width: 84% !important;}
.submit-review-css{text-align: center;}
.submit-reviewbtn-css{margin-top: 10px !important;}
.add-to-cart-loader-5{width: 9%;margin-top: -6px;margin-left: -113px;}
.select-cart-btn{width: 10%;}
.cat-pg-video{width: 311px !important;height: 175px !important;margin-left: 10px;}
.wizard-list>li {padding-left: 0em;}
.logo-wd{width:40% !important;}
.dont-forget-div{margin-top:15px;}
.image-ht-1click{height: 142px;}
.float-right{float:none !important;}
.float-right-btn{float:none !important;}
.contact-table>tbody>tr>td{line-height: 2 !important;}
.text-left-m{text-align: left !important;}
.navbar-header{}
.payment-opt-img-css{width:90%;}
.eav-div{padding-right: 10px !important;padding-left: 10px !important;margin-right: 0px !important;width: 91%!important;}
.eav-div-checkout{padding-right: 10px !important;padding-left: 10px !important;margin-right: 0px !important;width: 91%!important;}
.checkout-notes-loader{width: 10%;}
.checkout-notes-tick{width: 11%;margin-top: 20px;}
.eatClean{line-height: 2;margin-left: 0px;}
.cravings{line-height: 2;padding: 0px 10px;}
.eatCleanCravings{line-height: 2;padding: 0px 10px;}
.strict-keto {
    padding: 0px 10px;
    line-height: 2;
}
.view-food-ranges{line-height: 2;height: auto;text-align: center !important;padding-left: 0px;}
.mirror-css{height: 41px;}
.eatclean-img{width: 30% !important;margin-right: 10px;}
.eatclean-cravings{font-size: 27px;}
.eatclean-sub-title{font-size:14px;}
.subtitle-padding{padding-left: 20px;}
.prod-desc-margin{margin-top:0px;}
.edgars-logo{float:none;}
.kc-name-fs-m {
    font-size: 14px;
    text-align: center;
    line-height: 40px;
}
/*.kc-name-fs1{font-size: 14px;line-height: 40px;}*/
.kc-name-fs1-m {
    font-size: 14px;
    line-height: 40px;
    text-align: center;
}
/*.kc-name-fs2{font-size: 14px;line-height: 17px;}*/
.kc-name-fs2-m {
    font-size: 14px;
    line-height: 15px;
    padding: 5px;
    text-align: center;
}
.navbar-min-ht{
    min-height: 38px !important;
}
.vegan-veg-animal-info{top: 368px}
.vegan-veg-animal{top: 225px}
.max-width-800{max-width: 280px !important;}
.pt-box-width{width: 100% !important;}
.pt-box-height{height: 407px;}
.recurring-btn-padding{padding-right:7px !important; padding-left:7px !important;}
.product-name{font-size:16px;}
}
/* iPad */
@media (min-width:768px) and (max-width:1024px){
    .icon-container-pt {
    position: absolute;
    right: 35px;
    top: calc(49% - 9px);
}
    .no-suger-white {
    filter: invert(1);
    width: 50% !important;
}
    .kc-name-fs-m {
    font-size: 14px;
    text-align: center;
    line-height: 40px;
}
.kc-name-fs1-m {
    font-size: 14px;
    line-height: 40px;
    text-align: center;
}
    .padding-top-20px{
        padding-top:20px ;
    }
    .checkout-image-height{
        height: auto !important;
    }
    .logo-css{height: auto;width: auto;}
    .img-height-witdth-100 {
        height: auto !important;
        width: 175px !important;
    }
.my-profile-css{margin-left: 0px !important;}
.menu-text-align{text-align: center;}
.navbar-toggle {display: block;margin-top:-32px;margin-left:0px !important;}
.checkout-margins{margin-left:10px !important;margin-right:10px !important;}
.checkout-margins-menu{margin-left:2px !important;margin-right:2px !important;}
.checkout-margins1{margin-left:10px !important;margin-right:10px !important;}
.textarea-checkout-margins{margin-left:25px !important;margin-right:25px !important;}
.hm-top-text-margins{margin-left:10px !important;margin-right:10px !important;}
.product-info-margins{margin-left:0px !important;margin-right:0px !important;}
.margin-right-21{margin-right: 7px;}
.text-area-image-width {width: 35%;}
.lead-image-width {width: 19%;}
.margin-right-16{margin-right: 11px;}
.margin-right-47{margin-right: 11px;}
.margin-ipad{margin-left:10px !important;}
.textarea-width-48{width: 100% !important;}
.margin-right-40{margin-right:32px;}
.margin-right-30{margin-right: 25px !important;}
.education-box{height: 250px;}
.map-width-80{width: 100% !important;}
.bottom-auto{bottom:auto;}
.product-image-box{width: 31% !important;margin-right:6px;margin-left:10px;}
.margin-left-25{margin-left: 0px;}
.margin-top-7{margin-top:3px;}
.margin-left-minus-55{margin-left: 1px !important;}
.video-player-css{width:688px;height:388px;}
.width-video-65{width: 95% !important;}
.update-cart-item-loader-css{width: 13%;}
.green-tick-css{width: 13%;}
.you-are-img-css{width: 15%;position: absolute;margin-top: -42px;margin-left: 0px;right: 0; margin-right: 10px;}
.location-filter-td{width: 45%;padding-right:17px;}
.magnifying-image{left: 65px;top:44px;}
.real-food-video-box{height: 419px;width: 100%;}
.real-food-video-box2{height:238px; width:424px;}
.real-food-video-css{float:right;}
.home-image-box{
position: relative;
min-height: 1px;
margin-bottom: 15px;
height: 199px;
width: 23.7% !important;
}
.image-box{
position: relative;
min-height: 1px;
margin-bottom: 15px;
height: 199px;
width: 24% !important;
}
.fbadverts-image-box{
height: 238px;
}
.img-5-div {
    height: 180px;
}
.discount-level-banner {
margin-bottom: 10px;
}
.lead-image-css{width:18%;float: left; margin: -10px 3px 0px 0px;}
.review-contents{height: 125px;overflow-y: hidden;word-break: break-all;}
.recurring-title-font-size{font-size:13px;}
.margin-top-18{margin-top: 10px !important;}
.menu-margin{margin-top: 10px;margin-bottom: 10px;}
/*.product-info-button{top:99px;}*/
.product-box-height-recu{height: 491px !important; }
.product-box-height-recu-opt-k{height: 491px !important; }
.product-box-height{height: 470px !important; }
.product-box-height-recu-opt{height: 470px !important;}
.product-review-box-height{height: 470px !important; }
.product-name-box{min-height: 83px;}
.product-box-height-380{height: 418px !important; }
.product-box-height-424{height: 418px !important; }
.image-width{width:10%}
.video-carousel-css{width:193px;height:107px;}
.img-position {
    position: absolute;
    top: 45%;
    left: auto;
    margin-left: -20px;
}
.checkout-img-wd{width:13% !important;}
.video-carousel-arrow{width: 30px;height: 30px;top: 45%;position: absolute;opacity: 1;}
.fb-carousel-arrow{height: 21% !important;width: 36% !important;}
.edu-carousel-arrow{width: 26px;height: 26px;top: 130%;position: absolute;opacity: 1;right: 0%;}
.logo-carousel-arrow{width: 26px;height: 26px;top: 10%;position: absolute;opacity: 1;}
.review-carousel-control{font-size:16px;}
.reviews-box-m{height: 235px;}
.youtube-video-box{height: 326px;}
.youtube-video-box-p{width: 95%;height: 304px;}
.btn-white {padding: 5px 2px !important;font-size: 11px;}
.btn-black {font-size: 11px;}
.bronze-inner{right: 43%;top: 241px;}
.silver-inner{right: 30%;top: 241px;}
.gold-inner{right: 18%;top: 241px;}
.platinum-inner{right: 6%;top: 241px;}
.recu-td{text-align: center;}
.menu-font-size{font-weight: bold;font-size: 14px;}
.mobile-menu-padding-b{padding-bottom: 10px !important;padding-top: 10px !important;}
.mobile-menu{margin-top: -31px;margin-left: 13px;}
.real-food-img-css{width:22%;}
.eat-clean-real-food-img-css{width:22%;}
.eat-clean-img-css{margin-top: 10px;margin-bottom: 10px;}
.cart-menu-css{margin-top: 7px;margin-bottom: 7px !important;margin-left: -38px !important;}
.my-profile-css{margin-top: 7px;margin-bottom: 7px !important;}
.cart-cat-count-css{margin-bottom: 10px;height: 75px;}
.dietitian-box{width: 100% !important;left: -25%;}
.video-carousel-tablet{width:40%;left:30%;}
.fb-carousel-tablet{height:297px;width: 44%;left: 27%;}
.recu-image-tablet{height: 166px;}
.faq-tablet{margin-top:10px;}
.menu-z-index{}
.textarea3{height:140px;}
.faq-div{width: 32%;padding-bottom: 0px;}
.home-carousel-img{height: 160px/*387px*/ !important; width: auto !important;}
.location-services-box1{width: 52% !important;}
.location-services-box2{width: 45% !important;}
.education-box-m{height: 128px;}
.mobile-menu-btn {margin-top: -50px !important;}
.tablet-float-none {float: none;}
.product-desc{padding: 1px 15px;}
.review-contents-m{height: 110px;}
.recu-prod-sample-img{padding-right: 10px !important;padding-left: 0px !important;}
.online-course-img-wd{width:100%;}
.suggestion-textbox{width: 60%;}
.forgotten-item-r{margin: 0px 663px 30px !important;}
.submit-review-css{text-align: center;}
.submit-reviewbtn-css{margin-top: 10px !important;}
.tab-btn-padding{padding: 6px 6px !important;}
.wizard-list>li {padding-left: 0em;}
.payment-opt-img-css{width:90%;}
.prod-desc-margin{margin-top:0px;}
.own-selection-div{    margin-bottom: 0px !important;
    margin-top: 25px !important;
}
.vegan-veg-animal-info{top: 388px}
.vegan-veg-animal{top: 190px}
.fitchef-img{width: 100% !important;margin: 5px 5px;}
.plate-img{width: 100% !important;margin-left:0px;}
.hf-img{width: 100% !important;margin-left:0px;}
.filter-div-m{width: 50%;}
}
@media(max-width: 991px){
.navbar-collapse.collapse.in {display: block!important;}
 .icon-container-pt {
    position: absolute;
    right: 35px;
    top: calc(49% - 9px);
}
}
/*For Mac*/
@media (min-width:1980px){
    .no-suger-white{
        filter: invert(1);
        width: 30% !important;
    }
    .eat-real-img{
        width: 40%;
    }
    .strict-keto-img{
        width: 50%;
    }
    .strict-keto-title{
        font-size: 30px;
        letter-spacing: -1px;
    }
    .strict-keto-2nd-title{
        font-size: 22px;
        line-height: 18px;
        letter-spacing: -2px;
        font-weight: 600;
    }
    .first-magnifying-img {
        z-index: 0;
    }
    .carousel-control1{
        top: 50%;
    }
    .logo-carousel-arrow{
        margin-top: -72px;
    }
    .margin-left-47 {
        margin-left: 162px;
    }
    .product-box-height{
        height: 545px !important;
    }
    .bootstrap-touchspin-down,.bootstrap-touchspin-up{
        padding: 5px 12px !important;
    }
    .product-box-height-recu{height: 518px !important;}
    .product-box-height-recu-opt{height: 620px !important;}
    .product-box-height-recu-opt-k{height: 585px !important;}
    .single-img-ht{
        height: 250px !important;
    }
    .single-img-ht-hm{
        height: 250px !important;
    }
    .product-info-button {
        font-size: 14px !important;
        font-weight: 600 !important;
        color: #fff !important;
        padding: 3px 9px !important;
        position: absolute !important;
        /*top: 240px !important;*/
        z-index: 100 !important;
        /*left: 40% !important;*/
        border-radius: 10% !important;
    }
    .home-image-box {
        height: 350px !important;
    }
    .image-box {
        height: 360px !important;
    }
    .magnifying-image {
        left: 168px !important;
        top: 100px !important;
    }
    .video-carousel-css {
        width: 100% !important;
        height: 200px !important;
    }
    .carousel-control.left {
        margin: 0px 0px !important;
    }
    .carousel-control.right {
        margin: 0px 0px !important;
    }
    .select-cart-btn {
    width: 8% !important;
    }
    .bootstrap-touchspin-down{
        border-radius: 0px !important;
    }
    .bootstrap-touchspin-up{
        border-radius: 0px !important;
    }
    .qty-spinnerP-css{
        /*width: 32% !important;*/
        padding-left: 15px !important;
        margin-left: 0px !important;
    }
    .qty-spinner-css{
        width: 32% !important;
        padding-left: 15px !important;
        margin-left: 0px !important;
    }
    .add-to-cart-btn-css {
        float: right !important;
       /* width: 35% !important;*/
        margin-right: 17px;
    }
    .product-name-min-ht {
        min-height: 60px !important;
    }
    .add-recuring-btn{
        float: right;
        margin-right: 10px !important;
        border: none !important;
    }
    .view-btn{
        float: left;
        margin-left: 10px !important;
    }
    .padding-right-addCart {
    float: right ;
    margin-right: 15px;
    }
    .max-width-80{width: 50% !important}
    .max-width-50{width: 40% !important}
    .first-magnifying-img1 {
        /*border-radius: 50%;
        width: 2em;
        height: 2em;
        padding: .5em;
        font-size: 2em !important;
        margin-top: 51px;
        background-color: #0000007d;
        color: #fff;*/
    }
    .you-are-img-css {
        /*width: 3%;
        position: absolute;
        margin-top: -11px;
        margin-left: 0px;*/
            width: 5%;
    position: absolute;
    margin-top: -90px;
    margin-left: 0px;
    }
    .top-right-product-layout {
    position: absolute;
    top: 10.5%;
    right: 6px;
    }
    /*.you-are-img-css{
        width: 8%;
    position: absolute;
    margin-top: -96px;
    margin-left: -150px;
    }*/

}
/* iPad pro */
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (-webkit-min-device-pixel-ratio: 1) {
.navbar-toggle {display: none;}
.search-box-width{width: 80%;}
.search-div-width{width: 20% !important;height: 41px;}
.checkout-div-width{width: 80% !important;}
.text-area-image-width {width: 100%;}
.lead-image-width {width: 100%;}
.margin-left-minus-55{margin-left: -62px !important;}
.width-video-65{width: 65% !important;}
/*.product-info-button{top:110px;}*/
.image-box{height: 240px;}
.image-width{width:47%}
.drink-clean-more-img{left: 142px;top: 100px !important;width: 26px;
    height: 25px;}
.eat-clean-more-img {
    width: 26px;
    height: 25px;
    position: absolute;
    top: 100px;
    left: auto;
    right: 0 !important;
}
.home-image-box{height: 230px;}
.magnifying-image{left: 91px;top:65px;}
.review-contents{height:157px;}
.lead-image-css{width: 14%;}
.textarea3 {height: 134px;}
.education-box {height: 162px;width: 24% !important;}
.vd-right-arrow-width-3{width: 20% !important;}
.margin-left-47{margin-left: 80px;}
.td-width-ipad-pro{width: 30%;}
.dietitian-box{left: -1%;}
.product-box-height-recu{height: 528px !important;}
.product-box-height-recu-opt-k{height: 528px !important;}
.product-review-box-height-recu{height: 530px !important;}
.products-review-contents-recu-ht{height: 377px !important;}
.recu-nextdate-css{width: 28% !important;}
.recu-discount-css{width: 20% !important;}
.recu-cart-css{width: 25% !important;}
.recu-navbar-iPad-pro{width: 95.333333%;margin-left: -63px;}
.menu-margin-left-15{margin-left: -21px !important;}
.you-are-img-css{margin-top: -100px !important;}
.mobile-menu-padding-b{}
.menu-top-space-20px{margin-top: 0px !important;}
.menu-top-space-20pxs{margin-top: 0px !important;}
.video-player-css{width:651px;height:349px;}
.suggestion-textbox{width: 60%;}
.wizard-list>li {padding-left: 0em;}
.payment-opt-img-css{width:90%;}
.icon-container-pt {
    position: absolute;
    right: 35px;
    top: calc(49% - 9px);
}
.fitchef-img{width: 100% !important;margin: 5px 5px;}
.plate-img{width: 100% !important;margin-left:0px;}
.hf-img{width: 100% !important  ;margin-left:0px;}
.filter-div-m{width: 50%;}
}
@media (min-width:768px) and (max-width:1024px){
.you-are-img-css{margin-top: -50px;}
.you-are-img-css-1{margin-top: -115px; margin-left:385px}
.icon-container-pt {
    position: absolute;
    right: 35px;
    top: calc(49% - 9px);
}
}
@media (min-width:1024px){
.col-sm-2, .col-sm-3, .col-sm-12, .col-sm-4, .col-sm-9, .col-sm-10{padding-right: 0px !important;padding-left: 0px !important;}
.left-20{left: 0px;}
}
/* Desktop */
@media (min-width: 1300px) and (max-width: 600px){
.sticky-meal-percentage {
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 51%;
    font-weight: 800;
    font-size: 16px;
    left: 10.4% !important;
}
.meal-percentage{
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 57%;
    font-weight: 800;
    font-size: 16px;
    left: 8.4%;"
}
.single-img-ht{height:180px !important;}
.single-img-ht-hm{height:180px !important;}
.product-box-height-recu{height: 538px !important; }
.product-box-height-recu-opt-k{height: 538px !important; }
.product-review-box-height-recu{height: 538px !important; }
.product-box-height{height: 497px !important; }
.product-box-height-recu-opt{height: 497px !important;}
.product-box-height-sp{height: 384px !important; }
.product-review-box-height{height: 466px !important; }
.product-review-box-height-sp{height: 384px !important; }
.product-box-height-380{height: 411px !important; }
.product-box-height-424{height: 411px !important; }
.product-box-height-391{height: 372px !important;}
/*.product-info-button{top:138px;left: 39%;}*/
.padding-bottom-7{padding-bottom:8px;}
.magnifying-image{left: 119px;}
.checkout-margins{margin-left:111px !important;margin-right:111px !important;}
.checkout-margins1{margin-left:111px !important;margin-right:111px !important;}
.hm-top-text-margins{margin-left:111px !important;margin-right:111px !important;}
.textarea-checkout-margins{margin-left:161px !important;margin-right:161px !important;}
.image-box{height: 287px;}
.home-image-box{height: 270px;}
.eat-clean-td-width{width:56%;}
.review-contents{height:180px;}
.search-nav-bottom{padding-bottom:5px}
.eat-clean-more-img{top: 70px;left: 86px;}
.drink-clean-more-img{top: 70px;left: 179px;}
.margin-left-47{margin-left: 80px;}
.add-to-cart-btn{width: 127%;}
.video-carousel-arrow{width: 26px;height: 26px;top: 45%;position: absolute;opacity: 1;}
.logo-carousel-arrow{width: 26px;height: 26px;top: 10%;position: absolute;opacity: 1;}
.edu-carousel-arrow{width: 26px;height: 26px;top: 45%;position: absolute;opacity: 1;}
.products-review-contents-ht{height: 320px;}
.products-review-contents-ht-sp{height: 265px;}
.products-review-contents-recu-ht{height: 360px;}
.youtube-video-box{height: 317px;}
.youtube-video-box-p{width: 95%;height: 194px;}
.video-carousel-css{width:100%;height:139px;}
.btn-black {margin-left: 10px;float: right;margin-right: 10px;}
.fbadverts-image-box{width: 402px !important;height: 402px;}
.faq-title{height: 184px;}
.faq-view {height: 174px;}
.textarea3{height:196px;}
.dietitian-box{width: 397px !important;height: auto;}
.dietitian-box-info{width: 462px !important;height: 180px;}
.lead-image-css{margin: 25px 3px 80px 0px;}
.vd-left-arrow-width-3{left:-19px !important;}
.vd-right-arrow-width-3{width: 9% !important;}
.bootstrap-row-margin{margin-right: -19px !important; margin-left: -19px !important;}
.map-wd{width:7% !important;}
.checkout-icon-wd{width:8% !important;}
.menu-z-index{z-index: 10000;}
.online-course-video-css{height: 320px;}
.cart-menu{margin-left: 50px !important;}
.select-cart-btn{width: 12%;}
.cat-pg-video{width: 390px !important;height: 220px !important;}
.cravings-top-content{height: 270px;}
.textarea-checkout-margins{margin-left:250px !important;margin-right:250px !important;}
.hf-img{width: 42% !important;}
.recurring-btn-padding{padding-right:7px !important; padding-left:7px !important;}
.vegan-veg-animal{top: 158px;}
}

@media (min-width:500px) and (max-width:1200px)
{
    .sticky-meal-percentage {
        color: #fff;
        position: absolute;
        z-index: 0;
        top: 51%;
        font-weight: 800;
        font-size: 16px;
        left: 10.4% !important;
    }
    .meal-percentage{
            color: #fff;
    position: absolute;
    z-index: 0;
    top: 56%;
    font-weight: 800;
    font-size: 16px;
    }
    .navbar-nav>li>a {
        font-size: 8px !important;
    }
    .new-main-menu>li>a{
        font-size: 8px !important;
    }
    .no-suger-white {
        filter: invert(1);
        width: 80% !important;
    }
    .drink-clean-more-img{
        left: 135px !important;
    }
    .sticky-checkout-bar{
            width: 80.7%;
    }
    .reviwe-margin{
        margin-top: 1px !important;
    }
    .home-image-box-tab{
        width: 23.8% !important;
    height: 148px !important;
    }
    .checkout-product-info{
        left: 69;
    }
    .MultiCarousel1{ Height: auto;display: inline-flex;overflow-x: scroll !important;}
    .forgotten-item-boxm{
        width: 230px;
    }
.margin-right-21{margin-right: 7px;}
.btn-purchase{font-weight: normal !important;}
.product-box-height-recu{height: 443px !important;width: 23% !important;}
.product-box-height-recu-opt-k{height: 507px !important; }
.product-box-height{height: 408px !important;width: 23% !important;}
.product-box-height-recu-opt{height: 484px !important;}
.cravings-top-content{max-height: 352px !important;}
.btn-add-to-cart{padding: 6px 2px !important;}
/*.btn{padding: 6px 2px !important;}*/
.add-to-cart-btn-css {
    padding-left: 4px !important;
}
.product-image-box{
    width: 31% !important;
}
/*.kc-name-fs1 {
    font-size: 15px !important;
    line-height: 19px !important;
    height: 57px;
}*/
.font-size-12 {
    font-size: 9.5px !important;
}
.image-box{
    height: 203px;
    width: 23.6% !important;
}
/*.home-image-box {
    width: 23.7% !important;
    height: 162px !important;
}*/
/*.kc-name-fs {
    font-size: 17px;
    height: 57px;

}*/
.home-image-box {
   /* width: 20.7% !important;*/
    width: 20% !important;
    height: auto;
}
/*.home-image-box-tab{

    width: 23.7% !important;
    height: 148px !important;

}*/
.review-contents {
    overflow-y: hidden;
     height: 105px;
    padding-left: 10px;
    padding-right: 10px;
}
.reviews-text-color {
    font-size: 9px;
}
.top-right-product-layout {
    position: absolute;
    top: 8.5% !important;
    right: 6px;
}
.height-33{
    height: 45px !important;
}
.pt-box-height{height: 350px;}
}
@media (max-width:1036px)
{
/*.pt-box-height{height: 370px;}*/
}
/* If browser zoom is 75%*/
@media (min-width:1726px) and (max-width:1726px)
{
    .sticky-meal-percentage {
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 51%;
    font-weight: 800;
    font-size: 16px;
    left: 7.4% !important;
}
.meal-percentage{
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 57%;
    font-weight: 800;
    font-size: 16px;
    left: 8.4%;"
}
.no-suger-white {
    filter: invert(1);
    width: 50% !important;
}
.you-are-img-css{width: 9%;}
.product-box-height-recu{height: 552px !important; }
.product-box-height-recu-opt{height: 460px !important;}
.product-box-height-recu-opt-k{height: 551px !important; }
.eat-clean-more-img{top: 100px;}
.drink-clean-more-img{top: 100px;}
.height-75{height: 83%;}
.image-box {
    height: auto !important;
}
.home-image-box {
    height: 296px !important;
}
.image-box {
    height: 350px !important;
}
.video-carousel-css {
    height: 170px !important;
}
.magnifying-img {
    margin-top: 26px !important;
    margin-left: 42px !important;
}
.fb-magnifying-image{
    top: 40% !important;
    left: 44% !important;
}
.first-magnifying-image{
    top: 42% !important;
    left: 44% !important;
}
.single-img-ht {
    height: 200px !important;
}
.single-img-ht-hm {
    height: 200px !important;
}
.product-box-height {
    height: 520px !important;
}
.product-box-height-recu-opt{height: 520px !important;}
.bootstrap-touchspin-down,.bootstrap-touchspin-up{
        padding: 5px 12px !important;
}
/*.kc-name-fs1 {
    font-size: 25px !important;
    line-height: 40px !important;
}*/
.top-right-product-layout {
    position: absolute;
    top: 8.5% !important;
    right: 6px;
}
.recurring-btn-padding{padding-right:7px !important; padding-left:7px !important;}
}

/* If browser zoom is 90%*/
@media (min-width:1438px) and (max-width:1438px)
{
    .sticky-meal-percentage {
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 51%;
    font-weight: 800;
    font-size: 16px;
    left: 7.4% !important;
}
.meal-percentage{
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 57%;
    font-weight: 800;
    font-size: 16px;
    left: 8.4%;"
}
    .no-suger-white {
    filter: invert(1);
    width: 50% !important;
}
    .select-cart-btn {
    width: 12% !important;
}
.add-to-cart-btn-css {
    text-align: right !important;
    padding-right: 7px !important;
}
.you-are-img-css{width: 9%;}
.product-box-height {
    height: 470px !important;
}
.product-box-height-recu-opt{height: 470px !important;}
.product-box-height-recu{height: 530px !important;}
.product-box-height-recu-opt-k{height: 531px !important; }
.magnifying-image{left: 100px;}
.image-box {
    height: auto !important;
}
/*.home-image-box {
    height: 296px !important;
}
.home-image-box*/
.image-box {
    height: 350px !important;
}
.video-carousel-css {
    height: 170px !important;
}
.magnifying-img {
    margin-top: 26px !important;
    margin-left: 42px !important;
}
.fb-magnifying-image{
    top: 40% !important;
    left: 44% !important;
}
.first-magnifying-image{
    top: 42% !important;
    left: 44% !important;
}
/*.product-info-button{
    left: 37% !important;
}*/
.review-contents-m {
    height: 190px !important;
}
.top-right-product-layout {
    position: absolute;
    top: 8.5% !important;
    right: 6px;
}
.hf-img {width: 44% !important;}
.recurring-btn-padding{padding-right:7px !important; padding-left:7px !important;}
..vegan-veg-animal{top: 175px;}
}

/* If browser zoom is 67%*/
@media (min-width:1919px) and (max-width:1942px)
{
    .sticky-meal-percentage {
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 51%;
    font-weight: 800;
    font-size: 16px;
    left: 5.8% !important;
}
.meal-percentage{
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 57%;
    font-weight: 800;
    font-size: 16px;
    left: 5.8%;"
}
    .no-suger-white {
    filter: invert(1);
    width: 50% !important;
}
.select-cart-btn {
    width: 9% !important;
}
.view-btn{
    margin-left: 10px !important;
}
.add-recuring-btn{
    margin-right: 10px !important;
}
.qty-spinnerP-css{
    /*width: 32% !important;*/
    padding-left: 0px !important;
}
.qty-spinner-css{
    /*width: 32% !important;*/
    padding-left: 14px !important;
}
.add-to-cart-btn-css {
    float: right !important;
    /*width: 35% !important;*/
    padding-right: 15px !important;
}
.you-are-img-css{width: 9%;}
.product-box-height-recu{height: 450px !important; }
.product-box-height-recu-opt-k{height: 520px !important; }
.eat-clean-more-img {top: 119px;left: 105px;}
.drink-clean-more-img {top: 119px;left: 229px;}
.image-box {
    height: auto !important;
}
.home-image-box {
    height: 390px !important;
    width: 22.9% !important;
}
.image-box {
    height: 415px !important;
    width: 24% !important;
}
.video-carousel-css {
    height: 200px !important;
}
.magnifying-img {
    margin-top: 8px !important;
    margin-left: 12px !important;
    left: 161px;
    top: 107px;
}
.fb-magnifying-image{
    top: 40% !important;
    left: 44% !important;
}
.first-magnifying-image{
    top: 42% !important;
    left: 44% !important;
}
.img-position {
    left: 45% !important;
    top: 48% !important;
}
.product-box-height-recu-opt{height: 517px/*571px*/ !important;}
.max-width-80{width: 50% !important}
    .max-width-50{width: 40% !important}
    .review-contents-m{}
    .top-right-product-layout {
    position: absolute;
    top: 9.5%;
    right: 6px;
}
}
@media (min-width:1920px) and (max-width:1920px)
{
.no-suger-white {
    filter: invert(1);
    width: 50% !important;
}
.you-are-img-css{width: 9%;}
.product-box-height{height: 530px !important;}
.product-box-height-recu-opt{height: 530px !important;}
.product-box-height-recu{height: 502px !important; }
.product-box-height-recu-opt-k{height: 567px !important; }
.eat-clean-more-img {top: 119px;left: 105px;}
.drink-clean-more-img {top: 119px;left: 229px;}
.image-box {height: 381px;}
.home-image-box {height: 329px;}
.magnifying-image {left: 150px;top: 93px;}
.single-img-ht {
    height: 200px !important;
}
.single-img-ht-hm {
    height: 200px !important;
}
.product-box-height {
    height: 475px !important;
}
.product-box-height-recu-opt{height: 539px !important;}
}
/* If browser zoom is 50%*/
@media (min-width:2590px) and (max-width:2590px)
{
    .no-suger-white {
    filter: invert(1);
    width: 50% !important;
}
.you-are-img-css{width: 7%;}
.product-box-height-recu {height: 522px !important;}
.product-box-height{height: 530px !important;}
.product-box-height-recu-opt{height: 601px !important;}
.product-review-box-height-recu {height: 674px !important;}
.eat-clean-more-img {top: 157px;left: 155px;}
.drink-clean-more-img {top: 157px;left: 336px;}
.image-box {height: 483px;}
.home-image-box {height: 419px;}
.magnifying-image {left: 226px;top: 116px;}
.product-box-height {
    height: 541px !important;
    }
.review-contents-m {
    height: 395px !important;
}
}
/* If browser zoom is 33%*/
@media (min-width:3885px) and (max-width:3885px)
{
    .no-suger-white {
    filter: invert(1);
    width: 50% !important;
}
.you-are-img-css{width: 5%;}
}
/* If browser zoom is 25%*/
@media (min-width:5180px) and (max-width:5180px)
{
    .no-suger-white {
    filter: invert(1);
    width: 50% !important;
}
.product-box-height{height: 530px !important;}
.product-box-height-recu-opt{height: 530px !important;}
.you-are-img-css{width: 3%;}
}
@media (min-width: 1920px) and (max-width: 2560px)  {
    .no-suger-white {
    filter: invert(1);
    width: 50% !important;
}
.you-are-img-css{width: 8%;position: absolute;
    margin-top: -93px;
    margin-left: -150px;}
}
.manage-address-btn{
    color: rgba(68, 45, 45, 0.84);
    border-color: rgba(25, 27, 22, 0.28);
}
/*.reviews-box{
    background-color:#444236;
    color: white;
        background-color: #f7f7f8;
    color: #292121;
}*/
.reviews-text-color{
    /*color: rgb(222, 218, 209);*/
        color: rgb(123 120 112);
}
ul.dropdown-cart li .item {
    display: block;
    padding: 3px 10px;
    margin: 3px 0;
}
.btn-purchase {
    color: #296646;
    background-color: #CCDB26;
    border-color: #CCDB26;
    font-weight: bold;
}
.btn-danger{
    color: #fff;
    background-color: #ff0000;
    border-color: #ff0000;
    font-weight: bold;
}
.item-right {
    float: right;
}
.item-info {
    width: 100%;
}
ul.dropdown-cart li .item-left {
    float: left;
    min-width: 250px;
}
.item-left span.item-info span.label1 {
    display: inline;
    float: left;
}
.left-border{border-left: solid 1px #767b7d;}
.recurring-grand-total{background-color: black;color: white;}
.pull-right {
    float: right!important;
}
.pull-left {
    float: left!important;
}
.pull-initial {
    float: initial!important;
}
.div-margin{margin: 10px 0px 10px 0px;}
.div-margin-10{margin: 10px 10px 10px 10px;}
.div-margin-5{margin: 5px 0px 5px 0px;}
.top-announcement{margin: 5px 1px 5px 1px;}
.div-margin-47{margin: 47px 0px 10px 0px;}
input#search-products-btn2{
    background: #ccc url('/assets/img/search_icon.png') no-repeat top left;
    background-image: url ('/assets/img/search_icon.png') no-repeat;
    padding-left: 16px;
    height: 16px;
}
.display-inline-flex{display: inline-flex !important;}
.display-initial{display: initial !important;}
/*.display-inline-block{display: inline-block !important;}*/
.icheckbox_square-blue,
.iradio_square-blue {
    display: inline-block;
    *display: inline;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    width: 13px;
    height: 13px;
    background: url("/assets/img/blue.png") no-repeat;
    border: none;
    cursor: pointer;
    margin: -1px 0 0 !important;
    transform: scale(1.5);
}
.icheckbox_square-blue {
    background-position: 0 0
}
.icheckbox_square-blue.hover {
    background-position: -24px 0
}
.icheckbox_square-blue.checked {
    background-position: -48px 0
}
.icheckbox_square-blue.disabled {
    background-position: -72px 0;
    cursor: default
}
.icheckbox_square-blue.checked.disabled {
    background-position: -96px 0
}
.iradio_square-blue {
    background-position: -120px 0
}
.iradio_square-blue.hover {
    background-position: -144px 0
}
.iradio_square-blue.checked {
    background-position: -168px 0
}
.iradio_square-blue.disabled {
    background-position: -192px 0;
    cursor: default
}
.iradio_square-blue.checked.disabled {
    background-position: -216px 0
}
.order-details-block{border-bottom:2px solid #444;margin-bottom:15px}.order-details-block .order-status{height:150px;line-height:150px;text-align:center;vertical-align:middle;color:#fff}.order-details-block .order-status span{display:inline-block;vertical-align:middle;line-height:14px}.order-details-block .order-status.new,.order-details-block .order-status.paid,.order-details-block .order-status.pending{background-color:#236672}.order-details-block .order-status.confirmed{background-color:#e55324}.order-details-block .order-status.scheduled{background-color:#662483}.order-details-block .order-status.completed,.order-details-block .order-status.completed_walk_in,.order-details-block .order-status.waiting_for_split{background-color:#95c11f}.order-details-block .order-status.cancelled{background-color:#ed1c24}.order-details-block .order-status.pink{background-color:#9e1e63}.order-details-block .order-number{border-bottom:1px dashed #444;padding:2px 0}.order-details-block .order-total{font-weight:700;font-size:1.8em;padding:10px 0}.invoice-total>tbody>tr>td:first-child{text-align:right}.invoice-total>tbody>tr>td{border:0 none}.invoice-total>tbody>tr>td:last-child{border-bottom:1px solid #ddd;text-align:right;width:25%}

.form-horizontal label {
    text-align: right;
    padding-top: 7px;
    margin-bottom: 0;
}
label.error {
    color: #cc5965;
    display: inline-block;
    margin-left: 5px;
    font-size: 11px;
}
/*
 *  Bootstrap TouchSpin - v3.0.1
 *  A mobile and touch friendly input spinner component for Bootstrap 3.
 *  https://www.virtuosoft.eu/code/bootstrap-touchspin/
 *
 *  Made by István Ujj-Mészáros
 *  Under Apache License v2.0 License
 */

.bootstrap-touchspin .input-group-btn-vertical{position:relative;white-space:nowrap;width:1%;vertical-align:middle;display:table-cell}.bootstrap-touchspin .input-group-btn-vertical>.btn{display:block;float:none;width:100%;max-width:100%;padding:8px 10px;margin-left:-1px;position:relative}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-up{border-radius:0;border-top-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical .bootstrap-touchspin-down{margin-top:-2px;border-radius:0;border-bottom-right-radius:4px}.bootstrap-touchspin .input-group-btn-vertical i{position:absolute;top:3px;left:5px;font-size:9px;font-weight:400}

.select2-container--default .select2-results > .select2-results__options {
    max-height: 300px;
    min-height: 200px;
    overflow-y: auto;
}
@media (max-width: 770px) {
    .sticky-meal-percentage{
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 33%;
    font-weight: 800;
    font-size: 12px;
    left: 1%;
}
.meal-percentage{
    /*color: #fff;
    position: absolute;
    z-index: 0;
    top: 58%;
    font-weight: 800;
    font-size: 12px;
    left: 1.1%;*/
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 44%;
    font-weight: 800;
    font-size: 9px;
    left: 1.5%;
}
    .navbar-collapse {
        margin-top: 10px;
        border-top: 1px solid transparent;
        box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .1)
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav>li {
        float: none
    }
    .category-menu-center {
        text-align: left;
    }
    .order-preferences-mobile {display: block !important;}
    .order-preferences-dekstop {display: none !important;}
}

@media (min-width: 800px) and (max-width: 800px){
    .sticky-meal-percentage{
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 51%;
    font-weight: 800;
    font-size: 16px;
    left: 8.4%;
}
.meal-percentage{
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 57%;
    font-weight: 800;
    font-size: 16px;
    left: 8.4%;
}
.navbar-collapse {margin-top: 10px;border-top: 1px solid transparent;box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .1);}
.navbar-collapse.collapse {display: none!important;}
.navbar-nav>li {float: none;}
.category-menu-center {text-align: left;}
.navbar-toggle .icon-bar{display:block !important;}
.navbar-header{width:85%;}
.navbar-nav{width:100%}
.dropdown-menu{width:100%}
.mobile-menu-border{border-bottom: 1px solid #ffffff;}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {border-color: #e7e7e7;}
.menu-top-space-20pxs{margin-top: 35px !important;}
.cart-menu{margin-left: -85px !important;}
.margin-left-minus-55 {margin-left: -40px !important;}
.scrollable-bootstrap-menu-m1 ul{max-height: 300px;}

}

@media (min-width: 666px) and (max-width: 990px){
    .sticky-meal-percentage{
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 51%;
    font-weight: 800;
    font-size: 16px;
    left: 8.4%;
}
.meal-percentage{
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 57%;
    font-weight: 800;
    font-size: 16px;
    left: 8.4%;
}
.navbar-collapse {margin-top: 10px;border-top: 1px solid transparent;box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .1);}
.navbar-collapse.collapse {display: none!important;}
.navbar-nav>li {float: none;}
.category-menu-center {text-align: left;}
.navbar-toggle .icon-bar{display:block !important;}
.navbar-header{width:85%;}
.navbar-nav{width:100%}
.dropdown-menu{width:100%}
.mobile-menu-border{border-bottom: 1px solid #ffffff;}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {border-color: #e7e7e7;}
.menu-top-space-20pxs{margin-top: 35px !important;}
.cart-menu{margin-left: -85px !important;}
.margin-left-minus-55 {margin-left: -40px !important;}
.z-index-1000000 {
    z-index: 1000000;
}
.scrollable-bootstrap-menu-m1 ul{max-height: 300px;}
.product-box-height-recu{height: 519px !important;}
.product-box-height-recu-opt-k{height: 519px !important; }
.dietitian-box{width: 50% !important;}
}

@media (min-width: 492px) and (max-width: 500px){
.scrollable-bootstrap-menu-m1 ul{max-height: 300px;}
}
@media (max-width: 767px) and (min-width: 641px){
.product-box-height-recu{height: 706px !important;}
.product-box-height-recu-opt-k{height: 706px !important; }
}
@media (min-width: 835px) and (max-width: 940px){
.product-box-height-recu{height: 441px !important;}
.product-box-height-recu-opt-k{height: 441px !important; }
.dietitian-box{width: 50% !important;}
}
@media (min-width: 640px) and (max-width: 767px){
.product-box-height-recu{height: 677px !important;}
.product-box-height-recu-opt-k{height: 677px !important; }
}
@media (min-width: 670px) and (max-width: 768px){
.product-image-box{width: 100% !important;}
.product-box-height-recu{height: 624px !important;}
.product-box-height-recu-opt-k{height: 624px !important; }
}
@media (min-width: 627px) and (max-width: 768px){
.product-image-box{width: 100% !important;}
.product-box-height-recu{height: 702px !important;}
.product-box-height-recu-opt-k{height: 702px !important; }
.product-box-height {height: 450px !important;}
.product-box-height-recu-opt{height: 552px !important;}
}
@media (min-width: 1201px) and (max-width: 1253px){
.sticky-meal-percentage{
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 51%;
    font-weight: 800;
    font-size: 16px;
    left: 8.4%;
}
.meal-percentage{
    color: #fff;
    position: absolute;
    z-index: 0;
    top: 57%;
    font-weight: 800;
    font-size: 16px;
    left: 8.4%;
}
.margin-right-21{margin-right: 7px;}
.product-box-height-recu{height: 560px !important;}
.product-box-height-recu-opt-k{height: 560px !important; }
.product-box-height {height: 485px !important;}
.product-box-height-recu-opt{height: 485px !important;}

}
@media (min-width: 768px) and (max-width: 1024px){
.product-box-height {height: 379px !important;}
.product-box-height-recu-opt{height: 438px !important;}
}
@media (min-width: 627px) and (max-width: 667px){
.product-box-height {height: 500px !important;}
.product-box-height-recu-opt{height: 500px !important;}
}
/* Nexus 6*/
@media (min-width: 412px) and (max-width: 732px){
.product-box-height-recu{height: 582px !important;}
.product-box-height-recu-opt-k{height: 582px !important; }
.product-box-height {height: 493px !important;}
.product-box-height-recu-opt{height: 493px !important;}
.hide-mobile td{display: none !important;}
}
@media (min-width: 300px) and (max-width: 732px){
.hide-mobile td{display: none !important;}
}
.borderless tbody td, .borderless tbody th {
    border: none !important;
}
.order-font{font-size: 16px;font-weight: bold;}
#back2Top {
    width: 40px;
    line-height: 40px;
    overflow: hidden;
    z-index: 999;
    display: none;
    cursor: pointer;
    -moz-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    position: fixed;
    bottom: 10px;
    right: 0;
    background-color: #DDD;
    color: #555;
    text-align: center;
    font-size: 30px;
    text-decoration: none;
}
#back2Top:hover {
    background-color: #DDF;
    color: #000;
}
.carousel-control{font-size: 30px !important;opacity: 1;}
.carousel-control.right{margin:75px 0px;}
.carousel-control.left{margin:75px 0px;}
span.select2-selection--multiple[aria-expanded=true] {
    border-color: blue !important;
}
.logosCarousel>.active {
    margin-left:20px;
    height: 270px;
}
.logosCarousel3>.active {
    margin-left:20px;
    height: 270px;
}
/* Style the element that is used to open and close the accordion class */
p.faq-accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    margin-bottom:1px;
}

/* Add a background color to the accordion if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
p.faq-accordion.active, p.faq-accordion:hover {
    background-color: #ddd;
}

/* Unicode character for "plus" sign (+) */
p.faq-accordion:after {
    content: '\2795';
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

/* Unicode character for "minus" sign (-) */
p.faq-accordion.active:after {
    content: "\2796";
}

/* Style the element that is used for the panel class */
div.faq-panel {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    opacity: 0;
    margin-bottom:10px;
}

div.faq-panel.show {
    opacity: 1;
    max-height: 500px;
    overflow-y: auto;
}

div.faq-border{
    border:1px solid #dcdcdc;
}
div.contact-form{
    background: #e6e2e230;
    padding: 10px;
    border: 1px solid #dcdcdc;
    margin: 0;
}
.faq-accordion-title{
    font-size: 16px
}
.homeCarousel-inner {
    width: 210%;
    left: -56%;
}
.recu-settings-css{
position: absolute;
right: 0;
margin-right: 15px;
}
.indicator-wrapper,.indicator-wrapper .level-slider{position:relative}.indicator-wrapper .level-slider .indicator{position:absolute;bottom:80%;left:-18px;width:30px;height:39px;background-size:contain}

/* Style the element that is used to open and close the accordion class */
p.recurring-accordion {
    background-color: #ccc7c9d6;
    color: #000;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: center;
    border: none;
    outline: none;
    transition: 0.4s;
    margin-bottom:1px;
    font-size: 17px;
}

/* Add a background color to the accordion if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
p.recurring-accordion.active, p.recurring-accordion:hover {
    background-color: #ccc7c9d6;
}

/* Unicode character for "plus" sign (+) */
p.recurring-accordion:after {
    content: '\2795';
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

/* Unicode character for "minus" sign (-) */
p.recurring-accordion.active:after {
    content: "\2796";
}

/* Style the element that is used for the panel class */

div.recurring-panel {
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    opacity: 0;
    margin-bottom:10px;
    text-align: center;
}

div.recurring-panel.show {
    opacity: 1;
    max-height: 600px;
    overflow-y: auto;
    text-align: center;
}
.swal2-container {
  z-index: 2121212121 !important;
}
.swal2-icon.swal2-warning{font-size: 10px !important;line-height: 50px!important;}
.swal2-popup{font-size: 13px !important;}

/* Style the element that is used to open and close the accordion class */
p.packing-accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 10px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
    margin-bottom:1px;
}

/* Add a background color to the accordion if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
p.packing-accordion.active, p.packing-accordion:hover {
    background-color: #ddd;
}

/* Unicode character for "plus" sign (+) */
p.packing-accordion:after {
    content: '\2795';
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
}

/* Unicode character for "minus" sign (-) */
p.packing-accordion.active:after {
    content: "\2796";
}

/* Style the element that is used for the panel class */

div.packing-panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    opacity: 0;
    margin-bottom:10px;
}

div.packing-panel.show {
    opacity: 1;
    max-height: 500px;
    overflow-y: auto;
}
.table-borderless td,
.table-borderless th {
    border: 0 !important;
}
.retailer-div{
    max-height: 400px;
    overflow: auto;
}
.province-list{
    max-height: 400px;
    overflow: auto;
}
.h1, h1{
    font-size: 36px;
    font-weight: 700;
}
.m-menu-sub-p{
       padding: 10px 10px 10px 30px !important;
}
.m-menu-grnd-p{
       padding: 10px 10px 10px 50px !important;
}
.maring-m-sub-cat{
    margin: 0px 6px 1px 10px !important;
}
.m-menu-all-li-a{
    text-align: left !important;
}

/*NEW MEGA MWNU CSS*/
/* Add a background color to the accordion if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
p.menuLevel1.active, p.menuLevel1:hover {
    background-color: #EAEAEA;
    cursor: pointer;
}
p.menuLevel2.active, p.menuLevel2:hover {
    background-color: #EAEAEA;
    cursor: pointer;
}
p.menuLevel3.active, p.menuLevel3:hover {
    background-color: #EAEAEA;
    cursor: pointer;
}

p.menuLevel1 {
    background-color: #FFF;
}
p.menuLevel2{
    background-color: #FFF;
}
p.menuLevel3 {
    background-color: #FFF;
}


/* Style the element that is used for the panel class */

div.menuLevel1-Panel, div.menuLevel2-Panel, div.menuLevel3-Panel{
    padding: 0 0px;
    /*background-color: white;*/
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease-in-out;
    opacity: 0;
    margin-bottom:10px;
}

div.menuLevel1-Panel.show,div.menuLevel2-Panel.show,div.menuLevel3-Panel.show {
    opacity: 1;
    max-height: 600px;
    overflow-y: auto;

}
.myButton {
    box-shadow: 1px 2px 7px 0px #a8aaad;
    background-color:#815ebd;
    border-radius:18px;
    display:inline-block;
    cursor:pointer;
    color:#ffffff;
    font-family:Arial;
    font-size:13px;
    font-weight:bold;
    padding:10px 15px;
    text-decoration:none;
}
.myButton:hover {
    background-color:#815ebd;
}
.myButton:active {
    position:relative;
}
.tagClass {
    font-size: 17px;
    font-weight: 600;
    padding: 6px 17px;
    border-radius: 32px;
    height: 28px;
    margin-right: 10px;
    background: #ededed !important;
    line-height: 3;
    color: #7e7e7e;
    border: 1px solid #afafaf;
}
.custom-file-input {
    color: transparent;
}
.custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}
.custom-file-input::before {
    content: '+ ADD';
    color: #fff;
}
.img-wraps {
    position: relative;
    display: inline-block;

    font-size: 0;
}
.img-wraps .closes {
    position: absolute;
    top: 5px;
    right: 4px;
    z-index: 98;
    /* background-color: #FFF; */
    padding: 4px 3px;
    color: #767070;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    line-height: 10px;
    border-radius: 50%;
    border: 1px solid #9e8e8e;
    background-color: #ccc;
}
.closes {
    position: absolute;
    top: 5px;
    right: 4px;
    z-index: 100;
    /* background-color: #FFF; */
    padding: 4px 3px;
    color: #767070;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    font-size: 22px;
    line-height: 10px;
    border-radius: 50%;
    border: 1px solid #9e8e8e;
    background-color: #ccc;
    opacity: 10;
}
.img-wraps:hover .closes {
   /* opacity: 1;*/
}
.fileinput-button {
  position: relative;
  overflow: hidden;
}

.fileinput-button input {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)";
  font-size: 200px;
  direction: ltr;
  cursor: pointer;
}

.thumb {
  height: 100px;
  width: 100px;
  border: 1px solid #bdbdbd;
}
ul.thumb-Images{

  padding:0px !important;
}
ul.thumb-Images li {
  /*width: 120px;*/
  float: left;
  display: inline-block;
  vertical-align: top;
  /*height: 162px;*/
  margin-right: 8px !important;
}

.img-wrap {
  position: relative;
  display: inline-block;
  font-size: 0;
}

/*.img-wrap .close {
  position: absolute;
  top: 2px;
  right: 2px;
  z-index: 100;
  background-color: #d0e5f5;
  padding: 4px 3px 5px;
  color: #000;
  font-weight: bolder;
  cursor: pointer;
  opacity: 0.5;
  font-size: 23px;
  line-height: 10px;
  border-radius: 50%;
}*/

/*.img-wrap:hover .close {
  opacity: 1;
  background-color: #cdb0b0;
}*/

.FileNameCaptionStyle {
  font-size: 12px;
}
.tr-focus{
    background-color: #c3c3c3 !important;

}

.new-top-menu-bg-color {
    background-color: #dfdfdf !important;
}
.new-menu-bg-color {
    background-color: #f7f7f7;
    border-color: #fff;
}

.new-main-menu > li.active>a{
    color: #fff !important;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: orange !important;
}

.new-top-main-menu>li>a {
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 1px;
    font-size: 13px;
    padding-right:14px;
}
.new-main-menu>li>a{
    color: #000 !important;
    font-weight: 600;
    font-family: inherit;
    letter-spacing: 1px;
    font-size: 13px;
    /*padding: 9px 19px 9px 0px;*/
    text-align: left;
}

.multilevel-accordion-menu .is-accordion-submenu-parent a {
  background: #4d5158;
}

.multilevel-accordion-menu .is-accordion-submenu a {
  background: #35383d;
}

.multilevel-accordion-menu .sublevel-1 {
  text-indent: 1rem;
}

.multilevel-accordion-menu .sublevel-2 {
  text-indent: 2rem;
}

.multilevel-accordion-menu .sublevel-3 {
  text-indent: 3rem;
}

.multilevel-accordion-menu .sublevel-4 {
  text-indent: 4rem;
}

.multilevel-accordion-menu .sublevel-5 {
  text-indent: 5rem;
}

.multilevel-accordion-menu .sublevel-6 {
  text-indent: 6rem;
}

.multilevel-accordion-menu a {
  color: #fefefe;
  box-shadow: inset 0 -1px #41444a;
}

.multilevel-accordion-menu a::after {
  border-color: #fefefe transparent transparent;
}

.multilevel-accordion-menu .menu > li:not(.menu-text) > a {
  padding: 1.2rem 1rem;
}

.multilevel-accordion-menu .is-accordion-submenu-parent[aria-expanded="true"] a.subitem::before {
  content: "\f016";
  font-family: FontAwesome;
  margin-right: 1rem;
}

.multilevel-accordion-menu .is-accordion-submenu-parent[aria-expanded="true"] a::before {
  content: "\f07c";
  font-family: FontAwesome;
  margin-right: 1rem;
}

.multilevel-accordion-menu .is-accordion-submenu-parent[aria-expanded="false"] a::before {
  content: "\f07b";
  font-family: FontAwesome;
  margin-right: 1rem;
}

.items-count{
    padding: 0;
    font-size: 15px;
    margin: 0;
    margin-top: -5px;color: #888889;
}
.cart-amt{
    /*font-weight: 700;
    font-size: 13px;
    margin-top: 3px;*/
    /* margin-top: 12px; */
    /* margin-left: 6px; */
    /*margin: 0;
    padding: 0;*/
}
.kit-ul{
    min-height: auto;z-index: 0;
}
.kit-ul-beta{
    max-width:250px;min-width: 200px;left: 0px !important;padding-top: 0px !important;
}
.cart-plus-filter{
    font-size: 39px !important;filter: invert(.4);
}
.cart-down-arr{
    color:#000000;margin-top:7px !important;
}
.margin-left-120m{
    margin-left: -120px;
}
.whats-goal {
    color: #afaeae;
}
.whats-popular {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #afaeae;
}
.text-upper{
    text-transform: uppercase;
}
.cart-item-css{
    max-width: 250px;min-width: 200px;margin-right: 100px;margin-left: -140px !important;height: auto;
}
.user-name{
    font-weight:600;font-size:14px;color:#000 !important;
}
.max-width-250px {
    max-width: 250px;
}
.max-width-30px {
    max-width: 350px;
}
.max-width-100p {
    max-width: 100%;
}
.min-width-200px{
    min-width: 200px;
}
.professional-ul{
    max-width:400px;min-width: 440px;margin-left: -332px !important;
}
.professional-ul-nav{
width: 100%;padding:10px ;overflow-y: hidden;border: 1px solid #b0b0b0;
}
.profe-div-border{
    border-left: 1px solid #949494;
}
.overflow-y-hidd{
overflow-y: hidden;
}

.solid-menus {
    margin-top: 0px;/*14px;*/
}

.navbar-nav>li>.dropdown-menu{
   /* margin-top: -10px;*/
}

@media (min-width:1437px){
.meal-percentage{left: 7%;}
.sticky-meal-percentage {
    left: 7%;
}
.new-top-main-menu>li>a {
    padding-right: 26px;
}
}
@media (min-width:1617px){
.new-top-main-menu>li>a {
    padding-right: 45px;
}
.meal-percentage{left: 6.1%;}
.sticky-meal-percentage {
    left: 6.1%;
}
}
@media (min-width: 992px) {
.hf-img{width: 44% !important;}
.cart-items-menu{/*width:18%;*/}
}
   .searchbox{
    /*position:relative;*/
    /*min-width:30px;*/
    width:0%;
    height:30px;
    float:right;
    overflow:hidden;
    margin: 3px 10px 0px 0px;
    -webkit-transition: width 0.3s;
    -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
    -o-transition: width 0.3s;
    transition: width 0.3s;
}

.searchbox-input{
    top:0;
    right:0;
    border:0;
    outline:0;
    background:#E46615;
    width:175px;
    height:30px;
    margin:0;
    border-radius: 27px;
    padding: 10px;
    float: right;
    /*padding:0px 55px 0px 20px;
    font-size:20px;*/
    color:#fff;
}
.new-searchbox-input-sticky{
width:75% !important;height:0px !important;
}
.searchbox-submit-sticky{padding: 3px !important;}
.new-searchbox-input{
    top:0;
    outline:0;
    width:100%;
    height:30px;
    margin:0;
    border-radius: 27px;
    padding: 10px;
    color:black;
    display:initial;
}
.searchbox-input::-webkit-input-placeholder {
    color: #000;
    font-size: 12px;
}
.searchbox-input:-moz-placeholder {
    color: #000;
    font-size: 12px;
}
.searchbox-input::-moz-placeholder {
    color: #000;
    font-size: 12px;
}
.searchbox-input:-ms-input-placeholder {
    color: #000;
    font-size: 12px;
}
.searchbox-button,
.searchbox-icon,
.searchbox-submit{
    width:30px;
    height:30px;
    display:block;
    position:absolute;
    top:0;
    font-size:15px !important;
    right:0;
    padding:6px;
    margin:0;
    border:0;
    outline:0;
    line-height:30px;
    text-align:center;
    cursor:pointer;
    color:#dcddd8;
    background:#172b3c;
    border-radius: 27px;
}
.new-searchbox-button{
    width:30px;
    height:30px;
    display:block;
    position:absolute;
    top:0;
    font-size:15px !important;
    right:0;
    padding:6px;
    margin:0;
    border:0;
    outline:0;
    line-height:30px;
    text-align:center;
    cursor:pointer;
    color:black;
    border-radius: 27px;
}
.new-searchbox-submit{
    position:absolute;
    padding:10px;
    margin:1px;
    border:0;
    outline:0;
    line-height:30px;
    text-align:center;
    cursor:pointer;
    color:#dcddd8;
    background:white;
    border-radius: 27px;
}
.searchbox-open{
    width:100%;
    margin: 3px 10px 0px 0px;
}
.checkout-page{
    cursor: pointer;
}
.navbar-default .navbar-nav>li>a:hover {
    background-color: #e7854c;
    color: #fff !important;
}

.dropdown:hover > a {
    background-color: #e7854c;
    color: #fff !important;
}
.dropdown11:hover > a {
    background-color: white !important;
    color: black !important;
}
.professional-ul-nav a:hover{
color: #e7854c !important;
}
nav.navbar.bootsnav ul.nav li.dropdown121.on > a{background-color: black !important;}

.product-image-box-back-color-pt-image {
    background: #ececec47 !important;
    box-shadow: rgb(171 186 173) 0px 4px 4px;
    border: 1px solid #e7e7e7;
    /*margin: 0px 8px;*/
    border-radius: 3px;
}
.pt-title{
    text-align: right;
}
.p-color {
    color: #8f8989;
}
.loader-pt{
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: #000; */
    z-index: 1;
    text-align: center;
    padding: 13px 50px;
    opacity: .5;
}
.theme-color {
    color: #95c11f;
}
.cookies-div{
    /*border-radius: 10px;*/
    position: fixed;
    /*right: 80px;*/
    bottom: 0;
    background-color: #ffffff;
    padding: 10px;
    z-index: 999999999999999;
    color: #000;
    /*border: 3px solid #433b3b;*/
    box-shadow: -4px 5px 34px -1px rgba(0,0,0,0.75);
    -webkit-box-shadow: -4px 5px 34px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: -4px 5px 34px -1px rgba(0,0,0,0.75);
}
.close-cookie-warning {
  position: absolute;
  right: 15px;
  top: 10px !important;
  display: block;
  background-color: #999999;
  color: #fff;
  padding: 9px 5px;
  cursor: pointer;
  font-size: 4rem;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border:none;
  text-decoration: none;
  height: 30px;
  line-height: 5px;
  border-radius: 5px;
}
.close-cookie-warning-span{
    font-size: 31px;
}
.close-cookie-warning:hover {
  background-color: #fff;
  color:rgb(47,153,205);
  border-bottom:none;
}
.icon-container {
  position: absolute;
  right: 17px;
  top: 25px;
    /*top: calc(32% - 7px);*/
}

@keyframes around {
  0% {
    transform: rotate(0deg)
  }
  100% {
    transform: rotate(360deg)
  }
}
.loader-search {
  position: relative;
  height: 20px;
  width: 20px;
  display: inline-block;
  animation: around 5.4s infinite;
}
.loader-search::after, .loader-search::before {
  content: "";
  background: white;
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-color: #333 #333 transparent transparent;
  border-style: solid;
  border-radius: 20px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  animation: around 0.7s ease-in-out infinite;
}

.loader-search::after {
  animation: around 0.7s ease-in-out 0.1s infinite;
  background: transparent;
}


.icon-container-pt {
  position: absolute;
    right: 35px;
    /*top: calc(32% - 9px);*/
}
.loader-search-pt {
  position: relative;
  height: 20px;
  width: 20px;
  display: inline-block;
  animation: around 5.4s infinite;
}
.loader-search-pt::after, .loader-search-pt::before {
  content: "";
  background: white;
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 100%;
  border-width: 2px;
  border-color: #333 #333 transparent transparent;
  border-style: solid;
  border-radius: 20px;
  box-sizing: border-box;
  top: 0;
  left: 0;
  animation: around 0.7s ease-in-out infinite;
}

.loader-search-pt::after {
  animation: around 0.7s ease-in-out 0.1s infinite;
  background: transparent;
}

.inputcontainer {
  position: relative;
}

.reset-btn{
    padding: 1px 5px;background: #D3D3D3;color: black;font-size: small;
}
/*a.reset-btn:hover{
    color: #fff !important;
}*/
.line-height-21px{
    line-height: 22px;
}
.auto-suggestion-div::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}
.auto-suggestion-div::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0,0,0,.5);
    -webkit-box-shadow: 0 0 1px rgba(255,255,255,.5);
}
.pf-div{background-color: #2A65B0 !important;}
.div-text{font-family: unset;color: unset;list-style-type: none;margin: 0;padding: 0;list-style-position: outside;}
.padding-0{padding:0px !important;}
.margin-right-10{margin-right: 10px;}
.product-image-box{
width: 23.5% !important;
position: relative;
min-height: 1px;
float: left;
margin-bottom: 0px;
height: auto;
}
.product-image-box-back-color{
background: #ececec47 !important;
box-shadow: rgba(149, 157, 165, 1) 0px 8px 24px;
}
.pt-box-height{height: 335px;}
.dt-box-height{height: 460px;}
.pt-info{position: absolute;top: 2%;right: 19px;}
.pt-box-width{width: 30% !important;}
.margin-space-47px-m{}
.margin-space-20px-m{}
.cursor-pointer{cursor: pointer !important;}
.margin-space-47px{margin-top: 47px !important;}
.checkout-margins{margin-left:95px !important;margin-right:95px !important;}
.margin-bottom-20px-m{margin-bottom: -20px !important;}
.day-challenge-title{font-weight: 600;font-size: 35px;letter-spacing: 4px;}
.color-black2{color:#000000 !important;}
.a-undeline{text-decoration: underline;color:#555 !important;}
.a-undeline-white{text-decoration: underline;color:#ffffff;}
.margin-top-10{margin-top: 10px !important;}
.div-margin{margin: 10px 0px 10px 0px;}
.font-size-17{font-size:17px !important;}
.margin-space-20px{margin-top: 20px !important;}
.dt_pt_specialities {
  text-wrap: wrap;
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-size: 14px;
  font-weight: 400;}
.margin-0{margin: 0px !important;}
.margin-0-0{margin: 0px 0px!important;}
.padding-5{padding:5px !important;}
.font-weight-100{font-weight:100 !important;}
.font-size-25{font-size:25px !important;}
.letter-spacing-2 {letter-spacing: 2px;}
.footer-css{background-color: #d3d3d394;margin-right: 0px !important;margin-left: 0px !important;}
.footer-div-margin{margin: 10px 15px 10px 15px;}
.text-color{color:#000000;}
.more-img{width: 19px;height: 20px;}

@media (min-width:320px) and (max-width:568px){
.product-image-box{
width: 100% !important;
position: relative;
min-height: 1px;
float: none;
margin-bottom: 0px;
}
.day-challenge-title{font-size: 25px;}
.margin-space-47px-m{margin-top: 47px !important;}
.margin-space-47px{margin-top: 25px !important;}
.checkout-margins{margin-left:10px !important;margin-right:10px !important;}
}
