:root {
  --primary-color: #8059b7;
  --secondary-color: #c06095;
  --third-color: #ffa5b1;
  --fourth-color: #FCC961;
  --primary-color-light: #9b7dc6;
  --primary-color-dark: #4f3377;
  --secondary-color-light: #dda9c6;
  --secondary-color-dark: #853561;
  --contrast-color: #FCC961;
  --text-color: #231F20;
  --light-color: #F1F1F1;
}

#top-band {
  background-color: var(--contrast-color);
}

.video-box {
  position: relative;
  max-width: 100%;
  background-image: radial-gradient(var(--primary-color-light), var(--secondary-color-light), var(--primary-color-light));
  padding-top: 1px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.video-box .background-img {
  position: absolute;
  top: 0;
  opacity: 0.25;
}

.video-box .container {
  max-width: 900px;
}

.video-box h2 {
  color: white;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.5);
  font-size: 1.8em;
}

@media (max-width: 767px) {
  .video-box h2 {
    font-size: 1.1em;
  }
}

.video-box h2 b {
  color: var(--contrast-color);
}

/* Quiz */
.quiz-box .background-img {
  position: absolute;
  opacity: 0.25;
}

.quiz-box>section>.container {
  position: relative;
  background-image: radial-gradient(var(--primary-color), var(--primary-color-light), var(--primary-color-light));
  border: 4px solid white;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

#quiz h2,
#quiz h4 {
  color: white;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}

#quiz h2 {
  color: var(--contrast-color);
}

#quiz .option {
  border-radius: 10px;
  color: white;
  font-weight: 700;
}

#quiz .option:hover {
  border-color: white;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.1411764706) inset;
}

#quiz .rounded-pill {
  background-color: red;
}

#progress h2,
#progress h4 {
  color: white;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}

#progress h2 {
  color: var(--contrast-color);
}

.bar-animation {
  animation: barAnimation 10s forwards ease-in;
}

@keyframes barAnimation {
  0% {
    width: 0%;
  }

  50% {
    width: 60%;
  }

  80% {
    width: 80%;
  }

  100% {
    width: 100%;
  }
}

.timer {
  color: var(--contrast-color) !important;
}

.triangle-tip {
  width: 0;
  height: 0;
  border-left: 30vw solid transparent;
  border-right: 30vw solid transparent;
  border-top: 30px solid #251837;
  position: absolute;
  bottom: -29px;
  left: calc(50% - 30vw);
}

/* Products */
.new-layout .products .container {
  max-width: 1100px;
}

.new-layout .products .item {
  border-radius: 1em;
  padding: 0;
  border: 4px solid #ccc;
  background-color: #ccc;
}

.new-layout .products .item .wrapper {
  background: #ffffff;
}

@media (max-width: 767px) {
  .new-layout .products .item .wrapper {
    grid-template-areas: "header header""title info""img info""img totals""img footer";
    padding-right: 0.5em;
  }
}

.new-layout .products .item .item-header {
  background-color: var(--secondary-color-dark);
  color: white;
  padding: 0.25em;
  margin-bottom: 0.5em;
}

@media (max-width: 767px) {
  .new-layout .products .item .item-header {
    border-radius: 0 1em 1em 0;
  }
}

.new-layout .products .item .item-img .supply {
  font-weight: 700;
  color: #444444;
  letter-spacing: 2px;
  padding-bottom: 0;
}

.new-layout .products .item .item-img .supply b {
  font-size: 2em;
  color: var(--secondary-color-dark);
  text-shadow: 1px 1px var(--primary-color-light);
  font-weight: 900 !important;
  margin-bottom: 0.25em;
  letter-spacing: -1px;
}

@media (max-width: 767px) {
  .new-layout .products .item .item-img .supply b {
    font-size: 6vw;
  }
}

.new-layout .products .item .item-info .price b {
  font-weight: 900 !important;
  color: var(--secondary-color-dark);
  text-shadow: 1px 2px var(--primary-color-dark);
  letter-spacing: -2px;
}

@media (max-width: 767px) {
  .new-layout .products .item .item-info .price b {
    font-size: 16vw;
  }
}

.new-layout .products .item .item-info .price span {
  font-weight: bold;
  color: var(--secondary-color-dark);
}

.new-layout .products .item .item-buy .button {
  background-image: radial-gradient(#ffeaa4, #ffe10c, #bcad10);
  width: 100%;
  max-width: 260px;
  padding: 0.4em;
}

@media (max-width: 767px) {
  .new-layout .products .item .item-buy .button {
    padding: 0.25em;
  }
}

.new-layout .products .item .item-buy .button span {
  font-weight: 900;
  text-shadow: 1px 1px white;
  color: #000;
}

@media (max-width: 767px) {
  .new-layout .products .item .item-buy .button span {
    font-size: 3.8vw;
    letter-spacing: -1px;
  }
}

.new-layout .products .item .item-buy .button span::after {
  content: "\f23f";
  font-family: "bootstrap-icons" !important;
  background-color: #000;
  color: white;
  text-shadow: none;
  font-size: 0.8em;
  font-weight: 400;
  height: 35px;
  width: 35px;
  align-content: center;
  border-radius: 50%;
  box-shadow: 1px 1px white inset;
}

@media (max-width: 767px) {
  .new-layout .products .item .item-buy .button span::after {
    font-size: 5vw;
    height: 9vw;
    width: 9vw;
  }
}

@media (max-width: 767px) {
  .new-layout .products .item .item-totals {
    margin-top: 0.8em;
  }
}

.new-layout .products .item.promo {
  border: 4px solid var(--primary-color-light);
  background-color: var(--primary-color-light);
}

.new-layout .products .item.promo .wrapper {
  background: #ffffff;
}

.new-layout .products .item.promo .item-header {
  background-color: var(--primary-color-dark);
}

@media (max-width: 767px) {
  .new-layout .products .item.promo .item-header {
    grid-area: title;
  }
}

.new-layout .products .item.promo .item-img .supply b {
  color: var(--primary-color-dark);
  text-shadow: 1px 1px var(--secondary-color-dark);
}

.new-layout .products .item.promo .item-info .price b {
  color: var(--primary-color-dark);
  text-shadow: 1px 2px var(--secondary-color-dark);
}

.new-layout .products .item.promo .item-info .price span {
  font-weight: bold;
  color: var(--primary-color-dark);
}

.new-layout .products .item.promo .item-buy .button {
  background-image: radial-gradient(#ffeaa4, #ffe10c, #bcad10);
  width: 100%;
  max-width: 260px;
  padding: 0.4em;
}

@media (max-width: 767px) {
  .new-layout .products .item.promo .item-buy .button {
    padding: 0.25em;
  }
}

.new-layout .products .item.promo .item-buy .button span {
  font-weight: 900;
  text-shadow: 1px 1px white;
  color: #000;
}

.new-layout .products .item.promo .item-buy .button span::after {
  content: "\f23f";
  font-family: "bootstrap-icons" !important;
  background-color: #000;
  color: white;
  text-shadow: none;
  font-size: 0.8em;
  font-weight: 400;
  height: 35px;
  width: 35px;
  align-content: center;
  border-radius: 50%;
  box-shadow: 1px 1px white inset;
}

@media (max-width: 767px) {
  .new-layout .products .item.promo .item-buy .button span::after {
    font-size: 5vw;
    height: 9vw;
    width: 9vw;
  }
}

#testimonials .card {
  background-color: #f6f6f6;
  border: 0;
  margin-bottom: 1em;
  padding: 2em 1em;
  border-radius: 2em;
}

#testimonials .verfied {
  background-color: #00845d;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1em 0.75em;
  border-radius: 3em;
  margin-bottom: 0.5em;
}

#testimonials .purchase {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--primary-color);
}

#testimonials .purchase img {
  max-width: 80px;
}

#testimonials .purchase p {
  margin: 0;
}

:root {
  --primary-color: #a70c0c;
  --secondary-color: #040303;
  --third-color: #f1465d;
  --fourth-color: #040303;
  --primary-color-light: #a32c2c;
  --primary-color-dark: #800202;
  --secondary-color-light: #5c1616;
  --secondary-color-dark: #5c0303;
  --contrast-color: #FCC961;
  --text-color: #231F20;
  --light-color: #F1F1F1;
}

#video {
  position: relative;
}

@media (max-width: 991px) {
  #video h2 {
    font-size: 30px;
  }
}

#video::after {
  content: "";
  position: absolute;
  top: -50px;
  width: 100%;
  height: 162px;
  background: url("/assets/pages/home/img/ondas.png") center center no-repeat;
  background-size: cover;
  opacity: 0.1;
}

#references h2 {
  font-size: 20px;
  color: rgb(159, 159, 159);
}

.logos {
  max-width: 900px;
  margin: 10px auto;
}

.logos img {
  max-width: 130px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

#fbcomments {
  margin-top: 30px !important;
}

/*--------------------strip3------------------*/
.strip3 {
  padding: 0;
  color: #fff;
  margin-bottom: 0px;
}

@media (max-width: 991px) {
  .strip3 {
    margin-bottom: 0px;
  }
}

ul.strip3-list {
  display: flex;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
  margin: 0;
}

@media (max-width: 991px) {
  ul.strip3-list {
    padding-left: 0;
  }
}

ul.strip3-list li {
  padding: 0 22px;
  position: relative;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
  text-align: center;
  list-style: none;
  margin-top: 1rem;
}

@media (max-width: 991px) {
  ul.strip3-list li {
    font-size: 14px;
    line-height: 20px;
  }

  ul.strip3-list li::after {
    display: none;
  }
}

ul.strip3-list li::after {
  content: "";
  position: absolute;
  right: 0;
  top: 6px;
  height: 18px;
  background: #e6dede;
  width: 2px;
}

ul.strip3-list li:last-child::after {
  display: none;
}

@keyframes fade {
  0% {
    opacity: 100%;
  }

  50% {
    opacity: 30%;
  }

  70% {
    opacity: 100%;
  }

  100% {
    opacity: 100%;
  }
}

.hourglass {
  display: inline-block;
  vertical-align: middle;
  margin: -5px 8px 0 0;
  animation: rotateP 2.5s ease-in-out forwards infinite;
  max-width: 25px;
  filter: invert(1);
}

@keyframes rotateP {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotate(180deg);
  }

  100% {
    transform: rotate(180deg);
  }
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.clock {
  margin: 0 8px -5px 0;
  display: inline-block;
  animation: fade 1s ease-in-out infinite;
}

.triangle-down {
  width: 0;
  height: 0;
  border-left: 25px solid transparent;
  border-right: 25px solid transparent;
  border-top: 50px solid #555;
}

.triangle-down {
  position: absolute;
  left: 50%;
  top: 0;
  margin-left: -15px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 18px solid var(--secondary-color);
}

.shipbx {
  width: 710px;
  height: 90px;
  border: 2px solid var(--secondary-color);
  border-radius: 14px;
  margin: 0 auto 0 auto;
  display: block;
  position: relative;
  padding: 17px 25px 15px 150px;
  margin-top: 0px;
  margin-bottom: 10px;
  color: #000;
}

.shipiconbx {
  background: var(--secondary-color);
  padding: 19px 5px 19px 7px;
  border-radius: 12px 0 0 12px;
  position: absolute;
  left: 0;
  top: 0;
}

.shipiconbx img {
  margin: 0 auto;
  display: block;
  max-width: 100%;
}

.shipiconbx::after {
  content: "";
  position: absolute;
  right: -13px;
  top: 0;
  width: 0;
  height: 0;
  border-top: 45px solid transparent;
  border-left: 15px solid var(--secondary-color);
  border-bottom: 45px solid transparent;
}

.shipbx.light {
  border: 2px solid var(--primary-color-dark);
}

.shipbx.light .shipiconbx {
  background: var(--primary-color-dark);
}

.shipbx.light .shipiconbx::after {
  border-left: 15px solid var(--primary-color-dark);
}

.shipbx-txt1 {
  font-size: 22px;
  line-height: 30px;
  text-align: left;
  margin: 0;
  font-weight: 700;
}

.shipbx.light .shipbx-txt1 {
  color: #fff;
}

.shipbx-txt1 .red {
  color: var(--secondary-color);
  font-weight: 700;
}

.shipbx.light .shipbx-txt1 .red {
  color: var(--primary-color-dark);
}

.shipbx-txt2 {
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}

.shipbx.light .shipbx-txt2 {
  color: #fff;
}

.item-img {
  position: relative;
}

.save {
  position: absolute;
  right: 15px;
  bottom: 6px;
  height: 97px;
  width: 97px;
  background: #ffd200;
  border-radius: 50%;
}

.save p {
  font-weight: 600;
  font-size: 24px;
  line-height: 27px;
  text-align: center;
  text-transform: uppercase;
  padding-top: 22px;
}

.save p span {
  font-weight: 800;
}

@media (max-width: 991px) {
  .shipbx {
    width: 370px;
    height: 118px;
    padding: 10px 5px 10px 98px;
    margin-top: 0px;
  }

  .shipbx-txt1 {
    font-size: 16px;
    line-height: 18px;
  }

  .shipbx-txt2 {
    font-size: 13px;
    line-height: 21px;
  }

  .shipiconbx {
    height: 116px;
    padding: 44px 0 20px 7px;
  }

  .shipiconbx img {
    width: 65px;
  }

  .shipiconbx::after {
    border-top: 58px solid transparent;
    border-left: 15px solid var(--secondary-color);
    border-bottom: 58px solid transparent;
  }

  .save {
    right: auto;
    left: 5px;
    top: -13px;
    height: 58px;
    width: 58px;
  }

  .save p {
    font-size: 15px;
    line-height: 17px;
    padding-top: 13px;
  }

  .shipbx {
    width: 370px;
    max-width: 100%;
    height: 118px;
    padding: 10px 5px 10px 98px;
  }

  .shipbx-txt1 {
    font-size: 18px;
    line-height: 26px;
  }

  .shipbx-txt2 {
    font-size: 13px;
    line-height: 21px;
  }

  .shipiconbx {
    height: 116px;
    padding: 44px 0 20px 7px;
  }

  .shipiconbx img {
    width: 65px;
  }

  .shipiconbx::after {
    border-top: 58px solid transparent;
    border-left: 15px solid var(--secondary-color);
    border-bottom: 58px solid transparent;
  }

  #video h2 {
    font-size: 30px;
  }

  #video h2 span:first-child {
    font-size: 12px !important;
  }

  #fbcomments {
    margin-top: 0px !important;
  }

  .logos img {
    max-width: 90px;
    margin-bottom: 10px;
  }
}

/*Bonus*/
#bonus {
  /* background-image: linear-gradient(45deg, var(--primary-color-light), var(--primary-color)); */
  max-width: 100%;
  overflow: hidden;
  /* background-image: radial-gradient(var(--secondary-color-light), var(--secondary-color)); */
  background-color: #fff;
}

#bonus h2 {
  color: var(--primary-color);
  text-align: center;
  font-size: 37px;
  font-weight: 700;
  text-shadow: 0px 2px rgba(0, 0, 0, 0.6392156863);
}

@media (max-width: 991px) {
  #bonus h2 {
    font-size: 30px;
  }
}

#bonus p.subtitle {
  font-size: 18px;
  line-height: 20px;
  color: var(--primary-color);
  text-align: center;
  font-style: italic;
  margin-top: 0px;
  margin-bottom: 0px;
}

#bonus .ebook {
  margin-top: 150px;
  width: 100%;
  border-radius: 12px;
  padding: 10px;
  background: var(--primary-color-dark);
  text-align: center;
  height: calc(100% - 150px);
  border: 5px double rgba(255, 255, 255, 0.5568627451);
}

#bonus .ebook p {
  font-size: 17px;
  line-height: 22px;
  text-align: center;
  color: #fff;
  margin-top: 0px;
}

#bonus .ebook .strikeout {
  position: relative;
}

#bonus .ebook .strikeout::after {
  border-bottom: 0.12em solid #ff0202;
  content: "";
  left: 0;
  margin-top: -0.06em;
  position: absolute;
  right: 0;
  top: 54%;
  transform: rotate(-10deg);
}

#bonus .ebook .s7lhding2 {
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  margin-top: 15px;
  text-shadow: 0px 2px rgba(0, 0, 0, 0.6392156863);
}

#bonus .ebook .s7lhding2 span.span1 {
  font-weight: bold;
  text-transform: uppercase;
  color: #ffd200;
}

#bonus .ebook .s7ltxt {
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  margin-top: 11px;
  color: #fff;
}

#bonus .ebook h3 {
  color: #fff;
}

#bonus .img-mockup {
  position: relative;
  max-width: 200px;
  margin: 0px auto;
  margin-top: -150px;
}

#bonus .img-mockup img {
  max-width: 200px;
  margin: 0 auto;
  display: flex;
  border: solid 4px #fff;
}

#bonus .img-mockup .bonusbx {
  height: 133px;
  width: 134px;
  background: transparent url("../img/selo3.png") center top no-repeat;
  background-size: 100%;
  position: absolute;
  right: -50%;
  top: -10px;
  padding: 20px 0 0 0;
}

#bonus .img-mockup .bonusbx .bonusbx-txt1,
#bonus .img-mockup .bonusbx .bonusbx-txt2,
#bonus .img-mockup .bonusbx .bonusbx-txt3 {
  font-weight: bold;
  font-size: 25px;
  line-height: 7px;
  color: #ffd200;
  text-align: center;
  text-transform: uppercase;
  margin-top: 12px;
  text-shadow: 0px 2px rgba(0, 0, 0, 0.6392156863);
}

#bonus .img-mockup .bonusbx .bonusbx-txt2 {
  font-size: 20px;
  color: #fff;
}

#bonus .img-mockup .bonusbx .bonusbx-txt3 {
  font-size: 40px;
}

/* Testimonials */
.user-name {
  display: flex;
  gap: 15px;
  align-items: center;
}

.verfied {
  color: #ff6f00;
  font-weight: 700;
  display: flex;
  gap: 10px;
  align-items: center;
}

@media (max-width: 991px) {
  .verfied {
    font-size: 14px;
  }

  .texts h4 {
    font-size: 17px;
  }
}

.name p,
.text-user p {
  color: #545353;
}

.user-name .user {
  max-width: 100px;
  max-height: 100px;
  border-radius: 100%;
  float: right;
}

@media (max-width: 991px) {
  .user-name .user {
    float: inherit;
    margin: 0;
    max-width: 68px;
    max-height: 68px;
  }
}

.user-name .user img {
  width: 100%;
  height: 100%;
  border-radius: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.purchase {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--primary-color);
}

.purchase img {
  max-width: 50px;
}

.purchase p {
  margin: 0;
}

#guarantee::after {
  display: none;
}

#guarantee {
  position: relative;
  background: #f4f4f4;
  color: var(--text-color);
  text-align: left;
}

#guarantee .container {
  max-width: 1100px;
}

#guarantee h2 {
  color: var(--primary-color);
}

#guarantee h2 span {
  color: var(--secondary-color);
}

#guarantee img {
  max-width: 200px;
}

#guarantee .badges img {
  background-color: white;
  max-width: 100px;
  border-radius: 50%;
  border: 3px solid white;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.25);
}

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

#testimonials .card {
  background-color: #f6f6f6;
  border: 0;
  margin-bottom: 1rem;
  padding: 1rem;
  border-radius: 2em;
  text-align: left;
}

#testimonials .card h4 {
  color: var(--primary-color);
  font-weight: 700;
  text-align: left;
}

#testimonials .verfied {
  /* background-color: #00845d; */
  width: -moz-fit-content;
  width: fit-content;
  /* padding: 0.1em 0.75em; */
  border-radius: 3em;
  margin-bottom: 0;
  color: #ff6f00;
}

#testimonials .purchase {
  display: flex;
  align-items: end;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0;
  border-bottom: none;
}

#testimonials .purchase img {
  max-width: 80px;
}

#testimonials .purchase p {
  margin: 0;
}

#testimonials .user {
  max-width: 200px;
  margin-bottom: 1rem;
}

@media (max-width: 991px) {
  #testimonials .user {
    float: inherit;
    margin: 0px auto;
  }
}

#testimonials .user img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 991px) {
  #testimonials .user img {
    margin-bottom: 1rem;
  }
}

#testimonials .helpful-report {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

#testimonials .helpful-report .helpful {
  border: solid 1px var(--text-color);
  border-radius: 30px;
  padding: 5px 15px;
}

#testimonials .helpful-report .share {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

#testimonials .helpful-report .report {
  color: #979797;
}

.principal {
  max-width: 100%;
  margin: 0;
  padding: 0;
}

.cta {
  background-image: linear-gradient(to top, #fccd15 50%, #ffd814 51%);
  width: 100%;
  max-width: 260px;
  padding: 0.4em;
  color: #000;
  font-size: 22px;
  box-shadow: none;
}

.cta::after {
  content: "\f23f";
  font-family: "bootstrap-icons" !important;
  background-color: #000;
  color: white;
  text-shadow: none;
  font-size: 0.8em;
  font-weight: 400;
  height: 35px;
  width: 35px;
  align-content: center;
  border-radius: 50%;
  box-shadow: 1px 1px white inset;
  display: inline-block;
  margin-left: 15px;
}

#faq {
  background-image: linear-gradient(45deg, var(--primary-color-light), var(--primary-color));
  color: white;
}

#faq .container {
  background-image: linear-gradient(45deg, var(--primary-color), var(--primary-color)) !important;
  max-width: 1000px;
}

#faq .accordion {
  position: relative;
  z-index: 2;
}

#faq .accordion-item {
  border-radius: 0.5em;
  margin-bottom: 0.25em;
  border: 0;
}

#faq .accordion-button {
  font-family: "Rubik", sans-serif;
  font-weight: bold;
  border-radius: 0.25em;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
}

#faq .accordion-body {
  padding-bottom: 1.5em;
}

#faq {
  background: none;
  padding-left: 10px;
  padding-right: 10px;
}

#faq .container {
  background-image: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  padding: 1rem;
  border-radius: 2em;
  border: 1px solid var(--third-color);
}

@media (max-width: 991px) {
  #faq .container {
    padding: 1em;
  }
}

#faq .accordion-item,
#faq .accordion-button {
  border-radius: 200px;
}

@media (max-width: 991px) {

  #faq .accordion-item,
  #faq .accordion-button {
    border-radius: 0px;
  }
}

#faq .accordion-item:focus,
#faq .accordion-button:focus {
  box-shadow: none;
}

#faq .accordion-body {
  background-color: #fff;
  padding-top: 3em;
  margin-top: -1em;
  border-radius: 0 0 2em 2em;
}

@media (max-width: 991px) {
  #faq .accordion-body {
    border-radius: 0;
  }
}

#faq .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-btn-color);
}

.border-primary-new {
  border: 2px solid var(--primary-color-dark);
  color: var(--primary-color);
  background-image: radial-gradient(rgba(232, 146, 193, 0.5450980392), #f4f4f4);
  height: 100%;
}

.border {
  border: 2px solid var(--primary-color-dark);
  color: var(--primary-color);
  background-image: radial-gradient(rgba(220, 208, 214, 0.5450980392), #f4f4f4);
  height: 100%;
}

@media (max-width: 991px) {
  .border {
    height: auto;
    margin-bottom: 1rem;
  }
}

.countdown {
  display: inline-block;
  font-size: 20px;
  line-height: 28px;
  color: #fff;
}

.title-claim {
  font-size: 37px;
  font-weight: 700;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .title-claim {
    font-size: 30px;
  }
}

.text-save {
  text-shadow: 0px 2px rgba(224, 224, 224, 0.6392156863);
  color: var(--primary-color-dark);
  font-size: 20px !important;
  font-weight: 700;
  padding: 0.5rem;
  border: dashed 3px var(--primary-color-dark);
  max-width: 60%;
  margin: 0 auto !important;
}

.text-save.no-border {
  border: 0;
}

@media (max-width: 991px) {
  .text-save {
    margin: 0;
    line-height: 16px;
  }
}

.text-free-shipping {
  color: #ef0219;
  text-shadow: 0px 2px rgba(224, 224, 224, 0.6392156863);
}

.best-value {
  padding: 1rem;
  color: #fff;
  background-color: var(--primary-color);
  border-radius: 3.125rem 3.125rem 0 0;
}

.free-shipping-section {
  background-color: var(--primary-color);
  color: #fff;
}

.free-shipping-section img {
  max-width: 180px;
  filter: invert(1);
}

@media (max-width: 991px) {
  .free-shipping-section img {
    max-width: 100px;
  }
}

.free-shipping-section h2 {
  font-size: 35px;
  font-weight: 700;
}

@media (max-width: 991px) {
  .free-shipping-section h2 {
    font-size: 30px;
  }
}

.free-shipping-section p {
  font-size: 18px;
  margin: 0;
}

.free-shipping-section p span {
  font-weight: 600;
  color: var(--contrast-color);
}

.img-product {
  max-height: 250px;
}

@media (max-width: 991px) {
  .img-product {
    max-height: 100%;
  }
}

figure {
  margin: 0 !important;
}

/* Quiz */
.quiz-box .background-img {
  position: absolute;
  opacity: 0.25;
}

.quiz-box>section>.container {
  position: relative;
  background-image: radial-gradient(var(--primary-color), var(--primary-color-light), var(--primary-color-light));
  border: 4px solid white;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
  color: white;
}

#quiz h2,
#quiz h4 {
  color: white;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}

#quiz h2 {
  color: var(--contrast-color);
}

#quiz .option {
  border-radius: 10px;
  color: white;
  font-weight: 700;
  background-color: var(--primary-color-dark) !important;
  border-color: var(--primary-color) !important;
}

#quiz .option:hover {
  border-color: white;
  box-shadow: 0 0 80px rgba(0, 0, 0, 0.1411764706) inset;
}

#quiz .rounded-pill {
  background-color: red;
}

#progress h2,
#progress h4 {
  color: white;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.3);
}

#progress h2 {
  color: var(--contrast-color);
}

.bar-animation {
  animation: barAnimation 14s forwards ease-in;
}

@keyframes barAnimation {
  0% {
    width: 0%;
  }

  50% {
    width: 60%;
  }

  80% {
    width: 80%;
  }

  100% {
    width: 100%;
  }
}

.timer {
  color: var(--contrast-color) !important;
}

.triangle-tip {
  width: 0;
  height: 0;
  border-left: 30vw solid transparent;
  border-right: 30vw solid transparent;
  border-top: 30px solid #251837;
  position: absolute;
  bottom: -29px;
  left: calc(50% - 30vw);
}

.esconder {
  max-width: 100%;
  margin: 0 auto;
}

.new-layout #faq .container {
  background-image: none !important;
  background-color: var(--primary-color) !important;
}

.new-layout #faq .accordion-body {
  background-color: var(--primary-color-dark);
  color: #ffffff;
}