@charset "UTF-8";
@font-face {
  font-family: "Sofia Sans Extra Condensed";
  src: url("../fonts/Sofia_Sans_Extra_Condensed/SofiaSansExtraCondensed-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayRoman.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neue Haas Grotesk Display Pro";
  src: url("../fonts/neue-haas-grotesk-display-pro/NeueHaasDisplayBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

.wrapper-lp-marsmen {
  background: #030b2e;
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  color: #ffffff;
  overflow-x: hidden;
}
.wrapper-lp-marsmen h1,
.wrapper-lp-marsmen h2,
.wrapper-lp-marsmen h3,
.wrapper-lp-marsmen h4,
.wrapper-lp-marsmen h5,
.wrapper-lp-marsmen h6 {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 900;
}

.hero-section {
  background: #030b2e;
  padding: 60px 20px;
}
@media (max-width: 950px) {
  .hero-section {
    padding: 30px 16px;
    padding-top: 4px;
  }
}

.hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 950px) {
  .hero-inner {
    flex-direction: column;
    gap: 24px;
  }
}

.hero-left {
  flex: 0 0 50%;
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 950px) {
  .hero-left {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

.hero-gallery-swiper {
  width: 100%;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
  background: #1a2444;
}
@media (max-width: 950px) {
  .hero-gallery-swiper {
    height: 350px;
  }
}
.hero-gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero-thumbs-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-thumbs-row .hero-thumb-prev,
.hero-thumbs-row .hero-thumb-next {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.hero-thumbs-row .hero-thumb-prev:hover,
.hero-thumbs-row .hero-thumb-next:hover {
  opacity: 1;
}
.hero-thumbs-row .hero-thumb-prev.swiper-button-disabled,
.hero-thumbs-row .hero-thumb-next.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}
.hero-thumbs-row .hero-thumb-prev img,
.hero-thumbs-row .hero-thumb-next img {
  width: 16px;
  height: 16px;
}

.hero-thumbs-swiper {
  flex: 1;
  min-width: 0;
}
.hero-thumbs-swiper .swiper-slide {
  width: 70px !important;
  height: 70px;
  border-radius: 8px;
  overflow: visible;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  background: #1a2444;
}
.hero-thumbs-swiper .swiper-slide.swiper-slide-thumb-active {
  border-color: #ffffff;
}
.hero-thumbs-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  border-radius: 6px;
}

.hero-reviews {
  background: #0d1836;
  border-radius: 10px;
  padding: 16px;
}

.hero-reviews-swiper .swiper-slide {
  padding-bottom: 4px;
}
.hero-reviews-swiper .review-text {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 450;
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 10px;
}
@media only screen and (max-width: 950px) {
  .hero-reviews-swiper .review-text {
    font-size: 14px;
  }
}
.hero-reviews-swiper .review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.hero-reviews-swiper .review-stars {
  display: flex;
  gap: 3px;
}
.hero-reviews-swiper .review-stars img {
  width: 16px;
  height: 16px;
}
.hero-reviews-swiper .review-name {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.hero-reviews-pagination {
  position: relative !important;
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 10px;
  margin-bottom: 4px;
}
.hero-reviews-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-reviews-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ffffff;
}

.star-rating {
  position: relative;
  display: inline-flex;
}
.star-rating .stars-bg,
.star-rating .stars-fill {
  display: flex;
  gap: 3px;
}
.star-rating .stars-bg img,
.star-rating .stars-fill img {
  width: 18px;
  height: 18px;
  display: block;
}
.star-rating .stars-bg img {
  filter: brightness(0.3);
}
.star-rating .stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: var(--pct, 100%);
}

.reviews-total {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.reviews-total__link {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.reviews-total__link:hover {
  opacity: 0.8;
}

.hero-disclaimer {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-style: normal;
  font-weight: 450;
  font-size: 14px;
  text-align: center;
  color: #ffffff;
  line-height: 1.5;
  margin-top: 28px;
}

.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 10px;
}
@media (max-width: 950px) {
  .hero-right {
    width: 100%;
  }
}

.hero-title {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 950px) {
  .hero-title {
    font-size: 44px;
  }
}

.hero-content {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
}
@media (max-width: 950px) {
  .hero-content {
    font-size: 16px;
  }
}
.hero-content p {
  margin-bottom: 10px;
  font-size: inherit;
}
.hero-content strong {
  font-weight: 700;
}

.hero-button {
  display: block;
  width: 100%;
  padding: 18px 24px;
  background: #0808f8;
  color: #ffffff;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  transition: filter 0.2s;
}
.hero-button:hover {
  filter: brightness(1.15);
}
@media (max-width: 950px) {
  .hero-button {
    font-size: 20px;
    padding: 14px 20px;
  }
}

.hero-benefits {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-top: 24px;
}
@media (max-width: 950px) {
  .hero-benefits {
    gap: 16px;
  }
}

.benefit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 85px;
}
.benefit img {
  width: 64px;
  height: 64px;
  -o-object-fit: contain;
     object-fit: contain;
}
.benefit p {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  margin: 0;
  line-height: 1.3;
}

.compare-section {
  background: #030b2e;
  padding: 80px 20px;
}
@media (max-width: 950px) {
  .compare-section {
    padding: 50px 0px;
  }
}

.compare-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1300px;
  margin: 0 auto;
}
@media (max-width: 950px) {
  .compare-inner {
    flex-direction: column;
    gap: 32px;
  }
}

.compare-left {
  flex: 0 0 28%;
  max-width: 28%;
}
@media (max-width: 950px) {
  .compare-left {
    flex: none;
    max-width: 100%;
    width: 100%;
    padding: 0 16px;
  }
}

.compare-title {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 90%;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 20px;
}
@media (max-width: 950px) {
  .compare-title {
    font-size: 38px;
  }
}

.compare-desc {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 450;
  font-size: 18px;
  line-height: 1.6;
  color: #ffffff;
}
@media only screen and (max-width: 950px) {
  .compare-desc {
    font-size: 16px;
  }
}
.compare-desc p {
  margin-bottom: 10px;
  font-size: inherit;
}
.compare-desc strong {
  font-weight: 700;
  color: #ffffff;
}

.compare-right {
  flex: 1;
  min-width: 0;
}

.compare-table-scroll {
  width: 100%;
  overflow: visible;
}
@media (max-width: 950px) {
  .compare-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .compare-table-scroll::-webkit-scrollbar {
    display: none;
  }
}

.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
.compare-table col.col-label {
  width: 22%;
}
.compare-table col.col-hi {
  width: 39%;
}
.compare-table col.col-g1 {
  width: 39%;
}
@media only screen and (max-width: 950px) {
  .compare-table col.col-label {
    width: 28%;
  }
  .compare-table col.col-hi {
    width: 35%;
  }
  .compare-table col.col-g1 {
    width: 37%;
  }
}
.compare-table th,
.compare-table td {
  padding: 16px 24px;
  vertical-align: middle;
  font-size: 15px;
  line-height: 1.4;
  border: 0;
}
@media only screen and (max-width: 950px) {
  .compare-table th,
  .compare-table td {
    padding: 8px 10px;
  }
}
.compare-table thead th {
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  color: #ffffff;
  background: transparent;
  vertical-align: bottom;
}
@media only screen and (max-width: 950px) {
  .compare-table thead th {
    font-size: 18px;
    line-height: 1.2;
  }
}
.compare-table thead th.compare-table__col--highlight {
  background: #0808f8;
  color: #ffffff;
  font-size: 30px;
  line-height: 90%;
  text-align: left;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  position: relative;
  padding-top: 20px;
}
@media only screen and (max-width: 950px) {
  .compare-table thead th.compare-table__col--highlight {
    font-size: 20px;
  }
}
.compare-table .compare-table__corner {
  text-align: left;
}
.compare-table .compare-col-hi-inner {
  display: inline-flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 12px;
}
.compare-table .compare-col-hi-title {
  display: block;
  text-align: left;
}
.compare-table .compare-product-img {
  display: block;
  width: 31px;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.compare-table tbody tr > th,
.compare-table tbody tr > td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.compare-table tbody .compare-table__rowhead {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 110%;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
}
@media only screen and (max-width: 950px) {
  .compare-table tbody .compare-table__rowhead {
    font-size: 16px;
  }
}
.compare-table tbody .compare-table__cell {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.04);
}
@media only screen and (max-width: 950px) {
  .compare-table tbody .compare-table__cell {
    font-size: 14px;
    line-height: 1.2;
  }
}
.compare-table tbody tr:nth-child(even) .compare-table__rowhead,
.compare-table tbody tr:nth-child(even) .compare-table__cell {
  background: rgba(255, 255, 255, 0);
}
.compare-table tbody .compare-table__cell--highlight {
  background: #0808f8 !important;
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  position: relative;
  z-index: 2;
  border-bottom-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 950px) {
  .compare-table tbody .compare-table__cell--highlight {
    font-weight: 400;
    font-size: 14px;
    line-height: 1.2;
  }
}
.compare-table tbody tr:last-child td,
.compare-table tbody tr:last-child th {
  border-bottom: none;
}
.compare-table tbody tr:last-child .compare-table__cell--highlight {
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}

.timeline-section {
  background: #030b2e;
  padding: 80px 20px;
}
@media (max-width: 950px) {
  .timeline-section {
    padding: 50px 16px;
  }
}

.timeline-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.timeline-title {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 64px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
  margin: 0;
  max-width: 780px;
}
@media (max-width: 950px) {
  .timeline-title {
    font-size: 30px;
  }
}

.timeline-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: nowrap;
}

.timeline-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid #0808f8;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.2s, opacity 0.2s;
}
.timeline-arrow img {
  width: 18px;
  height: 18px;
}
.timeline-arrow:hover:not(:disabled) {
  background: #0808f8;
}
.timeline-arrow:disabled {
  opacity: 0.3;
  cursor: default;
}

.timeline-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: center;
  overflow-x: auto;
  scrollbar-width: none;
}
.timeline-tabs::-webkit-scrollbar {
  display: none;
}

.timeline-tab {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-style: italic;
  font-weight: 900;
  font-size: 40px;
  color: #ffffff;
  padding: 0px 28px;
  border: 2px solid #0808f8;
  border-radius: 4px;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s, color 0.2s;
  text-transform: uppercase;
}
.timeline-tab.is-active {
  background: #0808f8;
  color: #ffffff;
}
.timeline-tab:hover:not(.is-active) {
  background: rgba(8, 8, 248, 0.15);
}
@media (max-width: 950px) {
  .timeline-tab {
    font-size: 18px;
    padding: 10px 20px;
    white-space: nowrap;
  }
}

.timeline-panels {
  width: 100%;
}

@keyframes tl-fade-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.timeline-panel {
  display: none;
  align-items: flex-start;
  gap: 60px;
  opacity: 0;
}
.timeline-panel.is-active {
  display: flex;
  align-items: center;
  animation: tl-fade-in 0.4s ease forwards;
}
@media (max-width: 950px) {
  .timeline-panel {
    gap: 16px;
  }
}

.timeline-panel__text {
  flex: 1;
  min-width: 0;
}

.timeline-step-title {
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0 0 20px;
}
@media only screen and (max-width: 950px) {
  .timeline-step-title {
    font-size: 30px;
  }
}

.timeline-content {
  font-family: "Neue Haas Grotesk Display Pro", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}
.timeline-content p {
  margin-bottom: 10px;
}
.timeline-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.timeline-content ul li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.timeline-content ul li::before {
  content: "•";
  color: #0808f8;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}
.timeline-content strong {
  font-weight: 700;
}

@keyframes tl-progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
.timeline-panel__image {
  flex: 0 0 45%;
  max-width: 45%;
  border-radius: 12px;
  overflow: hidden;
  background: #1a2444;
  max-height: 400px;
  position: relative;
}
@media (max-width: 950px) {
  .timeline-panel__image {
    flex: none;
    max-width: 100%;
    width: 50%;
  }
}
.timeline-panel__image img {
  width: 100%;
  height: 400px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.timeline-progress {
  display: none;
}

.wrapper-lp-marsmen .th-products__item {
  border-color: rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: border-color 0.2s, background 0.2s;
}
.wrapper-lp-marsmen .th-products__item .th-products__image img {
  mix-blend-mode: normal;
}
.wrapper-lp-marsmen .th-products__item > span {
  border-color: rgba(255, 255, 255, 0.5);
}
.wrapper-lp-marsmen .th-products__item:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.06);
}
.wrapper-lp-marsmen .th-products__item.active {
  border-color: #0808f8;
  background: rgba(255, 255, 255, 0.05);
}
.wrapper-lp-marsmen .th-products__item.active > span {
  border-color: #0808f8;
}
.wrapper-lp-marsmen .th-products__item.active > span span {
  background: #0808f8;
}
@media only screen and (max-width: 950px) {
  .wrapper-lp-marsmen .th-products__item:nth-child(1) {
    justify-content: center;
    gap: 16px;
  }
}
.wrapper-lp-marsmen .th-products__unit {
  color: #ffffff !important;
}
.wrapper-lp-marsmen .th-products__item.active .price-num {
  font-size: 34px !important;
}
.wrapper-lp-marsmen .th-products__price {
  color: #ffffff !important;
}
.wrapper-lp-marsmen .th-products__price strong {
  color: #ffffff !important;
}
.wrapper-lp-marsmen .th-products__price .price-num {
  color: #ffffff !important;
}
.wrapper-lp-marsmen .th-products__price .price-per-unit {
  color: rgba(255, 255, 255, 0.7) !important;
}
.wrapper-lp-marsmen .th-products__total {
  color: rgba(255, 255, 255, 0.6) !important;
}
.wrapper-lp-marsmen .th-products__save {
  color: #50e060 !important;
  font-size: 14px !important;
  margin-top: 4px;
}
.wrapper-lp-marsmen .buy-box-p3 {
  max-width: 100%;
}
.wrapper-lp-marsmen .buy-box-p3 .button-block .single_add_to_cart_button {
  background: #0808f8;
  color: #ffffff;
  font-family: "Sofia Sans Extra Condensed", sans-serif;
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  border-radius: 4px;
  padding: 8px 24px;
  margin: 20px 0 0;
  height: auto;
  transition: filter 0.2s;
  width: 100%;
}
.wrapper-lp-marsmen .buy-box-p3 .button-block .single_add_to_cart_button:hover {
  filter: brightness(1.15);
}
@media (max-width: 950px) {
  .wrapper-lp-marsmen .buy-box-p3 .button-block .single_add_to_cart_button {
    font-size: 20px;
    padding: 14px 20px;
  }
}

.stamped-main-widget {
  background: #030b2e;
  color: #fff;
}
.stamped-main-widget div[data-widget-style*=standard] .summary-rating-count {
  color: #fff !important;
}
.stamped-main-widget .stamped-summary-actions-clear,
.stamped-main-widget .stamped-summary-actions-mobile-filter,
.stamped-main-widget .stamped-summary-actions-newquestion,
.stamped-main-widget .stamped-summary-actions-newreview,
.stamped-main-widget .stamped-review-header .created,
.stamped-main-widget .stamped-review-header-byline .created,
.stamped-main-widget .stamped-pagination a,
.stamped-main-widget .stamped-summary-ratings,
.stamped-main-widget div[data-widget-style] .summary-rating:first-child .summary-rating-title:before,
.stamped-main-widget div[data-widget-style] .summary-rating:nth-child(2) .summary-rating-title:before,
.stamped-main-widget div[data-widget-style] .summary-rating:nth-child(3) .summary-rating-title:before,
.stamped-main-widget div[data-widget-style] .summary-rating:nth-child(4) .summary-rating-title:before,
.stamped-main-widget div[data-widget-style] .summary-rating:nth-child(5) .summary-rating-title:before,
.stamped-main-widget .stamped-form-label,
.stamped-main-widget .stamped-file-uploader-btn {
  color: #fff;
}
.stamped-main-widget .stamped-review-header .review-location {
  color: #efefef;
}
.stamped-main-widget ul.stamped-tabs li {
  color: #fff;
}
.stamped-main-widget .stamped-container[data-widget-show-product-variant=true] .stamped-review-product a,
.stamped-main-widget .stamped-container[data-widget-show-product-variant=true] .stamped-review-variant a,
.stamped-main-widget .stamped-container ul.stamped-tabs li {
  color: #fff;
}
.stamped-main-widget li#tab-reviews[data-count]:after {
  color: #14161f;
}

.review-stars-stamped {
  display: none;
}

.wrapper-lp-marsmen a.review-scroll {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}
.wrapper-lp-marsmen .product-cart__reviews {
  display: flex;
  align-items: center;
  gap: 8px;
}
.wrapper-lp-marsmen .product-cart__reviews .text {
  font-size: 14px;
  font-weight: 600;
  color: inherit;
}
.wrapper-lp-marsmen .stars-rating {
  position: relative;
  width: 119.57px;
  min-width: 119.57px;
  height: 23.78px;
  background: url(/wp-content/themes/particleformen/assets/images/star-white.svg);
  background-repeat: repeat;
  background-size: contain;
  background-position: 0 0;
}
.wrapper-lp-marsmen .stars-rating span {
  position: absolute;
  height: 100%;
  background: url(/wp-content/themes/particleformen/assets/images/star-yellow.svg);
  background-repeat: repeat;
  background-size: contain;
  background-position: 0 0;
}
.wrapper-lp-marsmen .stars-rating--small {
  width: 116.2px;
  min-width: 116px;
  height: 23.78px;
}
.wrapper-lp-marsmen .after-quiz {
  margin: 0 0 20px;
}
.wrapper-lp-marsmen .after-quiz .inner {
  display: flex;
  gap: 25px;
  align-items: center;
  padding: 16px;
  background: #0808f8;
  border-radius: 4px;
  border: 1px solid #0038b1;
  justify-content: center;
}
@media (max-width: 576px) {
  .wrapper-lp-marsmen .after-quiz .inner {
    gap: 15px;
  }
}
.wrapper-lp-marsmen .after-quiz .inner .circle-container {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.wrapper-lp-marsmen .after-quiz .inner .circle-container svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.wrapper-lp-marsmen .after-quiz .inner .text {
  font-size: 28px;
  margin: 0;
  line-height: 2rem;
}
@media (max-width: 576px) {
  .wrapper-lp-marsmen .after-quiz .inner .text {
    font-size: 19px;
  }
}
.wrapper-lp-marsmen .after-quiz .circle {
  animation: pfm-marsmen-pulse 2s ease-in-out infinite;
}
.wrapper-lp-marsmen .after-quiz .shine {
  animation: pfm-marsmen-shine 1.5s ease-out infinite;
}

@keyframes pfm-marsmen-pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes pfm-marsmen-shine {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */