


*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #f8f0db;
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  background: #fff;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  cursor: default;
}

a {
  color: inherit;
  text-decoration: inherit;
}

h1 {
  font-size: 2em;
  font-weight: inherit;
}


.esconder {
  display: none !important;
}


.page {
  word-wrap: break-word;
  overflow: hidden;
}

.section {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: rgba(0, 0, 0, 0);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section-outer {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 920px;
  margin: 0 auto;
  font-weight: 600;
}


.section-header > .section-outer {
  padding: 0 24px;
}

.section-header > .section-outer > .section-inner {
  gap: 16px;
}


.section-video > .section-outer {
  padding: 0 24px 40px;
}

.section-video > .section-outer > .section-inner {
  gap: 14px;
}


.col {
  position: relative;
  max-width: 100%;
  min-width: 0;
}

.col-full {
  width: 100%;
}


.el {
  position: relative;
  max-width: 100%;
}

@media screen and (max-width: 480px) {
  .section-header > .section-outer {
    padding: 0 18px;
  }

  .section-header > .section-outer > .section-inner {
    gap: 12px;
  }

  .section-video > .section-outer {
    padding: 8px 18px 28px;
  }

  .section-video > .section-outer > .section-inner {
    gap: 10px;
  }

  .section-inner {
    flex-wrap: wrap;
  }
}


.vsl-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.vsl-wrapper {
  width: 100% !important;
  max-width: 100% !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

.vsl-header-container {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: #fff;
  border-bottom: 1px solid #e2e2e2;
  font-family: Montserrat, sans-serif;
}

.vsl-header-top {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vsl-header-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.vsl-header-logo {
  height: 65px;
  width: auto;
  display: block;
  object-fit: contain;
}

.vsl-desktop-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.vsl-desktop-nav a {
  text-decoration: none;
  color: #111;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .3px;
  white-space: nowrap;
}

.vsl-header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #111;
}

.vsl-header-icons svg {
  width: 26px;
  height: 26px;
  cursor: pointer;
  fill: currentColor;
}

.vsl-mobile-subnav {
  display: none;
  border-top: 1px solid #eee;
  padding: 10px 14px;
  background: #fff;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

.vsl-mobile-subnav::-webkit-scrollbar {
  display: none;
}

.vsl-mobile-subnav-list {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
}

.vsl-mobile-subnav-list span.divider {
  color: #d1d1d1;
  font-weight: 300;
}

@media (max-width: 850px) {
  .vsl-desktop-nav {
    display: none;
  }

  .vsl-search-icon {
    display: none;
  }

  .vsl-mobile-subnav {
    display: block;
  }

  .vsl-header-logo {
    height: 48px;
  }

  .vsl-header-top {
    padding: 10px 14px;
  }
}


.headline {
  color: rgba(15, 23, 42, 1);
}

.headline h1 {
  font-size: 33px;
  font-weight: 700;
  font-family: Arial, sans-serif;
}

.headline h1:hover {
  -webkit-text-fill-color: unset;
}

@media screen and (max-width: 1024px) {
  .headline h1 {
    font-size: 24px;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .headline h1 {
    font-size: 17px;
  }
}


.video {
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.video iframe {
  height: 100%;
  width: 100%;
}


@keyframes cta-pulse-shadow {
  0% {
    box-shadow: #00bf63 0 0 0 0;
  }

  80% {
    box-shadow: rgba(0, 255, 23, 0) 0 0 0 12px;
  }
}

.cta {
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 100%;
}

.cta-button {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: center;
  align-self: center;
  width: 100%;
  padding: 12px;
  border: unset;
  border-radius: 6px;
  background: #00bf63;
  color: #000;
  font-family: Inter, sans-serif;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  word-break: break-word;
  box-shadow: 0 12px 24px -8px #61ce70;
  transition: background-color .3s ease-in-out, color .3s ease-in-out;
  animation: 2s ease-out 0s infinite normal none running cta-pulse-shadow;
}

.cta-button:hover {
  animation: 2s ease-out 0s infinite normal none running cta-pulse-shadow;
}

@media screen and (max-width: 480px) {
  .cta-button {
    font-size: 21px;
  }
}


.bottles {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  text-align: center;
  margin-right: 0;
  margin-left: 14px;
}

.bottles img {
  display: inline-block;
  width: 30%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

@media screen and (max-width: 480px) {
  .bottles img {
    width: 65%;
  }
}


.comments-box {
  position: relative;
  max-width: 100%;
  border-radius: 12px;
  padding: 8px;
}

.fb {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  border-radius: 12px;
  padding: 8px;
}

.fb-thread {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fb-parent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.fb-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-width: 2px;
  overflow: hidden;
}

.fb-thumb-child {
  width: 36px;
  height: 36px;
}

.fb-thumb-img {
  width: 100%;
  height: 100%;
}

.fb-info {
  width: 100%;
}

.fb-text {
  width: 100%;
  font-family: Helvetica, Arial, sans-serif;
}

.fb-user {
  color: #385898;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.358;
  text-transform: capitalize;
  word-break: break-word;
}

.fb-comm {
  color: #1c1e21;
  line-height: 19.12px;
  margin-top: 4px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 400;
  word-break: break-word;
}

.fb-misc {
  display: flex;
  justify-content: space-between;
}

.fb-misc-left {
  display: flex;
  line-height: 16px;
  gap: 4px;
}

.fb-misc-txt,
.fb-time {
  font-weight: 400;
  font-size: 12px;
  font-family: Helvetica, Arial, sans-serif;
  cursor: pointer;
  color: #4267b2;
}

.fb-time {
  color: #90949c;
}

.fb-misc-txt:hover {
  text-decoration-line: underline;
}

.fb-dot {
  font-weight: 400;
  font-size: 12px;
}

.fb-likes {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #1c1e21;
}

.fb-likes .fb-like-img {
  width: 14px;
  height: 14px;
  display: block;
  margin-top: -2px;
}

.fb-likes span {
  font-size: 12px;
  font-weight: 400;
}

.fb-children {
  margin-left: 48px;
  border-left: 1px dotted #d3d6db;
  padding-left: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media screen and (max-width: 480px) {
  .fb-misc {
    flex-direction: column;
  }

  .fb-text {
    width: 90%;
  }
}
