@font-face {
  font-family: "CooperBlack";
  src: local("CooperBlack"), url("../fonts/CooperBlack.woff") format("woff");
}
:root {
  --primary-color: #3D7D53;
  --secondary-color: #2edd68;
  --third-color: #0b2f18;
  --fourth-color: #356847;
  --primary-color-light: #7cd09a;
  --primary-color-dark: #202c24;
  --secondary-color-light: #feebc5;
  --secondary-color-dark: #55ab72;
  --contrast-color: #FFA9A9;
  --text-color: #212121;
  --light-color: #F1F1F1;
}

* {
  transition: 0.2s;
}

html {
  font-size: 20px;
  scroll-padding-top: 92px;
}

body {
  font-family: "Nunito", sans-serif;
  color: var(--text-color);
  animation: fadeInPage 500ms forwards;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Caprasimo", sans-serif;
  color: var(--third-color);
}

img {
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: auto;
}

figure {
  margin-bottom: 0;
}

footer {
  background-color: var(--third-color);
}
footer .footer-content {
  font-size: 0.65em;
}
footer a:hover {
  opacity: 0.75;
}

.fw-bold, b {
  font-weight: 800 !important;
}

.caret li {
  position: relative;
  padding-left: 6px;
  list-style: none;
}
.caret li::before {
  content: "\f231";
  font-family: "bootstrap-icons";
  position: absolute;
  top: -0.6em;
  left: -1em;
  color: var(--secondary-color);
  font-size: 1.6em;
  transform: translateY(10px) !important;
}

/* Product */
.item {
  text-decoration: none;
  text-align: center;
  padding: 3px;
  color: var(--text-color);
  background-color: white;
  border-radius: 1em;
  overflow: hidden;
  border: 2px dotted var(--secondary-color);
}
.item:hover {
  scale: 1.025;
}
.item .item-header {
  text-shadow: none;
}
.item .supply {
  line-height: 1;
}
.item .savings {
  font-size: 0.7em;
}
.item .savings > div {
  align-items: center;
  justify-content: center;
  border-bottom: 1px dashed rgba(0, 0, 0, 0.4196078431);
}
.item .savings > div:first-child {
  border-top: 1px dashed rgba(0, 0, 0, 0.4196078431);
}
.item .savings i {
  font-size: 1.25em;
}
.item .price {
  max-width: -moz-fit-content;
  max-width: fit-content;
  line-height: 1;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}
.item .totals {
  font-size: 0.9em;
}
.item .totals s {
  text-decoration-color: red;
  text-decoration-thickness: 2px;
}
.item .totals span {
  color: var(--contrast-color);
}
.item .desktop {
  background-color: #fbfbfb;
  border-radius: 1em;
  padding-bottom: 1px;
}
.item .desktop .item-header {
  background-color: var(--secondary-color);
  border-radius: 18px 18px 8px 8px;
}
.item .mobile {
  background-color: #fbfbfb;
  border-radius: 1em;
  padding-bottom: 1px;
}
.item .mobile .item-header {
  font-size: 0.9em;
}
.item .mobile .supply span {
  font-size: 0.8em;
}
.item .mobile .price .value {
  font-size: 2.8em;
  letter-spacing: -0.06em;
}
.item .mobile .totals {
  font-size: 0.8em;
}
.item .button-bg span {
  font-size: 0.65em;
}
.item.promo {
  color: white;
  background-color: white;
  text-shadow: 0px 2px rgba(121, 0, 0, 0.6392156863);
  border: 2px dotted var(--primary-color);
}
.item.promo .item-header {
  background-color: white;
  color: var(--primary-color);
}
.item.promo .savings > div {
  color: white;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4196078431);
}
.item.promo .savings > div:first-child {
  border-top: 1px dashed rgba(255, 255, 255, 0.4196078431);
}
.item.promo .totals span {
  color: var(--secondary-color-light);
}
.item.promo .desktop {
  background: radial-gradient(var(--secondary-color-dark), var(--primary-color));
}
.item.promo .mobile {
  background: radial-gradient(var(--secondary-color-dark), var(--primary-color));
}
.item.promo .mobile .item-header {
  font-size: 0.9em;
}

/**/
#nav-header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}
#nav-header .logo {
  max-height: 54px;
  filter: saturate(0) brightness(20);
}
@media (max-width: 499px) {
  #nav-header .logo {
    max-height: 40px;
  }
}
#nav-header.sticky-nav {
  background-color: white;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}
#nav-header.sticky-nav .logo {
  filter: none;
}
#nav-header.sticky-nav .nav-link {
  color: var(--text-color) !important;
}
@media (max-width: 991px) {
  #nav-header {
    background-color: white;
  }
  #nav-header .logo {
    filter: none;
  }
  #nav-header .nav-link {
    color: var(--text-color) !important;
  }
}

.button-bg {
  background-image: linear-gradient(to top, #dadada 50%, #e0e0e0 51%);
  color: var(--text-color) !important;
  border: none !important;
  font-family: "Caprasimo", sans-serif;
  font-size: 1.25em;
  border-radius: 0.5em !important;
  line-height: 1;
  padding: 0.5em 1.5em;
  text-decoration: none;
  text-shadow: none !important;
  box-shadow: 0 -4px rgba(0, 0, 0, 0.05) inset;
}
.button-bg:hover {
  background-image: linear-gradient(to bottom, #dadada 50%, #e0e0e0 51%);
  box-shadow: 0 4px rgba(0, 0, 0, 0.05) inset;
}
.button-bg.alt {
  background-image: linear-gradient(to top, var(--primary-color) 50%, var(--primary-color-light) 51%);
  color: white !important;
  border: 2px solid var(--primary-color) !important;
}
.button-bg.alt:hover {
  background-image: linear-gradient(to bottom, var(--primary-color) 50%, var(--primary-color-light) 51%);
}
.button-bg.promo {
  color: var(--text-color) !important;
  background-image: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
}
.button-bg.promo:hover {
  background-image: linear-gradient(to bottom, #fccd15 50%, #ffd814 51%);
}

@media (max-width: 475px) {
  .accordion-button {
    font-size: 1rem !important;
  }
}
.accordion-button::after {
  background-color: var(--primary-color-light);
  color: white !important;
  padding: 1em;
  background-position: center;
  border-radius: 50%;
}
.accordion-button:not(.collapsed) {
  background-color: white;
  color: var(--text-color);
}
.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem var(--secondary-color);
}

.bi-check-circle {
  color: var(--secondary-color);
}

.zoom-icon {
  position: absolute;
  left: calc(50% - 37px);
  top: 55px;
  font-size: 25px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 11px;
  padding: 15px 25px;
  color: white;
  font-weight: 700;
  cursor: pointer;
}
.zoom-icon:hover {
  background: var(--primary-color);
}

.products {
  position: relative;
}

#benefits .box {
  text-align: center;
  border-radius: 1em;
  border: 6px dotted var(--primary-color-light);
}
#benefits .box figure {
  display: block;
  background-color: var(--primary-color);
  max-width: 120px;
  padding: 1.25em;
  margin: -4em auto 1em;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.3) inset, 0 2px 10px rgba(0, 0, 0, 0.1);
}
#benefits .box figure img {
  filter: brightness(20);
}
#benefits .box h4 {
  font-size: 1.15em;
}
#benefits .box.alt {
  border-color: var(--secondary-color);
}
#benefits .box.alt figure {
  background-color: var(--secondary-color);
}

#ingredients .box {
  text-align: center;
}
#ingredients .box img {
  overflow: hidden;
}
#ingredients .box .content {
  position: relative;
  background-color: white;
  margin: -5em 1em 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  border: 6px dotted var(--primary-color);
}
#ingredients .box h4 {
  font-size: 1.15em;
  color: var(--primary-color);
}

#guarantee .badges img {
  max-width: 100px;
}
@media (max-width: 599px) {
  #guarantee .badges img {
    max-width: 70px;
  }
}

#faq {
  background-color: var(--primary-color);
  color: white;
}
#faq .accordion {
  position: relative;
  z-index: 2;
}
#faq .accordion-item {
  border-radius: 2em;
  margin-bottom: 0.25em;
  border: 0;
}
#faq .accordion-button {
  font-family: "Nunito", sans-serif;
  font-weight: bold;
  border-radius: 4em;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}
#faq .accordion-body {
  padding-bottom: 1.5em;
}

#references * {
  font-weight: 700;
  word-break: break-all;
}
@media (max-width: 599px) {
  #references ol {
    font-size: 0.7em;
    padding-left: 2em;
    margin-top: -1em;
  }
}
#references span {
  color: #8f8f8f;
}

.fw-bolder {
  font-weight: 900;
}

.triangle {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--secondary-color);
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.1);
  margin: -50px auto -30px;
  font-size: 100px;
  line-height: 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .triangle {
    margin: -30px auto;
  }
}

@media (max-width: 475px) {
  .accordion-button {
    font-size: 1rem !important;
  }
}
.waves {
  background-image: url("../../../assets/main/img/waves.svg");
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 160px;
  transform: rotateY(180deg);
  margin-top: -7em;
}
.waves.lines {
  background-image: url("../../../assets/main/img/waves-lines.svg");
  margin-bottom: -1.5em;
  margin-top: -2em;
}
.waves.secondary {
  background-image: url("../../../assets/main/img/waves-2.svg");
  margin-bottom: -1.5em;
  margin-top: -2em;
}
.waves.third {
  background-image: url("../../../assets/main/img/waves-3.svg");
  height: 160px;
  margin-top: -2em;
  margin-bottom: -1.5em;
}
@media (min-width: 1921px) {
  .waves {
    margin-top: -10vw;
    height: 10vw;
  }
  .waves.lines {
    height: 8vw;
    margin-top: -2vw;
  }
  .waves.secondary {
    height: 10vw;
    margin-top: -2vw;
  }
  .waves.third {
    height: 10vw;
    margin-top: -2vw;
  }
}

/* Purchases Notifications */
.purchases-disclaimer {
  position: fixed;
  right: -800px;
  bottom: 20px;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color-dark);
  color: white;
  border-radius: 8px;
  font-size: 1em;
  font-style: italic;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1);
  border: 3px solid white;
  transition: 0.6s;
  z-index: 999;
}
@media (max-width: 767px) {
  .purchases-disclaimer {
    font-size: 0.85rem;
    padding: 0.25rem 0.5rem;
    max-width: 220px;
  }
}

.purchases-box {
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  align-items: center;
}
.purchases-box img {
  max-width: 70px;
}
@media (max-width: 767px) {
  .purchases-box img {
    max-width: 40px;
  }
}

.purchased-bottle {
  background: white;
  border-radius: 50%;
}

/* Pages */
#downsell h2, #downsell h3, #downsell h4, #downsell h5, #downsell h6, #downsell-dtc h2, #downsell-dtc h3, #downsell-dtc h4, #downsell-dtc h5, #downsell-dtc h6, #downsell-email h2, #downsell-email h3, #downsell-email h4, #downsell-email h5, #downsell-email h6 {
  font-family: "Nunito";
}

@media (max-width: 599px) {
  #upsell3 #guarantee h2 {
    font-size: 2.6em !important;
  }
}

.modal.downsell {
  background-color: var(--secondary-color);
  z-index: 9999;
}
.modal.downsell figure {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.modal.downsell figure .guarantee-badge {
  position: absolute;
  max-width: 100px;
  top: 1em;
  right: 2vw;
}
@media (max-width: 599px) {
  .modal.downsell figure .guarantee-badge {
    max-width: 20vw;
    right: 0;
    top: 0;
  }
}
.modal.downsell .per-bottle {
  color: var(--primary-color);
  font-size: 2em;
}
.modal.downsell .savings {
  color: rgb(14, 194, 110);
  font-size: 1.6em;
}
.modal.downsell .modal-dialog {
  max-width: 100%;
}
.modal.downsell .no-thanks {
  font-size: 1em;
}
.modal.downsell#secondDownsell, .modal.downsell#secondDownsellK3 {
  background-color: var(--fourth-color);
}
@media (max-width: 599px) {
  .modal.downsell .button-bg {
    font-size: 1em !important;
  }
  .modal.downsell h2 {
    font-size: 1.4em !important;
  }
  .modal.downsell .per-bottle {
    margin-top: 1em;
    font-size: 1.4em;
  }
  .modal.downsell .savings {
    font-size: 1.2em;
  }
}

.savings {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.savings .badge {
  position: absolute;
  align-content: center;
  height: 110px;
  width: 110px;
  font-size: 0.8em;
  border-radius: 50%;
  top: 1em;
  right: 2em;
  background-color: var(--primary-color);
}
.savings .badge span {
  display: block;
  font-size: 2.25em;
  font-weight: 900;
  letter-spacing: -2px;
}

@media (max-width: 768px) {
  #videoContainer h1 {
    font-size: 6vw !important;
  }
  #videoContainer h2 {
    font-size: 4.2vw !important;
  }
  #videoContainer h3 {
    font-size: 4vw !important;
  }
}

.cartpanda.banner-hidden .cpd-default {
  display: none !important;
}

.cartpanda#vsl .cpd-default {
	display: none !important;
}

.cartpanda .cpd-default{
	display: none !important;
}

@keyframes fadeInPage {
	0% {
		opacity: 0;
	} 100% {
		opacity: 1;
	}
}