:root {
  --brand-dark: #392514;
  --brand-light: #f0ebe8;
}

.w-layout-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

.w-form-formradioinput--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  color: #392515;
  background-color: #fff;
  font-family: Rubik, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}

h1 {
  color: #3f3332;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 500;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 500;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}

p {
  margin-bottom: 10px;
}

a {
  color: #ad8e79;
  text-decoration: underline;
}

li {
  margin-bottom: 4px;
}

strong {
  font-weight: 600;
}

blockquote {
  color: #392514;
  background-color: #f0ebe8;
  border-left: 5px #e2e2e2;
  border-radius: 16px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.image-wrapper {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  display: flex;
}

.image-wrapper.top--24 {
  margin-top: -24px;
}

.image-wrapper.listicle {
  aspect-ratio: 1;
  position: sticky;
  top: 32px;
}

.image-wrapper.h-auto {
  height: auto;
}

.image-wrapper._w-70 {
  width: 70%;
}

.button {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #fff;
  text-align: center;
  background-color: #392514;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.button:hover {
  background-color: #6f4b2d;
}

.button.w--current {
  background-color: var(--brand-dark);
}

.button.square {
  border-radius: 12px;
}

.button.square.w50 {
  width: 50%;
}

.button.br-20 {
  border-radius: 20px;
}

.button._w-100 {
  width: 100%;
}

.avatar {
  object-fit: cover;
  border-radius: 100px;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
}

.avatar.with-stroke {
  border: 2px solid #ad8e79;
}

.article-block {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.article-block.hflex {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
}

.article-block.hflex.center {
  justify-content: flex-start;
  align-items: center;
}

.article-block.hflex.gap-14 {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
}

.article-block.hflex.gap-14.grid {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.article-block.gap-64 {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
}

.article-block.gap-48 {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
}

.avatar-wrapper {
  width: 86px;
  height: 86px;
}

.avatar-wrapper.avatar-size-64px {
  width: 64px;
  min-width: 64px;
  max-width: 64px;
  height: 64px;
  min-height: 64px;
  max-height: 64px;
}

.heading-wrap {
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}

.h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.2;
}

.container {
  width: 100%;
  max-width: 968px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 32px;
  padding-bottom: 32px;
}

.container.bp-20 {
  padding-bottom: 32px;
}

.container.tb-p-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.container.footer {
  padding: 0;
}

.container.h100 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  display: flex;
}

.section {
  width: 100%;
  padding-left: 32px;
  padding-right: 32px;
}

.section.footer {
  background-color: #392515;
  padding: 16px 32px;
}

.section.hero {
  background-image: url('../images/image-98.jpg');
  background-position: 70%;
  background-size: cover;
  min-height: 100vh;
  position: relative;
}

.section.fill {
  flex: 1;
}

.section.beige {
  background-color: var(--brand-light);
}

.footer-links {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.date {
  color: #40343299;
}

.floating-cta {
  flex-flow: column;
  width: 100%;
  padding: 24px 32px;
  display: none;
}

.author-wrap {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 16px;
}

.author-wrap.gap16 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
}

.heading {
  color: #f3eeec;
  text-transform: uppercase;
  background-color: #ad8e79;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 8px;
  display: flex;
}

.logo {
  height: 88px;
}

.content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  align-items: stretch;
  width: 100%;
  display: flex;
}

.content.lp-32 {
  padding-right: 32px;
}

.content.v-center {
  justify-content: center;
  align-items: flex-start;
}

.content.h-flex {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  flex-flow: row;
}

.content.h-flex.top {
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.content.margin-bottom {
  margin-bottom: 30px;
}

.content.padding-top-20 {
  padding-top: 20px;
}

.content.gap-12 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}

.content.gap-4 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
}

.content.gap-32 {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
}

.content.gap-40 {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
}

.content.tm-40 {
  margin-top: 40px;
}

.link-white {
  color: #fff;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.header {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 12px;
  padding-bottom: 12px;
  display: flex;
}

.disclaimer {
  color: #fff9;
  font-size: 16px;
  font-weight: 400;
}

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

.img.br-20 {
  object-fit: cover;
  border-radius: 20px;
}

.img.h100 {
  object-fit: cover;
  height: 100%;
}

.author-block {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
}

.date-text {
  color: #40343299;
}

.divider {
  background-color: #e3d7cb;
  width: 100%;
  height: 1px;
}

.button-wrap-hero {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  max-width: 440px;
  padding-left: 20px;
}

.logo-home {
  width: 100%;
  max-width: 320px;
  margin-bottom: -30px;
}

.paragraph-18 {
  font-size: 18px;
}

.paragraph-18 h2 {
  margin-top: 0;
  font-weight: 400;
}

.paragraph-18 strong {
  font-weight: 500;
}

.paragraph-18.left-side {
  text-align: left;
  justify-content: flex-start;
  align-items: center;
}

.paragraph-18.op-64 {
  opacity: .64;
}

.paragraph-18.white-text {
  color: #fff;
  margin-bottom: 0;
}

.minh-100vh {
  min-height: 100vh;
}

.countdown-label {
  color: #000;
  font-weight: 400;
  line-height: 150%;
}

.text-wrap {
  color: #000;
  flex-flow: column;
  width: auto;
  min-width: auto;
  max-width: none;
  display: flex;
}

.text-wrap.width-50 {
  width: 100%;
}

.text-wrap.left-border {
  border-left: 1px solid #e5e7eb;
}

.text-wrap.left-border.p24 {
  border-top: 1px solid #e5e7eb;
  border-left-style: none;
  padding: 24px;
}

.text-wrap.padding-16px {
  padding: 16px;
}

.text-wrap.padding-16px.top-border-gray {
  border-top: 1px solid #e5e7eb;
}

.text-wrap.padding-16px.top-border-gray.white-bg {
  text-align: center;
  background-color: #fff;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
  width: 100%;
}

.text-wrap.margin-10 {
  margin-bottom: 10px;
}

.text-wrap.flex-vertical {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
}

.text-wrap.margin-30 {
  margin-bottom: 30px;
}

.text-wrap.fl-h {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  display: flex;
}

.text-wrap.gap-4 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  font-weight: 400;
  display: flex;
}

.text-wrap.gap-4.is-right-side {
  justify-content: center;
  align-items: flex-end;
}

.countdown-box {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border-right: 1px solid #1c1d201a;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 100%;
  max-width: 23.1%;
  height: auto;
  min-height: auto;
  max-height: none;
  padding: 12px;
  display: inline-flex;
}

.countdown-box.last {
  border-right-style: none;
}

.flex-vertical {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.flex-vertical.gap-auto {
  justify-content: space-between;
  align-items: flex-start;
}

.flex-vertical.gap-16 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 0 auto;
}

.flex-vertical.white-block, .flex-vertical.gap-12 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
}

.flex-vertical.no-gap {
  display: none;
}

.flex-vertical.gap-20 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.flex-vertical.gap-20.center {
  justify-content: center;
  align-items: flex-start;
}

.flex-vertical.gap-24 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
}

.countdown-wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  background-color: #fff;
  border-radius: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.countdown-text {
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 500;
}

.paragraph-14 {
  margin-bottom: 0;
  font-size: 14px;
}

.paragraph-14.op80 {
  opacity: .8;
}

.paragraph-14.left-side {
  text-align: left;
}

.paragraph-14.cl-brown {
  color: #ad8e79;
}

.paragraph-14.white-text {
  color: #fff;
}

.paragraph-14.uppercase {
  text-transform: uppercase;
  font-size: 12px;
}

.paragraph-14.light {
  font-weight: 300;
}

.paragraph-14.light p {
  margin-bottom: 6px;
}

.paragraph-14.light.big {
  display: block;
}

.countdown-number {
  color: #000;
  font-size: 28px;
  font-weight: 500;
  line-height: 150%;
  display: inline-flex;
}

.discount-timer {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.video {
  aspect-ratio: 1.66;
  border-radius: 20px;
  width: 100%;
  height: auto;
}

.flex-horizontal {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.flex-horizontal.gap-16px {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
}

.flex-horizontal.gap-16px.align-center {
  justify-content: flex-start;
  align-items: center;
}

.flex-horizontal.gap-16px.align-center.width-80 {
  width: 80%;
}

.flex-horizontal.gap-16px.lp-20 {
  padding: 20px;
}

.flex-horizontal.gap-16px.p16 {
  padding: 16px;
}

.flex-horizontal.gap-16px.p16.b-border {
  border-bottom: 1px solid #e5e7eb;
}

.flex-horizontal.gap-16px.margin-10 {
  margin-bottom: 10px;
}

.flex-horizontal.space-between {
  justify-content: space-between;
  align-items: center;
  width: auto;
}

.flex-horizontal.space-between._w-100 {
  width: 100%;
}

.flex-horizontal.align-top-right {
  justify-content: flex-end;
  align-items: flex-start;
}

.flex-horizontal.center {
  justify-content: center;
  align-items: center;
  margin-top: 10px;
}

.flex-horizontal.gap-4 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: space-between;
  align-items: center;
  width: auto;
  height: auto;
}

.flex-horizontal.gap-4.padding-top {
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
}

.flex-horizontal.h-60 {
  height: 60%;
}

.flex-horizontal._w-auto {
  width: auto;
}

.image-wrap-100-100px {
  width: 100px;
  height: 100px;
}

.image-3 {
  border-radius: 100px;
}

.quality-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 16px;
  display: flex;
}

.paragraph-24 {
  font-size: 24px;
  font-weight: 500;
}

.paragraph-24.sb {
  margin-bottom: 0;
  font-weight: 600;
}

.paragraph-24.sb.left {
  text-align: left;
}

.paragraph-16 {
  font-size: 16px;
}

.paragraph-16 strong {
  font-weight: 500;
}

.paragraph-16.op64 {
  opacity: .64;
}

.paragraph-16 blockquote {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
  font-size: 16px;
}

.paragraph-16.lh-150 {
  line-height: 150%;
}

.white-block {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  flex-flow: column;
  width: 100%;
  padding: 16px;
  display: flex;
}

.white-block.p0 {
  padding: 0;
  overflow: hidden;
}

.white-block.gap-20 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

.white-block.bg-color {
  background-color: #fbf9f7;
}

.icon {
  color: #ad8e79;
  flex: none;
  width: 24px;
  height: 24px;
  display: flex;
}

.icon._24-24px {
  justify-content: center;
  align-items: center;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
}

.icon._12-12 {
  width: 12px;
  height: 12px;
}

.icon._18-18 {
  width: 18px;
  height: 18px;
}

.slider-mask {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  position: static;
}

.button-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  align-items: stretch;
  display: flex;
}

.button-wrapper.top-margin-24px {
  margin-top: 24px;
}

.strikethrough {
  text-decoration: line-through;
}

.strikethrough.subtle {
  color: #b6b3b1;
}

.slider-wrap {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  width: 100%;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.right-arrow {
  justify-content: flex-start;
  align-items: center;
  width: 64px;
  display: flex;
  inset: 0% -72px 0% auto;
}

.flex-vertical-3 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.arrow {
  color: #1c1d20;
  background-color: #fff;
  border: 1px solid #1c1d201a;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  font-size: 24px;
  display: flex;
  position: relative;
}

.arrow.v2-mobile {
  width: 56px;
  height: 56px;
}

.slide {
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: hidden;
}

.arrow-icon {
  margin: auto;
  font-size: 20px;
  position: static;
}

.slider-badge {
  color: #fff;
  background-color: #ad8e79;
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 18px;
}

.red {
  color: red;
}

.semibold {
  font-weight: 600;
}

.slider {
  aspect-ratio: 1;
  object-fit: cover;
  background-color: #ddd0;
  border-radius: 16px;
  width: auto;
  height: auto;
}

.slide-nav {
  height: 32px;
  font-size: 8px;
}

.slide-nav.reviews {
  grid-column-gap: 1px;
  grid-row-gap: 1px;
  color: #1d191b;
  justify-content: center;
  align-items: center;
  inset: auto 0% 0;
}

.left-arrow {
  justify-content: flex-start;
  align-items: center;
  width: 64px;
  display: flex;
  inset: 0% auto 0% -72px;
}

.card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  flex-flow: column;
  width: 100%;
  padding: 16px;
  display: flex;
}

.paragraph-20 {
  font-size: 20px;
}

.paragraph-20.medium {
  font-weight: 500;
}

.logo-block {
  width: 100%;
}

.logo-image {
  object-fit: contain;
  width: auto;
}

.align-center {
  text-align: center;
  justify-content: flex-start;
  align-items: center;
}

.article-image-wrapper {
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.paragraph-32 {
  margin-bottom: 0;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.2;
}

.paragraph-32.regular {
  font-weight: 400;
}

.image {
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 12px;
  width: 100%;
  height: auto;
}

.image.prod {
  aspect-ratio: 1;
  object-position: 50% 50%;
}

.image.h48px {
  object-fit: fill;
  width: auto;
  max-width: none;
  height: 48px;
}

.image.h32px {
  object-fit: fill;
  width: auto;
  max-width: none;
  height: 32px;
}

.image.br-left-12 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.image.h-100 {
  height: 100%;
}

.p12 {
  padding: 12px;
}

.p12.align-center.card-layout {
  width: 100%;
  height: 100%;
  padding-left: 8px;
  padding-right: 8px;
}

.color-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #171719;
  background-color: #f0ebe8;
  border: 1px solid #d8c4b3;
  border-radius: 12px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 400;
  display: flex;
}

.color-block.w100 {
  width: 100%;
}

.color-block.p12 {
  padding: 12px;
}

.color-block.listicle {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  justify-content: center;
  align-items: stretch;
  height: 100%;
}

.color-block.left-stroke {
  border-width: 0 0 0 4px;
  border-left-color: #ad8e79;
}

.color-block.small-padding {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  padding: 5px 12px;
}

.color-block.small-padding.space-between {
  grid-column-gap: 6px;
  grid-row-gap: 6px;
  justify-content: space-between;
  align-items: center;
}

.color-block.small-padding.no-stroke {
  border-width: 0;
  flex-flow: row;
  width: auto;
  padding-top: 4px;
  padding-bottom: 4px;
  padding-left: 12px;
}

.color-block.no-stroke {
  border-width: 0;
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.color-block.is-left {
  border-style: none;
  border-radius: 20px;
  justify-content: center;
  align-items: flex-start;
}

.color-block.align-stretch {
  justify-content: flex-start;
  align-items: stretch;
}

.color-block.p0 {
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
}

.article-image-with-text {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.article-image-with-text.color-bg {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: center;
  background-color: #f0ebe8;
  border-radius: 16px;
  overflow: hidden;
}

.article-image-with-text.color-bg.card-layout {
  z-index: 2;
  width: 70%;
  height: 100%;
  position: relative;
}

.article-image-with-text.color-bg.card-layout.v2 {
  z-index: 1;
  position: absolute;
  top: 50.797px;
  left: 181px;
}

.article-image-with-text.color-bg.gap-24 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
}

._2-columns {
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.image-wrap {
  width: 100%;
  position: relative;
}

.image-wrap._40-40px {
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
}

.image-wrap.h-100 {
  height: 100%;
}

.image-wrap.with-rd {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  width: 60%;
  overflow: hidden;
}

.p16 {
  align-items: stretch;
  padding: 16px;
}

.p16.card {
  border-style: none;
  border-radius: 0;
  flex: 1;
  justify-content: flex-end;
  align-items: flex-start;
}

.image-logos-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  height: 48px;
  display: flex;
}

.product-card {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  flex-flow: column;
  height: auto;
  display: flex;
  position: relative;
  overflow: hidden;
}

.product-card.static {
  width: 100%;
  min-height: auto;
  max-height: none;
  position: static;
}

.product-card.two-x, .product-card.one-x {
  width: 100%;
}

.feature-card {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  flex-flow: column;
  padding: 12px;
  display: flex;
}

.feature-card.align-left {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  background-color: #fff0;
  border-style: none;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
}

._3-columns {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

._3-columns.top-margin-10px {
  margin-top: 10px;
}

._3-columns.top-margin-10px.rt-30-sale {
  display: none;
}

._3-columns.top-margin-10px.rt-30-sale:where(.w-variant-47bc2e64-25b6-7486-1ffd-536903bdf247) {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr .75fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._3-columns.top-margin-10px.rt-30-sale.rt-offer-section-30-61 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._3-columns.top-margin-10px.rt-20-sale {
  grid-template-columns: .75fr 1fr .75fr;
}

._3-columns.top-margin-10px.rt-20-sale:where(.w-variant-47bc2e64-25b6-7486-1ffd-536903bdf247), ._3-columns.top-margin-10px.rt-20-sale:where(.w-variant-e681b5b7-2459-9e61-13bf-6415c0dd09e4), ._3-columns.top-margin-10px.rt-20-sale:where(.w-variant-7b5097fa-7ac7-652b-5d06-5434a9c9bb00), ._3-columns.top-margin-10px.rt-20-sale:where(.w-variant-814b9497-99bc-8a0c-c62a-ecdf4dae8aa0), ._3-columns.top-margin-10px.sl-20-sale {
  display: none;
}

._3-columns.top-margin-10px.sl-20-sale:where(.w-variant-e681b5b7-2459-9e61-13bf-6415c0dd09e4) {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr .75fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._3-columns.top-margin-10px.sl-20-sale:where(.w-variant-7b5097fa-7ac7-652b-5d06-5434a9c9bb00) {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
}

._3-columns.top-margin-10px.sl-30-sale {
  display: none;
}

._3-columns.top-margin-10px.sl-30-sale:where(.w-variant-7b5097fa-7ac7-652b-5d06-5434a9c9bb00) {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr .75fr;
  grid-auto-columns: 1fr;
  display: grid;
}

._3-columns.top-margin-10px.np-30-sale {
  display: none;
}

._3-columns.top-margin-10px.np-30-sale:where(.w-variant-814b9497-99bc-8a0c-c62a-ecdf4dae8aa0) {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .75fr 1fr .75fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.badge {
  color: #fff;
  background-color: #ad8e79;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 16px;
  padding: 12px 24px;
  display: flex;
  position: static;
  inset: 0% 0% auto;
}

.icon-2 {
  color: #9a3952;
  width: 24px;
  height: 24px;
  display: flex;
}

.icon-2._24-24px {
  justify-content: center;
  align-items: center;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
}

.dropdown-toggle {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #fff;
  border-radius: 12px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
}

.faq-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  max-width: none;
  margin-top: 32px;
  display: flex;
}

.faq-wrap.no-margin {
  margin-top: 0;
}

.color-button {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: #fff;
  background-color: #ad8e79;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  padding: 16px 22px;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .2s;
  display: inline-flex;
}

.color-button:hover, .color-button:active, .color-button:focus {
  background-color: #8d6954;
}

.color-button.only-icon {
  width: 56px;
  height: 56px;
}

.color-button.only-icon._40-40px {
  flex: none;
  width: 40px;
  min-width: 40px;
  max-width: 40px;
  height: 40px;
  min-height: 40px;
  max-height: 40px;
  padding: 12px;
}

.dropdown-list {
  background-color: #fff;
  padding: 16px;
}

.dropdown-list.w--open {
  border-top: 1px solid #e5e7eb;
  position: static;
}

.dropdown-list.tp-0 {
  padding-top: 0;
}

.dropdown {
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  display: flex;
  position: static;
  overflow: hidden;
}

.faq-question {
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  flex: 1;
  font-size: 17px;
}

.image-4 {
  aspect-ratio: auto;
  object-fit: cover;
  border-radius: 16px;
  height: 100%;
}

.image-4._100 {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
  max-height: 100%;
  overflow: clip;
}

.offerpage-img {
  border-top: 1px solid #e5e7eb;
  width: 100%;
}

.testimonial-offerpage-wrap {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.testimonial-offerpage-wrap.vertical {
  flex-flow: column;
  height: 100%;
}

.testimonial-offerpage-wrap.vertical.v2 {
  border-style: none;
  height: auto;
  box-shadow: 0 0 4px #00000014;
}

.testimonial-content {
  grid-column-gap: 62px;
  grid-row-gap: 62px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.testimonial-content.gap-24px {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
}

.testimonial-content.gap-24px.v2 {
  justify-content: flex-start;
  align-items: flex-start;
}

.review-flex {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-flow: column;
  width: 100%;
  height: 100%;
  padding: 16px;
}

.review-flex.h-auto {
  height: auto;
}

.review-flex.p0 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  height: auto;
  padding: 0;
}

.slide-32 {
  width: 32%;
  margin-right: 2%;
}

.trustpilot {
  border: 1px solid #e5e7eb;
  border-radius: 24px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: 0;
  padding: 0;
  display: flex;
  overflow: hidden;
}

.product {
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-left: 16px;
}

.article-testimonial-heading {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.article-testimonial-heading.with-avatar {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}

.card-top {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  text-align: left;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 16px;
}

.review-slider {
  background-color: #0000;
  width: 100%;
  height: auto;
  padding-bottom: 40px;
}

.review-slider.hid {
  display: none;
}

.review-img {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.review-img.ratio-auto {
  aspect-ratio: auto;
}

.prod-name {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.prod-info {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  width: 100%;
}

.prod-info.w50 {
  justify-content: flex-start;
  align-items: center;
  width: 40%;
}

.payment {
  width: auto;
  height: 32px;
}

.payment.h40 {
  height: 40px;
}

.w100 {
  width: 100%;
}

.quote-text-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-top-right-radius: 0;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
  flex-flow: column;
  padding: 16px;
  display: flex;
}

.number {
  background-color: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 10px;
  justify-content: center;
  align-items: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 10px;
  display: flex;
}

.number.color-bg {
  background-color: #ad8e79;
  border-style: none;
}

.number.color-bg._28-28 {
  width: 28px;
  min-width: 28px;
  height: 28px;
  min-height: 28px;
}

.color {
  color: #5a5c69;
}

.text-size-24px {
  color: #000;
  font-family: Open Sans, sans-serif;
  font-size: 24px;
  line-height: 150%;
}

.text-size-24px.poppins-medium {
  margin-bottom: 0;
  font-weight: 500;
}

.text-size-24px.poppins-medium.text-color-white {
  color: #fff;
}

.quote {
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.quote.no-top-pad {
  margin-top: 0;
  margin-bottom: 0;
}

.quote-ttile-block {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #fff;
  background-color: #ad8e79;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-left-radius: 0;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding: 16px;
  display: flex;
}

.listicle-image-wrapper {
  width: 100%;
  display: flex;
}

.listicle-image-wrapper.h-flex-20 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  display: flex;
}

._w-80 {
  flex-flow: row;
  align-items: stretch;
  width: 80%;
}

._w-50 {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  width: 50%;
  font-size: 16px;
}

.three-x, .three-x:where(.w-variant-47bc2e64-25b6-7486-1ffd-536903bdf247) {
  width: 100%;
}

.offer-block {
  align-items: stretch;
  width: 100%;
}

.grid-4col {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border: .5px solid #3925141a;
  border-radius: 12px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  overflow: hidden;
}

.table-block {
  border: .5px solid #39251433;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5%;
  display: flex;
}

.table-block.mobile-vertical {
  display: none;
  overflow: hidden;
}

.table-block.cl-block {
  background-color: #f0ebe8;
  border-width: .5px;
  border-color: #39251480;
}

.table-block.cl-block.center {
  justify-content: center;
  align-items: flex-start;
}

.table-block.cl-block.center.flex-v {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 8%;
}

.table-block.light-block {
  background-color: #f0ebe866;
}

.table-block.light-block.center {
  text-align: center;
  justify-content: center;
  align-items: center;
}

.table-block.light-block.center.top-side-rd-right {
  border-top-right-radius: 12px;
}

.table-block.light-block.center.flex-v {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  text-align: center;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8%;
}

.table-block.top-side-rd {
  border-top-left-radius: 12px;
}

.table-block.top-side-rd.center {
  justify-content: flex-start;
  align-items: center;
}

.table-block.top-side-rd-left {
  border-top-left-radius: 0;
  border-bottom-left-radius: 12px;
}

.table-block.top-side-rd-right-1 {
  border-bottom-right-radius: 12px;
}

.hidden-text {
  display: none;
  overflow: hidden;
}

.light-cl {
  color: #392515b3;
}

.paragraph-33 {
  color: #926039;
  text-align: center;
}

.list-text {
  grid-column-gap: 7px;
  grid-row-gap: 7px;
  flex-flow: column;
  margin-bottom: 0;
  padding-left: 30px;
  display: flex;
}

.small {
  color: #39251569;
  font-size: 16px;
}

.content-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.icon-3 {
  color: #004581;
  width: 24px;
  height: 24px;
  display: flex;
}

.icon-3._24-24px {
  justify-content: center;
  align-items: center;
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
}

.icon-3._24-24px.w34 {
  width: 34px;
}

.grid {
  grid-column-gap: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
}

.superscript {
  color: #000;
}

.tab-section {
  flex-flow: column-reverse;
  justify-content: flex-end;
  display: flex;
}

.image-tab {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.color-block-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #171719;
  background-color: #0045811a;
  border: 1px solid #00458133;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 500;
  display: flex;
}

.color-block-2.p12 {
  padding: 12px;
}

.color-block-2.p12.small {
  width: 60%;
  height: 40px;
  margin-top: 10px;
}

.color-block-2.label {
  align-self: center;
  height: 20px;
  margin-bottom: 0;
  padding: 12px 6px 4px;
}

.button-2 {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #fff;
  text-align: center;
  background-color: #004581;
  border-radius: 0;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.button-2:hover {
  background-color: #2879bf;
}

.text-span-3 {
  color: #004581;
}

.text-14px {
  color: #000;
  margin-bottom: 0;
  font-size: 14px;
}

.image-icon {
  width: auto;
  height: 24px;
}

.img-slider {
  aspect-ratio: 1;
  object-fit: cover;
  width: 100%;
}

.text-20px {
  margin-bottom: 0;
  font-size: 20px;
  line-height: 150%;
}

.tab-link {
  background-color: #0000;
  width: 100%;
  padding: 1px;
  overflow: hidden;
}

.tab-link.w--current {
  opacity: .7;
  padding: 1px;
  box-shadow: inset 0 0 0 1px #000;
}

.text-18px {
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
}

.tabs-menu {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: row;
  margin-top: 10px;
  display: flex;
  overflow: auto;
}

.text-24px {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 500;
}

.paragraph-12 {
  font-size: 12px;
}

.paragraph-12.op40 {
  opacity: .4;
}

.image-wrap-review {
  border-radius: 8px;
  overflow: hidden;
}

.image-wrap-review.v2 {
  border-top-left-radius: 8px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  width: 100%;
}

.grid-card {
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr;
}

.grid-card._1 {
  grid-template-rows: auto;
}

.text-mark {
  font-family: Great Vibes, cursive;
}

.experts-wrapper {
  margin-bottom: 50px;
  padding-left: 60px;
  position: relative;
}

.card-image-wrapper {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.radio-label {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
}

.radio-label-text {
  display: none;
}

.forms {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-flow: column;
  display: flex;
}

.form-block {
  grid-column-gap: 28px;
  grid-row-gap: 28px;
  flex-flow: column;
  display: flex;
}

.card-wrapper {
  background-color: #fbf9f500;
  border: 1px solid #d8d8d88c;
  border-radius: 12px;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 18px;
  display: flex;
  position: relative;
}

.left-side {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  font-weight: 400;
  display: flex;
}

.radio-button-hid {
  opacity: 0;
  color: #39251500;
  width: 0;
  height: 0;
}

.custom-radio {
  border: 1px solid #392514;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.custom-radio-copy {
  border: 1px solid #392514;
  border-radius: 100px;
  width: 24px;
  height: 24px;
}

.custom-radio-dot {
  opacity: 0;
  background-color: #392514;
  border-radius: 100px;
  width: 14px;
  height: 14px;
}

.custom-radio-dot:active {
  opacity: 100;
}

.radio-img {
  min-height: 40px;
  max-height: 50px;
}

.radio-img._w-50 {
  width: 70px;
  min-height: 60px;
  max-height: 70px;
}

.text-12px {
  font-size: 12px;
}

.cta-price {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  color: #fff;
  text-align: center;
  background-color: #392514;
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.cta-price:hover {
  background-color: #6f4b2d;
}

.cta-price.square {
  border-radius: 12px;
}

.badge-wrap {
  color: #fff;
  background-color: #884935;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  padding: 4px 8px;
  display: flex;
  position: absolute;
  inset: -17px 115px auto auto;
}

.badge-wrap.light {
  background-color: #b88171;
  top: -17px;
}

.badge-wrap.sparen {
  background-color: #8a905a;
  padding-left: 8px;
  right: 17px;
}

.review-card {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.review-card.vertical {
  flex-flow: column;
  height: 100%;
}

.review-card.vertical.h-auto {
  height: auto;
}

.testimonial-offerpage-wrap-copy {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  text-decoration: none;
  display: flex;
  overflow: hidden;
}

.testimonial-offerpage-wrap-copy.vertical {
  flex-flow: column;
  height: 100%;
}

.reviews-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.main-review-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start stretch;
  display: grid;
}

.dog-size-tabs {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: grid;
}

.tab-size {
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 64px;
  display: flex;
}

.tab-size.active {
  border-style: solid;
  border-color: #e5e5e5;
}

.text-block, .code, .code-2 {
  color: #000;
  font-size: 14px;
}

.div-block {
  grid-column-gap: 17px;
  grid-row-gap: 17px;
  flex-flow: column;
  display: flex;
}

.package-benefits {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border-top: 1px solid #ddd;
  flex-flow: column;
  width: 100%;
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
}

.package-info {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.bold-text-2, .bold-text-3, .bold-text-4, .bold-text-5 {
  font-weight: 400;
}

.subscription-row {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 12px;
  display: flex;
}

.subscription-toggle {
  background-color: #392614;
  border: 1px #1683d8;
  border-radius: 999px;
  justify-content: flex-end;
  align-items: center;
  width: 56px;
  height: 32px;
  padding: 4px;
  display: flex;
}

.subscription-toggle.active {
  position: relative;
}

.subscription-text-wrap {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.subscription-dot {
  background-color: #fff;
  border: 1px #fff;
  border-radius: 999px;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 4px;
}

.code-3 {
  font-weight: 700;
}

.text-block-2 {
  font-size: 14px;
}

.text-block-3, .text-block-4 {
  color: #000;
  font-size: 14px;
}

.bold-text-6 {
  text-underline-offset: 2px;
  text-decoration: underline;
}

.discount-badge-benefit-saving {
  position: absolute;
  top: 18px;
  right: 24px;
}

.placeholder-div {
  min-width: 50px;
  max-width: 60px;
  min-height: 50px;
  max-height: 50px;
}

.op-wrapper {
  align-items: stretch;
}

.button-icon {
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  display: flex;
}

.border-block {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  border: 2px solid #dbd1d5;
  border-radius: 20px;
  flex-flow: column;
  width: 100%;
  padding: 24px;
  display: flex;
}

.border-block.stroke1 {
  border-width: 1px;
}

.grid-2col {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.grid-2col.bm-16 {
  margin-bottom: 16px;
}

.paragraph-28 {
  font-size: 28px;
  font-weight: 500;
}

.w40 {
  width: 60%;
}

.image-wrap-grow {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  flex: 1;
  width: 100%;
  overflow: hidden;
}

.reviews {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  width: 100%;
  display: flex;
}

.review-vflex {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.paragraph-11 {
  font-size: 11px;
}

.paragraph-11.op-40 {
  opacity: .4;
}

.paragraph-13 {
  font-size: 13px;
}

.grid-3col {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.h-flex {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  display: flex;
}

.h-flex.gap-10 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
}

.content-wrap {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  display: flex;
}

.image-1-1 {
  aspect-ratio: 1;
}

.image-1-1.br-20 {
  border-radius: 20px;
}

.text-35 {
  font-size: 35px;
}

.text-28 {
  font-size: 28px;
}

.text-28.strikethrough.light-cl {
  opacity: .4;
}

.no-bullets {
  padding-left: 26px;
  list-style-type: none;
}

.number-list {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  list-style-type: decimal;
  display: flex;
}

.info-block3 {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: #efefef;
  border-radius: 16px;
  padding: 24px;
  display: flex;
}

.avatar-wrapper-2 {
  width: 86px;
  min-width: 86px;
  max-width: 86px;
  height: 86px;
  min-height: 86px;
  max-height: 86px;
}

.avatar-wrapper-2.avatar-size-large2 {
  width: 145px;
  min-width: 145px;
  max-width: 145px;
  height: 145px;
  min-height: 145px;
  max-height: 145px;
}

.text-28px {
  color: #000;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 600;
  line-height: 150%;
}

.text-28px.brown {
  color: #392514;
}

.text-18px-2 {
  color: #000;
  white-space: normal;
  word-break: normal;
  overflow-wrap: normal;
  font-size: 18px;
  font-weight: 400;
  line-height: 150%;
}

.compare-item_top {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1.8fr .7fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center stretch;
  width: 100%;
  margin-bottom: 0;
  display: grid;
  position: relative;
}

.compare-item_title {
  width: auto;
  min-width: 0;
  max-width: none;
}

.compare-item_visual {
  justify-content: flex-end;
  align-items: flex-start;
  width: auto;
  display: flex;
  position: static;
}

.image-6 {
  width: auto;
  height: 200px;
}

.compare-item_boxes {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.compare-item_boxes.auto {
  align-items: flex-start;
}

.compare-item_box {
  padding: 24px;
}

.compare-item_box.is-positive {
  background-color: #f6fbf8;
  border: 4px solid #a4daad;
  border-radius: 20px;
  width: 100%;
  padding: 24px;
}

.compare-item_box.is-negative {
  background-color: #ffecec;
  border: 4px solid #f99;
  border-radius: 20px;
  width: 100%;
}

.list-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  list-style-type: disc;
  display: flex;
}

.text-block-5 {
  color: #d94b43;
  margin-right: 5px;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
}

.compare-item_score {
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
  display: flex;
}

.h2-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.2;
}

.text-block-6 {
  color: #191a1d;
  font-size: 18px;
}

.text-block-7 {
  color: #fff;
}

.compare-item_badge {
  background-color: var(--brand-dark);
  border-radius: 12px;
  margin-bottom: 0;
  padding: 10px 16px;
  display: inline-block;
}

.compare-item {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  background-color: var(--brand-light);
  color: #191a1d;
  border-radius: 20px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px;
  display: flex;
}

.compare-item.light {
  background-color: #f0ebe866;
}

.text-20 {
  font-size: 20px;
}

.text-20.full {
  width: 100%;
}

.icon-4 {
  color: #7d4aac;
  flex: none;
  width: 24px;
  height: 24px;
  display: flex;
}

.flex-horizontal-2 {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.flex-horizontal-2.stars.auto.gap-4 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  justify-content: flex-end;
  align-items: flex-start;
}

.flex-horizontal-2.space-between {
  justify-content: space-between;
  align-items: center;
  width: auto;
}

.flex-horizontal-2.space-between._w-full {
  width: 100%;
}

.flex-horizontal-2.space-between._w-full.stroke {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  border-bottom: 1px solid #7d4aac33;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
}

.flex-vertical-4 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.flex-vertical-4.gap-16 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: stretch;
}

.platz-flex {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-flow: column;
  display: flex;
}

.button-text {
  grid-column-gap: 12px;
  grid-row-gap: 12px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

@media screen and (min-width: 1440px) {
  .container.h100 {
    padding-bottom: 64px;
  }

  .section.hero {
    background-position: 60% 0;
    background-size: auto 120%;
  }

  .button-wrap-hero {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    margin-bottom: 80px;
    position: relative;
  }

  .logo-home {
    max-width: 480px;
  }
}

@media screen and (min-width: 1920px) {
  .button {
    font-size: 17px;
  }

  .container.bp-20 {
    padding-bottom: 40px;
  }

  .container.h100 {
    max-width: 1400px;
  }

  .button-wrap-hero {
    max-width: 500px;
    margin-bottom: 100px;
    font-size: 18px;
  }

  .logo-home {
    max-width: 520px;
  }

  .paragraph-14 {
    font-size: 14px;
    display: flex;
  }

  .paragraph-14.light.big {
    flex-flow: column;
  }

  .countdown-number {
    font-size: 32px;
    font-weight: 500;
  }

  .discount-timer {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .flex-horizontal.gap-4 {
    justify-content: flex-start;
    align-items: center;
    width: auto;
  }

  .quality-block, .icon._24-24px {
    justify-content: center;
    align-items: center;
  }

  .slide {
    background-position: 50%;
  }

  .icon-2._24-24px {
    justify-content: center;
    align-items: center;
  }

  .quote-ttile-block {
    width: 100%;
    padding-bottom: 16px;
    padding-right: 16px;
  }

  .icon-3._24-24px {
    justify-content: center;
    align-items: center;
  }

  .text-14px {
    font-size: 16px;
  }

  .cta-price {
    font-size: 17px;
  }

  .text-28px {
    font-weight: 700;
  }

  .compare-item_title {
    width: 40350%;
  }

  .compare-item_box {
    width: 100%;
    padding: 24px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 32px;
    line-height: 1.2;
  }

  blockquote {
    font-weight: 500;
  }

  .article-block.hflex {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
  }

  .article-block.hflex.center {
    flex-flow: row;
  }

  .container {
    height: auto;
  }

  .floating-cta {
    z-index: 9999;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    background-color: #ffffff1a;
    display: block;
    position: fixed;
    inset: auto 0% 0%;
  }

  .content.h-flex.top {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .paragraph-18.left-side {
    justify-content: flex-start;
    align-items: center;
  }

  .countdown-label {
    font-size: 14px;
  }

  .text-wrap.left-border.p24 {
    border-top: 1px solid #e5e7eb;
    border-left-style: none;
  }

  .countdown-box {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    display: flex;
  }

  .countdown-wrapper {
    margin-top: 16px;
  }

  .discount-timer {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-columns: 1fr;
  }

  .flex-horizontal.gap-16px.lp-20 {
    padding: 20px;
  }

  .flex-horizontal.gap-4.mob-ver {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .slider-mask {
    width: 100%;
    height: 100%;
  }

  .right-arrow {
    inset: auto 0% 0% auto;
  }

  .slider {
    aspect-ratio: 1;
    object-fit: cover;
    height: auto;
  }

  .slide-nav.reviews._1 {
    place-items: center;
  }

  .left-arrow {
    inset: auto auto 0% 0%;
  }

  .logo-block {
    flex-flow: row;
    width: auto;
  }

  .logo-image {
    flex: none;
  }

  .paragraph-32 {
    font-size: 28px;
  }

  .image.br-left-12 {
    border-radius: 12px;
  }

  .color-block.small-padding.no-stroke {
    width: auto;
    padding-top: 4px;
    padding-bottom: 4px;
    padding-left: 12px;
  }

  .article-image-with-text.color-bg.card-layout.v2 {
    inset: 15% 6% 0% auto;
  }

  ._2-columns {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  ._3-columns.top-margin-10px {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .dropdown-toggle {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .faq-wrap {
    padding-left: 0;
    padding-right: 0;
  }

  .review-flex {
    padding: 12px;
  }

  .slide-32 {
    width: 48%;
    margin-left: 0%;
    margin-right: 2%;
  }

  .slide-32.h-auto {
    margin-bottom: 10px;
  }

  .mask.margin-bottom {
    bottom: 20px;
    overflow: visible;
  }

  .review-slider {
    padding-bottom: 80px;
    bottom: 0;
  }

  .review-slider.hidden {
    overflow: hidden;
  }

  .review-slider.hid {
    display: block;
  }

  .review-img.ratio-auto {
    height: 430px;
  }

  .review-img.ratio-auto.h-400 {
    height: 300px;
  }

  .quote-ttile-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .listicle-image-wrapper.h-flex-20 {
    flex-flow: column;
    padding-left: 32px;
  }

  ._w-80 {
    width: 100%;
  }

  ._w-50 {
    flex-flow: row;
    width: 100%;
  }

  .table-block.mobile-vertical {
    display: none;
    overflow: hidden;
  }

  .grid {
    grid-column-gap: 16px;
    flex-flow: column;
    grid-template-columns: .75fr 1fr;
    display: flex;
  }

  .bold-text {
    font-size: 24px;
  }

  .center {
    text-align: center;
  }

  .paragraph-28 {
    font-size: 26px;
  }

  .reviews {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .reviews.hid-mobile {
    display: none;
  }

  .review-vflex.h-auto {
    height: auto;
  }

  .h-flex.gap-10 {
    flex-flow: row;
  }

  .text-28px {
    font-size: 24px;
  }

  .compare-item_boxes {
    flex-flow: column;
  }

  .flex-horizontal-2 {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  .image-wrapper.listicle {
    order: -9999;
    position: static;
  }

  .image-wrapper.h-50 {
    height: 500px;
  }

  .image-wrapper._w-70 {
    width: 100%;
  }

  .image-wrapper._w-70.first {
    order: -9999;
  }

  .button.square.w50 {
    width: 100%;
  }

  .article-block.hflex {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: column;
  }

  .article-block.hflex.center {
    flex-flow: column;
  }

  .article-block.hflex.gap-14.grid {
    grid-template-columns: 1fr;
    display: flex;
  }

  .article-block.gap-64 {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .h2 {
    font-size: 28px;
  }

  .container {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .container.h100 {
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .section, .section.footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section.hero {
    background-position: 80%;
  }

  .floating-cta {
    z-index: 9999;
    padding: 24px;
    display: block;
    position: fixed;
    inset: auto 0% 0%;
  }

  .author-wrap {
    flex-flow: wrap;
  }

  .content.lp-32 {
    padding-right: 24px;
  }

  .content.h-flex, .content.h-flex.top {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .button-wrap-hero {
    padding-left: 0;
  }

  .text-wrap.width-50 {
    width: 100%;
  }

  .text-wrap.left-border.p24 {
    border-left-style: none;
  }

  .flex-vertical.no-gap {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    display: flex;
  }

  .countdown-text {
    line-height: 150%;
  }

  .countdown-number {
    font-weight: 500;
  }

  .discount-timer {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: column;
  }

  .flex-horizontal.gap-16px.align-center.width-80 {
    width: 100%;
  }

  .flex-horizontal.gap-4.mob-ver {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .quality-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    flex-flow: column;
  }

  .paragraph-24.big {
    font-size: 32px;
  }

  .slider-wrap {
    max-width: 100%;
  }

  .right-arrow {
    width: 48px;
    right: -8px;
  }

  .arrow {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .arrow.v2-mobile {
    flex: none;
    width: 48px;
    height: 48px;
  }

  .slider {
    aspect-ratio: 1;
  }

  .left-arrow {
    width: 48px;
    left: -8px;
  }

  ._2-columns {
    flex-flow: column;
    display: flex;
  }

  .image-logos-wrap {
    flex-flow: wrap;
    height: auto;
  }

  ._3-columns.top-margin-10px {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-columns: 1fr;
  }

  ._3-columns.top-margin-10px.rt-30-sale:where(.w-variant-47bc2e64-25b6-7486-1ffd-536903bdf247), ._3-columns.top-margin-10px.rt-30-sale.rt-offer-section-30-61, ._3-columns.top-margin-10px.rt-20-sale {
    grid-template-columns: 1fr;
  }

  ._3-columns.top-margin-10px.sl-20-sale:where(.w-variant-e681b5b7-2459-9e61-13bf-6415c0dd09e4), ._3-columns.top-margin-10px.sl-30-sale:where(.w-variant-7b5097fa-7ac7-652b-5d06-5434a9c9bb00) {
    flex-flow: column;
    display: flex;
  }

  ._3-columns.top-margin-10px.np-30-sale:where(.w-variant-814b9497-99bc-8a0c-c62a-ecdf4dae8aa0) {
    flex-flow: column;
  }

  .faq-wrap {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
  }

  .testimonial-offerpage-wrap {
    flex-flow: column;
  }

  .testimonial-content.gap-24px.v2, .review-flex {
    justify-content: center;
    align-items: flex-start;
  }

  .slide-32 {
    width: 49%;
    height: 780px;
  }

  .slide-32.h-auto {
    height: auto;
  }

  .slide-32.h-auto.right-mar {
    margin-left: 2px;
  }

  .trustpilot {
    padding-left: 0;
    padding-right: 0;
  }

  .product {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .mask.pad-side-by-side {
    padding-left: 2px;
    padding-right: 2px;
  }

  .card-top {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .review-slider {
    padding-bottom: 60px;
  }

  .review-slider.hid {
    display: block;
  }

  .review-img {
    width: 100%;
    height: auto;
  }

  .review-img.ratio-auto {
    height: 350px;
  }

  .prod-info {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .payment {
    height: 24px;
  }

  .payment.h40 {
    height: 32px;
  }

  .quote-text-block {
    border-left: 1px solid #e5e7eb;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 16px;
  }

  .quote {
    flex-flow: column;
  }

  .quote-ttile-block {
    border-top-right-radius: 16px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    width: 100%;
  }

  .listicle-image-wrapper.h-flex-20 {
    padding-left: 24px;
  }

  ._w-50, .offer-block {
    flex-flow: column;
  }

  .grid-4col {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: none;
  }

  .grid-4col.table {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    border-style: none;
    border-radius: 16px;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    width: 720px;
    display: grid;
  }

  .table-block.mobile-vertical {
    background-color: #f0ebe8;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-top: 2%;
    padding-bottom: 2%;
    display: flex;
    overflow: visible;
  }

  .table-block.mobile-vertical.no-cl {
    background-color: #f0ebe800;
    border-width: 0 1px 1px;
    flex-flow: row;
    padding-top: 2%;
    padding-bottom: 2%;
  }

  .table-block.mobile-vertical.no-cl.bottom-side-rd {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
  }

  .table-block.mobile-vertical.light-bg {
    background-color: #f0ebe866;
  }

  .table-block.mobile-vertical.top-side-rd {
    grid-column-gap: 22px;
    grid-row-gap: 22px;
    border-top-right-radius: 12px;
    flex-flow: row;
    padding-top: 4%;
    padding-bottom: 4%;
  }

  .paragraph-33.small, .hibben-mobile {
    display: none;
  }

  .radio-img._w-50 {
    width: 70px;
    min-height: 60px;
  }

  .review-card, .testimonial-offerpage-wrap-copy {
    flex-flow: column;
  }

  .main-review-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .grid-2col.bm-16 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    display: flex;
  }

  .w40 {
    width: 100%;
  }

  .image-wrap-grow {
    flex: 0 auto;
  }

  .reviews.hid-mobile {
    display: none;
  }

  .table-wrap {
    border: .5px solid #3925141a;
    border-radius: 16px;
    width: 100%;
    overflow: auto;
  }

  .h-flex {
    flex-flow: column;
  }

  .h-flex.gap-10 {
    flex-flow: row;
  }

  .list-2 {
    padding-left: 20px;
  }

  .h2-2 {
    font-size: 28px;
  }

  .flex-horizontal-2 {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

@media screen and (max-width: 479px) {
  body {
    font-size: 17px;
  }

  h1 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 26px;
    font-weight: 600;
  }

  h2 {
    font-size: 22px;
    line-height: 1.2;
  }

  blockquote {
    padding: 12px;
    font-size: 16px;
    line-height: 1.4;
  }

  .button {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .article-block {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .article-block.hflex.gap-14.grid {
    grid-template-columns: 1fr;
  }

  .article-block.gap-64 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
  }

  .h2 {
    font-size: 24px;
  }

  .container {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .container.bp-20.mobile-bp-0 {
    padding-bottom: 0;
  }

  .container.h100 {
    justify-content: space-between;
    align-items: center;
    padding-bottom: 64px;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
    overflow: hidden;
  }

  .section.footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  .section.hero {
    background-position: 74%;
  }

  .footer-links {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .date {
    font-size: 14px;
  }

  .floating-cta {
    z-index: 9999;
    flex-flow: column;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    padding: 16px;
    display: flex;
    position: fixed;
    inset: auto 0% 0%;
  }

  .author-wrap {
    grid-row-gap: 0px;
    font-size: 14px;
  }

  .author-wrap.gap16 {
    flex-flow: row;
  }

  .heading {
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 13px;
  }

  .logo {
    height: 56px;
  }

  .content {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .content.lp-32 {
    padding-right: 16px;
  }

  .content.h-flex {
    grid-column-gap: 33px;
    grid-row-gap: 33px;
    flex-flow: column;
  }

  .link-white {
    font-size: 14px;
  }

  .img.br-20 {
    border-radius: 12px;
  }

  .date-text {
    font-size: 14px;
  }

  .button-wrap-hero {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    align-items: stretch;
  }

  .paragraph-18 {
    font-size: 17px;
  }

  .countdown-label {
    font-size: 12px;
  }

  .text-wrap.prod-price {
    text-align: right;
    width: 100%;
  }

  .text-wrap.fixed-width {
    width: 132px;
    min-width: 132px;
    max-width: 132px;
  }

  .text-wrap.left-border.p24 {
    width: 100%;
    padding: 12px;
  }

  .text-wrap.padding-16px.top-border-gray {
    padding: 16px 0 0;
  }

  .text-wrap.padding-16px.top-border-gray.white-bg {
    padding-bottom: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .countdown-box {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    padding: 8px;
  }

  .flex-vertical.gap-20 {
    padding: 12px;
  }

  .countdown-wrapper {
    margin-top: 4px;
  }

  .countdown-text {
    font-size: 15px;
  }

  .paragraph-14 {
    font-size: 12px;
    font-weight: 400;
  }

  .paragraph-14.light.big {
    font-size: 14px;
  }

  .countdown-number {
    font-size: 18px;
  }

  .discount-timer {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .flex-horizontal {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    display: flex;
  }

  .flex-horizontal.gap-16px {
    grid-column-gap: 14px;
    grid-row-gap: 14px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .flex-horizontal.gap-16px.align-center {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .flex-horizontal.gap-16px.align-center.width-80 {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .flex-horizontal.space-between {
    flex-flow: row;
    display: flex;
  }

  .flex-horizontal.align-top-right.gap-16px {
    flex-flow: column;
  }

  .flex-horizontal.gap-4.mob-ver {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .image-wrap-100-100px {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    height: 80px;
    min-height: 80px;
    max-height: 80px;
  }

  .image-wrap-100-100px.h-64px {
    min-width: 64px;
    max-width: 64px;
    height: 64px;
    min-height: 64px;
    max-height: 64px;
  }

  .image-wrap-100-100px.h-120 {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    height: 120px;
    min-height: 120px;
    max-height: 120px;
  }

  .image-3.h-64px {
    height: 64px;
    min-height: 64px;
    max-height: 64px;
  }

  .image-3.h-120 {
    width: 120px;
    min-width: 120px;
    max-width: 120px;
    height: 120px;
    min-height: 120px;
    max-height: 120px;
  }

  .quality-block {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    padding: 12px;
  }

  .paragraph-24 {
    font-size: 20px;
  }

  .paragraph-24.big {
    font-size: 32px;
  }

  .paragraph-16 {
    font-size: 17px;
  }

  .paragraph-16.op64.review {
    font-size: 15px;
  }

  .right-arrow {
    right: 0;
  }

  .arrow.v2-mobile {
    background-color: #0000;
    border-style: none;
    height: 40px;
  }

  .slide {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
  }

  .slider-badge {
    text-align: center;
    font-size: 14px;
  }

  .slider {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    min-height: auto;
    max-height: none;
  }

  .left-arrow {
    left: 0;
  }

  .logo-image {
    width: 100%;
  }

  .article-image-wrapper {
    height: auto;
  }

  .paragraph-32 {
    word-break: normal;
    font-size: 22px;
  }

  .image {
    object-fit: cover;
  }

  .image.h48px {
    width: auto;
    height: 48px;
  }

  .image.h32px {
    height: 20px;
  }

  .color-block {
    flex-flow: column;
    padding: 12px;
    font-size: 16px;
  }

  .color-block.small-padding.no-stroke {
    flex-flow: row;
    padding-right: 12px;
  }

  .color-block.no-stroke {
    padding-right: 0;
  }

  .article-image-with-text.color-bg {
    text-align: center;
  }

  .article-image-with-text.color-bg.card-layout.v2 {
    inset: 26% 3% 0% auto;
  }

  ._2-columns {
    flex-flow: column;
    display: flex;
  }

  .image-wrap.with-rd {
    border-top-right-radius: 12px;
    border-bottom-left-radius: 0;
    width: 100%;
    height: 200px;
  }

  .image-logos-wrap {
    height: auto;
  }

  ._3-columns.top-margin-10px.rt-30-sale:where(.w-variant-47bc2e64-25b6-7486-1ffd-536903bdf247), ._3-columns.top-margin-10px.rt-20-sale {
    grid-template-columns: 1fr;
  }

  .color-button {
    font-size: 18px;
    font-weight: 600;
  }

  .image-4 {
    border-radius: 12px;
  }

  .testimonial-offerpage-wrap {
    flex-flow: column;
  }

  .testimonial-content {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .slide-32 {
    width: 100%;
    height: auto;
    margin-right: 4%;
  }

  .mask {
    overflow: visible;
  }

  .article-testimonial-heading.with-avatar {
    flex-flow: row;
    width: 100%;
  }

  .card-top {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    padding: 12px;
  }

  .review-img {
    width: 100%;
  }

  .review-img.ratio-auto {
    height: 400px;
  }

  .prod-info.w50 {
    width: 80%;
  }

  .number.color-bg {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
  }

  .text-size-24px.poppins-medium {
    font-size: 18px;
  }

  .quote-ttile-block {
    grid-column-gap: 12px;
    grid-row-gap: 12px;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .listicle-image-wrapper.h-flex-20 {
    padding-left: 16px;
  }

  .offer-block:where(.w-variant-e681b5b7-2459-9e61-13bf-6415c0dd09e4) {
    flex-flow: column;
  }

  .grid-4col {
    display: none;
  }

  .grid-4col.table {
    width: 700px;
  }

  .table-block.light-block.center {
    justify-content: center;
    align-items: center;
  }

  .light-cl.small {
    font-size: 12px;
  }

  .paragraph-33.small {
    display: none;
  }

  .small {
    font-size: 14px;
  }

  .image-tab-content {
    justify-content: center;
    align-items: center;
  }

  .color-block-2 {
    padding: 12px;
    font-size: 16px;
  }

  .color-block-2.p12.small {
    width: 80%;
  }

  .button-2 {
    text-align: center;
    font-size: 16px;
  }

  .text-14px {
    font-weight: 400;
  }

  .text-20px {
    font-size: 18px;
  }

  .text-18px {
    text-overflow: clip;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
  }

  .text-24px {
    font-size: 20px;
  }

  .image-card {
    object-fit: cover;
    object-position: 50% 50%;
    width: 100%;
    height: 100%;
  }

  .card-image-wrapper {
    height: auto;
  }

  .cta-price {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
  }

  .review-card, .testimonial-offerpage-wrap-copy {
    flex-flow: column;
  }

  .main-review-wrap {
    grid-template-columns: 1fr;
  }

  .reviews {
    flex-flow: column;
    display: flex;
  }

  .info-block3 {
    flex-flow: column;
    padding: 12px;
  }

  .avatar-wrapper-2.avatar-size-large2 {
    width: 80px;
    min-width: 80px;
    max-width: 80px;
    height: 80px;
    min-height: 80px;
    max-height: 80px;
  }

  .text-28px {
    white-space: normal;
    word-break: normal;
    font-size: 24px;
  }

  .text-18px-2 {
    text-overflow: clip;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    font-size: 15px;
  }

  .compare-item_top {
    grid-column-gap: 29px;
    grid-row-gap: 29px;
    flex-flow: column;
    display: flex;
  }

  .compare-item_title {
    text-align: center;
    align-self: auto;
  }

  .compare-item_boxes {
    grid-column-gap: 13px;
    grid-row-gap: 13px;
    flex-flow: column;
  }

  .list-2 {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-flow: column;
    padding-left: 20px;
    display: flex;
  }

  .compare-item_score {
    align-self: center;
  }

  .h2-2 {
    font-size: 24px;
  }

  .text-block-7 {
    display: inline-block;
  }

  .compare-item_badge {
    align-self: center;
  }

  .compare-item {
    flex-flow: column;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .text-20.full {
    text-align: center;
  }

  .flex-horizontal-2 {
    flex-flow: row;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .flex-horizontal-2.stars.auto.gap-4 {
    justify-content: center;
    align-items: flex-start;
  }

  .flex-horizontal-2.space-between {
    flex-flow: row;
    display: flex;
  }

  .flex-horizontal-2.space-between._w-full.stroke {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }
}

#w-node-ac583c21-93b7-8a50-a78d-e65c427bac6f-427bac6d, #w-node-ac583c21-93b7-8a50-a78d-e65c427bac93-427bac6d, #w-node-ac583c21-93b7-8a50-a78d-e65c427bacc1-427bac6d, #w-node-ac583c21-93b7-8a50-a78d-e65c427bace6-427bac6d, #w-node-ac583c21-93b7-8a50-a78d-e65c427bad0a-427bac6d, #w-node-ac583c21-93b7-8a50-a78d-e65c427bad38-427bac6d, #w-node-_361dc6cc-1913-1856-fdf4-219df1719413-427bac6d, #w-node-_361dc6cc-1913-1856-fdf4-219df1719437-427bac6d, #w-node-_361dc6cc-1913-1856-fdf4-219df1719465-427bac6d, #w-node-_790a5723-5290-62ec-f09f-c65fa3971878-427bac6d, #w-node-_790a5723-5290-62ec-f09f-c65fa397189c-427bac6d, #w-node-_790a5723-5290-62ec-f09f-c65fa39718ca-427bac6d, #w-node-_0b416eb8-6a36-b90d-0bb9-930b57320873-427bac6d, #w-node-_0b416eb8-6a36-b90d-0bb9-930b5732088b-427bac6d, #w-node-_0b416eb8-6a36-b90d-0bb9-930b573208aa-427bac6d, #w-node-_3254b31a-39c6-64e5-cf31-e992ced4721f-682814e1, #w-node-_3254b31a-39c6-64e5-cf31-e992ced47229-682814e1, #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa40396-682814e1, #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa403b7-682814e1, #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa403e3-682814e1, #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa40406-682814e1, #w-node-_3306ef9f-88e5-ade1-0f08-1b292bcc06ef-c5aa53dc, #w-node-_3306ef9f-88e5-ade1-0f08-1b292bcc0710-c5aa53dc, #w-node-_3306ef9f-88e5-ade1-0f08-1b292bcc073b-c5aa53dc, #w-node-_3254b31a-39c6-64e5-cf31-e992ced4721f-dfa3b97f, #w-node-_3254b31a-39c6-64e5-cf31-e992ced47229-dfa3b97f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_528a271b-81e9-e2a9-73b2-2918b3853666-dfa3b97f, #w-node-_528a271b-81e9-e2a9-73b2-2918b3853669-dfa3b97f, #w-node-_528a271b-81e9-e2a9-73b2-2918b385366d-dfa3b97f {
  place-self: center;
}

#w-node-a7b30fba-5350-1fae-0f1b-ecb73fa40396-dfa3b97f, #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa403b7-dfa3b97f, #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa403e3-dfa3b97f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-efb450eb-46ae-8987-717c-0579ddb5f0e6-dfa3b97f {
  grid-area: 1 / 2 / 2 / 2;
  place-self: auto;
}

#w-node-_9b13f9af-adb4-6338-c7f3-1470293c3f3d-dfa3b97f, #w-node-_9b13f9af-adb4-6338-c7f3-1470293c3f5e-dfa3b97f, #w-node-_9b13f9af-adb4-6338-c7f3-1470293c3f89-dfa3b97f, #w-node-_467d1409-e574-1b39-2d78-5cd28e9249c8-0c63e1bb, #w-node-_467d1409-e574-1b39-2d78-5cd28e9249d2-0c63e1bb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a7cfe133-db13-b923-4fb8-2b50415300da-0c63e1bb, #w-node-a7cfe133-db13-b923-4fb8-2b50415300dd-0c63e1bb, #w-node-a7cfe133-db13-b923-4fb8-2b50415300e0-0c63e1bb {
  place-self: center;
}

#w-node-a7cfe133-db13-b923-4fb8-2b50415301f9-0c63e1bb, #w-node-a7cfe133-db13-b923-4fb8-2b504153021a-0c63e1bb, #w-node-a7cfe133-db13-b923-4fb8-2b5041530245-0c63e1bb, #w-node-_467d1409-e574-1b39-2d78-5cd28e9249c8-77d03e5c, #w-node-_467d1409-e574-1b39-2d78-5cd28e9249d2-77d03e5c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a7cfe133-db13-b923-4fb8-2b50415300da-77d03e5c, #w-node-a7cfe133-db13-b923-4fb8-2b50415300dd-77d03e5c, #w-node-a7cfe133-db13-b923-4fb8-2b50415300e0-77d03e5c {
  place-self: center;
}

#w-node-_5c8c2403-392b-be33-18d8-4072ae3faa77-1ae635e5, #w-node-_5c8c2403-392b-be33-18d8-4072ae3faa81-1ae635e5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_8a20dd92-ef1f-f259-f821-9af461a73f4d-1ae635e5 {
  align-self: stretch;
}

#w-node-fc9fb888-2086-4f38-a1e6-5c2a729b2db6-1ae635e5, #w-node-fc9fb888-2086-4f38-a1e6-5c2a729b2dda-1ae635e5, #w-node-fc9fb888-2086-4f38-a1e6-5c2a729b2e08-1ae635e5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_54b090ac-25bf-6bf0-6a43-1c0cc9e3ad7d-1ae635e5, #w-node-_54b090ac-25bf-6bf0-6a43-1c0cc9e3ad80-1ae635e5, #w-node-_54b090ac-25bf-6bf0-6a43-1c0cc9e3ad83-1ae635e5 {
  place-self: center;
}

#w-node-f179836b-0086-b49f-7905-46f2ba822297-1ae635e5 {
  align-self: stretch;
}

#w-node-_467d1409-e574-1b39-2d78-5cd28e9249c8-99238d7f, #w-node-_467d1409-e574-1b39-2d78-5cd28e9249d2-99238d7f {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a7cfe133-db13-b923-4fb8-2b50415300da-99238d7f, #w-node-a7cfe133-db13-b923-4fb8-2b50415300dd-99238d7f, #w-node-a7cfe133-db13-b923-4fb8-2b50415300e0-99238d7f {
  place-self: center;
}

#w-node-_23f786be-5197-ab41-dbce-1f8d4505c4d5-1ddf9dca, #w-node-c66264d8-1e37-cf8c-d233-9180480516bb-1ddf9dca, #w-node-ce93fff0-f4e9-248a-e03c-d2769a378095-1ddf9dca, #w-node-_44c5485d-cbf1-c225-5be8-55861b851c58-1ddf9dca, #w-node-_7d25c0c2-d461-5aed-468c-1e83c5ee52b7-1ddf9dca {
  align-self: auto;
}

#w-node-_3254b31a-39c6-64e5-cf31-e992ced4721f-784c30ae, #w-node-_3254b31a-39c6-64e5-cf31-e992ced47229-784c30ae, #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b7141-784c30ae, #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b7165-784c30ae, #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b7193-784c30ae, #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b71b8-784c30ae, #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b71dc-784c30ae, #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b720a-784c30ae, #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b722f-784c30ae, #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b7253-784c30ae, #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b7281-784c30ae, #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b72a6-784c30ae, #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b72ca-784c30ae, #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b72f8-784c30ae, #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b731d-784c30ae, #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b7335-784c30ae, #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b7354-784c30ae, #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa40396-784c30ae, #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa403b7-784c30ae, #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa403e3-784c30ae, #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa40406-784c30ae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-f40df32c-32d9-3958-1e15-1318265ab347-dfa3b97f, #w-node-a7cfe133-db13-b923-4fb8-2b5041530077-0c63e1bb, #w-node-a7cfe133-db13-b923-4fb8-2b5041530077-77d03e5c, #w-node-_54b090ac-25bf-6bf0-6a43-1c0cc9e3ad1a-1ae635e5, #w-node-a7cfe133-db13-b923-4fb8-2b5041530077-99238d7f {
    align-self: start;
  }
}

@media screen and (max-width: 767px) {
  #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa40396-682814e1 {
    order: 9999;
  }

  #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa403b7-682814e1 {
    order: -9999;
  }

  #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa403e3-682814e1 {
    order: 2;
  }

  #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa40396-dfa3b97f {
    order: 9999;
  }

  #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa403b7-dfa3b97f {
    order: -9999;
  }

  #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa403e3-dfa3b97f {
    order: 2;
  }

  #w-node-_9b13f9af-adb4-6338-c7f3-1470293c3f3d-dfa3b97f {
    order: 9999;
  }

  #w-node-_9b13f9af-adb4-6338-c7f3-1470293c3f5e-dfa3b97f {
    order: -9999;
  }

  #w-node-_9b13f9af-adb4-6338-c7f3-1470293c3f89-dfa3b97f {
    order: 2;
  }

  #w-node-a7cfe133-db13-b923-4fb8-2b50415301f9-0c63e1bb {
    order: 9999;
  }

  #w-node-a7cfe133-db13-b923-4fb8-2b504153021a-0c63e1bb {
    order: -9999;
  }

  #w-node-a7cfe133-db13-b923-4fb8-2b5041530245-0c63e1bb {
    order: 2;
  }

  #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa40396-784c30ae {
    order: 9999;
  }

  #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa403b7-784c30ae {
    order: -9999;
  }

  #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa403e3-784c30ae {
    order: 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ac583c21-93b7-8a50-a78d-e65c427bac6f-427bac6d {
    order: 9999;
  }

  #w-node-ac583c21-93b7-8a50-a78d-e65c427bac93-427bac6d {
    order: -9999;
  }

  #w-node-ac583c21-93b7-8a50-a78d-e65c427bacc1-427bac6d {
    order: 1;
  }

  #w-node-ac583c21-93b7-8a50-a78d-e65c427bace6-427bac6d {
    order: 9999;
  }

  #w-node-ac583c21-93b7-8a50-a78d-e65c427bad0a-427bac6d {
    order: -9999;
  }

  #w-node-ac583c21-93b7-8a50-a78d-e65c427bad38-427bac6d {
    order: 1;
  }

  #w-node-_361dc6cc-1913-1856-fdf4-219df1719413-427bac6d {
    order: 9999;
  }

  #w-node-_361dc6cc-1913-1856-fdf4-219df1719437-427bac6d {
    order: -9999;
  }

  #w-node-_790a5723-5290-62ec-f09f-c65fa3971878-427bac6d {
    order: 9999;
  }

  #w-node-_790a5723-5290-62ec-f09f-c65fa397189c-427bac6d {
    order: -9999;
  }

  #w-node-_0b416eb8-6a36-b90d-0bb9-930b57320873-427bac6d {
    order: 9999;
  }

  #w-node-_0b416eb8-6a36-b90d-0bb9-930b5732088b-427bac6d {
    order: -9999;
  }

  #w-node-_0b416eb8-6a36-b90d-0bb9-930b573208aa-427bac6d {
    order: 1;
  }

  #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa40410-682814e1 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-fc9fb888-2086-4f38-a1e6-5c2a729b2db6-1ae635e5 {
    order: 9999;
  }

  #w-node-fc9fb888-2086-4f38-a1e6-5c2a729b2dda-1ae635e5 {
    order: -9999;
  }

  #w-node-fc9fb888-2086-4f38-a1e6-5c2a729b2e08-1ae635e5 {
    order: 1;
  }

  #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b7141-784c30ae {
    order: 9999;
  }

  #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b7165-784c30ae {
    order: -9999;
  }

  #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b7193-784c30ae {
    order: 1;
  }

  #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b71b8-784c30ae {
    order: 9999;
  }

  #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b71dc-784c30ae {
    order: -9999;
  }

  #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b720a-784c30ae {
    order: 1;
  }

  #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b722f-784c30ae {
    order: 9999;
  }

  #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b7253-784c30ae {
    order: -9999;
  }

  #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b72a6-784c30ae {
    order: 9999;
  }

  #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b72ca-784c30ae {
    order: -9999;
  }

  #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b731d-784c30ae {
    order: 9999;
  }

  #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b7335-784c30ae {
    order: -9999;
  }

  #w-node-_6c04f6c2-8e92-35a9-d7f9-7788ce3b7354-784c30ae {
    order: 1;
  }

  #w-node-a7b30fba-5350-1fae-0f1b-ecb73fa40410-784c30ae {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


