body {
  color: #000;
  background-color: #fff;
}

/* ================================================
   conditions-box — CTA with condition list
   ================================================ */

.conditions-box {
  background-color: #f0f2f1;
  margin-bottom: 36px;
}

.conditions-box__inner {
  padding: 20px 16px 30px;
  display: flex;
  flex-direction: column;
}

.conditions-box__title {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 28px;
  color: #1f1f1f;
  text-align: center;
  margin: 0 0 20px 0;
}

.conditions-box__list {
  list-style: none;
  padding: 0;
  margin: 0 0 23px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.conditions-box__list li {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  line-height: 32px;
  color: #000;
  padding-left: 28px;
  position: relative;
  margin-top: 0px;
  margin-bottom: 0px;
}

.conditions-box__list li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 12px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #338c0c;
}

.conditions-box__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  background-color: #ffd431;
  border: 1px solid #d7a90f;
  border-radius: 8px;
  box-shadow: 0 4px 0 #02021b;
  color: #02021b;
  font-family: 'Source Sans Pro', 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  text-decoration: none;
  padding: 0 16px;
  max-width: 536px;
  margin-left: auto;
  margin-right: auto;
}

.conditions-box__cta:hover {
  color: #02021b;
  background-color: #d7a90f;
}

@media screen and (min-width: 768px) {
  .conditions-box__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: flex-start;
    gap: 0 20px;
  }
}

@media screen and (min-width: 992px) {
  .conditions-box__inner {
    padding: 16px 32px 32px 32px;
  }

  .conditions-box__title {
    font-size: 24px;
    line-height: 40px;
    font-weight: 900;
  }

  .conditions-box__cta {
    font-size: 28px;
    line-height: 40px;
  }
}

@media screen and (min-width: 1200px) {
  .conditions-box__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 25px;
    align-items: flex-start;
    margin: 0 0 32px 0;
  }

  .conditions-box__list li {
    margin-top: 0.25rem;
    margin-bottom: 0.25rem;
  }
}

/* ================================================
   sticky discount badge image
   ================================================ */

.sticky-discount-badge-wrap {
  position: absolute;
  top: 16px;
  right: 19px;
  display: inline-block;
  /* width: 65.8px; */
  width: 80px;
}

.sticky-discount-badge-img {
  display: block;
}

.sticky-discount-badge-text {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  pointer-events: none;
  -webkit-text-stroke: 1px #ba2626;
  paint-order: stroke fill;
}

.sticky-discount-upto {
  font-family: 'Source Sans Pro', 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 12px;
  text-align: center;
  color: #fff;
  text-transform: uppercase;
}

.sticky-discount-pct {
  font-family: 'Source Sans Pro', 'Source Sans 3', sans-serif;
  font-weight: 900;
  font-size: 21px;
  line-height: 14px;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
}

.sticky-discount-off {
  font-family: 'Source Sans Pro', 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 14px;
  letter-spacing: 0%;
  text-align: center;
  color: #fff;
}

/* ================================================
   section-block — reusable image+text+quote block
   ================================================ */

.section-block {
  margin-bottom: 36px;
}

.section-block--grey {
  background-color: #f0f2f1;
}

.section-block__inner {
  display: flex;
  flex-direction: column;
  padding: 15px 16px 25px 16px;
  gap: 20px;
}

.section-block__title {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 900;
  font-size: 26px;
  line-height: 32px;
  color: #1f1f1f;
  margin: 0;
  order: 1;
}

.section-block__img-wrap {
  order: 2;
}

.section-block__img {
  display: block;
  width: 100%;
  height: auto;
}

.section-block__video-wrap {
  position: relative;
  line-height: 0;
}

.section-block__video {
  display: block;
  width: 100%;
  height: auto;
}

.section-block__mute-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.section-block__mute-btn:hover {
  background: rgba(0, 0, 0, 0.72);
}

.section-block__mute-btn svg {
  display: block;
  fill: #fff;
}

.section-block__body {
  order: 3;
}

.section-block__body p {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #000;
  margin-bottom: 16px;
}

.section-block__body p:last-child {
  margin-bottom: 0;
}

.section-block__quote {
  order: 4;
  margin: 0;
  padding: 0 0 0 14px;
  border-left: 2px solid #5b5b5b;
  margin-top: 16px;
}

.section-block__quote p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 18px;
  line-height: 26px;
  color: #5b5b5b;
  margin-bottom: 8px;
}

.section-block__quote p:last-child {
  margin-bottom: 0;
  margin-top: 24px;
}

@media screen and (min-width: 992px) {
  .section-block__inner {
    display: grid;
    grid-template-columns: 2fr 3fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas:
      'img   title'
      'img   body'
      'quote body';
    padding: 15px 22px 15px 14px;
    gap: 0 18px;
  }

  .section-block__title {
    grid-area: title;
    order: unset;
    font-size: 32px;
    line-height: 40px;
    align-self: start;
    padding-bottom: 16px;
    max-width: 460px;
  }

  .section-block__img-wrap {
    grid-area: img;
    order: unset;
  }

  .section-block__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .section-block__body {
    grid-area: body;
    order: unset;
    align-self: start;
  }

  .section-block__body p {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .section-block__quote {
    grid-area: quote;
    order: unset;
    align-self: end;
    margin-top: 25px;
  }

  .section-block__quote p {
    font-size: 18px !important;
    line-height: 26px;
  }
}

/* Inline style 1 from ps07.html */
html:not(.next-display-ready) [data-next-await] {
  position: relative;
  overflow: hidden;
  border-color: transparent !important;
  box-shadow: none !important;
}

.header-main {
  background-color: #1a1a1a;
  padding: 13.5px 0 13.5px;
}

.brand-tagline {
  color: #fff;
}

.header-inner {
  padding-inline: 18px;
}

.header-trending {
  color: #fff;
  font-size: 12px;
  line-height: 16px;
  gap: 11px;
}

[data-next-await] * {
  opacity: 0;
  transition: opacity 0.2s ease;
}

[data-next-await]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e0e0e0;
  animation: pulse-gray 1.5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes pulse-gray {
  0%,
  100% {
    background-color: #e0e0e0;
    opacity: 0.6;
  }

  50% {
    background-color: #f5f5f5;
    opacity: 0.8;
  }
}

html.next-display-ready [data-next-await] * {
  opacity: 1;
}

html.next-display-ready [data-next-await]::before {
  display: none;
}

.main-description p {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  margin-bottom: 36px;
}

.main-description ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-bottom: 36px;
}

.main-description ul li {
  padding: 0;
  margin-top: 0;
  margin-bottom: 6px;
}
.main-description ul li:last-child {
  margin-bottom: 0;
}

.section_list-wrapper.full_width {
  margin-left: -15px;
  margin-right: -15px;
}

.section_list-wrapper .heading-style-h3 {
  font-family: 'Source Sans Pro', 'Source Sans 3', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  margin-bottom: 20px;
  color: #00147c;
}

.section_list-wrapper .section_list_images {
  margin-bottom: 24px;
}

.section_list-wrapper .section_list_images.mobile_2_per_row-desktop_4_per_row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  row-gap: 10px;
  column-gap: 5px;
}

.section_list-wrapper .section_list_images.mobile_2_per_row-desktop_4_per_row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (min-width: 992px) {
  .section_list-wrapper .section_list_images {
    margin-bottom: 20px;
  }

  .section_list-wrapper.full_width {
    margin-left: -13px;
    margin-right: -13px;
  }

  .section_list-wrapper .section_list_images.mobile_2_per_row-desktop_4_per_row {
    grid-template-columns: repeat(4, 1fr);
  }
}

.section_list-wrapper .section_list_text_wrapper {
  border-radius: 8px;
  padding: 23px 19px 0px 19px;
  background-color: #e6ebff;
  margin-bottom: 36px;
}

.section_list-wrapper .section_list_text_wrapper.alert-section {
  padding: 23px 14px 0px 14px;
}

.section_list-wrapper .section_list_text_wrapper ul {
  margin: 0;
  margin-bottom: 36px;
}

.section_list-wrapper .section_list_text_wrapper ul:last-child {
  margin-bottom: 30px;
  padding-left: 27px;
}

.section_list-wrapper .section_list_text_wrapper ul li {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0px;
}

.section_list-wrapper .section_list_text_wrapper ul li:last-child {
  margin-bottom: 0;
}

.section_list ul.no-disc {
  padding: 0;
  margin: 0;
  list-style-type: none;
  margin-bottom: 30px;
}

.section_list ul.no-disc li {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0px;
  display: flex;
  gap: 6px;
}

.section_list ul.no-disc li:last-child {
  margin-bottom: 0;
}

.section_list-wrapper .section_list_text_wrapper p:last-child {
  margin-bottom: 30px;
}

.section_list.complete_metabolic_transformation_system .section_list_images img:first-child {
  margin-bottom: 6px;
}

.section_list.why_this_works .section_list_text_wrapper {
  padding: 19px 19px 0 19px;
  margin-bottom: 23px;
}

.section_list-wrapper .section_list_text_wrapper p {
  margin-bottom: 28px;
}

.section_list.why_this_works .section_list_text_wrapper h5 {
  font-family: 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0%;
  margin-bottom: 16px;
}

.section_list.why_this_works .section_list_images img {
  min-height: 278px;
}

.section_list-wrapper .section_list_images .video-wrapper {
  margin-bottom: 15px;
  border-radius: 8px;
}

.section_list-wrapper .section_list_images .video-wrapper .video-player {
  position: relative;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  isolation: isolate;
}

.section_list-wrapper .section_list_images .video-wrapper video {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.section_list-wrapper .section_list_images .video-wrapper .video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  width: 110px;
  height: 110px;
  z-index: 1;
}

.section_list-wrapper .section_list_images .video-wrapper .video-play-icon.is-hidden {
  opacity: 0;
}

.section_list-wrapper .section_list_images .video-wrapper p {
  margin: 19px 16px;
  text-align: center;
  font-family: Poppins;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  letter-spacing: 0%;
  text-align: center;
}

.gallery-slider .swiper-slide .rating_star-wrapper {
  justify-content: center;
}

.section_list_step .image-block {
  display: flex;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.section_list_step.list_step_transformation_app .image-block {
  object-position: top;
}

.section_list.list_action_wrapper {
  padding: 28px 24px;
  text-align: left;
  color: #000;
  background-color: #fff8c7;
  border: 3px dashed #000;
  border-radius: 0;
}

.section_list.list_action_wrapper .heading-style-h3 {
  color: #1f1f1f;
  text-align: center;
}

.section_list.list_action_wrapper p {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  line-height: 32px;
  color: #000;
  margin-bottom: 16px;
}

.section_list.list_action_wrapper p.alert {
  background-color: #ffef6a;
  padding: 12px 16px;
  margin-bottom: 24px;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0%;
  text-align: left;
}

.main-action-link-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.main-action-link {
  display: block;
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: 0px;
  text-align: center;
  text-decoration: none;
  color: #02021b;
  background-color: #ffd431;
  border: 1px solid #d7a90f;
  box-shadow: 0 4px 0 #02021b;
  padding: 16px 20px;
  border-radius: 8px;
}

.main-action-link:hover {
  color: #02021b;
  background-color: #d7a90f;
}

.section_reviews {
  margin-top: 50px;
}

.overall-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
}

.overall-rating__text {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

.tp-stars {
  display: flex;
  gap: 3px;
  align-items: center;
}

.tp-star-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: #00b67a;
  padding: 3px;
  flex-shrink: 0;
}

.tp-star-box.tp-star--partial {
  background: linear-gradient(to right, #00b67a 80%, #dce3e9 80%);
}

.review-card {
  background-color: #e4f6e3;
  padding: 20px 24px;
  margin-bottom: 30px;
}

.review-card .tp-stars {
  margin-bottom: 12px;
}

.review-card .rating_text {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 20px;
  line-height: 32px;
  color: #000;
  margin-bottom: 10px;
  max-width: 778px;
}

.review-card .commenter {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 14px;
  font-weight: 700;
}

.verified-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #3ab890;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.section_reviews .heading-style-h3 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 900;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.section_reviews .heading-style-h3.text-center {
  text-align: center;
  margin-bottom: 5px;
}

.section_reviews .rating-wrapper .review-block h4 {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0px;
  max-width: 290px;
}

.section_reviews .rating-wrapper .review-block .rating_star-wrapper {
  margin-top: 10px;
}

.review-header .review-block-hr {
  border: none;
  border-top: 1px solid #e9e9e9;
  width: 100%;
}

.section_reviews .rating-wrapper .review-block .rating_text {
  font-family: 'Source Sans 3', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 26px;
  letter-spacing: 0px;
}

.section_reviews .rating-wrapper .review-block .commenter {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 13px;
  font-weight: 400;
  gap: 6px;
}

.section_reviews .rating-wrapper .review-block .commenter span {
  color: #3ab890;
}

.sticky-column {
  display: none;
}

.section_list-wrapper .heading-style-h3.ugly_truth_older {
  max-width: 500px;
}
.section_list-wrapper .heading-style-h3.pilates_studios_fail {
  max-width: 520px;
}
.section_list-wrapper .heading-style-h3.emily_changed_everything {
  max-width: 500px;
}
.section_list-wrapper .heading-style-h3.busy_lives_design {
  max-width: 500px;
}
.section_list-wrapper .heading-style-h3.results_speak_videos {
  margin-bottom: 9px;
}
.section_list-wrapper .heading-style-h3.complete_system_get {
  max-width: 500px;
}
.section_list-wrapper .heading-style-h3.discount_reason_today {
  max-width: 500px;
}
.section_list-wrapper .heading-style-h3.first_step_stronger {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 768px) {
  .section_list-wrapper p {
    font-size: 20px;
  }

  .section_list-wrapper .heading-style-h3 {
    font-weight: 900;
    font-size: 32px;
    line-height: 40px;
  }

  .section_list-wrapper p {
    margin-bottom: 32px;
  }

  .section_list-wrapper .section-block__quote p:first-of-type {
    margin-bottom: 28px;
  }

  .section_list-wrapper .section_list_text_wrapper p {
    margin-bottom: 32px;
  }

  .main-action-link {
    font-size: 28px;
    line-height: 40px;
    padding: 16px 20px;
  }

  .section_list.complete_metabolic_transformation_system .section_list_images img:first-child {
    margin-bottom: 0;
  }
}

@media screen and (min-width: 992px) {
  .section_list.list_action_wrapper {
    padding: 32px 90px 36px 90px;
  }

  .main-action-link-wrapper {
    margin-top: 36px;
    padding: 0;
    margin-bottom: 6px;
  }

  .main-action-link-wrapper .main-action-link {
    width: 100%;
  }

  .section_reviews .rating-wrapper .review-block h4 {
    max-width: 100%;
  }

  .sticky-column {
    display: block;
  }
}

@media screen and (min-width: 1100px) {
  .main-description p {
    font-size: 20px;
    line-height: 32px;
  }

  .section_list-wrapper .section_list_images .video-wrapper .txt-content {
    height: 78.5px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .section_list-wrapper .section_list_images .video-wrapper .txt-content p {
    margin: 0 16px;
  }
}

.company-logos-img {
  display: block;
  margin: 0 auto;
}

.sticky-bottom-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  border-top: 1px solid #fff;
  z-index: 999;
}

.sticky-bottom-cta .button_wrapper {
  margin: 0 auto;
}

@media screen and (min-width: 992px) {
  .sticky-bottom-cta {
    display: none;
  }
}

@media screen and (min-width: 1280px) {
  .section-block__img-wrap {
    width: 348px;
  }
}

@media screen and (max-width: 992px) {
  .main-action-link {
    line-height: 28px;
    font-size: 22px;
    padding: 12px 30px;
  }

  .section-block {
    margin-bottom: 5px;
  }

  .section-block.block1 .section-block__inner {
    padding-top: 15px;
  }

  .conditions-box {
    margin-bottom: 0;
  }

  .section-block.block10 {
    margin-bottom: 10px;
  }

  .section_list-wrapper .heading-style-h3 {
    font-size: 26px;
    line-height: 32px;
  }

  .footer_section {
    padding-bottom: 100px;
  }

  .section-block .section-block__inner {
    padding-top: 30px;
  }

  .display-lg_subtotal {
    margin-bottom: 20px;
  }

  .overall-rating {
    display: none;
  }

  .section_list.list_action_wrapper p {
    text-align: center;
    font-size: 18px;
    line-height: 30px;
  }

  .section_list.list_action_wrapper p.alert {
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    padding: 12px;
  }

  .section_list.list_action_wrapper {
    padding: 28px 14px;
  }

  .section_reviews {
    margin-top: 27px;
  }

  .section_reviews .heading-style-h3.text-center {
    margin-bottom: 27px;
  }

  .review-card {
    padding: 25px 15px 18px 15px;
    margin-left: -15px;
    margin-right: -15px;
    margin-bottom: 14px;
  }

  .review-card .rating_text {
    font-size: 16px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  .review-card .tp-stars {
    margin-bottom: 16px;
  }

  .main-action-link-wrapper {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .section_reviews .main-action-link {
    padding: 12px 60px;
  }

  .footer_section {
    margin-top: 287px;
  }
}

/* ================================================
   CTA pulse animation
   ================================================ */

@keyframes cta-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}

.conditions-box__cta,
.main-action-link,
.button-15.w-button {
  animation: cta-pulse 2s ease-in-out infinite;
}
