:root {
  --primary-color: #4f57a9;
  --secondary-color: #60A7DC;
  --third-color: #1E1D3F;
  --fourth-color: #60A7DC;
  --primary-color-light: #2f2d62;
  --primary-color-dark: black;
  --secondary-color-light: #8abee5;
  --secondary-color-dark: #2775af;
  --contrast-color: #fff490;
  --text-color: #000000;
  --light-color: #F1F1F1;
}

* {
  transition: 0.2s;
}

html {
  font-size: 20px;
}
.word-break {
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

body {
  font-family: 'sans-serif', serif;
  color: var(--text-color);
}
.header-simple {
  background-color: #2c3e50;
  color: white;
  padding: 0.8rem 0;
}
.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #e9ecef;
}
.social-share .social-icon {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: white;
  margin-left: 0.5rem;
  text-decoration: none;
  transition: all 0.3s;
}
.social-icon:hover {
  opacity: 0.9;
  transform: scale(1.1);
}
.facebook { background-color: #3b5998; }
.twitter { background-color: #1da1f2; }
.instagram { background-color: #e4405f; }
.tiktok { background-color: #000000; }
.whatsapp { background-color: #25D366; }

figure {
  margin-bottom: 0;
}



.item {
  transition: 0.2s;
}
.item:hover {
  scale: 1.025;
}




@media (max-width: 991px) {
  header {
    background-color: var(--text-color);
  }
}

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

#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;
}


/* Frameborder */
.frameborder::before {
  content: "";
  position: absolute;
  bottom: 0;
  background-color: var(--primary-color);
  width: 100%;
  background-image: url('../images/wireframe-border.svg');
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  height: 160px;
}
/* Frameborder */

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

.triangle {
  position: relative;
  width: 0;
  height: 0;
  border-left: 60px solid transparent;
  border-right: 60px solid transparent;
  border-top: 20px solid var(--primary-color-light);
  margin: 0 auto;
}
.triangle.top {
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-top: 10px solid var(--primary-color-dark);
  z-index: 1;
}

@media (max-width: 475px) {
  .accordion-button {
    font-size: 1rem !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 {
  background-color: var(--contrast-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;
  }
}
.modal .savings {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.modal .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);
}
.modal .savings .badge span {
  display: block;
  font-size: 2.25em;
  font-weight: 900;
  letter-spacing: -2px;
}

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

.video-wrapper {
  border: 0.25em solid white !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4) !important;
}

.pulse-animation {
  animation: pulse 2.5s infinite ease-in-out;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(.9); }
  100% { transform: scale(1); }
}

@media (min-width: 576px) and (max-width: 991px) {
  .container, .container-sm {
    max-width: 100%;
  }
}

/* ========================
	CTA - PRODUCTS
======================== */
.products {
  position: relative;
}
@media (max-width: 1399px) {
  .products > .container {
    max-width: 100%;
  }
}
.products .productsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2em;
  align-items: center;
  justify-content: center;
}
@media (max-width: 1399px) {
  .products .productsGrid {
    gap: 1em;
  }
}
@media (max-width: 767px) {
  .products .productsGrid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 768px) {
  .products .productsGrid [data-offer=promo] {
    order: 2;
  }
  .products .productsGrid [data-offer=mid] {
    order: 3;
  }
  .products .productsGrid [data-offer=basic] {
    order: 1;
  }
}
.products .title {
  text-align: center;
  margin-bottom: 0.75em;
  font-size: 2.25em;
}
@media (max-width: 599px) {
  .products .title {
    font-size: 1.25em;
  }
}
.products a {
  text-decoration: none;
  color: var(--text-color);
}
.products .item {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: var(--text-color);
  background-color: white;
  border-radius: 1em;
  overflow: hidden;
  border: 2px solid var(--secondary-color);
  box-shadow: var(--bs-box-shadow-sm);
}
.products .item:hover {
  scale: 1.025;
}
.products .item .wrapper {
  border-radius: 18px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .products .item .wrapper {
    display: grid;
    grid-template-areas: "header header" "title info" "img info" "img totals" "footer footer";
    grid-template-columns: 1fr 1fr;
    align-items: center;
    -moz-column-gap: 0.5em;
         column-gap: 0.5em;
    padding: 0.5em 0;
  }
}
.products .item .item-header {
  grid-area: title;
  padding: 0.25em 0.5em;
  background-color: var(--secondary-color);
  font-weight: 500;
  color: white;
}
@media (max-width: 767px) {
  .products .item .item-header {
    background-color: transparent;
    font-size: 0.9em;
    padding: 0;
  }
}
.products .item .item-img {
  grid-area: img;
}
.products .item .item-img .supply {
  padding: 1em 0.5em;
  text-align: center;
  line-height: 1;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .products .item .item-img .supply {
    font-size: 0.8em;
    padding: 0;
  }
}
.products .item .item-img .supply b {
  display: block;
  font-size: 1.75em;
}
@media (max-width: 767px) {
  .products .item .item-img .supply b {
    font-size: 1.25em;
  }
}
.products .item .item-img img {
  max-height: 200px;
}
.products .item .item-info {
  grid-area: info;
}
.products .item .item-info .price {
  display: flex;
  text-align: start;
  gap: 0.25em;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  line-height: 1;
}
.products .item .item-info .price b {
  font-size: 4em;
  text-align: center;
}
@media (max-width: 767px) {
  .products .item .item-info .price b {
    font-size: 2.8em;
    letter-spacing: -0.06em;
  }
}
.products .item .item-info .price sup {
  font-size: 0.45em;
  top: -0.5em;
}
.products .item .item-info .price span {
  font-weight: 800;
}
@media (max-width: 767px) {
  .products .item .item-info .price span {
    font-size: 0.65em;
  }
}
.products .item .item-info .savings {
  font-size: 0.7em;
  font-weight: 800;
  padding: 1em .5em 0;
}
@media (max-width: 767px) {
  .products .item .item-info .savings {
    font-size: 0.65em;
  }
}
.products .item .item-info .savings > div {
  padding: 1em;
  align-items: center;
  justify-content: center;
  background-color: var(--light-color);
  margin-bottom: .5em;
  border-radius: .5em;
}
.products .item .item-info .savings > div:first-child {
  color: var(--primary-color);
}
.products .item .item-info .savings > div:nth-child(2) {
  display: none;
}
@media (max-width: 767px) {
  .products .item .item-info .savings > div {
    padding: 0.5em 0;
  }
}
.products .item .item-info .savings span {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
  line-height: 1;
}
@media (max-width: 767px) {
  .products .item .item-info .savings span {
    letter-spacing: -0.4px;
  }
}
.products .item .item-info .savings span::before {
  content: "\f26a";
  font-family: "bootstrap-icons";
  font-size: 1em;
  font-weight: normal;
}
@media (max-width: 767px) {
  .products .item .item-info .savings span::before {
    font-size: 1em;
  }
}
.products .item .item-buy {
  grid-area: footer;
  padding: 0 .5em;
}
.products .item .item-buy .button {
  background-image: linear-gradient(to top, #dadada 50%, #e0e0e0 51%);
  color: var(--text-color) !important;
  border: 2px solid #bfbfbf !important;
  font-family: 'sans-serif', serif;
  font-weight: 900;
  font-size: 1.25em;
  border-radius: 4em !important;
  line-height: 1;
  padding: 0.5em 1.5em;
  text-decoration: none;
  margin: .5em auto;
}
@media (max-width: 767px) {
  .products .item .item-buy .button {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 1.15em;
  }
}
.products .item .item-buy .button span {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.25em;
}
/* .products .item .item-buy .button span::before {
  content: "\f23e";
  font-family: "bootstrap-icons";
  font-weight: normal;
  margin-top: -0.1em;
} */
.products .item .item-buy .card-flags {
  max-width: 220px;
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  .products .item .item-buy .card-flags {
    display: none;
  }
}
.products .item .item-totals {
  grid-area: totals;
  font-size: 0.9em;
  padding-bottom: 1em;
}
@media (max-width: 767px) {
  .products .item .item-totals {
    font-size: 0.8em;
  }
}
.products .item .item-totals .totals s {
  text-decoration-color: red;
  text-decoration-thickness: 2px;
}
.products .item .item-totals .totals span {
  color: var(--contrast-color);
}
.products .item .item-totals .shipping {
  font-weight: 800;
  text-transform: uppercase;
}
.products .item .item-totals .shipping span {
  color: #dc3545;
}
.products .item.promo {
  color: white;
  padding: 3px;
  background-color: var(--primary-color);
  box-shadow: 0 0 0 2px #bdfff8, 0 0 10px 2px dodgerblue inset, 0 0 0 4px rgb(75 215 255), 0 0 20px 2px dodgerblue;
}
.products .item.promo .wrapper {
  background-color: var(--primary-color);
}
@media (max-width: 767px) {
  .products .item.promo .wrapper {
    grid-template-areas: "header header" "img info" "img totals" "footer footer";
  }
}
.products .item.promo .item-header {
  grid-area: header;
  background-color: #323150;
  color: white;
  text-shadow: none;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  .products .item.promo .wrapper {
    position: relative;
    /* background: linear-gradient(45deg, black, var(--primary-color)); */
    background-color: var(--primary-color);
    padding-bottom: 1.2em;
  }
  .products .item.promo .wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    margin: 0;
    background: #323150;
    height: 14px;
    width: 100%;
    transform: rotate(180deg);
  }
  .products .item.promo .item-header {
    position: relative;
    margin: -0.55em 0 0.5em;
    padding: 0.25em 0.25em 0;
  }
  .products .item.promo .item-header::after {
    content: "";
    position: absolute;
    bottom: -13px;
    left: 0;
    clip-path: polygon(100% 0, 0 0, 50% 100%);
    margin: -1px auto 0;
    background: #323150;
    height: 14px;
    width: 100%;
  }
}
.products .item.promo .item-img img {
  max-height: 200px;
}
.products .item.promo .item-info .savings > div {
  color: var(--text-color);
  background: linear-gradient(45deg, #13e4dd, #a8ffdb);
  text-shadow: none;
}
.products .item.promo .item-info .savings > div:first-child {
  color: var(--text-color);
}
.products .item.promo .item-info .savings > div:nth-child(2) {
  display: block;
}
.products .item.promo .item-buy .button {
  color: var(--text-color);
  background-image: linear-gradient(to top, #0fd37a 50%, #12dc80 51%);
  border: 2px solid #52ffb1 !important;
  text-shadow: none;
}
.products .item.promo .item-buy .button:hover {
  background-image: linear-gradient(to bottom, #0fd37a 50%, #12dc80 51%);
}
.products .item.promo .item-totals .shipping span {
  color: var(--contrast-color);
}

.no-thanks {
  display: block;
  text-align: center;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 16px;
  max-width: 600px;
  text-decoration: none;
}

/*Neon Effect*/
.neon {
  box-shadow: 0 0 0 2px #bdfff8, 0 0 10px 2px dodgerblue inset, 0 0 0 4px rgb(75 215 255), 0 0 20px 2px dodgerblue;
}


/* Icon Stack for Comments */
.icon-stack {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-flex;
  vertical-align: middle;
}

.icon-stack .heart-icon,
.icon-stack .like-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 10px;
  color: white;
}
.icon-stack .like-icon {
  background-color: #0583FD;
  z-index: 2;

}
.icon-stack .heart-icon {
  background-color: #FC496B;
  z-index: 1;
  transform: translateX(72%);
}

.comment-bubble {
  width: fit-content;
  /* max-width: 830px; */
  min-width: 250px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.custom-img-container img {
    width: 49%; 
    margin-right: 2%;
}

.load-more-container {
  text-align: center;
  padding: 16px 0;
}

.load-more-btn {
  background-color: #f0f2f5;
  border: none;
  border-radius: 4px;
  color: #65676b;
  padding: 8px 16px;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}