/** Shopify CDN: Minification failed

Line 203:51 Unexpected "{"

**/
/* Variables */
:root {
  /* Core typography */
  --ufl-heading-family: var(--font-heading-family);
  --ufl-heading-weight: var(--font-heading-weight);
  --ufl-heading-text-transform: var(--font-heading-transform);
  --ufl-heading-scale-size: 1;
  --ufl-heading-scale-height: 1;
  --ufl-heading-scale-spacing: 1;

  --ufl-body-family: var(--font-body-family);
  --ufl-body-weight: var(--font-body-weight);
  --ufl-body-scale-size: .925;
  --ufl-body-scale-height: 1.5;
  --ufl-body-scale-spacing: 1;

  --ufl-btn-family: var(--font-button-family);
  --ufl-btn-weight: var(--font-button-weight);
  --ufl-btn-text-transform: var(--buttons-transform);
  --ufl-btn-scale-size: 1;
  --ufl-btn-scale-height: 1;
  --ufl-btn-scale-spacing: 1;

  /* Color schemes */
  --ufl-color-main-text: #121212;
  --ufl-color-main-bg: #ffffff;
  --ufl-color-main-btn-text: #ffffff;
  --ufl-color-main-btn-bg: #FF842B;

  --ufl-color-inverse-text: #ffffff;
  --ufl-color-inverse-bg: #002B45;
  --ufl-color-inverse-btn-text: #ffffff;
  --ufl-color-inverse-btn-bg: #FF842B;

  --ufl-color-soft-text: #121212;
  --ufl-color-soft-bg: #F4F2EF;
  --ufl-color-soft-btn-text: #ffffff;
  --ufl-color-soft-btn-bg: #FF842B;

  /* Spacing */
  --ufl-pad-section-y: 30px;
  --ufl-pad-section-x: 20px;
  --ufl-max-w: 1400px;

  --ufl-element-my: 16px;
  
  /* Border Radius */
  --ufl-rad-btn: 50px;
  --ufl-rad-sm: 8px;
  --ufl-rad-md: 16px;
  --ufl-rad-lg: 24px;

  /* Shadow & Motion */
  --ufl-shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --ufl-motion-duration: 250ms;
}
/* Desktop Scoped Variables */
@media (min-width: 768px) {
  :root {
    /* Core typography */
    --ufl-heading-scale-size: 1.25;
    --ufl-body-scale-size: 1.05;
    --ufl-btn-scale-size: 1.1;

    /* Spacing */
    --ufl-pad-section-x: 50px;
  }
}
/* Fonts - do we want to set font type margins here? */
.ufl-section h1, .ufl-section h2, .ufl-section h3, .ufl-section h4, .ufl-section h5, .ufl-section h6,
.ufl-h1, .ufl-h2, .ufl-h3, .ufl-h4, .ufl-h5, .ufl-h6, .ufl-heading {
  font-family: var(--ufl-heading-family);
  font-weight: var(--ufl-heading-weight);
  text-transform: var(--ufl-heading-text-transform);
  line-height: calc(1 * var(--ufl-heading-scale-height));
}
.ufl-h1 {
  font-size: calc(42px * var(--ufl-heading-scale-size));
  letter-spacing: calc(-0.025em * var(--ufl-heading-scale-spacing));
}
.ufl-h2 {
  font-size: calc(32px * var(--ufl-heading-scale-size));
  letter-spacing: calc(-0.02em * var(--ufl-heading-scale-spacing));
}
.ufl-h3 {
  font-size: calc(28px * var(--ufl-heading-scale-size));
  letter-spacing: calc(-0.015em * var(--ufl-heading-scale-spacing));
}
.ufl-h4 {
  font-size: calc(24px * var(--ufl-heading-scale-size));
  letter-spacing: calc(-0.01em * var(--ufl-heading-scale-spacing));
}
.ufl-h5 {
  font-size: calc(20px * var(--ufl-heading-scale-size));
  letter-spacing: calc(-0.005em * var(--ufl-heading-scale-spacing));
}
.ufl-h6 {
  font-size: calc(18px * var(--ufl-heading-scale-size));
  letter-spacing: calc(0em * var(--ufl-heading-scale-spacing));
}
.ufl-section body, .ufl-section p, .ufl-section blockquote,
.ufl-body {
  font-family: var(--ufl-body-family);
  font-weight: var(--ufl-body-weight);
  text-transform: var(--ufl-body-text-transform);
  line-height: calc(1 * var(--ufl-body-scale-height));
}
.ufl-body {
  font-size: calc(16px * var(--ufl-body-scale-size));
  letter-spacing: calc(0em * var(--ufl-body-scale-spacing));
}
.ufl-body-sm {
  font-size: calc(14px * var(--ufl-body-scale-size));
  letter-spacing: calc(-0.005em * var(--ufl-body-scale-spacing));
}
.ufl-body-lg {
  font-size: calc(18px * var(--ufl-body-scale-size));
  letter-spacing: calc(0.005em * var(--ufl-body-scale-spacing));
}
.ufl-btn {
  font-family: var(--ufl-btn-family);
  font-weight: var(--ufl-btn-weight);
  text-transform: var(--ufl-btn-text-transform);
  line-height: calc(1 * var(--ufl-btn-scale-height));
  font-size: calc(18px * var(--ufl-btn-scale-size));
}
.ufl-btn-scale {
  font-size: calc(14px * var(--ufl-btn-scale-size));
  letter-spacing: calc(0.025em * var(--ufl-btn-scale-spacing));
}
.ufl-btn-text-sm {
  font-size: calc(12px * var(--ufl-btn-scale-size));
  letter-spacing: calc(0.015em * var(--ufl-btn-scale-spacing));
}
.ufl-btn-text-lg {
  font-size: calc(16px * var(--ufl-btn-scale-size));
  letter-spacing: calc(0.03em * var(--ufl-btn-scale-spacing));
}
/* Color Schemes */
.ufl-color-main h1, .ufl-color-main h2, .ufl-color-main h3, .ufl-color-main h4, .ufl-color-main h5, .ufl-color-main h6, .ufl-color-main p,
.ufl-color-main {
  background-color: var(--ufl-color-main-bg);
  color: var(--ufl-color-main-text);
}
.ufl-color-inverse h1, .ufl-color-inverse h2, .ufl-color-inverse h3, .ufl-color-inverse h4, .ufl-color-inverse h5, .ufl-color-inverse h6, .ufl-color-inverse p,
.ufl-color-inverse {
  background-color: var(--ufl-color-inverse-bg);
  color: var(--ufl-color-inverse-text);
}
.ufl-color-soft h1, .ufl-color-soft h2, .ufl-color-soft h3, .ufl-color-soft h4, .ufl-color-soft h5, .ufl-color-soft h6, .ufl-color-soft p,
.ufl-color-soft {
  background-color: var(--ufl-color-soft-bg);
  color: var(--ufl-color-soft-text);
}
.ufl-color-main svg,
.ufl-color-inverse svg,
.ufl-color-secondary svg,
.ufl-color-main svg path,
.ufl-color-inverse svg path,
.ufl-color-secondary svg path {
  color: inherit;
  fill: currentColor;
}
.ufl-color-main a,
button.ufl-color-main, a.ufl-color-main,
.ufl-color-main button {
  background-color: var(--ufl-color-main-btn-bg);
  color: var(--ufl-color-main-btn-text);
}
.ufl-color-inverse a,
button.ufl-color-inverse, a.ufl-color-inverse,
.ufl-color-inverse button {
  background-color: var(--ufl-color-inverse-btn-bg);
  color: var(--ufl-color-inverse-btn-text);
}
.ufl-color-soft a,
button.ufl-color-soft, a.ufl-color-soft,
.ufl-color-soft button {
  background-color: var(--ufl-color-soft-btn-bg);
  color: var(--ufl-color-soft-btn-text);
}
/* Utils */
html {
  scroll-behavior: smooth;
}
a:hover, button:hover {
  cursor: pointer;
}
/* Core Structure */
.ufl-section * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  line-height: 1;
}
.ufl-section p, .ufl-section a, .ufl-section button,
.ufl-section h1, .ufl-section h2, .ufl-section h3,
.ufl-section h4, .ufl-section h5, .ufl-section h6, {
  line-height: 1;
}
.ufl-pad {
  padding: var(--ufl-pad-section-y)  var(--ufl-pad-section-x);
}
.ufl-wrap {
  max-width:var(--ufl-max-w);
  margin:auto;
}
.ufl-grid {
  display: grid;
  gap: var(--ufl-gap, 0px);
  grid-template-columns: repeat(var(--ufl-cols, 1), 1fr);
}
.ufl-grid li {
  list-style: none;
}
.ufl-flex {
  display:flex;
}
.ufl-item {}
.ufl-component {}
@media (max-width: 900px) {
  .ufl-dt {
    display:none;
  }
}
/* tablet - for grid/flex items and slider adjustments only */
@media (min-width: 767px) {
  .ufl-grid {
    --ufl-cols: var(--ufl-cols-tb, var(--ufl-cols));
  }
}
/* desktop/tablet */
@media (min-width: 901px) {
  .ufl-mob {
    display:none!important;
  }
  .ufl-grid {
    --ufl-cols: var(--ufl-cols-dt, var(--ufl-cols));
  }
}
/* Common Commands */
.ufl-center {
  text-align:center;
}
.ufl-my {
  margin-top: var(--ufl-element-my);
  margin-bottom: var(--ufl-element-my);
}
.ufl-mt {
  margin-top: var(--ufl-element-my);
} 
.ufl-mb {
  margin-bottom: var(--ufl-element-my);
}
.ufl-rad-sm {
  border-radius: var(--ufl-rad-sm);
}
.ufl-rad-md {
  border-radius: var(--ufl-rad-md);
}
.ufl-rad-lg {
  border-radius: var(--ufl-rad-lg);
}
/* Common Elements */
.ufl-icn {}
.ufl-img {
  overflow:hidden;
}
.ufl-img img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.ufl-btn {
  border-radius: var(--ufl-rad-btn);
  padding: 16px clamp(24px, -12px + 4.7619vw, 56px);
  margin-top: clamp(20px, -3px + 3.5714vw, 48px);
  letter-spacing: .5px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.ufl-btn-subtext {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 10px;
  letter-spacing: .2px;
}
.ufl-btn .ufl-icn {
  width:11px;
  height:11px;
}
.ufl-review-stars {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: var(--ufl-element-my);
  width:100%;
}
.ufl-callout {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: var(--ufl-element-my);
  font-family: var(--ufl-heading-family);
  font-weight: var(--ufl-heading-weight);
  text-transform: var(--ufl-heading-text-transform);
}
.ufl-callout p {
  margin:0;
  font-size: calc(12px * var(--ufl-heading-scale-size));
  font-family: var(--ufl-heading-family);
  font-weight: var(--ufl-heading-weight);
  text-transform: var(--ufl-heading-text-transform);
}
@media (min-width: 901px) {
  .ufl-review-stars {
    width: fit-content;
  }
}
/* Sections ------------------------------------------*/
/* Hero Promo */
.ufl-hero-promo {
  text-align:center;
}
.ufl-hero-promo .ufl-img {
  aspect-ratio: 2048 / 1786;
}
.ufl-hero-promo-dt .ufl-stats-grid li {
  border-right: 1px solid currentcolor;
}
.ufl-hero-promo-dt .ufl-stats-grid li:last-child {
  border-right:none;
}
.ufl-hero-promo-dt .ufl-stats-grid h2 {
  font-size:22px;
  margin-bottom:0;
}
.ufl-hero-promo-dt .ufl-stats-grid p {
  font-size:34px;
}
.ufl-hero-promo-dt .ufl-stats-grid .ufl-icn svg {
  width:32px;
  height:32px;
}
@media (min-width: 901px) {
  .ufl-hero-promo {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
    text-align:left;
    align-items: center;
    gap: var(--ufl-pad-section-y);
  }
  .ufl-stats-grid li {
    gap: 16px;
  }
}
/* Reasons Why */
.ufl-reasons-why h2 {
  margin-bottom: calc(var(--ufl-element-my) * 2);
}
.ufl-reasons-why .ufl-img.ufl-dt img {
  height:100%;
}
@media (min-width: 901px) {
  .ufl-reasons-why {
    display:grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Comparison Table */
.ufl-comp-table {
  border-radius:20px;
  box-shadow:0 26px 18px 11px #e3e8ec73;
  border-spacing:0;
  margin: 65px auto 50px;
  width: 100%;
  max-width: 850px;
  font-size:12px;
}
.ufl-comp-table th img {
  display: block;
  height: auto;
  width: 100%;
  margin: auto;
  max-width: 100px;
  position: relative;
  z-index: 1;
}
.ufl-comp-table tbody tr {
  position:relative;
}
.ufl-comp-table tbody tr:after {
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:.1px;
  background:currentcolor;
  opacity:.25;
}
.ufl-comp-table th,
.ufl-comp-table td {
  width:23%;
  padding: 10px;
  text-align: center;
  font-weight: 600;
  position: relative;
}
.ufl-comp-table .ufl-icn {
  height: -webkit-fill-available;
  display: flex;
  align-items: center;
  justify-content:center;
}
.ufl-comp-table .ufl-icn svg {
  width:32px;
  height:32px;
}
.ufl-comp-table th:first-child,
.ufl-comp-table td:first-child {
  width:50%;
}
.ufl-comp-table th:nth-child(2):after,
.ufl-comp-table tbody tr:last-of-type td:nth-child(2):after {
  content:"";
  position:absolute;
  left:0;
  width:100%;
  background: inherit;
}
.ufl-comp-table th:nth-child(2):after {
  height: 30px;
  top: -25px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}
.ufl-comp-table tbody tr:last-of-type td:nth-child(2):after {
  height: 35px;
  bottom: -35px;
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
}
@media (min-width: 901px) {
  .ufl-comp-table {
    font-size:18px;
  }
  .ufl-comp-table th:first-child,
  .ufl-comp-table td:first-child {
    width:60%;
  }
  .ufl-comp-table th,
  .ufl-comp-table td {
    width:20%;
    padding: 15px 10px;
  }
}
/* Product Card Multi */
/* Components ----------------------------------------*/
/* Stats Grid */
.ufl-stats-grid li {
  padding: 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0;
}
.ufl-stats-grid h2 {
  font-size:16px;
  margin-bottom:8px;
}
.ufl-stats-grid p {
  font-size: clamp(20px, -3px + 3.5714vw, 48px);
  font-family: var(--ufl-heading-family);
  font-weight: var(--ufl-heading-weight);
}
.ufl-stats-grid .ufl-icn {
  height: -webkit-fill-available;
  display: flex;
  align-items: center;
}
.ufl-stats-grid .ufl-icn svg {
  width:24px;
  height:24px;
}
/* Info List */
.ufl-info-list {}
.ufl-info-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.ufl-info-list h3 {
  font-size:20px;
  margin-bottom:8px;
}
.ufl-info-list .ufl-icn {
  height: auto;
  align-self: flex-start;
  flex: 0 0 24px;    
}
.ufl-info-list .ufl-icn svg {
  width:24px;
  height:24px;
}
/* Theme specific */
.ufl-sale-button {
  margin-top:0;
}
/* header */
.ufl-head-land {
  display: flex;
  align-items: center;
  padding: 1rem 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10;
  height:80px;
  background:#fff;
}
.ufl-head-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width:100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
  position: relative;
  max-height: calc(80px - 2rem);
}
.ufl-head-logo {
  display: block;
  height: calc(80px - 2rem);
  width: fit-content;
  min-width:fit-content;
}
.ufl-head-logo img {
  height: 100%;
  width: auto;
}
.ufl-lander-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fill-available;
}
.ufl-head-wrap h3 {
  font-size:22px;
}
.ufl-head-timer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap:3rem;
}
.ufl-countdown {
  background:#002B45;
  color:#fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px 10px 7px;
  border-radius: 9px;
  min-width: 80px;
  height: 100%;
  font-weight: 600;
  font-size: 16px;
}
.ufl-head-land .btn {
  min-width:fit-content;
}
@media (min-width: 768px) {
  .ufl-head-timer h3 {
    margin-left: 2rem;
    padding-left: 2rem;
    border-left: 2px solid;
  }
}
@media (max-width: 767px) {
  .ufl-head-wrap {
    padding:0 8px;
  }
  .ufl-lander-offer {
    flex-direction:column;
    align-items: baseline;
  }
  .ufl-countdown {
    padding:4px 10px 4px;
  }
  .ufl-head-land .btn {
    display:none;
  }
}