@charset "UTF-8";
@font-face {
  font-family: "Futura Now Text";
  src: url("./static/fonts/futura-now/futura-now-text-light-webfont.woff2") format("woff2"), url("./static/fonts/futura-now/futura-now-text-light-webfont.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura Now Text";
  src: url("./static/fonts/futura-now/futura-now-text-rg-webfont.woff2") format("woff2"), url("./static/fonts/futura-now/futura-now-text-rg-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura Now Text";
  src: url("./static/fonts/futura-now/futura-now-text-medium-webfont.woff2") format("woff2"), url("./static/fonts/futura-now/futura-now-text-medium-webfont.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura Now Text";
  src: url("./static/fonts/futura-now/futura-now-text-bd-webfont.woff2") format("woff2"), url("./static/fonts/futura-now/futura-now-text-bd-webfont.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Futura Now Text Condensed";
  src: url("./static/fonts/futura-now/futura-now-text-condensed-webfont.woff2") format("woff2"), url("./static/fonts/futura-now/futura-now-text-condensed-webfont.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Winston PL";
  src: url("./static/fonts/winstonPL/WinstonPL-Regular.woff2") format("woff2"), url("./static/fonts/winstonPL/WinstonPL-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizespeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

:root {
  --fc-accent-color: #1c51a0;
  --fc-accent-color-dark: #153d7a;
  --fc-text-color: #333;
  --fc-text-inverse: #fff;
  --fc-bg-color: #fff;
  --fc-border-color: rgb(0 0 0 / 8%);
  --like-btn-color: #1c51a0;
}

.theme-blue {
  --fc-accent-color: #1c51a0;
  --fc-accent-color-dark: #153d7a;
  --like-btn-color: #1c51a0;
}

.theme-red {
  --fc-accent-color: #c41e3a;
  --fc-accent-color-dark: #9a1830;
  --like-btn-color: #c41e3a;
}

.theme-original-red {
  --fc-accent-color: #DE1111;
  --fc-accent-color-dark: #DE1111;
  --like-btn-color: #DE1111;
}

.theme-silver {
  --fc-accent-color: #6b7280;
  --fc-accent-color-dark: #4b5563;
  --like-btn-color: #6b7280;
}

.theme-gold {
  --fc-accent-color: #b8860b;
  --fc-accent-color-dark: #8b6914;
  --like-btn-color: #b8860b;
}

.theme-green {
  --fc-accent-color: #059669;
  --fc-accent-color-dark: #047857;
  --like-btn-color: #059669;
}

.theme-pink {
  --fc-accent-color: #E9448C;
  --fc-accent-color-dark: #C73A76;
  --like-btn-color: #E9448C;
}

.theme-black-green {
  --fc-accent-color: #00B388;
  --fc-accent-color-dark: #009972;
  --like-btn-color: #00B388;
}

.theme-black-blue {
  --fc-accent-color: #0098DB;
  --fc-accent-color-dark: #007AB8;
  --like-btn-color: #0098DB;
}

.theme-black-gold {
  --fc-accent-color: #DAB162;
  --fc-accent-color-dark: #B8953F;
  --like-btn-color: #DAB162;
}

@keyframes bg-slow-pan-zoom {
  0% {
    transform: scale(1) translate(0, 0);
  }
  25% {
    transform: scale(1.08) translate(-1.5%, -1.5%);
  }
  50% {
    transform: scale(1.12) translate(0, -3%);
  }
  75% {
    transform: scale(1.08) translate(1.5%, -1.5%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes bg-slow-pan-zoom-rtl {
  0% {
    transform: scale(1) translate(0, 0);
  }
  25% {
    transform: scale(1.08) translate(1.5%, -0.75%);
  }
  50% {
    transform: scale(1.12) translate(3%, 0);
  }
  75% {
    transform: scale(1.08) translate(1.5%, 0.75%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes bg-slow-pan-zoom-ltr {
  0% {
    transform: scale(1) translate(0, 0);
  }
  25% {
    transform: scale(1.08) translate(-1.5%, 0.75%);
  }
  50% {
    transform: scale(1.12) translate(-3%, 0);
  }
  75% {
    transform: scale(1.08) translate(-1.5%, -0.75%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes bg-slow-pan-zoom-diagonal {
  0% {
    transform: scale(1) translate(0, 0);
  }
  25% {
    transform: scale(1.08) translate(-1.5%, -1.5%);
  }
  50% {
    transform: scale(1.12) translate(-2%, -2%);
  }
  75% {
    transform: scale(1.08) translate(-0.75%, -0.75%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes bg-slow-pan-zoom-diagonal-reverse {
  0% {
    transform: scale(1) translate(0, 0);
  }
  25% {
    transform: scale(1.08) translate(1.5%, -1.5%);
  }
  50% {
    transform: scale(1.12) translate(2%, -2%);
  }
  75% {
    transform: scale(1.08) translate(0.75%, -0.75%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes bg-slow-pan-zoom-vertical {
  0% {
    transform: scale(1) translate(0, 0);
  }
  25% {
    transform: scale(1.08) translate(0, -2%);
  }
  50% {
    transform: scale(1.12) translate(0, -3.5%);
  }
  75% {
    transform: scale(1.08) translate(0, -1.5%);
  }
  100% {
    transform: scale(1) translate(0, 0);
  }
}
@keyframes text-slide-in {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes text-slide-in-vertical {
  0% {
    opacity: 0;
    transform: rotate(180deg) translateY(-30px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotate(180deg) translateY(0);
  }
}
@keyframes text-slide-in-svg {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes like-pulse {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.3);
  }
  50% {
    transform: scale(0.9);
  }
  75% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes welcome-bg-slide-in {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes welcome-text-slide-in {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  40% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes alert-banner-slide-in {
  0% {
    opacity: 0;
    transform: translateY(-20px);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@keyframes alert-banner-slide-out {
  0% {
    opacity: 1;
    transform: translateY(0);
    max-height: 500px;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-bottom: 0;
  }
}
@keyframes hero-zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes hero-content-slide-down {
  0% {
    opacity: 0;
    transform: translateY(-100vh);
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes toast-slide-in {
  0% {
    opacity: 0;
    transform: translateY(100%) scale(0.95);
  }
  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes toast-slide-out {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
body {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #1e293b;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1e293b;
}

h1 {
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -1.3px;
}
@media (min-width: 769px) {
  h1 {
    font-size: 44px;
    line-height: 52px;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
    line-height: 72px;
  }
}

h2 {
  font-size: 26px;
  line-height: 36px;
  letter-spacing: -1.3px;
}
@media (min-width: 769px) {
  h2 {
    font-size: 32px;
    line-height: 44px;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 44px;
    line-height: 52px;
  }
}

h3 {
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0;
}
@media (min-width: 769px) {
  h3 {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: -1.3px;
  }
}
@media (min-width: 1024px) {
  h3 {
    font-size: 32px;
    line-height: 44px;
  }
}

h4 {
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0;
}
@media (min-width: 769px) {
  h4 {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: -1.3px;
  }
}
@media (min-width: 1024px) {
  h4 {
    font-size: 26px;
    line-height: 36px;
  }
}

h5 {
  font-size: 1.125rem;
  line-height: 24px;
}

h6 {
  font-size: 1rem;
  line-height: 22px;
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

.text-lg {
  font-size: 16px;
  line-height: 22px;
}
@media (min-width: 769px) {
  .text-lg {
    font-size: 18px;
    line-height: 24px;
  }
}
@media (min-width: 1024px) {
  .text-lg {
    font-size: 20px;
    line-height: 32px;
  }
}

.text-md {
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 769px) {
  .text-md {
    font-size: 16px;
    line-height: 22px;
  }
}
@media (min-width: 1024px) {
  .text-md {
    font-size: 18px;
    line-height: 24px;
  }
}

a {
  color: #1c51a0;
  transition: color 150ms ease;
}
a:hover {
  color: #153d7a;
}

strong,
b {
  font-weight: 700;
}

small {
  font-size: 0.875rem;
}

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

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

.flex {
  display: flex;
}

.grid {
  display: grid;
}

@media (min-width: 769px) {
  .d-mobile-only {
    display: none !important;
  }
}

.d-desktop-only {
  display: none !important;
}
@media (min-width: 769px) {
  .d-desktop-only {
    display: revert !important;
  }
}

.d-mobile-none {
  display: none !important;
}
@media (min-width: 769px) {
  .d-mobile-none {
    display: revert !important;
  }
}

@media (min-width: 769px) {
  .d-desktop-none {
    display: none !important;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-sm {
  margin-top: 0.625rem;
}

.mt-md {
  margin-top: 1rem;
}

.mt-lg {
  margin-top: 1.5rem;
}

.mt-xl {
  margin-top: 2.5rem;
}

.mt-2xl {
  margin-top: 3rem;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-sm {
  margin-bottom: 0.625rem;
}

.mb-md {
  margin-bottom: 1rem;
}

.mb-lg {
  margin-bottom: 1.5rem;
}

.mb-xl {
  margin-bottom: 2.5rem;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.order-mobile-1 {
  order: 1;
}
@media (min-width: 1024px) {
  .order-mobile-1 {
    order: initial;
  }
}

.order-mobile-2 {
  order: 2;
}
@media (min-width: 1024px) {
  .order-mobile-2 {
    order: initial;
  }
}

.order-mobile-3 {
  order: 3;
}
@media (min-width: 1024px) {
  .order-mobile-3 {
    order: initial;
  }
}

.order-mobile-4 {
  order: 4;
}
@media (min-width: 1024px) {
  .order-mobile-4 {
    order: initial;
  }
}

.order-mobile-5 {
  order: 5;
}
@media (min-width: 1024px) {
  .order-mobile-5 {
    order: initial;
  }
}

.order-mobile-6 {
  order: 6;
}
@media (min-width: 1024px) {
  .order-mobile-6 {
    order: initial;
  }
}

.order-mobile-7 {
  order: 7;
}
@media (min-width: 1024px) {
  .order-mobile-7 {
    order: initial;
  }
}

.order-mobile-8 {
  order: 8;
}
@media (min-width: 1024px) {
  .order-mobile-8 {
    order: initial;
  }
}

.order-mobile-9 {
  order: 9;
}
@media (min-width: 1024px) {
  .order-mobile-9 {
    order: initial;
  }
}

.order-mobile-10 {
  order: 10;
}
@media (min-width: 1024px) {
  .order-mobile-10 {
    order: initial;
  }
}

.order-mobile-11 {
  order: 11;
}
@media (min-width: 1024px) {
  .order-mobile-11 {
    order: initial;
  }
}

.order-mobile-12 {
  order: 12;
}
@media (min-width: 1024px) {
  .order-mobile-12 {
    order: initial;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .order-tablet-1 {
    order: 1;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .order-tablet-2 {
    order: 2;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .order-tablet-3 {
    order: 3;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .order-tablet-4 {
    order: 4;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .order-tablet-5 {
    order: 5;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .order-tablet-6 {
    order: 6;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .order-tablet-7 {
    order: 7;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .order-tablet-8 {
    order: 8;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .order-tablet-9 {
    order: 9;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .order-tablet-10 {
    order: 10;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .order-tablet-11 {
    order: 11;
  }
}

@media (min-width: 769px) and (max-width: 1023px) {
  .order-tablet-12 {
    order: 12;
  }
}

@media (min-width: 1024px) {
  .order-desktop-1 {
    order: 1;
  }
}

@media (min-width: 1024px) {
  .order-desktop-2 {
    order: 2;
  }
}

@media (min-width: 1024px) {
  .order-desktop-3 {
    order: 3;
  }
}

@media (min-width: 1024px) {
  .order-desktop-4 {
    order: 4;
  }
}

@media (min-width: 1024px) {
  .order-desktop-5 {
    order: 5;
  }
}

@media (min-width: 1024px) {
  .order-desktop-6 {
    order: 6;
  }
}

@media (min-width: 1024px) {
  .order-desktop-7 {
    order: 7;
  }
}

@media (min-width: 1024px) {
  .order-desktop-8 {
    order: 8;
  }
}

@media (min-width: 1024px) {
  .order-desktop-9 {
    order: 9;
  }
}

@media (min-width: 1024px) {
  .order-desktop-10 {
    order: 10;
  }
}

@media (min-width: 1024px) {
  .order-desktop-11 {
    order: 11;
  }
}

@media (min-width: 1024px) {
  .order-desktop-12 {
    order: 12;
  }
}

.js-reveal {
  opacity: 0;
  transform: translateY(120px);
  transition: opacity 0.2s cubic-bezier(0, 0.56, 0, 1.01), transform 1s cubic-bezier(0, -0.01, 0.27, 0.98) !important;
}

.js-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.js-reveal--slow {
  transform: translateY(120px);
}
@media (min-width: 769px) {
  .js-reveal--slow {
    transform: translateY(280px);
  }
}

.js-reveal--large {
  transform: translateY(400px);
}
.js-reveal--large.is-revealed {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .js-reveal {
    transform: none;
    transition: none !important;
  }
}
.container {
  width: 100%;
  max-width: 1308px;
  margin-inline: auto;
  padding-inline: 17.5px;
}
@media (min-width: 769px) {
  .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1474px;
  }
}

.auth-layout {
  display: flex;
  min-height: min(100vh, 1100px);
  width: 100%;
}
@media (max-width: 769px) {
  .auth-layout {
    flex-direction: column;
    min-height: auto;
  }
}

.auth-content {
  flex: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 40px;
  padding-left: max((100vw - 1308px) / 2 + 1.5rem, 1.5rem);
  background-color: #fff;
}
@media (min-width: 1920px) {
  .auth-content {
    padding-left: calc((100vw - 1474px) / 2 + 1.5rem);
  }
}
@media (max-width: 769px) {
  .auth-content {
    padding: 0;
    width: 100%;
  }
}
.auth-content__inner {
  width: 100%;
  max-width: 511px;
  padding-top: 10vh;
  padding-bottom: 10vh;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 769px) {
  .auth-content__inner {
    max-width: 100%;
    padding: 24px 20px 20px;
    gap: 24px;
  }
}

.auth-logo {
  width: 100px;
  height: auto;
}
@media (max-width: 769px) {
  .auth-logo {
    width: 46px;
    align-self: center;
  }
}

.auth-visual {
  width: 42.5%;
  position: sticky;
  top: 0;
  height: min(100vh, 1100px);
  overflow: hidden;
  flex-shrink: 0;
  align-self: flex-start;
}
@media (max-width: 769px) {
  .auth-visual {
    display: none;
  }
}
.auth-visual__image {
  width: 100%;
  height: 100%;
}
.auth-visual__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.auth-visual--mobile {
  display: none;
}
@media (max-width: 769px) {
  .auth-visual--mobile {
    display: block;
    width: 100%;
    aspect-ratio: 280/156;
    overflow: hidden;
    border-radius: 0.5rem;
  }
  .auth-visual--mobile img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.site-footer {
  background-color: #fff;
  margin-top: auto;
  padding: 1.25rem 0;
}

.footer-legal {
  background-color: #f5f5f1;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin: 1.25rem 0;
  text-align: center;
}
@media (min-width: 769px) {
  .footer-legal {
    margin: 1.25rem 0;
    padding: 1rem 3rem;
  }
}
.footer-legal__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1c51a0;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 16px;
}

.footer-main {
  padding: 0;
}

.footer-logo-row {
  padding: 1.25rem 0;
}
.footer-logo-row .footer-logo {
  display: inline-block;
}
.footer-logo-row .footer-logo img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer-columns {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.25rem 0;
}
@media (min-width: 769px) {
  .footer-columns {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.footer-columns__left {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .footer-columns__left {
    flex-direction: row;
    gap: 1.5rem;
  }
}
@media (min-width: 769px) {
  .footer-columns__right {
    text-align: right;
  }
}

.footer-column {
  min-width: 190px;
}
@media (max-width: 1024px) {
  .footer-column {
    min-width: 40%;
  }
}
.footer-column__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #333;
  line-height: 16px;
  margin-bottom: 1.25rem;
}
.footer-column__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-column__list li {
  display: block;
}
.footer-column__list a {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #333;
  line-height: 16px;
  transition: color 150ms ease;
}
.footer-column__list a:hover {
  color: #1c51a0;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.footer-contact__item .footer-column__title {
  margin-bottom: 1.25rem;
}
.footer-contact__link {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #333;
  text-decoration: underline;
  transition: color 150ms ease;
}
.footer-contact__link:hover {
  color: #1c51a0;
}
.footer-contact__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #333;
}

.footer-social-row {
  display: flex;
  justify-content: center;
  padding: 1.25rem 0;
}
@media (min-width: 769px) {
  .footer-social-row {
    justify-content: flex-end;
  }
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.footer-social__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #1c51a0;
  transition: color 150ms ease;
}
@media (max-width: 768px) {
  .footer-social__link {
    width: 20px;
    height: 20px;
  }
  .footer-social__link .icon {
    width: 20px;
    height: 20px;
  }
}
.footer-social__link:hover {
  color: #0096c9;
}

.footer-bottom__content {
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
}

.footer-copyright {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #333;
  line-height: 16px;
  padding-top: 30px;
  padding-bottom: 1.25rem;
  margin: 0;
}

.footer-submenu {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 4rem;
}
.footer-submenu a {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #606060;
  line-height: 16px;
  transition: color 150ms ease;
}
.footer-submenu a:hover {
  color: #1c51a0;
}

.footer-public {
  background-color: #fff;
  margin-top: auto;
  padding-top: 4rem;
}

.footer-public__legal {
  padding: 1.5rem;
}
@media (min-width: 769px) {
  .footer-public__legal {
    margin-inline: auto;
  }
}

.footer-public__legal-text {
  background-color: #f5f5f1;
  border-radius: 0.5rem;
  padding: 1rem 1.5rem;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  color: #1c51a0;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 14px;
  text-align: center;
}
@media (min-width: 769px) {
  .footer-public__legal-text {
    font-size: 0.75rem;
    line-height: 16px;
    padding: 1rem 3rem;
  }
}

.footer-public__main {
  padding: 0.625rem 0 1.5rem;
}

.footer-public__info {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.25rem 0;
}
@media (min-width: 769px) {
  .footer-public__info {
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

.footer-public__logo {
  flex-shrink: 0;
  padding: 1.25rem 0;
}
.footer-public__logo img {
  width: 46px;
  height: 42px;
  -o-object-fit: contain;
  object-fit: contain;
}

.footer-public__contacts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 769px) {
  .footer-public__contacts {
    flex-direction: row;
    flex-wrap: wrap;
    flex: 1;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.25rem 0;
    gap: 1.5rem;
  }
}

.footer-public__contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.75rem;
  line-height: 16px;
  color: #333;
}
@media (min-width: 769px) {
  .footer-public__contact-item {
    font-size: 1rem;
    line-height: 22px;
    text-align: center;
    align-items: center;
    flex: 1 1 0;
    min-width: 0;
    gap: 12px;
  }
}
.footer-public__contact-item strong {
  font-weight: 700;
}
.footer-public__contact-item span,
.footer-public__contact-item a {
  font-weight: 400;
  color: inherit;
  text-decoration: none;
  transition: color 150ms ease;
}
.footer-public__contact-item span:hover,
.footer-public__contact-item a:hover {
  color: #1c51a0;
}

.footer-public__bottom {
  border-top: 1px solid rgba(96, 96, 96, 0.25);
  padding-top: 1.25rem;
  margin-top: 1.25rem;
}

.footer-public__copyright {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #333;
  line-height: 16px;
  padding: 1.25rem 0;
}

.footer-public__submenu {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 769px) {
  .footer-public__submenu {
    flex-direction: row;
    gap: 4rem;
  }
}
.footer-public__submenu a {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: #606060;
  line-height: 20px;
  text-decoration: none;
  transition: color 150ms ease;
}
@media (min-width: 769px) {
  .footer-public__submenu a {
    font-size: 0.875rem;
  }
}
.footer-public__submenu a:hover {
  color: #1c51a0;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.accordion__item {
  background-color: #f5f5f1;
  border: 1px solid #f5f5f1;
  border-radius: 0.5rem;
  overflow: hidden;
  scroll-margin-top: 55px;
}
@media ((min-width: 925px)) {
.accordion__item {
  scroll-margin-top: 170px;
}
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  border: none;
  background: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}
@media (min-width: 1024px) {
  .accordion__header {
    padding: 42px 40px;
  }
}

.accordion__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1c51a0;
  letter-spacing: -1.25px;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 1024px) {
  .accordion__title {
    font-size: 26px;
    line-height: 36px;
  }
}

.accordion__icon {
  flex-shrink: 0;
  color: #1c51a0;
  transform: rotate(180deg);
  transition: transform 300ms ease;
  width: 24px;
  height: 24px;
}
@media (min-width: 1024px) {
  .accordion__icon {
    width: 31px;
    height: 31px;
  }
}
.accordion__item.is-open .accordion__icon {
  transform: rotate(0deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 500ms ease;
}

.accordion__content {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #333;
  padding: 0 20px 16px;
  font-size: 14px;
  line-height: 22px;
}
@media (min-width: 1024px) {
  .accordion__content {
    font-size: 18px;
    line-height: 24px;
    padding: 0 40px 42px;
    max-width: 1161px;
  }
}
.accordion__content a {
  color: #1c51a0;
  text-decoration: none;
  font-weight: 700;
}
.accordion__content a:hover {
  text-decoration: underline;
}
.accordion__content ul {
  list-style: none;
  margin: 4px 0;
  padding: 0 0 0 16px;
}
.accordion__content ul li {
  position: relative;
  padding-left: 12px;
}
.accordion__content ul li::before {
  content: "–";
  position: absolute;
  left: 0;
}
.accordion__content strong,
.accordion__content b {
  font-weight: 700;
}

.alert-banner {
  display: none;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  border-radius: 0.5rem;
  background-color: #e6e6e2;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.alert-banner.is-visible, .alert-banner--static {
  display: flex;
}
.alert-banner.is-visible {
  animation: alert-banner-slide-in 300ms ease forwards;
}
.alert-banner.is-dismissing {
  animation: alert-banner-slide-out 300ms ease forwards;
}

.alert-banner__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  opacity: 0.75;
  background-color: #606060;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 0C7.163 0 0 7.163 0 16s7.163 16 16 16 16-7.163 16-16S24.837 0 16 0zm0 1.917c7.778 0 14.083 6.305 14.083 14.083S23.778 30.083 16 30.083 1.917 23.778 1.917 16 8.222 1.917 16 1.917zm1.455 20.886a1.405 1.405 0 1 1-2.789 0 1.405 1.405 0 0 1 2.789 0zM15.113 18.992c0 .278 0 .492.021.749h1.873c-.021-.214-.021-.3-.021-.407 0-.835.277-1.606.937-2.055l.979-.664c1.235-.835 2.171-2.013 2.171-3.726 0-2.184-1.681-4.304-4.661-4.304-3.278 0-4.705 2.42-4.705 4.39 0 .385.043.728.128 1.028l2.065.257a3.07 3.07 0 0 1-.149-.792c0-1.349.809-2.741 2.661-2.741 1.703 0 2.533 1.178 2.533 2.441 0 .835-.404 1.606-1.128 2.099l-.937.642c-1.256.857-1.767 1.927-1.767 3.34z' fill='%23000'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M16 0C7.163 0 0 7.163 0 16s7.163 16 16 16 16-7.163 16-16S24.837 0 16 0zm0 1.917c7.778 0 14.083 6.305 14.083 14.083S23.778 30.083 16 30.083 1.917 23.778 1.917 16 8.222 1.917 16 1.917zm1.455 20.886a1.405 1.405 0 1 1-2.789 0 1.405 1.405 0 0 1 2.789 0zM15.113 18.992c0 .278 0 .492.021.749h1.873c-.021-.214-.021-.3-.021-.407 0-.835.277-1.606.937-2.055l.979-.664c1.235-.835 2.171-2.013 2.171-3.726 0-2.184-1.681-4.304-4.661-4.304-3.278 0-4.705 2.42-4.705 4.39 0 .385.043.728.128 1.028l2.065.257a3.07 3.07 0 0 1-.149-.792c0-1.349.809-2.741 2.661-2.741 1.703 0 2.533 1.178 2.533 2.441 0 .835-.404 1.606-1.128 2.099l-.937.642c-1.256.857-1.767 1.927-1.767 3.34z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}

.alert-banner__content {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  align-items: flex-start;
  min-width: 0;
  min-height: 1px;
  padding-top: 4px;
  align-self: stretch;
}

.alert-banner__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 22px;
  color: #333;
  letter-spacing: 0;
  margin: 0;
}

.alert-banner__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  color: #333;
  letter-spacing: 0;
  margin: 0;
  min-width: 100%;
  word-wrap: break-word;
}
.alert-banner__text p {
  margin-bottom: 0;
}
.alert-banner__text ul {
  list-style: disc;
  margin: 0;
  padding-left: 20px;
}

.alert-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  align-items: center;
  width: 100%;
}

.alert-banner__btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 0.625rem;
  border-radius: 0.5rem;
  border: none;
  background-color: #1c51a0;
  color: #fff;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 16px;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  min-width: 100px;
  transition: background-color 150ms ease;
}
.alert-banner__btn-primary:hover {
  background-color: #184689;
}

.alert-banner__btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 0.625rem;
  border-radius: 0.5rem;
  border: 2px solid #333;
  background-color: transparent;
  color: #333;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 16px;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  min-width: 100px;
  transition: border-color 150ms ease;
}
.alert-banner__btn-secondary:hover {
  border-color: #1c51a0;
}

.alert-banner__close {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 150ms ease;
}
.alert-banner__close::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #606060;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.48 19.94'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.349.213C1.036-.076.541-.071.234.228c-.312.304-.312.797 0 1.1L9.11 9.971.234 18.613l-.015.015c-.296.305-.291.787.015 1.085.312.304.818.304 1.13 0L10.24 11.07l8.876 8.642.016.015c.313.289.807.284 1.114-.015.312-.304.312-.797 0-1.1l-8.876-8.642 8.876-8.642.015-.015c.297-.305.292-.786-.015-1.085-.312-.304-.818-.304-1.13 0L10.24 8.87 1.365.228 1.349.213z' fill='%23000'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.48 19.94'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.349.213C1.036-.076.541-.071.234.228c-.312.304-.312.797 0 1.1L9.11 9.971.234 18.613l-.015.015c-.296.305-.291.787.015 1.085.312.304.818.304 1.13 0L10.24 11.07l8.876 8.642.016.015c.313.289.807.284 1.114-.015.312-.304.312-.797 0-1.1l-8.876-8.642 8.876-8.642.015-.015c.297-.305.292-.786-.015-1.085-.312-.304-.818-.304-1.13 0L10.24 8.87 1.365.228 1.349.213z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
.alert-banner__close:hover {
  opacity: 1;
}

.alert-banner--default {
  background-color: #e6e6e2;
}

.alert-banner--validation {
  background-color: #f5f5f5;
}

.alert-banner--error {
  background-color: #fcd9e2;
}

.alert-banner--important {
  background-color: #f6e6d8;
}

.alert-banner--light {
  background-color: #fbfbfb;
}

.alert-banner--sm {
  padding: 1rem;
}
.alert-banner--sm .alert-banner__text {
  font-size: 0.875rem;
  line-height: 20px;
}

.alert-banner--simplified .alert-banner__content {
  padding-top: 0;
  gap: 0;
  justify-content: center;
}
.alert-banner--simplified .alert-banner__icon {
  order: 1;
}

.alert-banner--red .alert-banner__btn-primary {
  background-color: #de1111;
}
.alert-banner--red .alert-banner__btn-primary:hover {
  background-color: #b20e0e;
}
.alert-banner--red .alert-banner__btn-secondary {
  border-color: #de1111;
  color: #333;
}
.alert-banner--red .alert-banner__btn-secondary:hover {
  border-color: #b20e0e;
}

.alert-banner--static {
  display: flex;
  animation: none;
}

.alert-banner--link {
  align-items: center;
}
@media (max-width: 768px) {
  .alert-banner--link {
    align-items: flex-start;
  }
}
.alert-banner--link .alert-banner__content {
  flex-direction: column;
  gap: 12px;
  padding-top: 10px;
}
@media (max-width: 768px) {
  .alert-banner--link .alert-banner__content {
    padding-top: 0;
  }
}
.alert-banner--link .alert-banner__text {
  font-size: 0.875rem;
  line-height: 20px;
  max-width: 675px;
  min-width: unset;
  width: auto;
}
.alert-banner--link .alert-banner__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  align-self: flex-end;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 16px;
  color: #1c51a0;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 150ms ease;
}
.alert-banner--link .alert-banner__link svg {
  width: 32px;
  height: 14px;
  flex-shrink: 0;
}
.alert-banner--link .alert-banner__link:hover {
  opacity: 0.7;
}
@media (min-width: 1024px) {
  .alert-banner--link .alert-banner__content {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 4px;
  }
  .alert-banner--link .alert-banner__text {
    font-size: 1rem;
    line-height: 22px;
  }
  .alert-banner--link .alert-banner__link {
    font-size: 18px;
    line-height: 24px;
    align-self: center;
  }
  .alert-banner--link .alert-banner__link svg {
    width: 38px;
    height: 14px;
  }
}

.breadcrumb {
  display: flex;
  align-items: center;
  padding: 0.125rem 0;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 0.625rem;
  line-height: 14px;
  letter-spacing: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.breadcrumb > * + * {
  margin-left: 0.25rem;
}

.breadcrumb__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: #1c51a0;
  transition: color 150ms ease, transform 150ms ease;
  flex-shrink: 0;
  margin-right: -8px;
}
.breadcrumb__dots svg {
  width: 16.4px;
  height: 3.2px;
  fill: currentColor;
  margin-right: 4px;
}
.breadcrumb__dots:hover {
  color: #0096c9;
  transform: scale(1.15);
}
.breadcrumb--expanded .breadcrumb__dots {
  width: 0;
  margin-left: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), margin-left 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.2s ease;
}

.breadcrumb__separator {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.breadcrumb__separator svg {
  width: 6px;
  height: 10.64px;
  fill: #606060;
  transition: fill 150ms ease;
  margin-right: 4px;
  margin-left: 4px;
}
.breadcrumb__separator--collapsible {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), margin-left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  transition-delay: calc(var(--i, 0) * 80ms);
}
.breadcrumb__separator--collapsible svg {
  margin-left: 4px;
}
.breadcrumb--expanded .breadcrumb__separator--collapsible {
  max-width: 20px;
  margin-left: 0.25rem;
  opacity: 1;
  margin-left: 4px;
}
.breadcrumb--expanded .breadcrumb__separator--collapsible + .breadcrumb__separator:not(.breadcrumb__separator--collapsible) {
  display: none;
}

.breadcrumb__link {
  color: #606060;
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms ease;
}
.breadcrumb__link:hover {
  color: #0096c9;
  text-decoration: none;
}
.breadcrumb__link--collapsible {
  max-width: 0;
  margin-left: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), margin-left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
  transition-delay: calc(var(--i, 0) * 80ms);
}
.breadcrumb--expanded .breadcrumb__link--collapsible {
  max-width: 200px;
  margin-left: 0.25rem;
  opacity: 1;
}

.breadcrumb__current {
  color: #1c51a0;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 150ms ease;
}

.breadcrumb:not(.breadcrumb--back):not(.breadcrumb--expanded):hover .breadcrumb__current {
  color: #0096c9;
}
.breadcrumb:not(.breadcrumb--back):not(.breadcrumb--expanded):hover .breadcrumb__separator svg {
  fill: #0096c9;
}

.breadcrumb--back {
  cursor: pointer;
  text-decoration: none;
}
.breadcrumb--back .breadcrumb__separator svg {
  fill: #1c51a0;
  transition: fill 150ms ease;
}
.breadcrumb--back .breadcrumb__link {
  color: #1c51a0;
}
.breadcrumb--back:hover .breadcrumb__separator svg {
  fill: #0096c9;
}
.breadcrumb--back:hover .breadcrumb__link {
  color: #0096c9;
}

.navbar:not(.navbar--scrolled) .breadcrumb--negative .breadcrumb__link {
  color: rgba(255, 255, 255, 0.7);
}
.navbar:not(.navbar--scrolled) .breadcrumb--negative .breadcrumb__link:hover {
  color: #fff;
}
.navbar:not(.navbar--scrolled) .breadcrumb--negative .breadcrumb__separator svg {
  fill: rgba(255, 255, 255, 0.5);
}
.navbar:not(.navbar--scrolled) .breadcrumb--negative .breadcrumb__current {
  color: #fff;
}
.navbar:not(.navbar--scrolled) .breadcrumb--negative .breadcrumb__dots {
  color: #fff;
}
.navbar:not(.navbar--scrolled) .breadcrumb--negative .breadcrumb__dots:hover {
  color: rgba(255, 255, 255, 0.8);
}
.navbar:not(.navbar--scrolled) .breadcrumb--negative:not(.breadcrumb--back):not(.breadcrumb--expanded):hover .breadcrumb__current {
  color: rgba(255, 255, 255, 0.8);
}
.navbar:not(.navbar--scrolled) .breadcrumb--negative:not(.breadcrumb--back):not(.breadcrumb--expanded):hover .breadcrumb__separator svg {
  fill: rgba(255, 255, 255, 0.8);
}
.navbar:not(.navbar--scrolled) .breadcrumb--negative.breadcrumb--back .breadcrumb__separator svg {
  fill: #fff;
}
.navbar:not(.navbar--scrolled) .breadcrumb--negative.breadcrumb--back .breadcrumb__link {
  color: #fff;
}
.navbar:not(.navbar--scrolled) .breadcrumb--negative.breadcrumb--back:hover .breadcrumb__separator svg {
  fill: rgba(255, 255, 255, 0.7);
}
.navbar:not(.navbar--scrolled) .breadcrumb--negative.breadcrumb--back:hover .breadcrumb__link {
  color: rgba(255, 255, 255, 0.7);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  letter-spacing: 0;
  border: 2px solid transparent;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 150ms ease, color 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
  font-size: 0.875rem;
  line-height: 20px;
  padding: 12px 24px;
}
.btn:disabled {
  cursor: not-allowed;
}
@media (max-width: 1023px) {
  .btn {
    display: flex;
    width: 100%;
  }
}

.btn-positive {
  color: #fff;
  background-color: #1c51a0;
}
.btn-positive:hover:not(:disabled) {
  color: #fff;
  background-color: #184689;
}
.btn-positive:active:not(:disabled) {
  color: #fff;
  background-color: #0096c9;
}
.btn-positive:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px #0096c9;
}
.btn-positive:disabled {
  color: #606060;
  background-color: #d3d3d3;
}

.btn-negative {
  color: #333;
  background-color: #fff;
}
.btn-negative:hover:not(:disabled) {
  color: #333;
  background-color: #fff;
}
.btn-negative:active:not(:disabled) {
  color: #fff;
  background-color: #0096c9;
}
.btn-negative:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px #0096c9;
}
.btn-negative:disabled {
  color: #606060;
  background-color: #d3d3d3;
}

.btn-sm {
  font-size: 0.75rem;
  line-height: 16px;
  padding: 6px 0.625rem;
  min-height: 32px;
}

.btn-lg {
  font-size: 1.125rem;
  line-height: 24px;
  padding: 14px 26px;
  min-height: 50px;
}

.btn-secondary-positive {
  color: #333;
  background-color: transparent;
  border: 2px solid #1c51a0;
}
.btn-secondary-positive:hover:not(:disabled) {
  color: #333;
  border-color: #184689;
}
.btn-secondary-positive:active:not(:disabled) {
  color: #333;
  border-color: #0096c9;
}
.btn-secondary-positive:focus-visible {
  outline: none;
  border-color: #0096c9;
  box-shadow: 0 0 0 4px #0096c9;
}
.btn-secondary-positive:disabled {
  color: #606060;
  border-color: #767676;
}

.btn-secondary-negative {
  color: #fff;
  background-color: transparent;
  border: 2px solid #fff;
}
.btn-secondary-negative:hover:not(:disabled) {
  color: #fff;
  border-color: #184689;
}
.btn-secondary-negative:active:not(:disabled) {
  color: #fff;
  border-color: #1c51a0;
}
.btn-secondary-negative:focus-visible {
  outline: none;
  border-color: #0096c9;
}
.btn-secondary-negative:disabled {
  color: #606060;
  border-color: #767676;
}

.card-full + .card-full {
  margin-top: 64px;
}
@media (min-width: 769px) {
  .card-full + .card-full {
    margin-top: 100px;
  }
}

.card-full {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  aspect-ratio: 284/440;
}
.card-full, .card-full:link, .card-full:visited, .card-full:hover, .card-full:active, .card-full:focus {
  color: #fff;
  text-decoration: none;
}
@media (min-width: 769px) {
  .card-full {
    height: auto;
    min-height: 514px;
    aspect-ratio: unset;
    display: flex;
    align-items: center;
  }
}

.card-full__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.card-full__media img,
.card-full__media source {
  display: block;
}

picture.card-full__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 769px) {
  picture.card-full__media img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }
  .card-full:hover picture.card-full__media img {
    transform: scale(1.05);
  }
}

video.card-full__media {
  -o-object-fit: cover;
  object-fit: cover;
}

.card-full__media--desktop {
  display: none;
}
@media (min-width: 769px) {
  .card-full__media--desktop {
    display: block;
  }
}

.card-full__media--mobile {
  display: block;
}
@media (min-width: 769px) {
  .card-full__media--mobile {
    display: none;
  }
}

.card-full__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 14.37%, rgba(0, 0, 0, 0) 55.87%), linear-gradient(0deg, rgba(0, 0, 0, 0.7) 16.72%, rgba(0, 0, 0, 0) 44.13%);
}
@media (min-width: 769px) {
  .card-full__overlay {
    background: rgba(0, 0, 0, 0.2);
  }
  .card-full__overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 21.72%, rgba(0, 0, 0, 0) 49.88%);
  }
}

.card-full__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 32px 24px;
}
@media (min-width: 769px) {
  .card-full__content {
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    padding: 100px 64px;
    gap: 64px;
  }
}

.card-full__title-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 769px) {
  .card-full__title-group {
    gap: 20px;
    max-width: 554px;
  }
}

.card-full__title {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: -1.25px;
  margin: 0;
  font-size: 48px;
  line-height: 60px;
}
@media (min-width: 769px) {
  .card-full__title {
    font-size: 64px;
    line-height: 72px;
  }
  .card-full__title br {
    display: none;
  }
}

.card-full__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #fff;
  margin: 0;
  font-size: 0.875rem;
  line-height: 20px;
}
@media (min-width: 769px) {
  .card-full__text {
    font-size: 1.125rem;
    line-height: 24px;
  }
}

.card-full__cta {
  display: flex;
}

.card-full__btn {
  font-size: 0.875rem;
  line-height: 20px;
  padding: 8px 26px;
  width: 244px;
}
@media (min-width: 769px) {
  .card-full__btn {
    font-size: 1.125rem;
    line-height: 24px;
    padding: 1rem 28px;
    min-height: 56px;
    width: auto;
  }
}

.card-full--game {
  padding: 0;
  aspect-ratio: unset;
  display: flex;
  align-items: stretch;
  min-height: 470px;
}
@media (min-width: 769px) {
  .card-full--game {
    min-height: 494px;
  }
}
.card-full--game .card-full__content {
  height: auto;
  padding: 1.25rem;
  gap: 0;
}
@media (min-width: 769px) {
  .card-full--game .card-full__content {
    flex-direction: row;
    align-items: stretch;
    justify-content: space-between;
    text-align: left;
    padding: 2.5rem;
    gap: 0;
    width: 100%;
  }
}
.card-full--game .card-full__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  align-items: center;
  text-align: center;
}
@media (min-width: 769px) {
  .card-full--game .card-full__left {
    align-items: flex-start;
    text-align: left;
    flex-shrink: 0;
    flex: none;
    width: 400px;
    align-self: stretch;
  }
}
.card-full--game .card-full__top {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 769px) {
  .card-full--game .card-full__top {
    align-items: flex-start;
    gap: 1.25rem;
  }
}
.card-full--game .card-full__label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #fff;
  margin: 0;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 0;
}
@media (min-width: 769px) {
  .card-full--game .card-full__label {
    font-size: 1.25rem;
    line-height: 28px;
    letter-spacing: -1.25px;
  }
}
.card-full--game .card-full__title {
  font-size: 44px;
  line-height: 48px;
}
@media (min-width: 769px) {
  .card-full--game .card-full__title {
    font-size: 64px;
    line-height: 72px;
  }
  .card-full--game .card-full__title br {
    display: block;
  }
}
.card-full--game .card-full__points {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.card-full--game .card-full__points-icon {
  display: block;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  width: 22px;
  height: 22px;
}
@media (min-width: 769px) {
  .card-full--game .card-full__points-icon {
    width: 38px;
    height: 38px;
  }
}
.card-full--game .card-full__points-text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
  letter-spacing: 0;
  font-size: 1rem;
  line-height: 22px;
}
@media (min-width: 769px) {
  .card-full--game .card-full__points-text {
    font-size: 26px;
    line-height: 36px;
    letter-spacing: -1.25px;
  }
}
.card-full--game .card-full__bottom {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
}
@media (min-width: 769px) {
  .card-full--game .card-full__bottom {
    align-items: flex-start;
    justify-content: flex-end;
  }
}
.card-full--game .card-full__text {
  font-size: 0.875rem;
  line-height: 20px;
}
@media (min-width: 769px) {
  .card-full--game .card-full__text {
    font-size: 1rem;
    line-height: 22px;
  }
}
.card-full--game .card-full__right {
  display: none;
}
@media (min-width: 769px) {
  .card-full--game .card-full__right {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    flex-shrink: 0;
  }
}
.card-full--game .card-full__cta {
  display: flex;
}
@media (min-width: 769px) {
  .card-full--game .card-full__bottom .card-full__cta {
    display: none;
  }
}
@media (min-width: 769px) {
  .card-full--game .card-full__right .card-full__cta {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
}
@media (min-width: 769px) {
  .card-full--game:hover .card-full__right .card-full__cta {
    opacity: 1;
    transform: translateY(0);
  }
}
.card-full--game .card-full__btn {
  font-size: 0.875rem;
  line-height: 20px;
  padding: 0.5rem 26px;
  width: 245px;
  min-height: 36px;
}
@media (min-width: 769px) {
  .card-full--game .card-full__btn {
    font-size: 0.875rem;
    line-height: 20px;
    padding: 14px 26px;
    min-height: 50px;
    width: auto;
  }
}

.card {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 300ms ease;
}
.card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card-image {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-body {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 0.625rem;
}

.card-text {
  color: #64748b;
  margin-bottom: 1rem;
}

.feature-card {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  padding: 2.5rem;
  text-align: center;
  transition: all 300ms ease;
}
.feature-title {
  font-size: 1.25rem;
  color: #1c51a0;
  margin-bottom: 0.625rem;
}

.feature-desc {
  color: #64748b;
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.checkbox__control {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.checkbox__indicator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid #333;
  border-radius: 1px;
  background: transparent;
  transition: border-color 150ms ease, border-width 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
}
.checkbox__indicator::after {
  content: "";
  display: block;
  width: 10px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translate(1px, -1px);
  opacity: 0;
  transition: opacity 150ms ease;
}

.checkbox__label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 0;
  color: #333;
}

.checkbox__control:checked ~ .checkbox__indicator {
  background-color: #1c51a0;
  border: 2px solid #1c51a0;
}
.checkbox__control:checked ~ .checkbox__indicator::after {
  opacity: 1;
}

.checkbox__control:focus-visible ~ .checkbox__indicator {
  border-color: transparent;
  box-shadow: 0 0 0 4px #0096c9;
}

.checkbox__control:disabled ~ .checkbox__indicator {
  border-color: #d3d3d3;
  opacity: 0.5;
  cursor: not-allowed;
}

.checkbox__control:disabled ~ .checkbox__label {
  color: #d3d3d3;
  cursor: not-allowed;
}

.checkbox:has(.checkbox__control:disabled) {
  cursor: not-allowed;
}

.checkbox--error .checkbox__indicator {
  border: 2px solid #ec003e;
}

.checkbox--blocked .checkbox__indicator,
.checkbox--blocked .checkbox__control:checked ~ .checkbox__indicator {
  background-color: #d3d3d3;
  border: 2px solid #767676;
}
.checkbox--blocked .checkbox__indicator::after,
.checkbox--blocked .checkbox__control:checked ~ .checkbox__indicator::after {
  opacity: 1;
}

.checkbox--blocked {
  cursor: not-allowed;
}
.checkbox--blocked .checkbox__label {
  color: #d3d3d3;
}
.checkbox--blocked .checkbox__control {
  pointer-events: none;
}

.checkbox__control:active ~ .checkbox__indicator {
  border: 2px solid #1c51a0;
}
.checkbox__control:active ~ .checkbox__indicator::after {
  opacity: 0.5;
  border-color: rgba(0, 150, 201, 0.5);
}

.code-input {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 100px 64px;
  width: 100%;
}
@media (max-width: 768px) {
  .code-input {
    padding: 20px;
    min-height: 530px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.code-input__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #1c51a0;
}
.code-input__bg picture {
  width: 100%;
  height: 100%;
}
.code-input__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -o-object-position: right top;
  object-position: right top;
}
@media (max-width: 768px) {
  .code-input__bg img {
    -o-object-position: center top;
    object-position: center top;
  }
}
.code-input__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(21, 20, 20, 0) 25.02%, #221f1d 63.47%);
}
@media (min-width: 769px) {
  .code-input__bg::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 40.72%, rgba(0, 0, 0, 0) 90.88%);
  }
}
@media (min-width: 1024px) {
  .code-input__bg::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 40.72%, rgba(0, 0, 0, 0) 70.88%);
  }
}
@media (min-width: 1920px) {
  .code-input__bg::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 21.72%, rgba(0, 0, 0, 0) 49.88%);
  }
}

.code-input__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: flex-start;
  padding: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .code-input__content {
    padding: 10px 0;
  }
}
@media (min-width: 1920px) {
  .code-input__content {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .code-input__content {
    flex: 1 0 0;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 0 0 10px;
  }
  .code-input__content .text-input__helper {
    text-align: left;
    margin-bottom: 10px;
  }
}

.code-input__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .code-input__text {
    width: 100%;
  }
}

.code-input__title {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 70px;
  line-height: 78px;
  letter-spacing: -1.25px;
  color: #fff;
  margin: 0;
  max-width: 660px;
}
@media (max-width: 768px) {
  .code-input__title {
    font-size: 40px;
    line-height: 40px;
  }
}

.code-input__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  max-width: 554px;
}
.code-input__desc strong,
.code-input__desc b {
  font-weight: 700;
}
@media (max-width: 768px) {
  .code-input__desc {
    font-size: 0.75rem;
    line-height: 18px;
  }
}

.code-input__form {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.code-input__form .text-input {
  width: 447px;
  flex-shrink: 0;
}
.code-input__form .btn {
  width: 194px;
  flex-shrink: 0;
  height: 54px;
}
@media (max-width: 768px) {
  .code-input__form {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .code-input__form .text-input {
    width: 100%;
  }
  .code-input__form .btn {
    width: 100%;
    height: auto;
    font-size: 0.75rem;
    line-height: 16px;
    padding: 6px 0.625rem;
    min-height: 32px;
  }
}

.code-input .text-input__label {
  color: #fff;
  text-align: left;
}

@media (max-width: 768px) {
  .code-input .btn {
    border: 1px solid #fff;
  }
}
.configurator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
  max-width: 1308px;
  margin: 0 auto;
  padding: 60px 20px;
}

.configurator__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
  width: 100%;
}

.configurator__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #333;
  letter-spacing: -1.25px;
  margin: 0;
  font-size: clamp(28px, 28px + 17px * (100vw - 320px) / 160px, 45px);
  line-height: 1.2;
}

.configurator__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 32px;
  color: #333;
  margin: 0;
  max-width: 994px;
}
.configurator__desc strong {
  font-weight: 700;
}

.configurator__progress {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  max-width: 1308px;
}

.configurator__progress-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  margin: 0;
}

.configurator__progress-track {
  width: 100%;
  height: 6px;
  background-color: #666;
  border-radius: 0.25rem;
  overflow: hidden;
}

.configurator__progress-fill {
  height: 100%;
  background-color: #1c51a0;
  border-radius: 0.25rem;
  transition: width 0.5s ease;
}

.configurator__step {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 100%;
}
.configurator__step.is-active {
  display: flex;
  animation: configurator-fade-in 0.4s ease;
}

.configurator__step-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 36px;
  color: #333;
  letter-spacing: -1.25px;
  text-align: center;
  margin: 0;
}

.configurator__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  justify-content: center;
}

.configurator__grid--3 .configurator__tile {
  flex: 1 1 0;
  min-width: 0;
  max-width: 404px;
}

.configurator__grid--4 .configurator__tile {
  width: calc(25% - 18px);
  flex: 0 0 auto;
}

.configurator__tile {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: transform 150ms ease, box-shadow 150ms ease;
  min-height: 175px;
}
.configurator__tile:hover:not(.is-disabled) {
  transform: scale(1.02);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.configurator__tile:active:not(.is-disabled) {
  transform: scale(0.98);
}
.configurator__tile.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}
.configurator__tile.is-selected {
  outline: 3px solid #1c51a0;
  outline-offset: -3px;
}
.configurator__tile.is-selected .configurator__tile-checkbox {
  background-color: #1c51a0;
  border-color: #fff;
  border-width: 2.929px;
}
.configurator__tile.is-selected .configurator__tile-checkbox::after {
  opacity: 1;
}

.configurator__tile-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
  pointer-events: none;
}

.configurator__grid--3 .configurator__tile {
  aspect-ratio: 404/310;
}

.configurator__grid--4 .configurator__tile {
  aspect-ratio: 3/4;
}

.configurator__tile-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #1c51a0;
  text-align: center;
  pointer-events: none;
  font-size: clamp(32px, 32px + 22px * (100vw - 320px) / 160px, 54px);
  line-height: 1.2;
  letter-spacing: -1.25px;
  width: 90%;
}

.configurator__grid--3 .configurator__tile[data-type=flavor] .configurator__tile-label {
  color: #fff;
}

.configurator__tile-checkbox {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 26px;
  height: 26px;
  border: 1.464px solid #1c51a0;
  border-radius: 1px;
  background: transparent;
  pointer-events: none;
  transition: background-color 150ms ease, border-color 150ms ease;
}
.configurator__tile-checkbox::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 7px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -60%) rotate(-45deg);
  opacity: 0;
  transition: opacity 150ms ease;
}

.configurator__tile[data-type=flavor] .configurator__tile-checkbox,
.configurator__grid--4 .configurator__tile-checkbox {
  border-color: #fff;
}

.configurator__counter {
  display: flex;
  align-items: center;
  gap: 12px;
  background-color: rgba(53, 103, 255, 0.1);
  padding: 8px 26px;
  border-radius: 0.5rem;
}

.configurator__counter-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  color: #333;
  margin: 0;
}

.configurator__counter-value {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: 1px 8px;
  border-radius: 0.625rem;
  min-width: 34px;
  height: 18px;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 16px;
  color: #333;
}

.configurator__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.configurator__action .btn {
  min-width: 260px;
}

.configurator__loader {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  min-height: 400px;
}

.configurator__spinner {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 10px solid #e0e0e0;
  border-top-color: #1c51a0;
  animation: configurator-spin 1s linear infinite;
}

.configurator__loader-text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 32px;
  color: #333;
  text-align: center;
}

.configurator__result {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  width: 100%;
}

.configurator__result-product {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #333;
  letter-spacing: -1.25px;
  margin: 0;
  font-size: clamp(28px, 28px + 17px * (100vw - 320px) / 160px, 45px);
  line-height: 1.2;
}

.configurator__result-desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 32px;
  color: #333;
  margin: 0;
  max-width: 700px;
}

.configurator__result-cta {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 32px;
  color: #333;
  margin: 0 0 10px;
}

.configurator__result-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.configurator__step[data-step=result] .model-viewer-section {
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .configurator {
    gap: 40px;
    padding: 40px 0;
  }
  .configurator__desc {
    font-size: 1rem;
    line-height: 24px;
  }
  .configurator__step {
    gap: 24px;
  }
  .configurator__grid--3 {
    flex-direction: column;
    gap: 10px;
  }
  .configurator__grid--3 .configurator__tile {
    max-width: 100%;
    aspect-ratio: 343/144;
  }
  .configurator__grid--4 {
    gap: 10px;
  }
  .configurator__grid--4 .configurator__tile {
    width: calc(50% - 5px);
    aspect-ratio: 3/4;
  }
  .configurator__action .btn {
    min-width: auto;
    width: 100%;
  }
  .configurator__tile-checkbox {
    width: 19px;
    height: 19px;
    top: 12px;
    right: 12px;
  }
  .configurator__tile-checkbox::after {
    width: 8px;
    height: 5px;
  }
}
@media (min-width: 1024px) and (max-width: 1279px) {
  .configurator__grid--3 .configurator__tile {
    aspect-ratio: 340/260;
  }
  .configurator__grid--4 .configurator__tile {
    width: calc(25% - 18px);
    aspect-ratio: 3/4;
  }
}
@media (max-width: 639px) {
  .configurator__grid--4 .configurator__tile {
    width: calc(50% - 5px);
    aspect-ratio: 3/4;
  }
}
@keyframes configurator-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes configurator-spin {
  to {
    transform: rotate(360deg);
  }
}
.dialog-backdrop {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  visibility: hidden;
  transition: background-color 300ms ease, opacity 300ms ease, visibility 300ms ease;
}
.dialog-backdrop.is-active {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  visibility: visible;
}
.dialog-backdrop.is-dismissing {
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: background-color 300ms ease, opacity 300ms ease, visibility 300ms ease;
}

.dialog {
  position: relative;
  z-index: 500;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 660px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem 1.25rem;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
  scrollbar-width: thin;
  scrollbar-color: #606060 transparent;
}
.dialog::-webkit-scrollbar {
  width: 3px;
}
.dialog::-webkit-scrollbar-track {
  background: transparent;
}
.dialog::-webkit-scrollbar-thumb {
  background-color: #606060;
  border-radius: 9999px;
}
.is-active .dialog {
  transform: scale(1);
  opacity: 1;
}
.is-dismissing .dialog {
  transform: scale(0.95);
  opacity: 0;
}
@media (min-width: 1024px) {
  .dialog {
    padding: 3rem 6rem;
  }
}

.dialog__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 150ms ease;
}
.dialog__close::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: #333;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.48 19.94'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.349.213C1.036-.076.541-.071.234.228c-.312.304-.312.797 0 1.1L9.11 9.971.234 18.613l-.015.015c-.296.305-.291.787.015 1.085.312.304.818.304 1.13 0L10.24 11.07l8.876 8.642.016.015c.313.289.807.284 1.114-.015.312-.304.312-.797 0-1.1l-8.876-8.642 8.876-8.642.015-.015c.297-.305.292-.786-.015-1.085-.312-.304-.818-.304-1.13 0L10.24 8.87 1.365.228 1.349.213z' fill='%23000'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.48 19.94'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.349.213C1.036-.076.541-.071.234.228c-.312.304-.312.797 0 1.1L9.11 9.971.234 18.613l-.015.015c-.296.305-.291.787.015 1.085.312.304.818.304 1.13 0L10.24 11.07l8.876 8.642.016.015c.313.289.807.284 1.114-.015.312-.304.312-.797 0-1.1l-8.876-8.642 8.876-8.642.015-.015c.297-.305.292-.786-.015-1.085-.312-.304-.818-.304-1.13 0L10.24 8.87 1.365.228 1.349.213z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
.dialog__close:hover {
  opacity: 1;
}
@media (min-width: 1024px) {
  .dialog__close {
    top: 16px;
    right: 16px;
  }
}

.dialog__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
  padding-top: 1rem;
}

.dialog__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  margin-top: 1.5rem;
}
.dialog__actions .btn {
  width: 100%;
}

.dialog-open {
  overflow: hidden;
}

@keyframes dropdownProfileSlideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes dropdownProfileChildSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.dropdown-profile {
  position: absolute;
  top: 47px;
  left: 0;
  right: 0;
  width: 100%;
  min-width: 320px;
  max-width: 320px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 1.25rem;
  background-color: #f5f5f1;
  border-radius: 0 0 0.5rem 0.5rem;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 150ms ease, visibility 150ms ease, transform 150ms ease;
}
.dropdown-profile.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  animation: dropdownProfileSlideIn 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.dropdown-profile.is-open .dropdown-profile__header {
  animation: dropdownProfileChildSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.05s;
}
.dropdown-profile.is-open .dropdown-profile__card {
  animation: dropdownProfileChildSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.12s;
}
.dropdown-profile.is-open .dropdown-profile__menu {
  animation: dropdownProfileChildSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.22s;
}
.dropdown-profile.is-open .dropdown-profile__logout {
  animation: dropdownProfileChildSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.32s;
}
@media (min-width: 925px) {
  .dropdown-profile {
    top: 100px;
    left: auto;
    right: 1.5rem;
    width: 320px;
    margin-top: 23px;
    border-radius: 0.5rem;
  }
}
@media (min-width: 1280px) {
  .dropdown-profile {
    right: calc((100% - 1308px) / 2 + 1.5rem);
  }
}
@media (min-width: 1920px) {
  .dropdown-profile {
    right: calc((100% - 1474px) / 2 + 1.5rem);
  }
}

.dropdown-profile__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 280px;
  height: 30px;
  opacity: 0;
}

.dropdown-profile__spacer {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.dropdown-profile__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 22px;
  color: #606060;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.dropdown-profile__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  color: #606060;
  transition: background-color 150ms ease;
}
.dropdown-profile__close:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.dropdown-profile__close svg {
  width: 14px;
  height: 14px;
}

.dropdown-profile__card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  justify-content: center;
  width: 280px;
  min-height: 120px;
  padding: 1.25rem;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 0.5rem;
  opacity: 0;
}

.dropdown-profile__points-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  gap: 29px;
}

.dropdown-profile__points-info {
  display: flex;
  flex-direction: column;
  width: 67px;
}

.dropdown-profile__points-value {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 44px;
  color: #333;
  letter-spacing: -1.25px;
}

.dropdown-profile__points-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 20px;
  color: #767676;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.dropdown-profile__points-image {
  width: 99px;
  height: 64px;
  border-radius: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  flex-shrink: 0;
}

.dropdown-profile__divider {
  width: 100%;
  height: 1px;
  background-color: #e2e8f0;
}

.dropdown-profile__expiry {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 22px;
  color: #1c51a0;
}
.dropdown-profile__expiry strong {
  font-weight: 700;
}

.dropdown-profile__card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 36px;
  padding: 0.5rem 26px;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 20px;
  color: #333;
  text-align: center;
  text-decoration: none;
  background: transparent;
  border: 1px solid #333;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 150ms ease;
  overflow: hidden;
}
.dropdown-profile__card-cta:hover {
  background-color: rgba(0, 0, 0, 0.03);
}

.dropdown-profile__menu {
  display: flex;
  flex-direction: column;
  width: 280px;
  opacity: 0;
}

.dropdown-profile__menu-item {
  display: flex;
  align-items: center;
  padding: 1rem 0.625rem;
  padding-right: 64px;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 20px;
  color: #333;
  text-decoration: none;
  transition: color 150ms ease;
}
.dropdown-profile__menu-item:hover {
  color: #1c51a0;
}

.dropdown-profile__logout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  height: 40px;
  padding: 1rem 26px;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  opacity: 0;
  cursor: pointer;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 20px;
  color: #1c51a0;
  text-decoration: none;
  transition: background-color 150ms ease;
}
.dropdown-profile__logout:hover {
  background-color: rgba(0, 0, 0, 0.03);
}
.dropdown-profile__logout svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (min-width: 925px) and (max-width: 1919px) {
  .dropdown-profile {
    width: 281px;
    min-width: 281px;
    max-width: 281px;
    padding: 18px;
    gap: 10px;
    border-radius: 7px;
    box-shadow: 0 9px 14px rgba(0, 0, 0, 0.06);
  }
  .dropdown-profile__header {
    width: 246px;
    height: 26px;
  }
  .dropdown-profile__spacer {
    width: 14px;
    height: 14px;
  }
  .dropdown-profile__title {
    font-size: 0.875rem;
    line-height: 19px;
    letter-spacing: 1.76px;
  }
  .dropdown-profile__close {
    width: 23px;
    height: 23px;
  }
  .dropdown-profile__close svg {
    width: 12px;
    height: 12px;
  }
  .dropdown-profile__card {
    width: 246px;
    min-height: 105px;
    padding: 18px;
    gap: 18px;
  }
  .dropdown-profile__points-row {
    gap: 25px;
  }
  .dropdown-profile__points-info {
    width: 59px;
  }
  .dropdown-profile__points-value {
    font-size: 1.75rem;
    line-height: 39px;
    letter-spacing: -1.1px;
  }
  .dropdown-profile__points-label {
    font-size: 0.658rem;
    line-height: 18px;
    letter-spacing: 1.76px;
  }
  .dropdown-profile__points-image {
    width: 87px;
    height: 56px;
    border-radius: 4px;
  }
  .dropdown-profile__expiry {
    font-size: 0.875rem;
    line-height: 19px;
  }
  .dropdown-profile__card-cta {
    height: 32px;
    padding: 7px 23px;
    font-size: 0.75rem;
    line-height: 18px;
    border-radius: 7px;
  }
  .dropdown-profile__menu {
    width: 246px;
  }
  .dropdown-profile__menu-item {
    padding: 14px 9px;
    padding-right: 56px;
    font-size: 0.75rem;
    line-height: 18px;
  }
  .dropdown-profile__logout {
    height: 35px;
    padding: 14px 23px;
    gap: 9px;
    font-size: 0.75rem;
    line-height: 18px;
    border-radius: 7px;
  }
  .dropdown-profile__logout svg {
    width: 18px;
    height: 18px;
  }
}
.feature-card {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  aspect-ratio: 165/262;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  padding: 2.5rem 1rem;
  container-type: inline-size;
}
@media (min-width: 1024px) {
  .feature-card {
    aspect-ratio: 297/430;
    border-radius: 0.5rem;
    padding: 3rem 1.5rem;
  }
}
.feature-card--content-top {
  justify-content: flex-start;
}
.feature-card--content-top .feature-card__quote-text {
  margin-top: 11%;
}
.feature-card--content-bottom {
  justify-content: flex-end;
  padding-bottom: 3.625rem;
}
@media (min-width: 1024px) {
  .feature-card--content-bottom {
    padding-bottom: 5rem;
  }
}
.feature-card .text-color-theme {
  color: var(--fc-accent-color);
}
.feature-card--content-top.feature-card--flippable .feature-card__front {
  justify-content: flex-start;
  padding: 2.5rem 1rem;
}
@media (min-width: 1024px) {
  .feature-card--content-top.feature-card--flippable .feature-card__front {
    padding: 3rem 1.5rem;
  }
}
.feature-card--content-bottom.feature-card--flippable .feature-card__front {
  justify-content: flex-end;
  padding: 1rem;
  padding-bottom: 3.625rem;
}
@media (min-width: 1024px) {
  .feature-card--content-bottom.feature-card--flippable .feature-card__front {
    padding: 1.5rem;
    padding-bottom: 5rem;
  }
}
.feature-card__flip-trigger {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--fc-accent-color);
  padding: 0;
  z-index: 10;
  transition: transform 150ms ease;
}
@media (min-width: 1024px) {
  .feature-card__flip-trigger {
    top: 1rem;
    right: 1rem;
  }
}
.feature-card__flip-trigger svg {
  width: 22px;
  height: 22px;
  fill: currentcolor;
}
@media (min-width: 1024px) {
  .feature-card__flip-trigger svg {
    width: 40px;
    height: 40px;
  }
}
.feature-card__flip-trigger:hover {
  transform: scale(1.1);
}
.feature-card__flip-trigger--white {
  color: #fff;
}
.feature-card--flippable {
  perspective: 1000px;
  cursor: pointer;
  background: transparent;
}
.feature-card--flippable .feature-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}
.feature-card--flippable .feature-card__front,
.feature-card--flippable .feature-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .feature-card--flippable .feature-card__front,
  .feature-card--flippable .feature-card__back {
    border-radius: 0.5rem;
  }
}
.feature-card--flippable .feature-card__front .like-btn {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  z-index: 10;
}
@media (min-width: 1024px) {
  .feature-card--flippable .feature-card__front .like-btn {
    bottom: 1rem;
    right: 1rem;
  }
}
.feature-card--flippable .feature-card__back {
  transform: rotateY(180deg);
}
.feature-card--flippable .feature-card__back-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.feature-card--flippable .feature-card__easter-btn {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: auto;
}
@media (max-width: 1023px) {
  .feature-card--flippable .feature-card__easter-btn {
    font-size: 0.75rem;
    line-height: 16px;
    padding: 6px 0.625rem;
    min-height: 32px;
  }
}
.feature-card--flippable.is-flipped .feature-card__inner {
  transform: rotateY(180deg);
}
.feature-card--flippable.is-flipped .feature-card__front {
  pointer-events: none;
}
.feature-card--flippable.is-flipped .feature-card__back {
  pointer-events: auto;
}
.feature-card__vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: clamp(11px, 20cqw, 84px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1em;
}
@media (min-width: 1024px) {
  .feature-card__vertical-text {
    font-size: clamp(42px, 20cqw, 64px);
  }
}
@media (min-width: 1920px) {
  .feature-card__vertical-text {
    font-size: 68px;
  }
}
.feature-card__vertical-text--normal {
  font-weight: 400;
}
.feature-card__icon {
  margin-bottom: 0.625rem;
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
}
@media (min-width: 1024px) {
  .feature-card__icon {
    margin-bottom: 1.5rem;
  }
}
.feature-card__svg {
  width: clamp(78px, 78px + 62px * (100vw - 320px) / 160px, 140px);
  height: clamp(78px, 78px + 62px * (100vw - 320px) / 160px, 140px);
  color: var(--fc-accent-color);
}
@media (min-width: 1920px) {
  .feature-card__svg {
    width: 200px;
    height: 200px;
  }
}
.feature-card__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: clamp(10px, 8cqi, 17px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--fc-text-color);
  text-align: center;
  padding: 0;
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
}
@media (min-width: 1024px) {
  .feature-card__text {
    line-height: 1.5;
    padding: 0;
  }
}
@media (min-width: 1920px) {
  .feature-card__text {
    font-size: 22px;
  }
}

.feature-card--dark-bg {
  background-color: #333;
}
.feature-card--dark-bg .feature-card__front {
  background-color: #333;
}
.feature-card--dark-bg.feature-card--flippable {
  background-color: transparent;
}

.feature-card--accent-bg {
  background-color: var(--fc-accent-color);
  border-color: rgba(0, 0, 0, 0.1);
}
.feature-card--accent-bg .feature-card__svg {
  color: #fff;
}
.feature-card--accent-bg .feature-card__text {
  color: #fff;
}
.feature-card--accent-bg.feature-card--flippable {
  background-color: transparent;
  border-color: transparent;
}
.feature-card--accent-bg.feature-card--flippable .feature-card__front {
  background-color: var(--fc-accent-color);
  border-color: rgba(0, 0, 0, 0.1);
}

.feature-card--image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.feature-card--image .feature-card__vertical-text {
  opacity: 0;
  transform: rotate(180deg) translateY(-30px);
}
.feature-card--image .feature-card__title {
  opacity: 0;
  transform: translateY(30px);
}
.feature-card--image.is-revealed .feature-card__vertical-text {
  animation: text-slide-in-vertical 1.2s ease-out 0.15s both;
}
.feature-card--image.is-revealed .feature-card__title {
  animation: text-slide-in 1.2s ease-out 0.15s both;
}
.feature-card--image.is-revealed::after {
  animation-play-state: running;
}
.feature-card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
  backface-visibility: hidden;
  animation: bg-slow-pan-zoom 20s ease-in-out infinite;
  animation-play-state: paused;
}
.feature-card--image:hover::after {
  animation-play-state: paused;
  transform: scale(1.05);
}
.feature-card--image.feature-card--no-animation::after {
  animation: none;
  transform: none;
}
.feature-card--image.feature-card--no-animation:hover::after {
  transform: scale(1.05);
}
.feature-card--image .like-btn {
  z-index: 10;
}

.feature-card--video {
  background: #000;
}
.feature-card--video .feature-card__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 0;
}
.feature-card--video .feature-card__vertical-text,
.feature-card--video .feature-card__title {
  position: relative;
  z-index: 1;
}
.feature-card--video .like-btn {
  z-index: 10;
}
.feature-card--video.feature-card--flippable {
  background: transparent;
}
.feature-card--video.feature-card--flippable .feature-card__front {
  background: #000;
}

.feature-card--info {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem;
}
@media (min-width: 1024px) {
  .feature-card--info {
    padding: 2.5rem;
  }
}
.feature-card--info .feature-card__icon,
.feature-card--info .feature-card__text {
  transition: transform 300ms ease;
  will-change: transform;
}
.feature-card--info:not(.is-revealed) .feature-card__icon,
.feature-card--info:not(.is-revealed) .feature-card__text {
  opacity: 0;
  transform: translateY(30px);
}
.feature-card--info.is-revealed .feature-card__icon {
  animation: text-slide-in 1.2s ease-out 0.15s both;
}
.feature-card--info.is-revealed .feature-card__text {
  animation: text-slide-in 1.2s ease-out 0.3s both;
}
.feature-card--info.is-animation-done .feature-card__icon,
.feature-card--info.is-animation-done .feature-card__text {
  animation: none;
  opacity: 1;
  transform: none;
}
.feature-card--info.is-animation-done:hover .feature-card__icon, .feature-card--info.is-animation-done:hover .feature-card__text {
  transform: scale(1.08);
}
.feature-card--info.feature-card--flippable {
  padding: 0;
}
.feature-card--info.feature-card--flippable .feature-card__front {
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem;
}
@media (min-width: 1024px) {
  .feature-card--info.feature-card--flippable .feature-card__front {
    padding: 2.5rem;
  }
}
.feature-card--info.feature-card--flippable .feature-card__back {
  background: #f5f5f1;
}
.feature-card--info.feature-card--flippable.is-revealed .feature-card__front .feature-card__icon {
  animation: text-slide-in 1.2s ease-out 0.15s both;
}
.feature-card--info.feature-card--flippable.is-revealed .feature-card__front .feature-card__text {
  animation: text-slide-in 1.2s ease-out 0.3s both;
}
.feature-card--info.feature-card--flippable.is-animation-done .feature-card__front .feature-card__icon,
.feature-card--info.feature-card--flippable.is-animation-done .feature-card__front .feature-card__text {
  animation: none;
  opacity: 1;
  transform: none;
}
.feature-card--info.feature-card--flippable.is-animation-done:hover .feature-card__front .feature-card__icon, .feature-card--info.feature-card--flippable.is-animation-done:hover .feature-card__front .feature-card__text {
  transform: scale(1.08);
}

.feature-card--packshot-title {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: center;
}
.feature-card--packshot-title:not(.is-revealed) .feature-card__thumb,
.feature-card--packshot-title:not(.is-revealed) .feature-card__values-text {
  opacity: 0;
  transform: translateY(30px);
}
.feature-card--packshot-title .feature-card__thumb,
.feature-card--packshot-title .feature-card__values-text {
  transition: transform 300ms ease;
  will-change: transform;
}
.feature-card--packshot-title.is-revealed .feature-card__thumb {
  animation: text-slide-in 1.2s ease-out 0.15s both;
}
.feature-card--packshot-title.is-revealed .feature-card__values-text {
  animation: text-slide-in 1.2s ease-out 0.3s both;
}
.feature-card--packshot-title.is-animation-done .feature-card__thumb,
.feature-card--packshot-title.is-animation-done .feature-card__values-text {
  animation: none;
  opacity: 1;
  transform: none;
}
.feature-card--packshot-title.is-animation-done:hover .feature-card__thumb {
  transform: scale(1.1);
}
.feature-card--packshot-title.is-animation-done:hover .feature-card__values-text {
  transform: scale(1.05);
}
.feature-card--packshot-title .feature-card__pack {
  max-width: 50%;
  max-height: 60%;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 0.625rem;
}
@media (min-width: 1024px) {
  .feature-card--packshot-title .feature-card__pack {
    margin-bottom: 1rem;
  }
}
.feature-card--packshot-title .feature-card__pack-title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.625rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (min-width: 1024px) {
  .feature-card--packshot-title .feature-card__pack-title {
    font-size: 1.125rem;
  }
}

.feature-card--packshot {
  background: #fff;
  padding: 0;
}
.feature-card--packshot .feature-card__pack {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
}
.feature-card--packshot:hover .feature-card__pack {
  transform: scale(1.15);
}
.feature-card--packshot .like-btn {
  color: var(--like-btn-color);
  text-shadow: none;
}

.feature-card--image-title {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.feature-card--image-title .feature-card__vertical-text {
  opacity: 0;
  transform: rotate(180deg) translateY(-30px);
}
.feature-card--image-title .feature-card__vertical-title {
  opacity: 0;
  transform: translateY(30px);
}
.feature-card--image-title .feature-card__title,
.feature-card--image-title .feature-card__slogan,
.feature-card--image-title .feature-card__quote-text,
.feature-card--image-title .feature-card__moments-text,
.feature-card--image-title .feature-card__text {
  opacity: 0;
  transform: translateY(30px);
}
.feature-card--image-title.is-revealed .feature-card__vertical-text {
  animation: text-slide-in-vertical 1.2s ease-out 0.15s both;
}
.feature-card--image-title.is-revealed .feature-card__vertical-title {
  animation: text-slide-in-svg 1.2s ease-out 0.15s both;
}
.feature-card--image-title.is-revealed .feature-card__title,
.feature-card--image-title.is-revealed .feature-card__slogan,
.feature-card--image-title.is-revealed .feature-card__quote-text,
.feature-card--image-title.is-revealed .feature-card__moments-text,
.feature-card--image-title.is-revealed .feature-card__text {
  animation: text-slide-in 1.2s ease-out 0.15s both;
}
.feature-card--image-title.is-revealed::before {
  animation-play-state: running;
}
.feature-card--image-title::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
  backface-visibility: hidden;
  animation: bg-slow-pan-zoom 20s ease-in-out infinite;
  animation-play-state: paused;
}
.feature-card--image-title:hover::before {
  animation-play-state: paused;
  transform: scale(1.15);
}
.feature-card--image-title--darken::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(89deg, rgba(0, 0, 0, 0.5) -29.66%, rgba(0, 0, 0, 0) 131.86%);
  z-index: 0;
  pointer-events: none;
}
.feature-card--image-title:hover .feature-card__title, .feature-card--image-title:hover .feature-card__slogan, .feature-card--image-title:hover .feature-card__quote-text, .feature-card--image-title:hover .feature-card__moments-text, .feature-card--image-title:hover .feature-card__text, .feature-card--image-title:hover .feature-card__icon {
  transform: scale(1.05);
}
.feature-card--image-title:hover .feature-card__vertical-text {
  transform: rotate(180deg) scale(1.05);
}
.feature-card--image-title:hover .feature-card__vertical-title {
  transform: scale(1.05);
}
.feature-card--image-title .feature-card__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: clamp(24px, 24px + 24px * (100vw - 320px) / 160px, 48px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  position: relative;
  z-index: 1;
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
}
.feature-card--image-title .feature-card__title--normal {
  font-weight: 400;
}
.feature-card--image-title .feature-card__title-small {
  display: block;
  font-size: clamp(12px, 12px + 8px * (100vw - 320px) / 160px, 20px);
  font-weight: 400;
  margin-bottom: 0.25rem;
}
.feature-card--image-title .feature-card__title-large {
  display: block;
  font-size: clamp(28px, 28px + 28px * (100vw - 320px) / 160px, 56px);
  font-weight: 700;
}
.feature-card--image-title.feature-card--flippable {
  padding: 0;
}
.feature-card--image-title.feature-card--flippable::before {
  display: none;
}
.feature-card--image-title.feature-card--flippable .feature-card__front {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.feature-card--image-title.feature-card--flippable .feature-card__front::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: inherit;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
  backface-visibility: hidden;
  animation: bg-slow-pan-zoom 20s ease-in-out infinite;
  animation-play-state: paused;
  border-radius: inherit;
}
.feature-card--image-title.feature-card--flippable.is-revealed .feature-card__front::before {
  animation-play-state: running;
}
.feature-card--image-title.feature-card--flippable:hover .feature-card__front::before {
  animation-play-state: paused;
  transform: scale(1.15);
}
.feature-card--image-title.feature-card--flippable .feature-card__back {
  background: #f5f5f1;
}
.feature-card--image-title.feature-card--flippable .feature-card__vertical-text,
.feature-card--image-title.feature-card--flippable .feature-card__quote-text,
.feature-card--image-title.feature-card--flippable .feature-card__title,
.feature-card--image-title.feature-card--flippable .feature-card__moments-text {
  position: relative;
  z-index: 1;
}

.feature-card--no-animation::before {
  animation: none;
  transform: none;
}

.feature-card--no-animation:hover::before {
  transform: scale(1.05);
}

.feature-card--anim-rtl::before,
.feature-card--anim-rtl::after {
  animation-name: bg-slow-pan-zoom-rtl;
}

.feature-card--anim-ltr::before,
.feature-card--anim-ltr::after {
  animation-name: bg-slow-pan-zoom-ltr;
}

.feature-card--anim-diagonal::before,
.feature-card--anim-diagonal::after {
  animation-name: bg-slow-pan-zoom-diagonal;
}

.feature-card--anim-diagonal-reverse::before,
.feature-card--anim-diagonal-reverse::after {
  animation-name: bg-slow-pan-zoom-diagonal-reverse;
}

.feature-card--anim-vertical::before,
.feature-card--anim-vertical::after {
  animation-name: bg-slow-pan-zoom-vertical;
}

.feature-card--welcome {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #f5f5f1;
}
.feature-card--welcome::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-image: inherit;
  z-index: 0;
  will-change: transform;
  transform: scale(1);
  transform-origin: top center;
  transition: transform 0.4s ease-out;
}
.feature-card--welcome .feature-card__slogan {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-style: normal;
  font-size: clamp(26px, 24cqi, 64px);
  line-height: 0.85;
  letter-spacing: -0.02em;
  color: var(--fc-accent-color);
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(60px);
  will-change: transform, opacity;
  backface-visibility: hidden;
  transition: transform 0.4s ease-out;
  animation: none;
  margin-bottom: 0;
}
@media (min-width: 1920px) {
  .feature-card--welcome .feature-card__slogan {
    font-size: 74px;
  }
}
.feature-card--welcome.is-revealed::before {
  animation: none;
}
.feature-card--welcome.is-revealed .feature-card__slogan {
  animation: welcome-text-slide-in 1s ease-out 0.4s both;
}
.feature-card--welcome.is-animation-done .feature-card__slogan {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}
.feature-card--welcome.is-animation-done:hover::before {
  transform: scale(1.08);
}
.feature-card--welcome.is-animation-done:hover .feature-card__slogan {
  transform: translateY(-5px) scale(1.05);
}

.feature-card--values .feature-card__thumb {
  width: 82%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 0.625rem;
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
}
@media (min-width: 1024px) {
  .feature-card--values .feature-card__thumb {
    width: 163px;
    margin-bottom: 1rem;
  }
}
.feature-card--values .feature-card__values-text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: clamp(10px, 8cqi, 42px);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1.5;
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
}
.feature-card--values .feature-card__values-text p {
  margin: 6px 0 20px;
  font-size: clamp(10px, 8cqi, 42px);
  font-weight: 700;
}
.feature-card--values .feature-card__values-text--black {
  color: #000;
}

.feature-card--quote .feature-card__quote-text {
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
  margin-bottom: 0;
}
.feature-card--quote .feature-card__quote-small {
  display: block;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: clamp(12px, 8cqi, 24px);
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0;
}
.feature-card--quote .feature-card__quote-large {
  display: block;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: clamp(20px, 16cqi, 48px);
  font-weight: 700;
  line-height: 1em;
  margin-bottom: 0.5rem;
}
@media (min-width: 1024px) {
  .feature-card--quote .feature-card__quote-large {
    font-size: clamp(24px, 20cqi, 50px);
  }
}
.feature-card--quote .feature-card__quote-large--normal {
  font-weight: 400;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .feature-card--quote.feature-card--content-bottom .feature-card__title,
  .feature-card--quote.feature-card--content-bottom .feature-card__quote-text {
    margin-bottom: 10%;
  }
}

.feature-card--moments .feature-card__moments-text {
  text-align: center;
  color: #fff;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: clamp(20px, 10cqi, 28px);
  line-height: 1em;
  position: relative;
  z-index: 1;
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
}
.feature-card--moments .feature-card__moments-large {
  display: block;
  font-size: clamp(20px, 18cqi, 48px);
  font-weight: 400;
  line-height: 1em;
}

.feature-card--blue-title .feature-card__vertical-title {
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
  max-height: 80%;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.feature-card--pink-title .feature-card__vertical-title {
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
  max-height: 80%;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.feature-card--green-superline-title .feature-card__vertical-title {
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
  max-height: 110%;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.feature-card--real-green-ks-title .feature-card__vertical-title {
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
  max-height: 80%;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.feature-card--real-green-100-title .feature-card__vertical-title {
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
  max-height: 85%;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.feature-card--red-title .feature-card__vertical-title {
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
  max-height: 80%;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.feature-card__vertical-text--classic-blue-ks {
  font-size: clamp(11px, 18cqw, 84px);
}
@media (min-width: 1024px) {
  .feature-card__vertical-text--classic-blue-ks {
    font-size: clamp(38px, 17cqw, 64px);
  }
}
@media (min-width: 1920px) {
  .feature-card__vertical-text--classic-blue-ks {
    font-size: 58px;
  }
}

.feature-card__vertical-text--classic-black-ks {
  font-size: clamp(11px, 18cqw, 84px);
}
@media (min-width: 1024px) {
  .feature-card__vertical-text--classic-black-ks {
    font-size: clamp(38px, 14cqw, 55px);
  }
}
@media (min-width: 1920px) {
  .feature-card__vertical-text--classic-black-ks {
    font-size: 55px;
  }
}

.feature-card__vertical-text--classic-black-ks-title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 40cqw, 137px);
  letter-spacing: 0;
}
.feature-card__vertical-text--classic-black-ks-title--normal {
  font-weight: 400;
}
@media (min-width: 1024px) {
  .feature-card__vertical-text--classic-black-ks-title {
    font-size: clamp(56px, 35cqw, 137px);
  }
}
@media (min-width: 1920px) {
  .feature-card__vertical-text--classic-black-ks-title {
    font-size: 137px;
  }
}

.feature-card__vertical-text--black-gold-superline-title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 40cqw, 137px);
  letter-spacing: 0;
}
@media (min-width: 1024px) {
  .feature-card__vertical-text--black-gold-superline-title {
    font-size: clamp(56px, 35cqw, 137px);
  }
}
@media (min-width: 1920px) {
  .feature-card__vertical-text--black-gold-superline-title {
    font-size: 137px;
  }
}

.feature-card--quote .feature-card__quote-large--real-green-ks {
  font-size: clamp(20px, 16cqi, 48px);
}
@media (min-width: 1024px) {
  .feature-card--quote .feature-card__quote-large--real-green-ks {
    font-size: clamp(24px, 14cqi, 44px);
  }
}
.feature-card--quote .feature-card__quote-large--green-superline {
  font-size: clamp(18px, 14cqi, 48px);
}
@media (min-width: 1024px) {
  .feature-card--quote .feature-card__quote-large--green-superline {
    font-size: clamp(24px, 14cqi, 50px);
  }
}

.feature-card--image-title .feature-card__title--blue-superline {
  font-size: clamp(20px, 20cqi, 91px);
}
@media (min-width: 1024px) {
  .feature-card--image-title .feature-card__title--blue-superline {
    font-size: clamp(34px, 22cqi, 64px);
  }
}

.feature-card--cigarillos-gradient-bg {
  background: linear-gradient(154deg, #4b2a82 0%, #484982 32.76%, #425f80 50.48%, #36757e 70.99%, #009278 100%);
  border-color: transparent;
}
.feature-card--cigarillos-gradient-bg .feature-card__svg {
  color: #fff;
}
.feature-card--cigarillos-gradient-bg .feature-card__text {
  color: #fff;
}
.feature-card--cigarillos-gradient-bg .feature-card__flip-trigger {
  color: --fc-accent-color;
}
.feature-card--cigarillos-gradient-bg.feature-card--flippable {
  background: transparent;
  border-color: transparent;
}
.feature-card--cigarillos-gradient-bg.feature-card--flippable .feature-card__front {
  background: linear-gradient(154deg, #4b2a82 0%, #484982 32.76%, #425f80 50.48%, #36757e 70.99%, #009278 100%);
  border-color: transparent;
}

.feature-card--cigarillos-purple-green-title {
  background: #000;
}
.feature-card--cigarillos-purple-green-title .feature-card__vertical-title {
  transition: transform 300ms ease;
  will-change: transform;
  backface-visibility: hidden;
  max-height: 90%;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  position: relative;
  z-index: 1;
}

.form-select {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  width: 100%;
}

.form-select__label {
  display: block;
  width: 100%;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 16px;
  letter-spacing: 0;
  color: #1c51a0;
}

.form-select__wrapper {
  position: relative;
  width: 100%;
}

.form-select__native {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}

.form-select__trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 54px;
  padding: 12px 10px;
  background-color: #fff;
  border: 1px solid #606060;
  border-radius: 0.5rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: border-color 150ms ease, box-shadow 150ms ease, border-radius 150ms ease;
}
@media (max-width: 769px) {
  .form-select__trigger {
    height: auto;
    padding: 12px 10px;
  }
}

.form-select__value {
  flex: 1 0 0;
  min-width: 0;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0;
  color: #858886;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.form-select__value.is-selected {
  color: #333;
}

.form-select__arrow {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  background-color: #606060;
  -webkit-mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><path fill-rule='evenodd' clip-rule='evenodd' d='M13.0594 9.82167C13.2456 10.0113 13.2458 10.319 13.0599 10.509C12.877 10.6959 12.5819 10.6991 12.3952 10.5184L12.3862 10.5095L7.49213 5.52452L2.6124 10.4995C2.42925 10.6862 2.1342 10.6891 1.9476 10.5081L1.93866 10.4992C1.75562 10.3124 1.7528 10.0114 1.93013 9.82108L1.93885 9.81196L7.15517 4.49381C7.33819 4.30722 7.63297 4.30419 7.81961 4.48476L7.82856 4.49365L13.0594 9.82167Z' fill='black'/></svg>") center/contain no-repeat;
  mask: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15 15'><path fill-rule='evenodd' clip-rule='evenodd' d='M13.0594 9.82167C13.2456 10.0113 13.2458 10.319 13.0599 10.509C12.877 10.6959 12.5819 10.6991 12.3952 10.5184L12.3862 10.5095L7.49213 5.52452L2.6124 10.4995C2.42925 10.6862 2.1342 10.6891 1.9476 10.5081L1.93866 10.4992C1.75562 10.3124 1.7528 10.0114 1.93013 9.82108L1.93885 9.81196L7.15517 4.49381C7.33819 4.30722 7.63297 4.30419 7.81961 4.48476L7.82856 4.49365L13.0594 9.82167Z' fill='black'/></svg>") center/contain no-repeat;
  transition: transform 150ms ease;
}

.form-select__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #fff;
  border: 1px solid #606060;
  border-top: none;
  border-radius: 0 0 0.5rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 300px;
  overflow-y: auto;
  display: none;
  scrollbar-width: thin;
  scrollbar-color: #606060 transparent;
}
@media (max-width: 768px) {
  .form-select__dropdown {
    max-height: 200px;
  }
}
.form-select__dropdown::-webkit-scrollbar {
  width: 3px;
}
.form-select__dropdown::-webkit-scrollbar-track {
  background: transparent;
}
.form-select__dropdown::-webkit-scrollbar-thumb {
  background-color: #606060;
  border-radius: 9999px;
}

.form-select__option {
  display: flex;
  align-items: center;
  padding: 0 10px;
  height: 49px;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  color: #606060;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 150ms ease, color 150ms ease;
}
.form-select__option + .form-select__option {
  border-top: 1px solid rgba(96, 96, 96, 0.25);
}
.form-select__option:hover {
  background-color: rgba(28, 81, 160, 0.05);
  color: #333;
}
.form-select__option.is-selected {
  color: #333;
  font-weight: 700;
}

.form-select--open .form-select__trigger {
  border-radius: 0.5rem 0.5rem 0 0;
  border-bottom-color: rgba(96, 96, 96, 0.25);
}
.form-select--open .form-select__dropdown {
  display: block;
}
.form-select--open .form-select__arrow {
  transform: rotate(180deg);
}

.form-select__trigger:focus,
.form-select__trigger:focus-visible {
  outline: none;
}

.form-select--disabled .form-select__trigger {
  opacity: 0.2;
  border-color: #767676;
  cursor: not-allowed;
  pointer-events: none;
}

.form-select--error .form-select__trigger {
  border: 2px solid #ec003e;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.hero-slider__slide.is-active {
  opacity: 1;
  z-index: 2;
}

.hero-slider__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-slider__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slider__bg-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
  will-change: transform;
}

.hero-slider__slide.is-active .hero-slider__bg-image {
  animation: hero-zoom-in 8s ease-out forwards;
}

.hero-slider__bg-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

.hero-slider__overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-slider__overlay-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-slider__content {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3vh;
  height: 100%;
  text-align: center;
  color: #fff;
  width: 100%;
  max-width: 523px;
  margin: auto 0;
  justify-content: center;
}
@media (max-width: 1279px) {
  .hero-slider__content {
    max-width: 323px;
  }
}
@media (max-width: 924px) {
  .hero-slider__content {
    max-width: 237px;
    margin: 0 auto;
    flex: 1 0 0;
    gap: 0.5rem;
    padding-top: 95px;
    align-items: center;
  }
}

.hero-slider__content-item {
  opacity: 0;
  transform: translateY(-100vh);
  will-change: transform, opacity;
}

.hero-slider__slide.is-animated .hero-slider__content-item {
  animation: hero-content-slide-down 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.hero-slider__slide.is-animated .hero-slider__content-item:nth-child(5) {
  animation-delay: 0s;
}
.hero-slider__slide.is-animated .hero-slider__content-item:nth-child(4) {
  animation-delay: 0.15s;
}
.hero-slider__slide.is-animated .hero-slider__content-item:nth-child(3) {
  animation-delay: 0.3s;
}
.hero-slider__slide.is-animated .hero-slider__content-item:nth-child(2) {
  animation-delay: 0.45s;
}
.hero-slider__slide.is-animated .hero-slider__content-item:nth-child(1) {
  animation-delay: 0.6s;
}
.hero-slider__slide.is-animated .hero-slider__content-item:nth-child(6) {
  animation-delay: 0.15s;
}

.hero-slider__slide:not(.is-animated) .hero-slider__content-item {
  opacity: 0;
  transform: translateY(-100vh);
  animation: none;
}

.hero-slider__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: -1.25px;
  font-size: clamp(28px, 28px + 16 * (100vw - 925px) / 995, 44px);
  line-height: clamp(33px, 33px + 19 * (100vw - 925px) / 995, 52px);
  width: 100%;
}
@media (max-width: 924px) {
  .hero-slider__title {
    font-size: 26px;
    line-height: 36px;
    min-height: 78px;
  }
}

.hero-slider__divider {
  width: 2px;
  height: clamp(45px, 45px + 25 * (100vw - 925px) / 995, 70px);
  background-color: #fff;
}
@media (max-width: 924px) {
  .hero-slider__divider {
    height: 32px;
  }
}

.hero-slider__winpoints {
  width: 135px;
  height: 86px;
  border-radius: 0.375rem;
  overflow: hidden;
}
.hero-slider__winpoints img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (max-width: 1919px) {
  .hero-slider__winpoints {
    width: 104px;
    height: 66px;
    border-radius: 5px;
  }
}

.hero-slider__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 924px) {
  .hero-slider__cta {
    margin-top: auto;
    margin-bottom: 52px;
  }
  .hero-slider__cta .btn {
    width: 100%;
  }
}
@media (min-width: 925px) {
  .hero-slider__cta .btn {
    width: auto;
  }
}

.hero-slider__bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-bottom: 30px;
}
@media (max-width: 1023px) {
  .hero-slider__bottom {
    padding: 0 1rem 24px;
    gap: 28px;
  }
}

.hero-slider__pager {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero-slider__pager {
    gap: 1rem;
  }
}
@media (max-width: 1023px) {
  .hero-slider__pager {
    width: 100%;
    gap: 1rem;
    max-width: 237px;
    margin: 0 auto;
  }
}

.hero-slider__pager-item {
  height: 4px;
  border-radius: 3px;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background-color 300ms ease;
  background-color: rgba(245, 245, 241, 0.33);
  position: relative;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .hero-slider__pager-item {
    width: 89px;
  }
}
@media (max-width: 1023px) {
  .hero-slider__pager-item {
    flex: 1 0 0;
  }
}
.hero-slider__pager-item.is-active {
  background-color: #fff;
}

.home-cards {
  padding: 0;
}

.home-cards__grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 769px) {
  .home-cards__grid {
    flex-direction: row;
    gap: 24px;
  }
}

.home-card {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  aspect-ratio: 285/507;
  color: #fff;
}
.home-card, .home-card:link, .home-card:visited, .home-card:hover, .home-card:active, .home-card:focus {
  color: #fff;
  text-decoration: none;
}
@media (min-width: 769px) {
  .home-card {
    flex: 1;
    aspect-ratio: 404/550;
  }
}

.home-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.home-card__media img,
.home-card__media source {
  display: block;
}

picture.home-card__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (min-width: 769px) {
  picture.home-card__media img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
  }
  .home-card:hover picture.home-card__media img {
    transform: scale(1.05);
  }
}

video.home-card__media {
  -o-object-fit: cover;
  object-fit: cover;
}

.home-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.home-card__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(21, 20, 20, 0) 30%, rgba(34, 31, 29, 0.7) 100%);
}

.home-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  flex: 1;
  padding: 20px;
  text-align: center;
  gap: 8px;
}
@media (min-width: 769px) {
  .home-card__content {
    padding-bottom: 30px;
    transition: padding-bottom 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
}

.home-card__title {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: -1.25px;
  margin: 0;
  font-size: 48px;
  line-height: 48px;
  margin-bottom: 22px;
}
@media (min-width: 769px) {
  .home-card__title {
    font-size: clamp(34px, -11.14px + 5.87vw, 64px);
    line-height: 1.1;
    margin-bottom: 0;
  }
}
@media (min-width: 769px) {
  .home-card__title--medium {
    font-size: clamp(34px, -11.14px + 5.87vw, 48px);
  }
}
@media (min-width: 769px) {
  .home-card__title--small {
    font-size: clamp(34px, -11.14px + 5.87vw, 42px);
  }
}

.home-card__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #fff;
  margin: 0;
  font-size: 0.875rem;
  line-height: 20px;
}
@media (min-width: 769px) {
  .home-card__text {
    font-size: clamp(12px, 2.97px + 1.17vw, 18px);
    line-height: 1.4;
  }
}

.home-card__cta {
  margin-top: 8px;
  width: calc(100% - 40px);
}
@media (min-width: 769px) {
  .home-card__cta {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    max-width: 237px;
    margin-top: 0;
    opacity: 0;
    transition: opacity 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
  }
}

@media (min-width: 769px) {
  .home-card:hover .home-card__content {
    padding-bottom: 95px;
  }
  .home-card:hover .home-card__cta {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}
.like-btn {
  position: absolute;
  bottom: 0.625rem;
  right: 0.625rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 20px;
  text-shadow: 0 0 14px rgba(0, 0, 0, 0.25);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 10;
  transition: transform 150ms ease;
}
@media (min-width: 1024px) {
  .like-btn {
    bottom: 1rem;
    right: 1rem;
    gap: 6px;
    font-size: 0.875rem;
  }
}
.like-btn::before {
  content: "";
  position: absolute;
  inset: -15px;
}
.like-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -24%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 150, 201, 0.1);
  opacity: 0;
  transition: opacity 150ms ease;
  pointer-events: none;
  z-index: -1;
}
@media (min-width: 1024px) {
  .like-btn:hover::after {
    opacity: 1;
  }
}
.like-btn:hover {
  transform: scale(1.1);
}
.like-btn svg {
  width: 19px;
  height: 18px;
  fill: none;
  transition: all 150ms ease;
}
@media (min-width: 1024px) {
  .like-btn svg {
    width: 33px;
    height: 31px;
  }
}
.like-btn.is-liked svg {
  fill: var(--like-btn-color);
  color: #fff;
}
.like-btn.is-pulsing svg {
  animation: like-pulse 0.4s ease-out;
}
.like-btn--light {
  color: var(--like-btn-color);
  text-shadow: none;
}
.like-btn--light.is-liked svg {
  fill: var(--like-btn-color);
  color: #fff;
}

.like-btn__count {
  display: block;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 200;
  background-color: #fff;
  transition: background-color 300ms ease, box-shadow 300ms ease;
}

.navbar--negative {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background-color: transparent;
}
.navbar--negative .navbar__toggle {
  color: #fff;
}
.navbar--negative .navbar__toggle svg path {
  fill: #fff;
}
.navbar--negative .navbar__toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.navbar--negative .navbar__icon-btn {
  color: #fff;
}
.navbar--negative .navbar__icon-btn svg path {
  fill: #fff;
}
.navbar--negative .navbar__icon-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.navbar--negative .navbar__logo img {
  filter: brightness(0) invert(1);
}
.navbar--negative .nav-link {
  color: #fff;
}
.navbar--negative .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.navbar--negative .nav-link.is-active {
  background-color: rgba(255, 255, 255, 0.15);
}
.navbar--negative .navbar__points {
  background-color: #fff;
  color: #1c51a0;
}
.navbar--negative .navbar__points .navbar__points-value {
  color: #1c51a0;
}
.navbar--negative .navbar__points .navbar__points-label {
  color: #1c51a0;
}
.navbar--negative .icon-chevron {
  color: #fff;
}
.navbar--negative.navbar--scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  animation: navbarSlideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.navbar--negative.navbar--scrolled .navbar__toggle {
  color: #1c51a0;
}
.navbar--negative.navbar--scrolled .navbar__toggle svg path {
  fill: #1c51a0;
}
.navbar--negative.navbar--scrolled .navbar__toggle:hover {
  background-color: rgba(28, 81, 160, 0.1);
}
.navbar--negative.navbar--scrolled .navbar__icon-btn {
  color: #1c51a0;
}
.navbar--negative.navbar--scrolled .navbar__icon-btn svg path {
  fill: #1c51a0;
}
.navbar--negative.navbar--scrolled .navbar__icon-btn:hover {
  background-color: rgba(28, 81, 160, 0.1);
}
.navbar--negative.navbar--scrolled .navbar__logo img {
  filter: none;
}
.navbar--negative.navbar--scrolled .nav-link {
  color: #1c51a0;
}
.navbar--negative.navbar--scrolled .nav-link:hover {
  background-color: rgba(28, 81, 160, 0.1);
}
.navbar--negative.navbar--scrolled .nav-link.is-active {
  background-color: rgba(0, 150, 201, 0.1);
}
.navbar--negative.navbar--scrolled .navbar__points {
  background-color: #1c51a0;
  color: #fff;
}
.navbar--negative.navbar--scrolled .navbar__points .navbar__points-value {
  color: #fff;
}
.navbar--negative.navbar--scrolled .navbar__points .navbar__points-label {
  color: #fff;
}
.navbar--negative.navbar--scrolled .icon-chevron {
  color: #1c51a0;
}
.navbar--negative.navbar--megamenu-open {
  background-color: #fff;
}
.navbar--negative.navbar--megamenu-open .navbar__toggle {
  color: #1c51a0;
}
.navbar--negative.navbar--megamenu-open .navbar__toggle svg path {
  fill: #1c51a0;
}
.navbar--negative.navbar--megamenu-open .navbar__toggle:hover {
  background-color: rgba(28, 81, 160, 0.1);
}
.navbar--negative.navbar--megamenu-open .navbar__icon-btn {
  color: #1c51a0;
}
.navbar--negative.navbar--megamenu-open .navbar__icon-btn svg path {
  fill: #1c51a0;
}
.navbar--negative.navbar--megamenu-open .navbar__icon-btn:hover {
  background-color: rgba(28, 81, 160, 0.1);
}
.navbar--negative.navbar--megamenu-open .navbar__logo img {
  filter: none;
}
.navbar--negative.navbar--megamenu-open .nav-link {
  color: #1c51a0;
}
.navbar--negative.navbar--megamenu-open .nav-link:hover {
  background-color: rgba(28, 81, 160, 0.1);
}
.navbar--negative.navbar--megamenu-open .nav-link.is-active {
  background-color: rgba(0, 150, 201, 0.1);
}
.navbar--negative.navbar--megamenu-open .navbar__points {
  background-color: #1c51a0;
  color: #fff;
}
.navbar--negative.navbar--megamenu-open .navbar__points .navbar__points-value {
  color: #fff;
}
.navbar--negative.navbar--megamenu-open .navbar__points .navbar__points-label {
  color: #fff;
}
.navbar--negative.navbar--megamenu-open .icon-chevron {
  color: #1c51a0;
}

.navbar__mobile {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 47px;
  max-width: 1308px;
  margin-inline: auto;
  padding-inline: 0.25rem 17.5px;
}
@media (min-width: 925px) {
  .navbar__mobile {
    display: none;
  }
}
@media (min-width: 1920px) {
  .navbar__mobile {
    max-width: 1474px;
  }
}
.navbar__mobile-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar__mobile-right {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__desktop {
  display: none;
}
@media (min-width: 925px) {
  .navbar__desktop {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1308px;
    margin-inline: auto;
    padding-inline: 1.5rem;
    padding-bottom: 1.25rem;
  }
}
@media (min-width: 1920px) {
  .navbar__desktop {
    max-width: 1474px;
  }
}
.navbar__desktop > .navbar__logo {
  padding-top: 0.5rem;
}
.navbar__desktop .navbar__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.navbar__desktop .navbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.navbar__logo img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
  transition: filter 300ms ease;
}

.navbar__toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  color: #1c51a0;
  transition: background-color 150ms ease, color 300ms ease;
}
.navbar__toggle:hover {
  background-color: rgba(28, 81, 160, 0.1);
}
.navbar__toggle .icon-burger {
  width: 14px;
  height: 14px;
}
.navbar__toggle .icon-close {
  display: none;
  width: 14px;
  height: 14px;
}
.navbar__toggle.is-active .icon-burger {
  display: none;
}
.navbar__toggle.is-active .icon-close {
  display: block;
}

.navbar__nav .nav-list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-item {
  position: relative;
}
.nav-item--has-dropdown .nav-link .icon-chevron {
  transition: transform 150ms ease;
}
.nav-item--has-dropdown:hover .icon-chevron, .nav-item--has-dropdown.is-open .icon-chevron {
  transform: rotate(180deg);
}
.nav-item--has-dropdown:hover .nav-link, .nav-item--has-dropdown.is-open .nav-link {
  background-color: rgba(0, 150, 201, 0.1);
}
.nav-item--has-dropdown.is-open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.625rem 0.625rem;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #1c51a0;
  line-height: 20px;
  white-space: nowrap;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 150ms ease, color 300ms ease;
}
.nav-link:hover {
  background-color: rgba(28, 81, 160, 0.1);
}
.nav-link.is-active {
  background-color: rgba(0, 150, 201, 0.1);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  padding: 0.5rem 0;
  background-color: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 150ms ease;
  z-index: 101;
}
.dropdown-menu li {
  display: block;
}

.dropdown-link {
  display: block;
  padding: 0.5rem 1rem;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #1c51a0;
  white-space: nowrap;
  transition: background-color 150ms ease;
}
.dropdown-link:hover {
  background-color: rgba(28, 81, 160, 0.1);
}

.navbar__icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  color: #1c51a0;
  border-radius: 0.5rem;
  transition: background-color 150ms ease, color 300ms ease;
}
@media (min-width: 925px) {
  .navbar__icon-btn {
    width: 42px;
    height: 42px;
  }
}
.navbar__icon-btn svg path {
  transition: fill 300ms ease;
}
.navbar__icon-btn:hover {
  background-color: rgba(28, 81, 160, 0.1);
}

.navbar__points {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  padding: 0.125rem 0.5rem;
  background-color: #1c51a0;
  color: #fff;
  border-radius: 0.625rem;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  white-space: nowrap;
  overflow: hidden;
  cursor: default;
  text-decoration: none;
  transition: background-color 300ms ease, color 300ms ease;
}
.navbar__points-value {
  font-size: 11.5px;
  font-weight: 400;
  line-height: 14.85px;
  transition: color 300ms ease;
}
@media (min-width: 925px) {
  .navbar__points-value {
    font-size: 0.875rem;
    line-height: 18px;
  }
}
.navbar__points-label {
  font-size: 8px;
  font-weight: 400;
  line-height: 11.5px;
  transition: color 300ms ease;
}
@media (min-width: 925px) {
  .navbar__points-label {
    font-size: 0.625rem;
    line-height: 14px;
  }
}
.navbar__points-coin {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  flex-shrink: 0;
}

@keyframes navbarSlideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: none;
  }
}
@keyframes mobileNavSlideIn {
  from {
    opacity: 1;
    transform: translateY(-220px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes dropdownCardSlideIn {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes mobileNavOverlayIn {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: none;
  }
}
@keyframes mobileNavOverlayOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
.mobile-nav {
  position: fixed;
  inset: 0;
  background-color: #f5f5f1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 107px;
  padding-bottom: 30px;
  transform: translateY(-100%);
  overflow-y: hidden;
  z-index: 400;
}
@media (min-width: 925px) {
  .mobile-nav {
    display: none;
  }
}
.mobile-nav.is-open {
  transform: translateY(0);
  animation: mobileNavOverlayIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  overflow-y: auto;
}
.mobile-nav.is-open .mobile-nav__item,
.mobile-nav.is-open .mobile-nav__logo {
  animation: mobileNavSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--i, 0) * 0.08s + 0.05s);
}
.mobile-nav.is-closing {
  animation: mobileNavOverlayOut 0.3s cubic-bezier(0.5, 0, 0.75, 0) forwards;
}
.mobile-nav__item, .mobile-nav__logo {
  opacity: 0;
}
.mobile-nav__close {
  opacity: 1;
  --i: 0;
  position: absolute;
  top: 4px;
  left: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  color: #1c51a0;
  transition: background-color 150ms ease;
}
.mobile-nav__close:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.mobile-nav__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  width: 100%;
}
.mobile-nav__item {
  width: 100%;
  min-width: 284px;
}
.mobile-nav__item--has-dropdown .mobile-nav__link {
  justify-content: center;
}
.mobile-nav__item--has-dropdown .mobile-nav__link .icon-plus {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform 150ms ease;
}
.mobile-nav__item--has-dropdown.is-open .mobile-nav__link .icon-plus {
  transform: rotate(45deg);
}
.mobile-nav__item--has-dropdown.is-open .mobile-dropdown {
  padding-top: 20px;
  padding-bottom: 20px;
}
.mobile-nav__item--has-dropdown.is-open .mobile-dropdown .mobile-dropdown__card {
  animation: dropdownCardSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--card-i, 0) * 0.06s);
}
.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  min-height: 56px;
  padding: 16px 40px;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #333;
  line-height: 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: color 150ms ease;
  overflow: hidden;
}
.mobile-nav__link:hover {
  color: #1c51a0;
}
.mobile-nav__logo {
  margin-top: auto;
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav__logo img {
  width: 90px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}

.mobile-dropdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding-top 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding-bottom 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-dropdown__card {
  position: relative;
  display: flex;
  align-items: center;
  height: 56px;
  min-height: 56px;
  max-height: 56px;
  padding: 12px 20px;
  border-radius: 0.5rem;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 150ms ease;
  opacity: 0;
}
.mobile-dropdown__card:hover {
  opacity: 0.9;
}
.mobile-dropdown__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
  pointer-events: none;
}
.mobile-dropdown__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(89.45deg, rgba(0, 0, 0, 0.6) 34.5%, rgba(0, 0, 0, 0) 72%);
  border-radius: 0.5rem;
  pointer-events: none;
}
.mobile-dropdown__card-text {
  position: relative;
  z-index: 1;
  flex: 1;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mobile-dropdown__card--white {
  background: #fff;
  justify-content: space-between;
  height: 54px;
  min-height: 54px;
  max-height: 54px;
  padding: 12px 16px;
}
.mobile-dropdown__card-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 20px;
  color: #333;
}
.mobile-dropdown__card-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  -o-object-fit: contain;
  object-fit: contain;
}
.mobile-dropdown__card-thumb {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  -o-object-fit: contain;
  object-fit: contain;
}

@keyframes megamenuSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes megamenuCardSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.megamenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.06);
  padding: 32px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 100;
  transition: opacity 150ms ease, visibility 150ms ease;
}
@media (min-width: 925px) {
  .megamenu {
    display: block;
  }
}
.megamenu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  animation: megamenuSlideDown 0.25s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.megamenu.is-open .megamenu__top {
  animation: megamenuCardSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.05s;
}
.megamenu.is-open .megamenu__card {
  animation: megamenuCardSlideIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--card-i, 0) * 0.08s + 0.1s);
}
.megamenu.is-open .megamenu__link-card {
  animation: megamenuCardSlideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--link-i, 0) * 0.06s + 0.35s);
}
.megamenu__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  max-width: 1308px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 1920px) {
  .megamenu__container {
    max-width: 1474px;
  }
}
.megamenu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  border-bottom: 1px solid #d3d3d3;
  opacity: 0;
}
.megamenu__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  color: #1c51a0;
}
.megamenu__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 150ms ease;
}
.megamenu__close svg {
  width: 14px;
  height: 14px;
}
.megamenu__close:hover {
  background-color: rgba(28, 81, 160, 0.1);
}
.megamenu__cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
  max-width: 1046px;
}
.megamenu__card {
  text-decoration: none;
}
.megamenu__card--image {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  height: 247px;
  padding: 16px 28px;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  opacity: 0;
}
.megamenu__card-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 0.5rem;
  pointer-events: none;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.megamenu__card-gradient {
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 14.37%, rgba(0, 0, 0, 0) 55.87%);
  pointer-events: none;
  transition: background 150ms ease;
}
.megamenu__card-text {
  position: relative;
  z-index: 1;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 20px;
  color: #fff;
  text-align: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.megamenu__card--image:hover .megamenu__card-bg {
  transform: scale(1.05);
}
.megamenu__card--image:hover .megamenu__card-gradient {
  background: linear-gradient(0deg, rgba(0, 150, 201, 0.1), rgba(0, 150, 201, 0.1)), linear-gradient(180deg, rgba(0, 0, 0, 0.7) 14.37%, rgba(0, 0, 0, 0) 55.87%);
}
.megamenu__links {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 1046px;
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
}
.megamenu__link-card {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 12px 16px;
  background-color: #f5f5f1;
  border-radius: 0.5rem;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 150ms ease;
  opacity: 0;
}
.megamenu__link-card:hover {
  background-color: rgb(234.375, 234.375, 226.125);
}
.megamenu__link-card-text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 20px;
  color: #333;
}
.megamenu__link-card-arrow {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  -o-object-fit: contain;
  object-fit: contain;
}

.nav-item--has-megamenu .nav-link .icon-chevron {
  transition: transform 150ms ease;
}
.nav-item--has-megamenu.is-open .icon-chevron {
  transform: rotate(180deg);
}
.nav-item--has-megamenu.is-open .nav-link {
  background-color: rgba(0, 150, 201, 0.1);
}

body.nav-open {
  overflow: hidden;
}
@media (min-width: 925px) {
  body.nav-open {
    overflow: auto;
  }
}

.navbar__breadcrumb {
  width: 100%;
  padding-bottom: 8px;
}
.navbar__breadcrumb-inner {
  max-width: 1308px;
  margin-inline: auto;
  padding-inline: 17.5px;
}
@media (min-width: 769px) {
  .navbar__breadcrumb-inner {
    padding-inline: 3rem;
  }
}
@media (min-width: 1920px) {
  .navbar__breadcrumb-inner {
    max-width: 1474px;
  }
}
.navbar__breadcrumb--desktop-only {
  display: none;
}
@media (min-width: 925px) {
  .navbar__breadcrumb--desktop-only {
    display: block;
  }
}
@media (min-width: 925px) {
  .navbar__breadcrumb--mobile-only {
    display: none;
  }
}

.onboarding-backdrop {
  position: fixed;
  inset: 0;
  z-index: 400;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.onboarding-backdrop.is-active {
  opacity: 1;
  visibility: visible;
}
.onboarding-backdrop.is-dismissing {
  opacity: 0;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.onboarding {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.onboarding__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.onboarding__bg--active {
  opacity: 1;
}

.onboarding__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}
.onboarding__overlay--dark {
  background: linear-gradient(180deg, rgba(34, 31, 29, 0.9) 0%, rgba(21, 20, 20, 0) 49.5%), linear-gradient(0deg, rgba(34, 31, 29, 0.9) 0%, rgba(21, 20, 20, 0) 59.5%);
}
.onboarding__overlay--blue {
  background: linear-gradient(180deg, rgba(34, 31, 29, 0.95) 0%, rgba(21, 20, 20, 0) 49.5%), linear-gradient(0deg, rgba(34, 31, 29, 0.95) 0%, rgba(21, 20, 20, 0) 59.5%);
}

.onboarding__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 150ms ease;
}
.onboarding__close::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.48 19.94'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.349.213C1.036-.076.541-.071.234.228c-.312.304-.312.797 0 1.1L9.11 9.971.234 18.613l-.015.015c-.296.305-.291.787.015 1.085.312.304.818.304 1.13 0L10.24 11.07l8.876 8.642.016.015c.313.289.807.284 1.114-.015.312-.304.312-.797 0-1.1l-8.876-8.642 8.876-8.642.015-.015c.297-.305.292-.786-.015-1.085-.312-.304-.818-.304-1.13 0L10.24 8.87 1.365.228 1.349.213z' fill='%23fff'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.48 19.94'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.349.213C1.036-.076.541-.071.234.228c-.312.304-.312.797 0 1.1L9.11 9.971.234 18.613l-.015.015c-.296.305-.291.787.015 1.085.312.304.818.304 1.13 0L10.24 11.07l8.876 8.642.016.015c.313.289.807.284 1.114-.015.312-.304.312-.797 0-1.1l-8.876-8.642 8.876-8.642.015-.015c.297-.305.292-.786-.015-1.085-.312-.304-.818-.304-1.13 0L10.24 8.87 1.365.228 1.349.213z' fill='%23fff'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
.onboarding__close:hover {
  opacity: 1;
}

.onboarding__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding: 10px 20px 20px;
}

.onboarding__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 28px;
}

.onboarding__logo {
  width: 95px;
  height: auto;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.is-active .onboarding__logo {
  opacity: 1;
  transform: scale(1);
}

.onboarding__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  text-align: center;
  margin: 0;
  max-width: 263px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.15s, transform 0.4s ease 0.15s;
}
.is-active .onboarding__title {
  opacity: 1;
  transform: translateY(0);
}

.onboarding__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 auto;
  justify-content: flex-end;
  min-height: 0;
}

.onboarding__step {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  width: 100%;
  flex: 1 1 auto;
  min-height: 0;
  gap: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.onboarding__step.is-active {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.onboarding__step.is-entering {
  display: flex;
}
.onboarding__step.is-leaving {
  display: flex;
  opacity: 0;
  transform: translateY(-20px);
}

.onboarding__desc {
  background-color: rgba(28, 81, 160, 0.8);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.onboarding__desc p {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  text-align: center;
  margin: 0;
  max-width: 246px;
}
.onboarding__desc strong {
  font-weight: 700;
}
.onboarding__desc--no-bg {
  background-color: transparent;
}

.onboarding__coins {
  display: block;
  max-width: 256px;
  width: 80%;
  height: auto;
  margin: auto;
}

.onboarding__cards {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 286px;
}

.onboarding__card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
  background-color: rgba(76, 128, 207, 0.8);
  border-radius: 0.5rem;
  min-height: 54px;
  padding: 12px 16px;
  overflow: hidden;
}

.onboarding__card-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-right: 8px;
}

.onboarding__card-text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #fff;
  text-align: center;
  flex: 1 1 0;
  margin: 0;
}

.onboarding__card--no-icon .onboarding__card-text {
  text-align: center;
  width: 100%;
}

.onboarding__svg-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  flex: 1 1 0;
  min-height: 0;
  margin: auto;
}
.onboarding__svg-text svg {
  display: block;
  width: 100%;
  height: 100%;
}
.onboarding__svg-text .svg-letter {
  fill-opacity: 0;
  stroke-dasharray: var(--path-length);
  stroke-dashoffset: var(--path-length);
}

.onboarding__step.is-active .onboarding__svg-text .svg-letter {
  animation: svg-draw 1.5s ease forwards, svg-fill 0.4s ease forwards;
}

.onboarding__step.is-active .svg-letter[data-index="0"] {
  animation-delay: 0s, 1.3s;
}

.onboarding__step.is-active .svg-letter[data-index="1"] {
  animation-delay: 0.12s, 1.42s;
}

.onboarding__step.is-active .svg-letter[data-index="2"] {
  animation-delay: 0.24s, 1.54s;
}

.onboarding__step.is-active .svg-letter[data-index="3"] {
  animation-delay: 0.36s, 1.66s;
}

.onboarding__step.is-active .svg-letter[data-index="4"] {
  animation-delay: 0.48s, 1.78s;
}

.onboarding__step.is-active .svg-letter[data-index="5"] {
  animation-delay: 0.6s, 1.9s;
}

.onboarding__step.is-active .svg-letter[data-index="6"] {
  animation-delay: 0.72s, 2.02s;
}

.onboarding__step.is-active .svg-letter[data-index="7"] {
  animation-delay: 0.84s, 2.14s;
}

.onboarding__step.is-active .svg-letter[data-index="8"] {
  animation-delay: 0.96s, 2.26s;
}

.onboarding__step.is-active .svg-letter[data-index="9"] {
  animation-delay: 1.08s, 2.38s;
}

.onboarding__step.is-active .svg-letter[data-index="10"] {
  animation-delay: 1.2s, 2.5s;
}

@keyframes svg-draw {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes svg-fill {
  to {
    fill-opacity: 1;
  }
}
.onboarding__info-btn {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  margin: 0 -8px 0 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 150ms ease;
}
.onboarding__info-btn svg {
  width: 16px;
  height: 16px;
}
.onboarding__info-btn:hover {
  opacity: 1;
}

.onboarding__alert {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: 5;
  max-width: 320px;
}
.onboarding__alert:not(.is-visible) {
  display: flex;
  opacity: 0;
  visibility: hidden;
}
.onboarding__alert.is-visible {
  animation: none;
  opacity: 1;
  visibility: visible;
}
.onboarding__alert {
  transition: opacity 150ms ease, visibility 150ms ease;
}

.onboarding__footer {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100%;
  padding-top: 30px;
}

.onboarding__progress {
  width: 100%;
  height: 6px;
  border-radius: 0.25rem;
  background: linear-gradient(90deg, rgba(245, 245, 241, 0.33) 0%, rgba(245, 245, 241, 0.33) 100%), linear-gradient(90deg, #666 0%, #666 100%);
}

.onboarding__progress-fill {
  height: 6px;
  border-radius: 0.25rem;
  background: #fff;
  width: 25%;
  transition: width 0.5s ease;
}

.onboarding__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8px 26px;
  border: 1px solid #fff;
  border-radius: 0.5rem;
  background: none;
  color: #fff;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 0;
  text-align: center;
  cursor: pointer;
  transition: background-color 150ms ease;
  white-space: nowrap;
}
.onboarding__btn:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.onboarding-open {
  overflow: hidden;
}

@media (min-width: 769px) {
  .onboarding-backdrop {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.5);
  }
  .onboarding {
    width: 560px;
    max-width: 90vw;
    height: 850px;
    max-height: 90vh;
    min-height: auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 16px rgba(0, 0, 0, 0.06);
  }
  .onboarding__close {
    top: 12px;
    right: 12px;
    width: 30px;
    height: 30px;
  }
  .onboarding__close::before {
    width: 19px;
    height: 19px;
  }
  .onboarding__bg {
    border-radius: 16px;
  }
  .onboarding__overlay {
    border-radius: 16px;
  }
  .onboarding__container {
    padding: 12px 25px 25px;
  }
  .onboarding__header {
    gap: clamp(0px, 0.9vh, 6px);
    padding-top: clamp(8px, 2.4vh, 20px);
    flex-shrink: 0;
  }
  .onboarding__logo {
    width: clamp(85px, 16vh, 135px);
  }
  .onboarding__title {
    font-size: clamp(20px, 3.3vh, 28px);
    line-height: clamp(26px, 4.4vh, 37px);
    max-width: 340px;
  }
  .onboarding__desc {
    border-radius: clamp(10px, 1.6vh, 14px);
    padding: clamp(14px, 3.3vh, 28px);
  }
  .onboarding__desc p {
    font-size: clamp(20px, 3.3vh, 28px);
    line-height: clamp(26px, 4.2vh, 36px);
    max-width: 344px;
  }
  .onboarding__coins {
    max-width: clamp(200px, 40vh, 340px);
    width: clamp(45%, 60vh, 70%);
    margin: auto;
    padding-top: clamp(5px, 2.4vh, 20px);
  }
  .onboarding__step {
    gap: clamp(12px, 2.4vh, 20px);
  }
  .onboarding__cards {
    gap: clamp(6px, 1.2vh, 10px);
    max-width: clamp(340px, 47vh, 400px);
  }
  .onboarding__card {
    min-height: clamp(46px, 7.5vh, 64px);
    padding: clamp(8px, 1.6vh, 14px) clamp(14px, 2.4vh, 20px);
  }
  .onboarding__card-icon {
    width: clamp(26px, 4.2vh, 36px);
    height: clamp(26px, 4.2vh, 36px);
    margin-right: 10px;
  }
  .onboarding__card-text {
    font-size: clamp(18px, 2.8vh, 24px);
    line-height: clamp(24px, 3.5vh, 30px);
  }
  .onboarding__svg-text {
    max-width: clamp(120px, 30vh, 360px);
    margin: auto;
    padding-top: clamp(0px, 2vh, 20px);
  }
  .onboarding__footer {
    gap: clamp(14px, 3.3vh, 28px);
    max-width: 400px;
    align-self: center;
    padding-top: clamp(14px, 3.5vh, 30px);
  }
  .onboarding__btn {
    height: clamp(38px, 5.6vh, 48px);
    font-size: clamp(13px, 1.6vh, 0.875rem);
  }
}
.play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  position: relative;
  transition: border-color 150ms ease, background-color 150ms ease, box-shadow 150ms ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.play-btn::after {
  content: "";
  display: block;
  width: 14.7px;
  height: 12.8px;
  background-color: #1c51a0;
  mask-image: url("./static/icons/icons/icon-play-chevron.svg");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url("./static/icons/icons/icon-play-chevron.svg");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transform: rotate(90deg);
  margin-left: 2px;
}
.play-btn:hover:not(:disabled) {
  border-color: #1c51a0;
}
.play-btn:active:not(:disabled) {
  border-color: #1c51a0;
}
.play-btn:focus-visible {
  outline: none;
  background-color: #f5f5f1;
  border-color: #f5f5f1;
  box-shadow: 0 0 0 4px #0096c9;
}
.play-btn:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.play-btn-sm {
  width: 30px;
  height: 30px;
}
.play-btn-sm::after {
  width: 10.9px;
  height: 9.5px;
}

.product-card {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 404/550;
  border-radius: 0.5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  padding: 0 10px 30px;
}
@media (max-width: 1023px) {
  .product-card {
    width: 100%;
    max-width: 285px;
    height: auto;
    aspect-ratio: 285/404;
    padding: 0 16px 16px;
  }
}

.product-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("./static/images/product-card-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 0.5rem;
}

.product-card__badge {
  display: none;
}

.product-card--new .product-card__badge {
  display: block;
  position: absolute;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 3;
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 64px;
  line-height: 64px;
  font-style: italic;
  color: #1c51a0;
  letter-spacing: -1.25px;
  text-align: center;
  pointer-events: none;
}
@media (max-width: 1023px) {
  .product-card--new .product-card__badge {
    font-size: 40px;
    line-height: 40px;
    top: 16px;
  }
}

.product-card__image {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, calc(-50% + -14.2%));
  width: 79.2%;
  height: 64%;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .product-card__image {
    width: 57.2%;
    height: 57.9%;
    transform: translate(-50%, calc(-50% + -32%));
    transition: none;
    will-change: auto;
  }
}

.product-card--new .product-card__image {
  width: 74.3%;
  height: 57.8%;
  transform: translate(-50%, calc(-50% + -6.4%));
}
@media (max-width: 1023px) {
  .product-card--new .product-card__image {
    width: 46%;
    height: 47%;
    transform: translate(-50%, calc(-50% + -25%));
  }
}

.product-card__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.product-card__name {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: -1.25px;
  color: #1c51a0;
  margin: 0;
}
@media (max-width: 1023px) {
  .product-card__name {
    font-size: 22px;
    line-height: 31px;
    letter-spacing: -1.07px;
  }
}

.product-card__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  color: #333;
  margin: 0;
}
@media (max-width: 1023px) {
  .product-card__desc {
    font-size: 12px;
    line-height: 17px;
  }
}

.product-card__action {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  max-height: 0;
  margin-top: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), margin-top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
@media (max-width: 1023px) {
  .product-card__action {
    max-height: 60px;
    margin-top: 14px;
    opacity: 1;
    pointer-events: auto;
    width: auto;
    transition: none;
  }
  .product-card__action .btn {
    font-size: 12px;
    line-height: 17px;
    padding: 12px 22px;
    border-radius: 7px;
    border-width: 1.7px;
  }
}

.product-card--red .product-card__name {
  color: #de1111;
}
.product-card--red .product-card__action .btn {
  border-color: #de1111;
}

.product-card--green .product-card__name {
  color: #00b388;
}
.product-card--green .product-card__action .btn {
  border-color: #00b388;
}

.product-card--pink .product-card__name {
  color: #e9448c;
}
.product-card--pink .product-card__action .btn {
  border-color: #e9448c;
}

@media (hover: hover) {
  .product-card:hover .product-card__image {
    transform: translate(-50%, calc(-50% + -25.4%)) scale(0.854, 0.83);
  }
  .product-card:hover .product-card__action {
    max-height: 60px;
    margin-top: 20px;
    opacity: 1;
    pointer-events: auto;
  }
  .product-card--new:hover .product-card__image {
    transform: translate(-50%, calc(-50% + -20.8%)) scale(0.799, 0.815);
  }
}
.product-filter {
  padding: 0 0 1.5rem;
}
@media (min-width: 1024px) {
  .product-filter {
    padding: 0 0 3rem;
  }
}

.product-filter__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 36px;
  color: #333;
  text-align: center;
  margin: 0 0 20px;
  letter-spacing: -1.25px;
}
@media (min-width: 1024px) {
  .product-filter__title {
    margin-bottom: 20px;
  }
}

.product-filter__bar {
  display: none;
}
@media (min-width: 1024px) {
  .product-filter__bar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
}

.product-filter__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  width: 100%;
}
@media (min-width: 1024px) {
  .product-filter__group {
    padding: 0px 10px;
  }
}

.product-filter__group-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #1c51a0;
  text-align: center;
}

.product-filter__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  padding: 20px;
  width: 100%;
}

.product-filter__chip {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 280px;
  width: 280px;
  height: 56px;
  padding: 12px 20px;
  background: #f5f5f5;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 150ms ease;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #5c5c5c;
  text-align: left;
}
.product-filter__chip:hover {
  background: #eeeeee;
}
.product-filter__chip--selected {
  background: rgba(53, 103, 255, 0.1);
}

.product-filter__chip-img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-filter__chip-img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-filter__chip-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-box-trim: trim-both;
}

.product-filter__active-row {
  display: none;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media (min-width: 1024px) {
  .product-filter__active-row {
    display: flex;
    padding: 30px 10px 0;
    margin: 0 auto;
  }
}

.product-filter__active-row-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  max-width: 968px;
}

.product-filter__active-row-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 20px;
  color: #333;
  white-space: nowrap;
}

.product-filter__active-row-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.product-filter__clear-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  background: #fff;
  color: #333;
  border: 2px solid #1c51a0;
  border-radius: 0.5rem;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 150ms ease;
  flex-shrink: 0;
}
.product-filter__clear-btn:hover {
  border-color: rgba(53, 103, 255, 0.1);
}

.product-filter__mobile {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}
@media (min-width: 1024px) {
  .product-filter__mobile {
    display: none;
  }
}

.product-filter__trigger {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 8px 26px;
  background: #1c51a0;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  cursor: pointer;
  transition: background-color 150ms ease;
  white-space: nowrap;
}
.product-filter__trigger:hover {
  background: #184689;
}
.product-filter__trigger svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.product-filter__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #fff;
  color: #1c51a0;
  border-radius: 0.625rem;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 16px;
  overflow: hidden;
}

.product-filter__active {
  width: 100%;
}

.product-filter__active-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  color: #333;
  display: block;
  margin-bottom: 12px;
}

.product-filter__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 12px;
  background: rgba(53, 103, 255, 0.1);
  border-radius: 0.5rem;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  color: #333;
}

.filter-tag__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  opacity: 0.75;
  padding: 0;
  color: #333;
}
.filter-tag__close svg {
  width: 14px;
  height: 14px;
}
.filter-tag__close:hover {
  opacity: 1;
}

.product-filter-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0, 0, 0, 0.5);
  justify-content: center;
  align-items: flex-start;
}
.product-filter-modal--open {
  display: flex;
}
@media (min-width: 1024px) {
  .product-filter-modal {
    display: none !important;
  }
}

.product-filter-modal__panel {
  position: relative;
  background: #fff;
  width: 100%;
  max-width: 479px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  max-height: 100vh;
  overflow-y: auto;
  margin-top: 70px;
}

.product-filter-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 10px;
}
.product-filter-modal__header .product-filter-modal__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  color: #184689;
}

.product-filter-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  margin: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}
.product-filter-modal__close svg {
  width: 14px;
  height: 14px;
}

.product-filter-modal__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px 20px;
}

.product-filter-modal__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-filter-modal__group-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 26px;
  color: #1c51a0;
}

.product-filter-modal__chips {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px;
}

.product-filter-modal__chip {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 56px;
  padding: 12px 20px;
  background: #f5f5f5;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: background-color 150ms ease;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 20px;
  color: #5c5c5c;
  text-align: left;
  width: 100%;
}
.product-filter-modal__chip:hover {
  background: rgba(53, 103, 255, 0.2);
}
.product-filter-modal__chip--selected {
  background: rgba(53, 103, 255, 0.1);
}

.product-filter-modal__chip-img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-filter-modal__chip-img img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.product-filter-modal__chip-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-filter-modal__footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-top: 1px solid #858886;
}

.product-filter-modal__clear {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 26px;
  background: #fff;
  color: #333;
  border: 2px solid #1c51a0;
  border-radius: 0.5rem;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  cursor: pointer;
  width: 100%;
  transition: border-color 150ms ease;
}
.product-filter-modal__clear:hover {
  border-color: #184689;
}

.product-filter-modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 26px;
  background: #1c51a0;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  cursor: pointer;
  width: 100%;
  transition: background-color 150ms ease;
}
.product-filter-modal__submit:hover {
  background: #184689;
}

.product-nav {
  padding: 1.5rem 0;
}
.product-nav__wrapper {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 1280px) {
  .product-nav__wrapper {
    gap: 2.5rem;
  }
}
.product-nav__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border: 1px solid #1c51a0;
  border-radius: 50%;
  background: transparent;
  color: #1c51a0;
  cursor: pointer;
  transition: all 150ms ease;
  flex-shrink: 0;
  margin-top: 16px;
}
@media (min-width: 1024px) {
  .product-nav__arrow {
    margin-top: 25px;
  }
}
.product-nav__arrow svg {
  width: 10.5px;
  height: 16.6px;
  fill: currentcolor;
}
.product-nav__arrow:hover {
  background: #1c51a0;
  color: #fff;
}
.product-nav__arrow.is-disabled {
  opacity: 0.35;
  pointer-events: none;
}
.product-nav__carousel {
  flex: 1;
  overflow: hidden;
}
.product-nav__items {
  display: flex;
  gap: 0.625rem;
  align-items: center;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 30px;
}
.product-nav__items::-webkit-scrollbar {
  display: none;
}
@media (min-width: 1280px) {
  .product-nav__items {
    gap: 1rem;
  }
}
@media (min-width: 1920px) {
  .product-nav__items {
    gap: 2.5rem;
  }
}
.product-nav__item {
  flex-shrink: 0;
  text-decoration: none;
  position: relative;
}
.product-nav__item:hover .product-nav__thumb, .product-nav__item:active .product-nav__thumb {
  background: #e6e7e8;
}
.product-nav__item.is-active .product-nav__thumb {
  background: #f5f5f1;
}
.product-nav__item.is-active .product-nav__indicator {
  display: block;
}
.product-nav__thumb {
  width: 66px;
  height: 66px;
  background: transparent;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 150ms ease;
}
@media (min-width: 1024px) {
  .product-nav__thumb {
    width: 85px;
    height: 85px;
  }
}
.product-nav__thumb img {
  max-width: 80%;
  max-height: 80%;
  -o-object-fit: contain;
  object-fit: contain;
}
.product-nav__thumb--placeholder {
  background: #f5f5f1;
}
.product-nav__indicator {
  display: none;
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  height: 6px;
  background: #1c51a0;
  border-radius: 3px;
}

.referral-link {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  padding: 100px 64px;
  width: 100%;
  height: unset;
}
@media (max-width: 1023px) {
  .referral-link {
    height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
}
@media (max-width: 768px) {
  .referral-link {
    padding: 20px;
    height: 507px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.referral-link__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #1c51a0;
}
.referral-link__bg picture {
  width: 100%;
  height: 100%;
}
.referral-link__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -o-object-position: center center;
  object-position: center center;
}
@media (max-width: 768px) {
  .referral-link__bg img {
    -o-object-position: center top;
    object-position: center top;
  }
}
.referral-link__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(21, 20, 20, 0) 20.22%, #221f1d 100%);
}
@media (min-width: 769px) {
  .referral-link__bg::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 40.72%, rgba(0, 0, 0, 0) 90.88%);
  }
}
@media (min-width: 1024px) {
  .referral-link__bg::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 40.72%, rgba(0, 0, 0, 0) 70.88%);
  }
}
@media (min-width: 1920px) {
  .referral-link__bg::before {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 21.72%, rgba(0, 0, 0, 0) 49.88%);
  }
}

.referral-link__badges {
  position: absolute;
  z-index: 2;
  right: 64px;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 265px;
  align-items: flex-start;
}
@media (max-width: 1279px) {
  .referral-link__badges {
    right: 52px;
    width: 200px;
    gap: 26px;
  }
}
@media (max-width: 1023px) {
  .referral-link__badges {
    position: absolute;
    top: 40px;
    left: 18.5px;
    right: auto;
    flex-direction: row;
    gap: 16px;
    align-items: flex-end;
    width: calc(100% - 37px);
    justify-content: center;
  }
}
@media (min-width: 1920px) {
  .referral-link__badges {
    right: 124px;
    top: 110px;
  }
}

.referral-link__badge-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .referral-link__badge-item {
    align-items: center;
  }
}

.referral-link__badge-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 23px;
  line-height: 20px;
  color: #fff;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .referral-link__badge-label {
    font-size: 10px;
    line-height: 10px;
  }
}

.referral-link__badge {
  display: block;
  width: 100%;
  height: 128px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 768px) {
  .referral-link__badge {
    width: auto;
    height: 84px;
    margin-right: -12px;
  }
}
@media (max-width: 639px) {
  .referral-link__badge {
    width: auto;
    height: 64px;
    margin-right: -12px;
  }
}

.referral-link__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 64px;
  align-items: flex-start;
  padding: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .referral-link__content {
    padding: 10px 0;
  }
}
@media (min-width: 1920px) {
  .referral-link__content {
    padding: 40px 0;
  }
}
@media (max-width: 768px) {
  .referral-link__content {
    flex: 1 0 0;
    gap: 30px;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    padding: 0 0 10px;
  }
  .referral-link__content .text-input__helper {
    text-align: left;
    margin-bottom: 10px;
  }
}

.referral-link__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 768px) {
  .referral-link__text {
    width: 100%;
    gap: 30px;
  }
}

.referral-link__title {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -1.25px;
  color: #fff;
  margin: 0;
  max-width: 639px;
}
@media (max-width: 768px) {
  .referral-link__title {
    font-size: 40px;
    line-height: 40px;
  }
}

.referral-link__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  letter-spacing: 0;
  color: #fff;
  margin: 0;
  max-width: 517px;
}
.referral-link__desc strong,
.referral-link__desc b {
  font-weight: 700;
}
@media (max-width: 768px) {
  .referral-link__desc {
    font-size: 0.75rem;
    line-height: 18px;
  }
}

.referral-link__form {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.referral-link__form .text-input {
  width: 447px;
  flex-shrink: 0;
}
@media (max-width: 1144px) {
  .referral-link__form .text-input {
    min-width: 330px;
    max-width: 447px;
    flex-shrink: unset;
  }
}
@media (max-width: 768px) {
  .referral-link__form .text-input {
    min-width: unset;
    max-width: unset;
  }
}
.referral-link__form .btn {
  width: 194px;
  flex-shrink: 0;
  height: 54px;
}
@media (max-width: 1144px) {
  .referral-link__form {
    max-width: 470px;
  }
}
@media (max-width: 768px) {
  .referral-link__form {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .referral-link__form .text-input {
    width: 100%;
  }
  .referral-link__form .btn {
    width: 100%;
    height: auto;
    font-size: 0.875rem;
    line-height: 20px;
    padding: 8px 26px;
    min-height: 36px;
  }
}

.referral-link__label-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  white-space: nowrap;
}

.referral-link .text-input__label {
  color: #fff;
  text-align: left;
}

.referral-link__how-link {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 16px;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}
.referral-link__how-link:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .referral-link .btn {
    border: 1px solid #fff;
  }
}
.radio-input {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.radio-input__control {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
}

.radio-input__indicator {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  border: 1px solid #333;
  border-radius: 9999px;
  background: transparent;
  transition: border-color 150ms ease, border-width 150ms ease, box-shadow 150ms ease;
}
.radio-input__indicator::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 9999px;
  background: transparent;
  transition: background-color 150ms ease;
}

.radio-input__label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 0;
  color: #333;
}

.radio-input__control:checked ~ .radio-input__indicator {
  border: 2px solid #1c51a0;
}
.radio-input__control:checked ~ .radio-input__indicator::after {
  background-color: #1c51a0;
}

.radio-input__control:focus-visible ~ .radio-input__indicator {
  border-color: transparent;
  box-shadow: 0 0 0 4px #0096c9;
}

.radio-input__control:disabled ~ .radio-input__indicator {
  border-color: #767676;
  cursor: not-allowed;
}

.radio-input__control:disabled ~ .radio-input__label {
  color: #767676;
  cursor: not-allowed;
}

.radio-input:has(.radio-input__control:disabled) {
  cursor: not-allowed;
}

.radio-input--error .radio-input__indicator {
  border-color: #ec0000;
}

.radio-input--blocked .radio-input__indicator,
.radio-input--blocked .radio-input__control:checked ~ .radio-input__indicator {
  border: 2px solid #a6a6a5;
}
.radio-input--blocked .radio-input__indicator::after,
.radio-input--blocked .radio-input__control:checked ~ .radio-input__indicator::after {
  background-color: #a6a6a5;
}

.radio-input--blocked {
  cursor: not-allowed;
}
.radio-input--blocked .radio-input__label {
  color: #767676;
}
.radio-input--blocked .radio-input__control {
  pointer-events: none;
}

.radio-input__control:active ~ .radio-input__indicator {
  border: 2px solid #1c51a0;
}
.radio-input__control:active ~ .radio-input__indicator::after {
  background-color: rgba(0, 150, 201, 0.5);
}

.slider-history {
  position: relative;
  width: 100%;
  background: #fff;
  overflow: hidden;
}

.slider-history__pagination {
  display: none;
}
@media (min-width: 769px) {
  .slider-history__pagination {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: clamp(26px, 26px + 38 * (100vw - 769px) / 301, 64px);
    padding: 0;
    width: 100%;
    margin-bottom: 40px;
  }
}

.slider-history__pagination-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 14px 0 0;
  position: relative;
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: clamp(25px, 25px + 7 * (100vw - 769px) / 301, 32px);
  font-style: italic;
  line-height: clamp(32px, 32px + 12 * (100vw - 769px) / 301, 44px);
  letter-spacing: -0.66px;
  color: #333;
  transition: color 150ms ease;
}
.slider-history__pagination-item::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #858886;
  border-radius: 4px;
  transition: height 150ms ease, background-color 150ms ease;
}
.slider-history__pagination-item:hover {
  color: #1c51a0;
}
.slider-history__pagination-item--active {
  color: #333;
}
.slider-history__pagination-item--active::after {
  height: 4px;
  background: #1c51a0;
  border-radius: 2px;
}

.slider-history__slides {
  position: relative;
  width: 100%;
  overflow: hidden;
  transition: height 0.4s ease;
}

.slider-history__track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.5s ease;
  will-change: transform;
}
@media (min-width: 769px) {
  .slider-history__track {
    align-items: stretch;
  }
}

.slider-history__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.slider-history__slide--active {
  opacity: 1;
}
@media (min-width: 769px) {
  .slider-history__slide {
    opacity: 1;
    transition: none;
    display: block;
    height: 800px;
  }
}

.slider-history__slide-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 320/169;
  order: 2;
}
@media (min-width: 769px) {
  .slider-history__slide-image-wrap {
    position: absolute;
    inset: 0;
    height: 100%;
    order: unset;
  }
}

.slider-history__slide-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  -o-object-position: center;
  object-position: center;
}
@media (min-width: 769px) {
  .slider-history__slide-image {
    -o-object-position: right;
    object-position: right;
  }
}

.slider-history__slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4) 22%, transparent 76%);
}
@media (min-width: 769px) {
  .slider-history__slide-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 35%, transparent 76%);
  }
}

.slider-history__slide-content {
  order: 1;
  padding: 0 16px 32px;
  text-align: center;
  color: #3a3d3f;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .slider-history__slide-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 0;
    box-sizing: border-box;
    text-align: left;
    color: #fff;
    order: unset;
    z-index: 5;
  }
}

@media (min-width: 769px) {
  .slider-history__slide-inner {
    width: 100%;
    max-width: 1308px;
    margin-inline: auto;
    padding-inline: 1.5rem;
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    box-sizing: border-box;
  }
}
@media (min-width: 1920px) {
  .slider-history__slide-inner {
    max-width: 1474px;
  }
}

.slider-history__slide-year {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-style: italic;
  font-size: 40px;
  line-height: 52px;
}
@media (min-width: 769px) {
  .slider-history__slide-year {
    font-size: 100px;
    line-height: 108px;
    letter-spacing: -1.25px;
    color: #fff;
  }
}

.slider-history__slide-description {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 20px;
  margin-top: 16px;
  max-height: 120px;
  overflow: hidden;
}
@media (min-width: 769px) {
  .slider-history__slide-description {
    font-size: 24px;
    line-height: 34px;
    max-width: 500px;
    max-height: none;
    margin-top: auto;
    color: #fff;
  }
}
.slider-history__slide-description strong {
  font-weight: 700;
}

.slider-history__slide-button {
  max-width: 287px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .slider-history__slide-button {
    margin: 40px 0 0 0;
  }
}
.slider-history__slide-button:hover {
  background: #f2f2f2;
}

.slider-history__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 0 0;
}
@media (min-width: 769px) {
  .slider-history__dots {
    display: none;
  }
}

.slider-history__dot {
  width: 16px;
  height: 4px;
  border-radius: 3px;
  background: #858886;
  opacity: 0.33;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: opacity 150ms ease, background-color 150ms ease;
}
.slider-history__dot--active {
  background: #1c51a0;
  opacity: 1;
}

.slider-history__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}
@media (min-width: 769px) {
  .slider-history__nav {
    padding: 20px 0;
  }
}

.slider-history__nav-arrow {
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: opacity 150ms ease;
  color: #1c51a0;
}
.slider-history__nav-arrow svg {
  width: 38px;
  height: 17px;
}
.slider-history__nav-arrow:hover {
  opacity: 0.7;
}
.slider-history__nav-arrow--disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.slider-history__nav-arrow--prev svg {
  transform: rotate(180deg);
}

.text-input {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-start;
  width: 100%;
}

.text-input__label {
  display: block;
  width: 100%;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 16px;
  letter-spacing: 0;
  color: #1c51a0;
}

.text-input__body {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 54px;
  padding: 14px 12px;
  background-color: #fff;
  border: 1.5px solid #606060;
  border-radius: 0.625rem;
  transition: border-color 150ms ease, box-shadow 150ms ease, background-color 150ms ease, opacity 150ms ease;
}
@media (max-width: 769px) {
  .text-input__body {
    height: auto;
    padding: 12px 10px;
    gap: 10px;
    border-width: 1px;
    border-radius: 0.5rem;
  }
}

.text-input__field {
  flex: 1 0 0;
  min-width: 0;
  height: 22px;
  padding: 0;
  margin: 0;
  border: none;
  outline: none;
  background: transparent;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 16px;
  letter-spacing: 0;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.text-input__field::-moz-placeholder {
  color: #858886;
}
.text-input__field::placeholder {
  color: #858886;
}
@media (max-width: 769px) {
  .text-input__field {
    font-size: 14px;
    line-height: 20px;
  }
}

textarea.text-input__field {
  height: auto;
  min-height: 22px;
  white-space: pre-wrap;
  overflow: auto;
  text-overflow: clip;
  resize: vertical;
  line-height: 22px;
}

.text-input__icon {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #606060;
}
.text-input__icon svg,
.text-input__icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.text-input__icon--toggle {
  cursor: pointer;
}

.text-input__edit {
  flex-shrink: 0;
  display: none;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: normal;
  letter-spacing: 0.0875px;
  color: #1c51a0;
  cursor: pointer;
  text-decoration: none;
}
.text-input__edit:hover {
  text-decoration: underline;
}

.text-input__helper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0.5rem;
  width: 100%;
  transition: opacity 150ms ease;
}

.text-input__helper-icon {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #606060;
}
.text-input__helper-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.text-input__helper-text {
  flex: 1 0 0;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 16px;
  letter-spacing: 0;
  color: #606060;
}

.text-input__body:focus-within {
  border-color: transparent;
  box-shadow: 0 0 0 4px #0096c9;
}

.text-input--disabled .text-input__body {
  opacity: 0.2;
  border-color: #767676;
  cursor: not-allowed;
}
.text-input--disabled .text-input__field {
  cursor: not-allowed;
  color: #606060;
}
.text-input--disabled .text-input__helper {
  opacity: 0.2;
}

.text-input--locked .text-input__body {
  background-color: #d3d3d3;
  border: none;
}
.text-input--locked .text-input__field {
  cursor: default;
}

.text-input--locked-edit .text-input__body {
  background-color: #d3d3d3;
  border: none;
}
.text-input--locked-edit .text-input__field {
  cursor: default;
}
.text-input--locked-edit .text-input__edit {
  display: inline;
}

.text-input--error .text-input__body {
  border: 2px solid #ec003e;
}
.text-input--error .text-input__helper-text {
  color: #ec003e;
}
.text-input--error .text-input__helper-icon {
  color: #ec003e;
}

.toast {
  position: fixed;
  z-index: 600;
  pointer-events: none;
  display: none;
  bottom: 24px;
  left: 10px;
  right: 10px;
}
.toast.is-visible {
  display: block;
  pointer-events: auto;
}
.toast.is-visible .toast__inner {
  animation: toast-slide-in 400ms cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.toast.is-dismissing .toast__inner {
  animation: toast-slide-out 300ms ease-in forwards;
}
@media (min-width: 769px) {
  .toast {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
  }
}
@media (min-width: 1024px) {
  .toast {
    left: auto;
    right: 28px;
    bottom: 36px;
    transform: none;
    width: auto;
    max-width: none;
  }
}

.toast__inner {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 1rem;
  border-radius: 0.5rem;
  background-color: #1c51a0;
  box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.06);
  will-change: transform, opacity;
}
@media (min-width: 1024px) {
  .toast__inner {
    padding: 1.5rem;
    gap: 15px;
    border-radius: 12px;
  }
}

.toast__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFAAAABnCAMAAACgsDWKAAACi1BMVEUAAACNr+tekeA1ar10qfXX5v9Hfc6qzv/d6/8zabphlubu9f89c8Rvo/Kjy/9nne05b79Fe8uCtP3T5P9bkuQwZ7hLgdD4+v9ek+Onyv9yp/ZCeMfL3v1jl+Xv9P8tYrJ/r/bA2Pxfk+Lu9P9Fe8ssYbCkyPzM4v+Qufp3q/dTh9ewzvpSh9ddkuEwZbTS5v+vzfmIse89c8Lc6v9mne5nmOFekuBRhtT+///0+f/t9f/o8v/m7//j7//g7f/b7v/U7P/Z6f/V5//P6P/T5f/Q5P/P4v/K5P/M4f/J4P/H3f/C3f++3//E2//D2v/C2v/A2v/B2f/A2P/B2Pq+2P+42v+81/+71v+z1/+41P+40/u20/+10v+u1P+z0f+y0f+xz/+vz/+p0P+uzf+szf+qzP+tyviny/+kzP+myf+kyf+ix/+lxvmgxv+exf+cw/+ZxP+bwv+cwfmZwf+Xwv+fwPKWwP+VwP+Wv/yTvv+Qvv+Rvf+VvPaQvP+Ou/+PuvuNuv+Luf+Juf+Qt/OGuP+Kt/mSteuDtv+DtP6Js/KFs/h/s/+AsPiDr/KFru16r/+Iq+J3rf17qvB2qvh9qOlyqfxyp/Zspv15o+JzpOxwpPNso/ZtovB3ntppoPFvn+Zpnu1nnOtrm+Njm/BtmNlkmehjluJhluZmldtalOpek+NmkdJfkdtckeFaj99Yjt1WjNxcis9VitlTiNdQh9pQhtVPhNNMgtJSgcZLgM9Hfc1BfNRFe8tKecBDechAdsZEdLw6dMw+c8M8ccE7cL81bsQ7bbc3bb00arosaMEzZbAuZLQqZLkrYK4hXLImWqgfVaQbUaAXTZ4USpsPRpgLQpUGPpECOY4AJ3+8l4i0AAAAjnRSTlMABxMjJSYyOTo9Q1NSYGt1dHh/g4qPl5yjpaStsLO6vMXLys3NzM7S19nZ4+Tm6Orv7+/w8/Pz9v/////////////////////////////////////////////+///////////////////////////////////////////////////////////////+///+H2BxDwAAERFJREFUeNqlmQuUHFWZx//3UdVdXd09PT2PzCQBQkiQhIgBF5VF0GU5rOQsYnLmJCfKQbNsZJUFFdwVl3UVH4hvV5T1tXtUXB8oAQkPSRQfuwckCoaXa0ISAmSSyUxPz/SzXvfeb6eqH+MkmQj6P101t27f+t3/d7+v6p4zjRclnsoPn3r66tWnn7y4z7XwZyqTW/LhW755xz33b99+//333f3lm07tS+NPlSwuXPHJT3/99nvuufuuO7dsufPuGewvtt/1xVPzmEcM84o5hZ5/iupWrmAbTTQ7XqRTQfUDo1UcSxzziPes+sL110f1oaWDIlSG0BUzfkUVb/3mEvkSHMr8LfI5lYe1QCpquWOzNzAByLSu/F3lxQKLNxb8pweLYT4PArQWEHOQjDMBaflvHzUvBigXvyvt71mejtwUOAADDltAI5aQJm4IJgRsumZ3iLmSOEq5j0LW96zoKWUUb00oHVSnkUOsWpTNOzLSDBCRvCVaV/9jDntuCtXh8ddZ+3PckuAxzjwPyx7qcwBj6qVpC8g7ICEkkwyX1HFcDd38nqs2XvyDrTd8+FOf+/dbbr311tu+/6/XXvuJ7//ikYd27Hj0tzufeOKxX2391je+/t9b7rzr3m0PPviz/3GOG/LCNz+pAuvd6R+blIKE4YXpXWHPsmhioloCkCn2O7me4eHpSr1mpyJAInrwtXp+4MKRCQn3zcUfNfooHs7Tz+8rLv39Hh0qpCXCqdJu0NDAUKGYbSiPE2Ax7/Qnab41LF6uRT5/xtD2ZwY5OBfp9O6xldXRYlR0TFLbgoObRt1aPNArDEV+xrYs4O3PzAPMfbDgOhk3t3P7krjUmJP5XWnRIZFbhAAtiVZhw5OD/bDTuuY4KQa5buKYj559x6tfsWxRxh3dWjQANOTOUvEZccJJXoA5IkqJybGwfghFrxmRiLY6xwKyVfk0dD3t3Z6VkSEj7Z31zP4lq9I1jiPFmC5PSGdvc8BvKC295ccCLvy8CoJQ8J8cdMJIGVjPSHvsjEUNxXEMSTGx31q0u7TAa0TAFweOBmZvAxlS2X0/HQi1VsrenU4fPrtQwzxibvW38rTdEwPVSEm1VRwJZFsYA1OZ4A4BFelIPrfoxGdeadc55hO5eIStfrI5OB1F0lt8JHBAiiQxDx/oDaMo1CXnhB2rHY8fhUFX5PCHrVfu4Lmy0viePbewxfckA1SufL+jdTL61EeHeo/nD2DkNH55wdJfv6bW6GHe8HNzHJ7MWIzlDwdZraPIq5/xXHDC8XkgkKsfP1HsH6gGZL7t/CHQ+aoAoJyJ/80qQNf1Ku/wKQ0+H43IGJO08gfGXrEv6i0r7g3+IXBRy6B4WmUS8mB+Tx/hKDGT0ACD+CCACk/ceOoTKQQGt4nZNcwmBskpP5IDEzp0Vzwr+wIcW6azhIYngLcseL6SnxxmfnGi+ywv+1oMVj2P/zAfQSvvL/p3DdP8exq12zy+ZqVfvWfvWVNOVt/wWCdkOzEIJ9jdL2B0VOx/3uEmVteVaR3UCdkYUDtod+TzopIra9zsdKZc9O3EYH5sKzX8yPhnLHhmWBuAg3eAc8rWtNsMnAGYeui9e1eVc455+ygQk3hrOS0zakcAqZ7hkkMKfBbU0dE9xABnw2feFDnlYb1gtDVlDwMYKOWPuyCQHkTTDYkMTBKaiQzmhp4IraABpMdpwVg6DM1HnBawrxU4r8YApd2BGjh1zRhpDlQ5uqAOPSa2FVzR29BuhcJsAhRfFTGRmwkHxmjkcwFTWrf9wOPrrnBHedw+UobiD5CraNtkp8i3E2CeseQlHIQZQ6RFTxBkNKCpZUqWUkMbTx7lyRX4VD3JPxoe7xaQHG/21wiBWcxjYF8r1zyEIm1EdiFCTYhFMwL3po39t9ma0QBwaOXLajO9vOoOB4BBy6LSuSmRm8J1GQjwH8jYIrNKXjDVqPOC4ynWwnHEqpxeCFM9j+UAsPGXrVFxyyusV0+6DAxsRmBwGwPmsBtt9zkycQ8gA8+JVy7tuiRaq0cKiaYJNJz3AaZxHvOgNaZWp8dtJJk2REhXokKDR7qZgoQFIAGmfGglMg4ijra0gIZ18HRmLLchIcqn58mJEHeqQ5bplCKHx3LVTKbGB8Y4+gQAMD6zyppI2mhE6ErruMwUN6LPA3RzmaCejAGirKqweMljkTZKMTh2zVzHJf+qFgTo1IQRcU5ELjzicZDNyCZr0VOAsXrI5HKhbaxcWOuHBgTjxnDASyPFS25NSqkQAWREvd+LNDIi5OyI/TpQDKw/MlC5DJHsf1aqXPpgZAAODZFkoNZraRkqJYVzGYgYk77fW52ohL3c4wSK+zrFS5MrCprT0xLNoZeD2LNjab939cTjWUI8jBgIUWpIGnOI6x1SphUBzIwHTMOIdOhLS895FXCUTgTJlBb1AWHA3QjaZTUApIE4XjDmM0YZq2a70p2c8iAtr84lhEgL22jeYnGYFtOaNowsuyl0P9fgBU2eizoIiXQSutfMshSaypap/9szqVLaWtxrC+lowZt2x13nZDUMjBx6KgWHAawfRmdoQhgk4nHkIixlLCHqDmRqdLyueTPT1wvuZE16spHTZu72waeMMHLRb7RIxZf5jPKGzSGn4xAAg4LgNqZNWrquGzCQCTKw7LyB76eaXIG3eQQgNRW6huUApGNgvMYDqpzVJhnEW9Ta1BAQekYiW6RqxHgEcMcorxwJHCExWcuCslDZnG8sskTFcaJ61nQWhRsuEEISQgkpTumvl6bCwkHItIHnNSXDkdLlYcBJNwdSB9L9xAdG+3gz2asYwAiayJBdYBwqysio6IT9ftq+FzPEKAJYNw5wE48HRAAYp7j3TFEaZloORRb32/44GSRZ9qRU0OFKCS7slMorkQaY1d41AHSIieoEY530VAbT/Qx8QZDmrdcjgdrJC5paNitQcfk3GkDguBnDGQDDcJQyE5ob3qOzmAoAFLGQjbZn1RyJglCwOA4po70HKwS2tJBJJrNSaZrdfwiJ0oeitIFLOTx3MgM5WIBR2RrTPpMKGZqTAKTadbBJFLJTbI1YKUsbwh+KwCZrDlgBWT1WJ5AU/abkGhAjxGKtvUqHtRioPUdqLXlKEMBtcGHMHFos7QMmnytEXjl+CtMp47c3Zd45NUNUPUBJZHM2FFziiBUZq7vUsxF5ce2nTpUlHXPksGWq2eSrzknHpQgNQNZXSGkBU7BUAszaEcgc4RCl5SC+mNdpynAjl4pQcdOdksMYlc6YvAzhS3Wa5ALs8B4kEi6iNoZYtyicg4oRG6Qa84gBy3MTATeYRZKhnhTlGQAZ5jiH4VlmAAaYHBosHgGY2Vq0D2hL82FWF1OhBT0gR5HwqE00EX6yIeIGDFJpxDfbvUoiRubCimyV9+z8TPqRDepnZbtcy8L0isOiy0saml0D1A3QkGEUd2tytGRxmkOtJHUXkdqfhmKA0Ae5X48bNCW7KYllSNz6H6ZkGPOkjqK4hzscgODueC1KwySY2VtYrdoLsGAi69cAkPGQ/Jl1OG4DHknyJQVJlchIJnfaGpK1aAazla1GTwRYs1pAkOxA0xyg7nyKjK9JlsC1lua6jyU7XA2O4gLc2MLAUDJvwkrY8rBhxHwTjwO4V07FvW0eQWv6imYVgGmJcjPpDJtFBkhpZYIyYhGBWKdy+dQMEEEANGNytZnt8GIcAa6k6gEOT8mZAxLwU5nW1w5vhnY32I4FXjEycWfvV4JQI7TrimCIgHJFBIdqEhMkYSQ4AJacuXTqmSnGdeIQprOWznhowZRg+HjoGlTbvBiXrIyfJVlS2aABCS/wNYBczeWMgdvVos3BiCjBtRMpSuUc16OCnKmZaKkW42Z5iOQtmu2DgA8O9amgPjl2oCkClqRZIBPGjYSHbmGMgumDtoH2GaNmm6dbPDbVyFF5jzQmBAcqqUxPfyEQNgcAmQr6fQHWTm+bBzaT5qgBaArA9H4Rp8xoJDwolQMfq7p0KIqBDdvN9fSlyk0eE6mgpGZgfO4bTEwZDo+BmZBJU7IBMtTiMRayL0XYS2ldB+LcuQKS/MZkjjOAZ/e7i0sMSDLTWSvICmPNMGeIj66kyVoaaNuLpVnG8x+1ZQzkgPlAsVDoKQ7ltGCQUlpBb40jCbpTkMY45bt//B1HEvK//NhNX7KkVtTmMaiyrewD1bzWjQSIkptx3FwxN825AOjkqTDb4XWDtvW2Lc9mCMbyx8abKU1gaPPgsc9G6lH0+M+3riF+zghMYDSjvShS0aMnqd1ZIq1a5RsbRDs+03kcGUBtnvKuWuJPf1Yu2r+j7VBvipSKIpZTUsSDlxzu0RLtvBgwgHd4HQhD15/wThtoWruiwTBsogVECTE2QmglN/fVGovLAojrHLyFwhxeLGrzfPkaaVcftHJTe6gDrCKWcuzA4oDESS8saZrEoukC5qrLYyZ4ZV8on2gsRr2CDtBsiBK4iVKAAQ3XvFeN2oiRx/uHfOzP8oZPs3rGHuzprY76syNLwQxRmCyQSiZY8dhgT1WwLg/z8USTn5nNh7/CwtTEGGaBZlOoSMPVgSM5YAbkk+dMJKXD5/FH8ZdCBOGr+7KpnbsWFvy9jVkgUFbKADpbS1nJBK/aF60alYwBnHf9zOUxwUXkrVzo9L/wcDHr1EbnLI55m9KkTR71XNwT2mc+dFqhxMEZjqkYBxE1Tjkryk7+QqR78XN/DhCVG1REWvfVU6m411+cfeQ8v87j9rGgTCDmLX/9C1GwY9rN54IDR6ZvV6gVRTMWB5Iu/6xDey6abHaXkM/lcUCEtVNe/9g+PHYwJV38V3QkMNystIEarJmiBhCY856avnCqKWAAwecMZiLmNZsvv+Cnv6HdtYj3iNphHAlE6d2RJuVmSr2uMRCN9NkPhedPVwQw50lr4RnqdNGZtz+Jeqah3JT6lDkaiP0fDSPy++ENA0qbSmHVLxvnBxM8gXRHJ03mN05YI79zkKWXl2puKvpKDR0JdEWH14EBmVLBnoQxqpHLPiVXVMqWMF2PnAQYC/y+swuHnw7V4Op95f4Mz/1wnn/dZ26zbZaueP17xqFVU2Wau/qWv3CQZWOkNq2XllYY6MGAcMZ3Lh5+3OsrWIWbFOZR5o57H9j2szvu3va5D33o/ddd885rrnnTG6++esOaS0ZG1o+MjKxbt3btug2bNl/1kf/80fabr7z+6gsuHHnb5n/OAZifuPX+bQ/efu89H7/h/e+55h1X/P073rJm4+ZN6y+55NK1M7yRGb3z2k/84GeP/PCT11+74bwLL9n41quLwPGIr7rrvm3bvnvflg+9911XX3nFZRsvv3ztpRs2bly/9tI3vnHthrde+f5bb7/n/m99+n3vfPP551548foNmxfi+JJLt2x94IHv3vfdf7n6qs1XXDYDGhm5ZO369SPrZlqXXfm+j9/8wRs//A+bNpx7zvkXXLT20rckvONr6I67H7jv9nu+8d4rN2+6bMPaNW+46KKLL15z6dp1Ixs2Xr5pZo6NGy4655zXnv9XF655w1uP4kkcpbG3rbg+lQ0KK383SUCS2IAYR/wBQWs1c8W4ENw/5c7Si/rlkQ9+wRaaVx4/ZEwYkNKkiQidjY7FhxAaZ36thhcFBDJ9n7GYbOza09RKaUWGTAvHkoNBQBd3HgzxYoEx8pO2zZ7/zSFAGw0NIsRiCZC0PO/LpZf4+7J0Bvr/Lfj9znglYQjUHa8pvfJHh0O8NGAs7rr9N+799YRuP82UfOTgWV+oePhTlSks+84nNq3569ed+5fnnvf6vxn5xy8u7RX48ySyA8uWrTr77JevWrlsIHt82v8D8sr5cvG4iSEAAAAASUVORK5CYII=");
  background-size: contain;
  background-repeat: no-repeat;
}
@media (min-width: 1024px) {
  .toast__icon {
    width: 48px;
    height: 48px;
    border-radius: 24px;
  }
}

.toast__content {
  flex: 1 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  min-width: 0;
  min-height: 1px;
  padding-top: 4px;
  align-self: stretch;
  color: #fff;
}
@media (min-width: 1024px) {
  .toast__content {
    gap: 15px;
    padding-top: 6px;
  }
}

.toast__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 22px;
  color: inherit;
  letter-spacing: 0;
  margin: 0;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .toast__title {
    font-size: 1.5rem;
    line-height: 33px;
  }
}

.toast__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 300;
  font-size: 0.875rem;
  line-height: 20px;
  color: inherit;
  letter-spacing: 0;
  margin: 0;
  min-width: 100%;
}
.toast__text strong {
  font-weight: 700;
}
@media (min-width: 1024px) {
  .toast__text {
    font-size: 1.25rem;
    line-height: 30px;
  }
}

.tutorial-backdrop {
  position: fixed;
  inset: 0;
  z-index: 400;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  visibility: hidden;
  transition: background-color 300ms ease, opacity 300ms ease, visibility 300ms ease;
}
.tutorial-backdrop.is-active {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  visibility: visible;
}
.tutorial-backdrop.is-dismissing {
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: background-color 300ms ease, opacity 300ms ease, visibility 300ms ease;
}

@keyframes tutorial-pulse {
  0% {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.7), 0 0 16px 6px rgba(28, 81, 160, 0.5);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.35), 0 0 30px 12px rgba(28, 81, 160, 0.3);
  }
  100% {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.7), 0 0 16px 6px rgba(28, 81, 160, 0.5);
  }
}
.tutorial-spotlight-wrapper {
  background-color: #E6F5FA;
  border-radius: 1rem;
  animation: tutorial-pulse 2s ease-in-out infinite;
  list-style: none;
}
.tutorial-spotlight-wrapper button#like-btn-tutorial {
  left: 0px;
  top: 2px;
}
.tutorial-spotlight-wrapper button#like-btn-tutorial svg,
.tutorial-spotlight-wrapper button#like-btn-tutorial span {
  color: #1c51a0;
}

.tutorial-dialog {
  position: fixed;
  z-index: 500;
  background-color: #1c51a0;
  border-radius: 0.5rem;
  box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.06);
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease;
  box-sizing: border-box;
}
.tutorial-dialog.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.tutorial-dialog--intro {
  width: calc(100% - 32px);
  max-width: 540px;
  padding: 16px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .tutorial-dialog--intro {
    padding: 16px;
  }
}
.tutorial-dialog--intro {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
}
.tutorial-dialog--intro.is-visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.tutorial-dialog--intro .tutorial-dialog__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
  padding-top: 4px;
}
.tutorial-dialog--intro .tutorial-dialog__title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-top: 34px;
  padding-right: 30px;
}
@media (max-width: 768px) {
  .tutorial-dialog--intro .tutorial-dialog__title {
    font-size: 16px;
    line-height: 22px;
    margin-top: 0;
  }
}
.tutorial-dialog--intro .tutorial-dialog__text {
  font-size: 1rem;
  line-height: 22px;
}
@media (max-width: 768px) {
  .tutorial-dialog--intro .tutorial-dialog__text {
    font-size: 14px;
    line-height: 20px;
  }
}

.tutorial-dialog--intro-br {
  top: auto;
  left: auto;
  transform: translateY(20px) scale(0.95);
  bottom: 24px;
  right: 24px;
}
.tutorial-dialog--intro-br.is-visible {
  transform: translateY(0) scale(1);
}
@media (max-width: 768px) {
  .tutorial-dialog--intro-br {
    right: auto;
    left: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    max-width: none;
  }
}

.tutorial-dialog--step {
  width: calc(100% - 32px);
  max-width: 370px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 16px;
}
@media (max-width: 768px) {
  .tutorial-dialog--step {
    max-width: none;
    width: calc(100% - 32px);
    border-radius: 0.5rem;
  }
}
.tutorial-dialog--step .tutorial-dialog__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 0;
  min-width: 0;
  padding-top: 4px;
}
.tutorial-dialog--step .tutorial-dialog__title {
  font-size: 1rem;
  line-height: 22px;
  font-weight: 700;
}
.tutorial-dialog--step .tutorial-dialog__text {
  font-size: 0.875rem;
  line-height: 20px;
}

.tutorial-dialog--centered {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  opacity: 0;
}
.tutorial-dialog--centered.is-visible {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.tutorial-dialog__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  opacity: 0.75;
}
.tutorial-dialog__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.tutorial-dialog__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 150ms ease;
}
.tutorial-dialog__close::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.48 19.94'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.349.213C1.036-.076.541-.071.234.228c-.312.304-.312.797 0 1.1L9.11 9.971.234 18.613l-.015.015c-.296.305-.291.787.015 1.085.312.304.818.304 1.13 0L10.24 11.07l8.876 8.642.016.015c.313.289.807.284 1.114-.015.312-.304.312-.797 0-1.1l-8.876-8.642 8.876-8.642.015-.015c.297-.305.292-.786-.015-1.085-.312-.304-.818-.304-1.13 0L10.24 8.87 1.365.228 1.349.213z' fill='%23fff'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.48 19.94'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.349.213C1.036-.076.541-.071.234.228c-.312.304-.312.797 0 1.1L9.11 9.971.234 18.613l-.015.015c-.296.305-.291.787.015 1.085.312.304.818.304 1.13 0L10.24 11.07l8.876 8.642.016.015c.313.289.807.284 1.114-.015.312-.304.312-.797 0-1.1l-8.876-8.642 8.876-8.642.015-.015c.297-.305.292-.786-.015-1.085-.312-.304-.818-.304-1.13 0L10.24 8.87 1.365.228 1.349.213z' fill='%23fff'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
.tutorial-dialog__close:hover {
  opacity: 1;
}

.tutorial-dialog__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  color: #fff;
  margin: 0;
  letter-spacing: 0;
}

.tutorial-dialog__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 300;
  color: #fff;
  margin: 0;
}
.tutorial-dialog__text strong {
  font-weight: 700;
}

.tutorial-dialog__start {
  margin-bottom: 20px;
  width: -moz-max-content;
  width: max-content;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .tutorial-dialog__start {
    margin-bottom: 0;
    margin-top: 10px;
  }
}
.tutorial-dialog__start:hover {
  border-color: #cfcfcf !important;
}

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

.tutorial-dialog__counter {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #fff;
  white-space: nowrap;
}

.tutorial-dialog__arrows {
  display: flex;
  gap: 20px;
  align-items: center;
}

.tutorial-dialog__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  color: #fff;
  transition: opacity 150ms ease;
}
.tutorial-dialog__arrow:disabled {
  opacity: 0.3;
  cursor: default;
}
.tutorial-dialog__arrow svg {
  display: block;
  width: 26px;
  height: 12px;
  fill: currentColor;
}
.tutorial-dialog__arrow--prev svg {
  transform: rotate(180deg);
}

.tutorial-dialog__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 34px;
  padding: 8px 10px;
  border: 2px solid #fff;
  border-radius: 0.5rem;
  background: none;
  color: #fff;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 16px;
  letter-spacing: 0;
  cursor: pointer;
  transition: background-color 150ms ease;
  white-space: nowrap;
}
.tutorial-dialog__cta:hover {
  background-color: rgba(255, 255, 255, 0.15);
}
@media (min-width: 769px) {
  .tutorial-dialog__cta {
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 0.5rem;
  }
}

.voucher-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 285px;
  width: 100%;
  aspect-ratio: 405/422;
  overflow: hidden;
  background-color: #f5f5f1;
  border-radius: 0.5rem;
  padding: 10px 20px 14px;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: background-color 150ms ease;
  container-type: inline-size;
}

.voucher-card__ribbon {
  width: 100%;
  height: 30px;
  display: flex;
  align-items: center;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #606060;
}

.voucher-card__ribbon--redeemed {
  background-color: rgba(53, 103, 255, 0.1);
  border-radius: 0.5rem;
  padding: 2px 8px;
  gap: 4px;
  width: auto;
  align-self: flex-start;
  font-size: 0.875rem;
  line-height: 20px;
  color: #1c51a0;
  margin-left: 5px;
}

.voucher-card__image {
  width: 100%;
  aspect-ratio: 357/224;
  overflow: hidden;
  position: relative;
  padding: 0px 5px 5px;
  margin-top: -6px;
}
@media (max-width: 769px) {
  .voucher-card__image {
    aspect-ratio: unset;
  }
}
.voucher-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.voucher-card__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: clamp(12px, 5.9cqi, 24px);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1023px) {
  .voucher-card__content {
    padding-top: clamp(6px, 3cqi, 12px);
  }
}

.voucher-card__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 6.4cqi, 26px);
  line-height: clamp(24px, 9.4cqi, 38px);
  letter-spacing: 0;
  color: #1c51a0;
  margin: 0;
  transition: font-size 0.4s cubic-bezier(0.4, 0, 0.2, 1), line-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 1023px) {
  .voucher-card__title {
    font-size: clamp(14px, 5.5cqi, 20px);
    line-height: clamp(22px, 8cqi, 32px);
  }
}

.voucher-card__points {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: clamp(12px, 4cqi, 16px);
  line-height: clamp(18px, 5.4cqi, 22px);
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2d2926;
  margin: 0;
}

.voucher-card__action {
  position: absolute;
  bottom: 15px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.voucher-card__action .btn {
  width: 100%;
  height: 36px;
  padding: 8px 26px;
  font-size: 0.875rem;
  line-height: 20px;
}
@media (max-width: 1023px) {
  .voucher-card__action {
    position: static;
    opacity: 1;
    pointer-events: auto;
    transform: none;
    margin-top: 16px;
    transition: none;
  }
}

.voucher-card--disabled {
  background-color: #d3d3d3;
  pointer-events: none;
}
.voucher-card--disabled .voucher-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0px 5px 5px;
}
.voucher-card--disabled .voucher-card__action {
  display: none;
}

.voucher-card__badge {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: #1c51a0;
  color: #fff;
  border-radius: 0.5rem;
  padding: 3px 10px;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 23px;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
  height: 35px;
}
.voucher-card__badge::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='20' viewBox='0 0 17 20' fill='none'%3E%3Cpath d='M14.312 7.266h-1.64V4.404C12.673 1.975 10.698 0 8.27 0 5.841 0 3.865 1.975 3.865 4.404v2.862H2.084A2.084 2.084 0 0 0 0 9.35v8.29a2.084 2.084 0 0 0 2.084 2.084h12.228a2.084 2.084 0 0 0 2.084-2.084V9.35a2.084 2.084 0 0 0-2.084-2.084zM5.05 4.404c0-1.775 1.444-3.22 3.22-3.22s3.22 1.445 3.22 3.22v2.862H5.05V4.404zm10.161 13.236c0 .496-.404.9-.9.9H2.084a.9.9 0 0 1-.9-.9V9.35c0-.496.404-.9.9-.9h12.228c.496 0 .9.404.9.9v8.29zm-6.392-6.05v3.818a.592.592 0 0 1-1.184 0V11.59a.592.592 0 0 1 1.184 0z' fill='%23E6E7E8'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='20' viewBox='0 0 17 20' fill='none'%3E%3Cpath d='M14.312 7.266h-1.64V4.404C12.673 1.975 10.698 0 8.27 0 5.841 0 3.865 1.975 3.865 4.404v2.862H2.084A2.084 2.084 0 0 0 0 9.35v8.29a2.084 2.084 0 0 0 2.084 2.084h12.228a2.084 2.084 0 0 0 2.084-2.084V9.35a2.084 2.084 0 0 0-2.084-2.084zM5.05 4.404c0-1.775 1.444-3.22 3.22-3.22s3.22 1.445 3.22 3.22v2.862H5.05V4.404zm10.161 13.236c0 .496-.404.9-.9.9H2.084a.9.9 0 0 1-.9-.9V9.35c0-.496.404-.9.9-.9h12.228c.496 0 .9.404.9.9v8.29zm-6.392-6.05v3.818a.592.592 0 0 1-1.184 0V11.59a.592.592 0 0 1 1.184 0z' fill='%23E6E7E8'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
}

.voucher-card--disabled-special {
  background-color: #d3d3d3;
  pointer-events: none;
}
.voucher-card--disabled-special .voucher-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  margin: 0px 5px 5px;
}
.voucher-card--disabled-special .voucher-card__points {
  display: none;
}
.voucher-card--disabled-special .voucher-card__action {
  display: none;
}
.voucher-card--disabled-special .voucher-card__badge {
  display: flex;
}

@media (hover: hover) {
  .voucher-card:hover:not(.voucher-card--disabled) {
    background-color: #e6e6e2;
  }
  .voucher-card:hover:not(.voucher-card--disabled) .voucher-card__content {
    padding-top: clamp(0px, 2cqi, 40px);
  }
}
@media (hover: hover) and (max-width: 1279px) {
  .voucher-card:hover:not(.voucher-card--disabled) .voucher-card__content {
    padding-top: clamp(0px, 2cqi, 0px);
    margin-top: -2%;
  }
}
@media (hover: hover) {
  .voucher-card:hover:not(.voucher-card--disabled) .voucher-card__title {
    font-size: clamp(14px, 5.5cqi, 20px);
    line-height: clamp(22px, 8cqi, 32px);
  }
  .voucher-card:hover:not(.voucher-card--disabled) .voucher-card__action {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}
.progress-counter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: rgba(53, 103, 255, 0.1);
  padding: 8px 26px;
  border-radius: 0.5rem;
  overflow: clip;
  min-width: 285px;
}

.progress-counter__row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.progress-counter__label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #333;
}

.progress-counter__value {
  background-color: #fff;
  border-radius: 0.625rem;
  padding: 1px 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  min-width: 78px;
}
.progress-counter__value span {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 1.25px;
  color: #333;
}

@media (max-width: 1023px) {
  .progress-counter {
    gap: 8px;
    padding: 8px;
  }
  .progress-counter__row {
    justify-content: space-between;
    width: 264px;
    max-width: 100%;
  }
  .progress-counter__label {
    font-size: 14px;
    line-height: 20px;
    white-space: nowrap;
  }
  .progress-counter__value {
    height: 26px;
    min-width: auto;
  }
  .progress-counter__value span {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 0;
    text-align: right;
  }
}
.progress-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background-color: rgba(53, 103, 255, 0.1);
  padding: 12px 40px;
  border-radius: 0.5rem;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: background-color 0.6s ease, height 0.1s ease;
}

.progress-bar__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  text-align: center;
  margin: 0;
}

.progress-bar__subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #333;
  text-align: center;
  margin: -8px 0 0;
}

.progress-bar__track {
  width: 100%;
  height: 6px;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0.25rem;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.progress-bar__fill {
  height: 100%;
  width: var(--progress, 0%);
  background-color: #0096c9;
  border-radius: 0.25rem;
  transition: background-color 0.5s ease;
  position: relative;
}
.progress-bar__fill::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(0, 150, 201, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.progress-bar--animated .progress-bar__fill {
  transition: width 1s ease-out, background-color 0.5s ease;
}
.progress-bar--animated .progress-bar__fill::after {
  opacity: 1;
  animation: progress-glow-pulse 2s ease-in-out 1s infinite;
}

.progress-bar__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #767676;
  text-align: center;
  margin: 0;
}

.progress-bar--success {
  background-color: #fee685;
}
.progress-bar--success .progress-bar__fill {
  background-color: #e17100;
}
.progress-bar--success .progress-bar__fill::after {
  background: rgba(225, 113, 0, 0.5);
}
.progress-bar--success .progress-bar__track {
  overflow: visible;
}
.progress-bar--success .progress-bar__track::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%) scale(0);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: radial-gradient(circle, #ff3333 0%, rgba(51, 204, 51, 0.7) 45%, transparent 70%);
  animation: progress-burst 0.8s ease-out 0.6s forwards;
}
.progress-bar--success .progress-bar__track::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  box-shadow: 0 -12px 0 1px #ff3333, 0 -18px 0 0 #ff3333, 9px -9px 0 1px #33cc33, 13px -13px 0 0 #33cc33, 12px 0 0 1px #3399ff, 18px 0 0 0 #3399ff, 9px 9px 0 1px #ff3333, 13px 13px 0 0 #ff3333, 0 12px 0 1px #33cc33, 0 18px 0 0 #33cc33, -9px 9px 0 1px #3399ff, -13px 13px 0 0 #3399ff, -9px -9px 0 1px #ff3333, -13px -13px 0 0 #ff3333;
  opacity: 0;
  transform: translateY(-50%) scale(0);
  animation: progress-sparkle 1s ease-out 0.4s forwards;
  z-index: 2;
}

@media (max-width: 1023px) {
  .progress-bar {
    padding: 12px;
  }
  .progress-bar__title {
    font-size: 14px;
    line-height: 20px;
  }
  .progress-bar__subtitle {
    font-size: 11px;
    line-height: 17px;
  }
  .progress-bar__track {
    width: 260px;
  }
  .progress-bar__desc {
    font-size: 11px;
    line-height: 17px;
    width: 260px;
  }
}
@keyframes progress-glow-pulse {
  0%, 100% {
    opacity: 0.4;
    transform: translateY(-50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateY(-50%) scale(1.5);
  }
}
@keyframes progress-burst {
  0% {
    transform: translate(50%, -50%) scale(0);
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    transform: translate(50%, -50%) scale(3);
    opacity: 0;
  }
}
@keyframes progress-sparkle {
  0% {
    opacity: 0;
    transform: translateY(-50%) scale(0);
  }
  30% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) scale(2);
  }
}
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  visibility: hidden;
  transition: background-color 300ms ease, opacity 300ms ease, visibility 300ms ease;
}
.modal-backdrop.is-active {
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
  visibility: visible;
}
.modal-backdrop.is-dismissing {
  background-color: rgba(0, 0, 0, 0);
  opacity: 0;
  transition: background-color 300ms ease, opacity 300ms ease, visibility 300ms ease;
}

.modal {
  position: relative;
  z-index: 500;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  box-shadow: 0 10px 16px 0 rgba(0, 0, 0, 0.06);
  max-height: 90vh;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}
.is-active .modal {
  transform: scale(1);
  opacity: 1;
}
.is-dismissing .modal {
  transform: scale(0.95);
  opacity: 0;
}
@media (min-width: 1024px) {
  .modal {
    flex-direction: row;
    border-radius: 0.5rem;
    max-width: 881px;
    min-height: 476px;
    max-height: 90vh;
  }
}

.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 150ms ease;
}
.modal__close::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-color: #184689;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.48 19.94'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.349.213C1.036-.076.541-.071.234.228c-.312.304-.312.797 0 1.1L9.11 9.971.234 18.613l-.015.015c-.296.305-.291.787.015 1.085.312.304.818.304 1.13 0L10.24 11.07l8.876 8.642.016.015c.313.289.807.284 1.114-.015.312-.304.312-.797 0-1.1l-8.876-8.642 8.876-8.642.015-.015c.297-.305.292-.786-.015-1.085-.312-.304-.818-.304-1.13 0L10.24 8.87 1.365.228 1.349.213z' fill='%23000'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20.48 19.94'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M1.349.213C1.036-.076.541-.071.234.228c-.312.304-.312.797 0 1.1L9.11 9.971.234 18.613l-.015.015c-.296.305-.291.787.015 1.085.312.304.818.304 1.13 0L10.24 11.07l8.876 8.642.016.015c.313.289.807.284 1.114-.015.312-.304.312-.797 0-1.1l-8.876-8.642 8.876-8.642.015-.015c.297-.305.292-.786-.015-1.085-.312-.304-.818-.304-1.13 0L10.24 8.87 1.365.228 1.349.213z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
.modal__close:hover {
  opacity: 1;
}
@media (min-width: 1024px) {
  .modal__close {
    top: 8px;
    right: 10px;
    width: 25px;
    height: 25px;
  }
  .modal__close::before {
    width: 16px;
    height: 16px;
  }
}

.modal__image {
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
  padding: 0 1.25rem;
  box-sizing: border-box;
  margin-top: 44px;
  aspect-ratio: 280/173;
}
.modal__image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}
@media (min-width: 1024px) {
  .modal__image {
    order: 2;
    width: 470px;
    border-radius: 0 0.5rem 0.5rem 0;
    padding: 0;
    margin: 0;
  }
  .modal__image img {
    border-radius: 0 0.5rem 0.5rem 0;
  }
}

.modal__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding: 2.5rem 1.25rem;
  padding-top: 1rem;
  flex: 1 1 auto;
  min-width: 0;
}
@media (min-width: 1024px) {
  .modal__body {
    order: 1;
    width: 411px;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 58px;
    gap: 1.25rem;
  }
}

.modal__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 32px;
  letter-spacing: -1.25px;
  color: #1c51a0;
  text-align: center;
  margin: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .modal__title {
    font-size: 32px;
    line-height: 44px;
    text-align: left;
    max-width: 296px;
  }
}

.modal__separator {
  width: 100%;
  height: 1px;
  background-color: #858886;
}

.modal__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  letter-spacing: 0;
  color: #333;
  text-align: center;
  margin: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .modal__text {
    font-size: 1.125rem;
    line-height: 24px;
    text-align: left;
  }
}

.modal__value {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 22px;
  color: #1c51a0;
  text-align: center;
  margin: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .modal__value {
    font-size: 1.25rem;
    line-height: 26px;
    text-align: left;
  }
}

.modal__actions {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 0.5rem;
}
.modal__actions .btn {
  width: 100%;
}
.modal__actions .btn-positive {
  order: 1;
}
.modal__actions .btn-secondary-positive {
  order: 2;
}
@media (min-width: 1024px) {
  .modal__actions {
    flex-direction: row;
    gap: 1.25rem;
    margin-top: 1.5rem;
  }
  .modal__actions .btn {
    width: 138px;
    display: inline-flex;
    order: unset;
  }
}

.modal__points {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.modal__points-number {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -1.25px;
  color: #1c51a0;
  text-align: center;
  margin: 0;
}
@media (min-width: 1024px) {
  .modal__points-number {
    font-size: 60px;
    line-height: 78px;
    letter-spacing: -1.875px;
  }
}

.modal__points-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #767676;
  text-align: center;
  margin: 0;
}
@media (min-width: 1024px) {
  .modal__points-label {
    font-size: 21px;
    line-height: 30px;
    letter-spacing: 3px;
  }
}

.modal--points .modal__body {
  align-items: center;
}
@media (min-width: 1024px) {
  .modal--points .modal__body {
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .modal--points .modal__text {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .modal--points .modal__value {
    text-align: center;
  }
}

.modal__text-extra {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  letter-spacing: 0;
  color: #333;
  text-align: center;
  margin: 0;
  width: 100%;
}
@media (min-width: 1024px) {
  .modal__text-extra {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .modal--points .modal__actions {
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
  }
  .modal--points .modal__actions .btn {
    width: 217px;
  }
}

@media (min-width: 1024px) {
  .modal--points .modal__close::before {
    background-color: #fff;
  }
}

.modal-open {
  overflow: hidden;
}

.model-viewer-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  width: 100%;
  position: relative;
  margin-bottom: 100px;
}

.model-viewer-container {
  position: relative;
  width: 100%;
  height: 70vh;
  background-color: #cfcfcf;
  /*#cfcfcf;*/
  /*#e6e6e2;*/
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.model-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.model-placeholder-image {
  max-width: 70%;
  max-height: 80%;
  -o-object-fit: contain;
  object-fit: contain;
}

.model-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.Hotspot {
  background: rgb(255, 255, 255);
  border-radius: 32px;
  border: 0px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px;
  box-sizing: border-box;
  cursor: pointer;
  height: 24px;
  padding: 8px;
  position: relative;
  transition: opacity 0.3s;
  width: 24px;
}

.HotspotAnnotation {
  background: rgb(255, 255, 255);
  border-radius: 4px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 4px;
  color: rgba(0, 0, 0, 0.8);
  display: block;
  font-family: Futura, "Helvetica Neue", sans-serif;
  font-size: 18px;
  font-weight: 700;
  left: calc(100% + 1em);
  max-width: 128px;
  overflow-wrap: break-word;
  padding: 0.5em 1em;
  position: absolute;
  top: 50%;
  width: -moz-max-content;
  width: max-content;
}

.Hotspot > * {
  opacity: 1;
  transform: translateY(-50%);
}

/* kontener przycisków pod modelem */
.viewer-controls-bottom {
  position: absolute;
  bottom: 20px;
  transform: translateX(-50%);
  left: 50%;
}

.profil-card--points {
  border-color: #858886;
  background: #f5f5f1;
}
@media (min-width: 1024px) {
  .profil-card--points {
    background: transparent;
  }
}

.profil-card.profil-card--points .profil-points {
  background: #f5f5f1;
  border-radius: 0.5rem;
}
.profil-card.profil-card--points .profil-card__title {
  margin-bottom: 0;
}

.profil-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.profil-points__top {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #f5f5f1;
  border-radius: 0.5rem;
  border: 1px solid #f5f5f1;
}
@media (min-width: 1024px) {
  .profil-points__top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 40px 20px;
  }
}
.profil-points__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .profil-points__info {
    gap: 10px;
  }
}
.profil-points__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #333;
  margin: 0;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  .profil-points__desc {
    font-size: 20px;
    line-height: 32px;
    max-width: 748px;
  }
}
.profil-points__highlight {
  color: #1c51a0;
  font-weight: 700;
}
.profil-points__coin {
  flex-shrink: 0;
  width: 100%;
  max-width: 239px;
  align-self: center;
}
@media (min-width: 1024px) {
  .profil-points__coin {
    align-self: flex-end;
  }
}
.profil-points__coin-img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}
@media (min-width: 1024px) {
  .profil-points__coin-img {
    width: 239px;
    height: 152px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (min-width: 1024px) {
  .profil-points__counter {
    padding: 0 20px 20px;
  }
}
.profil-points__counter-box {
  border: 1px solid #858886;
  border-radius: 0.5rem;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .profil-points__counter-box {
    flex-direction: row;
    align-items: center;
    min-height: 120px;
    padding: 20px 32px;
    gap: 20px;
    background-color: #fff;
  }
}
.profil-points__counter-value {
  text-align: center;
  flex-shrink: 0;
}
.profil-points__number {
  display: block;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #1c51a0;
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -1.25px;
}
.profil-points__label {
  display: block;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 500;
  color: #767676;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.profil-points__counter-separator {
  width: 100%;
  height: 1px;
  background: #858886;
}
@media (min-width: 1024px) {
  .profil-points__counter-separator {
    width: 1px;
    height: 80px;
    flex-shrink: 0;
  }
}
.profil-points__counter-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media (min-width: 1024px) {
  .profil-points__counter-info {
    flex-direction: row;
    justify-content: space-between;
    flex: 1;
  }
}
.profil-points__expiry {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1c51a0;
  font-size: 16px;
  line-height: 22px;
  margin: 0;
}
.profil-points__expiry strong {
  font-weight: 700;
}
.profil-points__cta {
  white-space: nowrap;
  width: 100%;
  text-align: center;
}
@media (min-width: 1024px) {
  .profil-points__cta {
    width: auto;
  }
}

.earning-point-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 0.5rem;
  max-width: 500px;
  min-height: 120px;
}
@media (min-width: 1024px) {
  .earning-point-item {
    flex-direction: row;
    align-items: center;
    padding: 1.25rem 2.5rem 1.25rem 1.25rem;
    border-color: #858886;
    max-width: none;
    min-height: auto;
  }
}

.earning-point-item__icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
}
@media (min-width: 1024px) {
  .earning-point-item__icon {
    width: 52px;
    height: 52px;
  }
}
.earning-point-item__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.earning-point-item__separator {
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  background-color: #858886;
}
@media (min-width: 1024px) {
  .earning-point-item__separator {
    width: 1px;
    height: auto;
    align-self: stretch;
  }
}

.earning-point-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  min-width: 0;
}

.earning-point-item__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .earning-point-item__header {
    flex-direction: row;
    align-items: baseline;
    gap: 1.25rem;
  }
}

.earning-point-item__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: -1.25px;
  color: #1c51a0;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .earning-point-item__title {
    font-size: 22px;
  }
}
@media (min-width: 1280px) {
  .earning-point-item__title {
    font-size: 26px;
  }
}

.earning-point-item__points {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1em;
  letter-spacing: 0;
  color: #1c51a0;
  white-space: nowrap;
}
@media (min-width: 1024px) {
  .earning-point-item__points {
    font-weight: 500;
    font-size: 22px;
  }
}
@media (min-width: 1280px) {
  .earning-point-item__points {
    font-size: 26px;
  }
}

.earning-point-item__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0;
  color: #1c51a0;
  margin: 0;
}
@media (min-width: 1024px) {
  .earning-point-item__desc {
    font-size: 15px;
    line-height: 20px;
  }
}
@media (min-width: 1280px) {
  .earning-point-item__desc {
    font-size: 1.125rem;
    line-height: 24px;
  }
}

.earning-point-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .earning-point-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    align-items: stretch;
  }
}

.memory-board {
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  .memory-board {
    margin-bottom: 100px;
  }
}

.memory-board__area {
  background: linear-gradient(135deg, #003366 0%, #005C99 25%, #0088CC 50%, #00AEEF 75%, #0077B6 100%);
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 32px;
}
@media (min-width: 769px) {
  .memory-board__area {
    padding: 32px 40px 48px;
  }
}
.memory-board__area::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("./static/images/games/memory/figma_screenshot.png") left center/cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

.memory-board__stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 520px;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.memory-board__stat {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  height: 30px;
  padding: 2px 10px;
  border-radius: 0.5rem;
}

.memory-board__stat-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.memory-board__stat-icon--moves {
  width: 16px;
  height: 16px;
}

.memory-board__stat-label {
  color: #1c51a0;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 24px;
  white-space: nowrap;
}

#memoryTimer,
#memoryMoves {
  display: inline-block;
  min-width: 2.2ch;
  font-family: "Roboto Mono", monospace;
  font-variant-numeric: tabular-nums;
  text-align: left;
}

.memory-board__wrapper {
  padding: 24px;
  border-radius: 14px;
  background: #E6E6E2;
  border: 3px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15), 0 8px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.memory-board__cards {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.memory-board__card {
  cursor: pointer;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(25% - 9px);
  width: calc(25% - 9px);
  flex: 0 0 calc(25% - 9px);
}

.memory-board__card.shake {
  animation: memoryShake 0.35s ease-in-out;
}

@keyframes memoryShake {
  0%, 100% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-13px);
  }
  40% {
    transform: translateX(13px);
  }
  60% {
    transform: translateX(-8px);
  }
  80% {
    transform: translateX(8px);
  }
}
.memory-board__card-view {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 13.16%;
  pointer-events: none;
  backface-visibility: hidden;
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.memory-board__card-front {
  background: transparent;
  overflow: hidden;
  border-radius: 0;
}
.memory-board__card-front img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.memory-board__card-back {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 60, 120, 0.1);
  border: 1.5px solid rgba(0, 0, 0, 0.06);
  transform: rotateY(-180deg);
}
.memory-board__card-back img {
  max-width: 65%;
  max-height: 65%;
  -o-object-fit: contain;
  object-fit: contain;
}

.memory-board__card.flip .memory-board__card-back {
  transform: rotateY(0);
}

.memory-board__card.flip .memory-board__card-front {
  transform: rotateY(180deg);
}

@media screen and (max-width: 700px) {
  .memory-board__wrapper {
    padding: 20px;
  }
  .memory-board__cards {
    gap: 10px;
  }
  .memory-board__card {
    height: calc(25% - 7.5px);
    width: calc(25% - 7.5px);
    flex: 0 0 calc(25% - 7.5px);
  }
  .memory-board__stat-label {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 530px) {
  .memory-board__area {
    padding: 16px 12px 24px;
  }
  .memory-board__wrapper {
    padding: 16px;
    border-radius: 12px;
  }
  .memory-board__cards {
    gap: 8px;
  }
  .memory-board__card {
    height: calc(25% - 6px);
    width: calc(25% - 6px);
    flex: 0 0 calc(25% - 6px);
  }
  .memory-board__stat-label {
    font-size: 0.75rem;
    letter-spacing: 1px;
  }
  .memory-board__stat {
    height: 26px;
    padding: 2px 8px;
  }
}
@media screen and (max-width: 380px) {
  .memory-board__cards {
    gap: 6px;
  }
  .memory-board__wrapper {
    padding: 12px;
  }
  .memory-board__card {
    height: calc(25% - 4.5px);
    width: calc(25% - 4.5px);
    flex: 0 0 calc(25% - 4.5px);
  }
  .memory-board__stat-label {
    font-size: 11px;
    letter-spacing: 0.5px;
  }
}
.home-sections {
  display: flex;
  flex-direction: column;
  gap: 64px;
  margin-top: 64px;
}
@media (min-width: 769px) {
  .home-sections {
    gap: 100px;
    margin-top: 100px;
  }
}

.idx-hero {
  background: linear-gradient(160deg, #0b1120 0%, #162547 50%, #1c51a0 100%);
  padding: 80px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.idx-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0, 150, 201, 0.12) 0%, transparent 60%), radial-gradient(circle at 80% 70%, rgba(28, 81, 160, 0.18) 0%, transparent 50%);
  pointer-events: none;
}
.idx-hero .container {
  position: relative;
  z-index: 1;
}

.idx-hero__badge {
  display: inline-block;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 9999px;
  padding: 6px 20px;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.idx-hero__title {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.idx-hero__v {
  background: linear-gradient(135deg, #0096c9, rgb(37.8, 199.8895522388, 255));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 800;
}

.idx-hero__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 440px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.idx-hero__stats {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.idx-hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.idx-hero__stat-value {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.idx-hero__stat-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.idx-section {
  padding: 56px 0;
}
.idx-section--docs {
  background-color: #f8fafc;
  padding-bottom: 80px;
}

.idx-section__header {
  margin-bottom: 36px;
}

.idx-section__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1.875rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 4px;
}

.idx-section__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1rem;
  color: #64748b;
}

.idx-grid {
  display: grid;
  gap: 40px;
}

.idx-group__label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #64748b;
  margin-bottom: 14px;
  padding-left: 2px;
}

.idx-group__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
}
@media (min-width: 769px) {
  .idx-group__cards {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

.idx-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.2s ease;
  position: relative;
}
.idx-card::after {
  content: "→";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%) translateX(-4px);
  opacity: 0;
  font-size: 0.875rem;
  color: #1c51a0;
  transition: all 0.2s ease;
}
.idx-card:hover {
  border-color: #1c51a0;
  box-shadow: 0 4px 16px rgba(28, 81, 160, 0.1);
  transform: translateY(-2px);
}
.idx-card:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.idx-card:active {
  transform: translateY(0);
  box-shadow: none;
}

.idx-card__icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
}

.idx-card__name {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.idx-docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
@media (min-width: 769px) {
  .idx-docs-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}

.idx-doc {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  text-decoration: none;
  color: #1e293b;
  transition: all 0.2s ease;
}
.idx-doc:hover {
  border-color: #1c51a0;
  box-shadow: 0 4px 16px rgba(28, 81, 160, 0.1);
  transform: translateY(-2px);
}
.idx-doc:hover .idx-doc__name {
  color: #1c51a0;
}
.idx-doc:active {
  transform: translateY(0);
  box-shadow: none;
}

.idx-doc__icon {
  font-size: 24px;
  line-height: 1;
  flex-shrink: 0;
}

.idx-doc__body {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.idx-doc__name {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.idx-doc__path {
  font-family: monospace;
  font-size: 11px;
  color: #64748b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-hero {
  padding: 2.5rem 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .product-hero {
    padding: 4rem 0;
  }
}
.product-hero__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #333;
  margin-bottom: 1rem;
  letter-spacing: -1.25px;
}
@media (min-width: 1024px) {
  .product-hero__title {
    font-size: 64px;
    line-height: 1.1;
  }
}
.product-hero__description {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #333;
  max-width: 280px;
  margin: 0 auto;
}
@media (min-width: 1024px) {
  .product-hero__description {
    font-size: 1.5rem;
    max-width: 994px;
    line-height: 1.67;
  }
}

.product-features {
  padding: 1.5rem 0;
}
@media (min-width: 1024px) {
  .product-features {
    padding: 2.5rem 0;
  }
}
.product-features__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 769px) {
  .product-features__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1024px) {
  .product-features__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.product-info {
  padding: 3rem 0;
  background: #fff;
}
@media (min-width: 1024px) {
  .product-info {
    padding: 4rem 0;
  }
}
.product-info .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-info__content {
  text-align: center;
  margin: 0 auto 2.5rem;
}
@media (min-width: 1024px) {
  .product-info__content {
    max-width: 1042px;
    margin-bottom: 3rem;
  }
}
.product-info__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  letter-spacing: -1.25px;
}
@media (min-width: 1024px) {
  .product-info__title {
    font-size: 45px;
  }
}
.product-info__subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
  margin-bottom: 0px;
}
@media (min-width: 1024px) {
  .product-info__subtitle {
    font-size: 1.5rem;
    line-height: 1.67;
  }
}
.product-info__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.875rem;
  line-height: 1.86;
  color: #3a3d3f;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .product-info__text {
    font-size: 1.5rem;
    line-height: 1.67;
    letter-spacing: -1.25px;
  }
}
.product-info__text p {
  margin-bottom: 1rem;
}
.product-info__text p:last-child {
  margin-bottom: 0;
}
.product-info__text strong {
  font-weight: 700;
}
.product-info__badges {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 1024px) {
  .product-info__badges {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.product-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: #f5f5f5;
  border-radius: 0.5rem;
  min-width: 280px;
}
.product-badge__icon {
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 22px;
}
.product-badge__img {
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
  object-fit: contain;
}
.product-badge__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #5c5c5c;
}

.product-showcase {
  width: 100%;
  max-width: 300px;
}
@media (min-width: 1024px) {
  .product-showcase {
    max-width: 1260px;
  }
}
.product-showcase__main {
  background: #e6e6e2;
  border-radius: 0.5rem;
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 300/380;
}
@media (min-width: 1024px) {
  .product-showcase__main {
    aspect-ratio: 1260/827;
    padding: 4rem;
  }
}
.product-showcase__img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.page-components {
  background-color: #f8fafc;
  min-height: 100vh;
}

.components-header {
  padding: 4rem 0 2.5rem;
  border-bottom: 1px solid #e2e8f0;
  margin-bottom: 3rem;
}

.components-title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.components-desc {
  font-size: 1rem;
  color: #64748b;
  max-width: 640px;
}
.components-desc code {
  background-color: rgba(0, 0, 0, 0.06);
  padding: 2px 6px;
  border-radius: 0.25rem;
  font-size: 0.875rem;
}

.component-section {
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  padding: 2.5rem;
  margin-bottom: 2.5rem;
}

.component-section__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1c51a0;
  margin-bottom: 0.25rem;
}

.component-section__file {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}
.component-section__file code {
  background-color: rgba(0, 0, 0, 0.06);
  padding: 2px 6px;
  border-radius: 0.25rem;
}

.component-group {
  margin-bottom: 1.5rem;
}
.component-group:last-child {
  margin-bottom: 0;
}

.component-group__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.625rem;
}

.component-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

.component-row--cards {
  align-items: stretch;
}
.component-row--cards > * {
  flex: 1;
  min-width: 240px;
  max-width: 360px;
}

.docs-layout {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.docs-nav {
  width: 220px;
  flex-shrink: 0;
  position: sticky;
  top: 2.5rem;
}

.docs-nav__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.625rem;
}

.docs-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.docs-nav__link {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0.625rem;
  border-radius: 0.375rem;
  text-decoration: none;
  color: #1e293b;
  transition: background-color 0.15s ease;
}
.docs-nav__link:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.docs-nav__link.is-active {
  background-color: #1c51a0;
  color: #fff;
}
.docs-nav__link.is-active .docs-nav__file {
  color: rgba(255, 255, 255, 0.7);
}

.docs-nav__label {
  font-size: 0.875rem;
  font-weight: 600;
}

.docs-nav__file {
  font-size: 11px;
  color: #64748b;
  font-family: monospace;
}

.docs-content {
  flex: 1;
  min-width: 0;
}

.docs-card {
  display: block;
  background-color: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 0.625rem;
  padding: 1.5rem;
  margin-bottom: 1rem;
  text-decoration: none;
  color: #1e293b;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.docs-card:hover {
  border-color: #1c51a0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.docs-card__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: #1c51a0;
  margin-bottom: 0.25rem;
}

.docs-card__file {
  font-size: 0.875rem;
  color: #64748b;
  margin-bottom: 0.5rem;
}
.docs-card__file code {
  background-color: rgba(0, 0, 0, 0.06);
  padding: 2px 6px;
  border-radius: 0.25rem;
}

.docs-card__desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.5;
}

.page-login {
  height: 100%;
}

.login-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 769px) {
  .login-header {
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

.login-title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 58px;
  color: #1c51a0;
  letter-spacing: -1.25px;
  margin: 0;
}
@media (max-width: 769px) {
  .login-title {
    font-size: 32px;
    line-height: 44px;
  }
}

.login-subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 33px;
  line-height: 38px;
  font-weight: 400;
  color: #1c51a0;
  margin: 0;
  letter-spacing: -1.25px;
}
@media (max-width: 769px) {
  .login-subtitle {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
  }
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
@media (max-width: 769px) {
  .login-form {
    gap: 20px;
  }
}
.login-form__label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.login-form__forgot-link {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 16px;
  color: #1c51a0;
  text-decoration: none;
  white-space: nowrap;
}
.login-form__forgot-link:hover {
  text-decoration: underline;
}
@media (max-width: 769px) {
  .login-form__forgot-link {
    display: none;
  }
}
.login-form__actions {
  margin-top: 20px;
}
.login-form__actions .btn {
  width: 190px;
}
@media (max-width: 769px) {
  .login-form__actions {
    margin-top: 16px;
  }
  .login-form__actions .btn {
    width: 100%;
    height: 36px;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 26px;
  }
}

.text-input__icon--toggle {
  cursor: pointer;
  pointer-events: auto;
}

.login-separator {
  height: 2px;
  background-color: #858886;
  margin: 0;
}
@media (max-width: 769px) {
  .login-separator {
    height: 1px;
  }
}

.login-register {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.login-register .btn {
  width: 190px;
}
@media (max-width: 769px) {
  .login-register {
    gap: 24px;
    align-items: center;
  }
  .login-register .btn {
    width: 100%;
    height: 36px;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 26px;
  }
}

.register-text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #606060;
  margin: 0;
}
@media (max-width: 769px) {
  .register-text {
    font-size: 12px;
    line-height: 16px;
  }
}

.page-prereg {
  height: 100%;
}

.prereg-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 769px) {
  .prereg-header {
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

.prereg-title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 58px;
  color: #1c51a0;
  letter-spacing: -1.25px;
  margin: 0;
}
@media (max-width: 769px) {
  .prereg-title {
    font-size: 32px;
    line-height: 44px;
  }
}

.prereg-subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  color: #1c51a0;
  margin: 0;
  letter-spacing: -1.25px;
}
@media (max-width: 769px) {
  .prereg-subtitle {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
  }
}

.prereg-body {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
@media (max-width: 769px) {
  .prereg-body {
    gap: 24px;
  }
}

.prereg-actions {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 769px) {
  .prereg-actions {
    gap: 24px;
  }
}

.prereg-cta .btn {
  width: 190px;
}
@media (max-width: 769px) {
  .prereg-cta .btn {
    width: 100%;
    height: 36px;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 26px;
  }
}

.prereg-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prereg-info__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #606060;
  margin: 0;
}
@media (max-width: 769px) {
  .prereg-info__text {
    font-size: 12px;
    line-height: 16px;
  }
}
.prereg-info__toggle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #1c51a0;
  text-decoration: none;
  cursor: pointer;
}
.prereg-info__toggle:hover {
  text-decoration: underline;
}
@media (max-width: 769px) {
  .prereg-info__toggle {
    font-size: 12px;
    line-height: 16px;
  }
}

.prereg-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.4s ease;
  margin-top: -32px;
}
@media (max-width: 769px) {
  .prereg-details {
    margin-top: -24px;
  }
}
.prereg-details.is-open {
  max-height: 500px;
  opacity: 1;
  margin-top: 0;
}
.prereg-details__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 26px;
  color: #606060;
  margin: 0;
}
@media (max-width: 769px) {
  .prereg-details__title {
    font-size: 14px;
    line-height: 20px;
  }
}
.prereg-details__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #606060;
  margin: 0;
}
@media (max-width: 769px) {
  .prereg-details__text {
    font-size: 12px;
    line-height: 16px;
  }
}
.prereg-details__link {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #1c51a0;
  text-decoration: underline;
}
.prereg-details__link:hover {
  color: #153d7a;
}
@media (max-width: 769px) {
  .prereg-details__link {
    font-size: 12px;
    line-height: 16px;
  }
}
.prereg-details__link--inline {
  color: #1c51a0;
  text-decoration: underline;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}
.prereg-details__link--inline:hover {
  color: #153d7a;
}

.prereg-bottom {
  display: flex;
  flex-direction: column;
  gap: 38px;
}
@media (max-width: 769px) {
  .prereg-bottom {
    gap: 24px;
  }
}

.prereg-separator {
  height: 2px;
  background-color: #858886;
  margin: 0;
}
@media (max-width: 769px) {
  .prereg-separator {
    height: 1px;
  }
}

.prereg-login {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.prereg-login__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #606060;
  margin: 0;
}
@media (max-width: 769px) {
  .prereg-login__text {
    font-size: 12px;
    line-height: 16px;
  }
}
.prereg-login .btn {
  width: 190px;
}
@media (max-width: 769px) {
  .prereg-login {
    gap: 24px;
    align-items: center;
  }
  .prereg-login .btn {
    width: 100%;
    height: 36px;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 26px;
  }
}

.page-register {
  height: 100%;
}

.register-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 769px) {
  .register-header {
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

.register-title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 93px;
  line-height: 101px;
  color: #1c51a0;
  letter-spacing: -1.25px;
  margin: 0;
}
@media (max-width: 769px) {
  .register-title {
    font-size: 32px;
    line-height: 44px;
  }
}

.register-subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 30px;
  line-height: 35px;
  font-weight: 400;
  color: #1c51a0;
  margin: 0;
  letter-spacing: -1.25px;
}
@media (max-width: 769px) {
  .register-subtitle {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
  }
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
@media (max-width: 769px) {
  .register-form {
    gap: 20px;
  }
}

.register-password-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 769px) {
  .register-password-section {
    gap: 8px;
  }
}
.register-password-section__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #1c51a0;
  margin: 0;
}
@media (max-width: 769px) {
  .register-password-section__title {
    font-size: 16px;
    line-height: 22px;
  }
}

.register-password-rules {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.register-password-rules__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 4px;
  color: #1c51a0;
}
.register-password-rules__item::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background-color: currentColor;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M7.0875 5.25c.237 0 .43.177.437.399l.001.011v5.129c0 .226-.196.41-.437.41-.238 0-.431-.177-.438-.399L6.65 10.79V5.661c0-.227.196-.411.437-.411Z' fill='%23000'/%3E%3Cpath d='M7.0875 4.2a.787.787 0 1 0 0-1.575.787.787 0 0 0 0 1.575Z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' d='M0 7a7 7 0 1 1 14 0A7 7 0 0 1 0 7Zm13.161 0A6.161 6.161 0 1 0 .84 7a6.161 6.161 0 0 0 12.322 0Z' fill='%23000'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 14'%3E%3Cpath d='M7.0875 5.25c.237 0 .43.177.437.399l.001.011v5.129c0 .226-.196.41-.437.41-.238 0-.431-.177-.438-.399L6.65 10.79V5.661c0-.227.196-.411.437-.411Z' fill='%23000'/%3E%3Cpath d='M7.0875 4.2a.787.787 0 1 0 0-1.575.787.787 0 0 0 0 1.575Z' fill='%23000'/%3E%3Cpath fill-rule='evenodd' d='M0 7a7 7 0 1 1 14 0A7 7 0 0 1 0 7Zm13.161 0A6.161 6.161 0 1 0 .84 7a6.161 6.161 0 0 0 12.322 0Z' fill='%23000'/%3E%3C/svg%3E");
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
}
.register-password-rules__item--error {
  color: #ef4444;
}
.register-password-rules__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 16px;
  letter-spacing: 0;
  color: inherit;
}

.register-terms {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.register-terms .checkbox {
  align-items: flex-start;
  gap: 10px;
}
.register-terms .checkbox__label {
  font-size: 16px;
  line-height: 20px;
  color: #373a36;
}
@media (max-width: 769px) {
  .register-terms .checkbox__label {
    font-size: 12px;
    line-height: 16px;
  }
}
.register-terms__required {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #1c51a0;
  margin: 0;
  text-align: right;
}
@media (max-width: 769px) {
  .register-terms__required {
    font-size: 12px;
    line-height: 16px;
  }
}

.register-consents {
  background-color: #fff;
  padding: 80px 0;
}
@media (max-width: 769px) {
  .register-consents {
    padding: 24px 0;
  }
}
.register-consents__box {
  border: 1px solid #858886;
  border-radius: 0.5rem;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  min-height: 120px;
}
@media (max-width: 769px) {
  .register-consents__box {
    padding: 1.25rem;
    gap: 20px;
  }
}
.register-consents__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.register-consents__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  color: #1c51a0;
  letter-spacing: -1.25px;
  margin: 0;
}
@media (max-width: 769px) {
  .register-consents__title {
    font-size: 16px;
    line-height: 22px;
  }
}
.register-consents__subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #333;
  margin: 0;
}
@media (max-width: 769px) {
  .register-consents__subtitle {
    font-size: 14px;
    line-height: 20px;
  }
}
.register-consents__submit {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 769px) {
  .register-consents__submit {
    margin-top: 24px;
  }
  .register-consents__submit .btn {
    width: 100%;
  }
}

.register-consent-card {
  background-color: #f5f5f1;
  border-radius: 8px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}
@media (max-width: 769px) {
  .register-consent-card {
    padding: 1.5rem;
    gap: 20px;
  }
}
.register-consent-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}
.register-consent-card__heading {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #373a36;
  margin: 0;
}
.register-consent-card__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #373a36;
  margin: 0;
}
@media (max-width: 769px) {
  .register-consent-card__text {
    font-size: 14px;
    line-height: 20px;
  }
}
.register-consent-card__link {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: #1c51a0;
  text-decoration: underline;
}
.register-consent-card__link:hover {
  color: #153d7a;
}
@media (max-width: 769px) {
  .register-consent-card__link {
    font-size: 14px;
    line-height: 20px;
  }
}
.register-consent-card__radios {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.register-consent-card__channels {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.register-consent-card__channel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.register-consent-card__channel-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #373a36;
  margin: 0;
}
@media (max-width: 769px) {
  .register-consent-card__channel-label {
    font-size: 14px;
    line-height: 20px;
  }
}

.page-reset-pass {
  height: 100%;
}

.reset-pass-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 769px) {
  .reset-pass-header {
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

.reset-pass-title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 70px;
  color: #1c51a0;
  letter-spacing: -1.25px;
  margin: 0;
}
@media (max-width: 769px) {
  .reset-pass-title {
    font-size: 32px;
    line-height: 44px;
  }
}

.reset-pass-subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 33px;
  line-height: 38px;
  font-weight: 400;
  color: #1c51a0;
  margin: 0;
  letter-spacing: -1.25px;
}
@media (max-width: 769px) {
  .reset-pass-subtitle {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
  }
}

.reset-pass-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.reset-pass-form__actions .btn {
  width: 232px;
}
@media (max-width: 769px) {
  .reset-pass-form__actions .btn {
    width: 100%;
    height: 36px;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 26px;
  }
}

.page-reset-pass-info {
  height: 100%;
}

.reset-info-contact {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 769px) {
  .reset-info-contact {
    align-items: center;
    text-align: center;
    gap: 24px;
  }
}
.reset-info-contact__text {
  display: flex;
  flex-direction: column;
}
.reset-info-contact__heading {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  color: #333;
  letter-spacing: -1.25px;
  margin: 0;
}
@media (max-width: 769px) {
  .reset-info-contact__heading {
    font-size: 20px;
    line-height: 32px;
  }
}
.reset-info-contact__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 40px;
  color: #333;
  letter-spacing: -1.25px;
  margin: 0;
}
@media (max-width: 769px) {
  .reset-info-contact__desc {
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
  }
}
.reset-info-contact__btn {
  display: none;
}
@media (max-width: 769px) {
  .reset-info-contact__btn {
    display: inline-flex;
    width: 100%;
    height: 36px;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 26px;
  }
}

.page-change-pass {
  height: 100%;
}

.change-pass-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 769px) {
  .change-pass-header {
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

.change-pass-title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 70px;
  color: #1c51a0;
  letter-spacing: -1.25px;
  margin: 0;
}
@media (max-width: 769px) {
  .change-pass-title {
    font-size: 32px;
    line-height: 44px;
  }
}

.change-pass-subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 33px;
  line-height: 38px;
  font-weight: 400;
  color: #1c51a0;
  margin: 0;
  letter-spacing: -1.25px;
}
@media (max-width: 769px) {
  .change-pass-subtitle {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
  }
}

.change-pass-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.change-pass-form__actions .btn {
  width: 232px;
}
@media (max-width: 769px) {
  .change-pass-form__actions .btn {
    width: 100%;
    height: 36px;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 26px;
  }
}
.change-pass-form .register-password-rules {
  margin-bottom: 0;
}

.change-pass-rules {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 4px;
}
.change-pass-rules__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.change-pass-rules__item.is-valid .change-pass-rules__text {
  color: #1c51a0;
  opacity: 1;
}
.change-pass-rules__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 16px;
  color: #1c51a0;
  letter-spacing: 0;
}

.page-change-pass-info {
  height: 100%;
}

.change-pass-info-header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 769px) {
  .change-pass-info-header {
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

.change-pass-info-title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 70px;
  color: #1c51a0;
  letter-spacing: -1.25px;
  margin: 0;
}
@media (max-width: 769px) {
  .change-pass-info-title {
    font-size: 32px;
    line-height: 44px;
  }
}

.change-pass-info-subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 33px;
  line-height: 38px;
  font-weight: 400;
  color: #1c51a0;
  margin: 0;
  letter-spacing: -1.25px;
}
@media (max-width: 769px) {
  .change-pass-info-subtitle {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
  }
}

.change-pass-info-actions .btn {
  width: 232px;
}
@media (max-width: 769px) {
  .change-pass-info-actions .btn {
    width: 100%;
    height: 36px;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 26px;
  }
}

.page-register-info {
  height: 100%;
}

.register-info-header {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 769px) {
  .register-info-header {
    align-items: center;
    text-align: center;
    gap: 12px;
  }
}

.register-info-title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 70px;
  color: #1c51a0;
  letter-spacing: -1.25px;
  margin: 0;
}
@media (max-width: 769px) {
  .register-info-title {
    font-size: 32px;
    line-height: 44px;
  }
}

.register-info-subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 33px;
  line-height: 38px;
  font-weight: 400;
  color: #1c51a0;
  margin: 0;
  letter-spacing: -1.25px;
}
@media (max-width: 769px) {
  .register-info-subtitle {
    font-size: 20px;
    line-height: 32px;
    letter-spacing: 0;
  }
}

.register-info-actions .btn {
  width: 190px;
}
@media (max-width: 769px) {
  .register-info-actions {
    width: 100%;
  }
  .register-info-actions .btn {
    width: 100%;
    height: 36px;
    font-size: 14px;
    line-height: 20px;
    padding: 8px 26px;
  }
}

.register-info-separator {
  border: none;
  border-top: 2px solid #858886;
  margin: 0;
  width: 100%;
}

.register-info-legal {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #606060;
  letter-spacing: 0;
  margin: 0;
}
.register-info-legal__link {
  font-weight: 700;
  color: #1c51a0;
  text-decoration: none;
}
.register-info-legal__link:hover {
  text-decoration: underline;
}
@media (max-width: 769px) {
  .register-info-legal {
    font-size: 14px;
    line-height: 20px;
  }
}

.products-hero {
  text-align: center;
  padding: 2.5rem 0;
}
@media (min-width: 1024px) {
  .products-hero {
    padding: 4rem 0 3rem;
  }
}
.products-hero__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 40px;
  letter-spacing: -1.25px;
  color: #333;
  margin: 0 0 14px;
}
@media (min-width: 1024px) {
  .products-hero__title {
    font-size: 45px;
    line-height: 72px;
    margin-bottom: 30px;
  }
}
.products-hero__description {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #333;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .products-hero__description {
    max-width: 560px;
  }
}
@media (min-width: 1024px) {
  .products-hero__description {
    max-width: 994px;
    font-size: 24px;
    line-height: 40px;
  }
}
.products-hero__description strong {
  font-weight: 700;
}
.products-hero__description p {
  margin: 0 0 20px;
}
.products-hero__description p:last-child {
  margin-bottom: 0;
}
.products-hero__cta {
  margin-top: 10px;
}
.products-hero__cta .btn {
  width: 100%;
}
@media (min-width: 640px) {
  .products-hero__cta .btn {
    width: auto;
    max-width: 280px;
    margin: 0 auto;
  }
}
@media (min-width: 1024px) {
  .products-hero__cta .btn {
    width: auto;
    max-width: none;
  }
}

.products-listing {
  padding: 0 0 4rem;
}

.products-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 1024px) {
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, calc((100% - 80px) / 3));
    gap: 60px 40px;
    justify-content: center;
  }
}

@keyframes filterCardReveal {
  0% {
    opacity: 0;
    transform: translateY(28px) scale(0.92);
    filter: blur(6px);
  }
  60% {
    opacity: 1;
    filter: blur(0);
  }
  80% {
    transform: translateY(-3px) scale(1.01);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes filterCardHide {
  0% {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(4px);
  }
}
.product-card {
  will-change: transform, opacity, filter;
}
.product-card--filter-reveal {
  animation: filterCardReveal 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: var(--stagger-delay, 0ms);
}
.product-card--filter-hide {
  animation: filterCardHide 0.25s cubic-bezier(0.4, 0, 1, 1) both;
  pointer-events: none;
}
.product-card--filter-hidden {
  display: none !important;
}

.marketing-consents-hero {
  padding: 40px 0 0;
  text-align: center;
}
@media (max-width: 769px) {
  .marketing-consents-hero {
    padding: 24px 0 0;
  }
}
.marketing-consents-hero__title {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 100px;
  line-height: 72px;
  color: #1c51a0;
  letter-spacing: -1.25px;
  margin: 0 0 40px;
}
@media (max-width: 769px) {
  .marketing-consents-hero__title {
    font-size: 40px;
    line-height: 44px;
    margin: 0 0 16px;
  }
}
.marketing-consents-hero__subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  color: #333;
  letter-spacing: -1.25px;
  margin: 0;
  max-width: 957px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 769px) {
  .marketing-consents-hero__subtitle {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
  }
}

.marketing-consents {
  padding: 40px 0 0;
}
@media (max-width: 769px) {
  .marketing-consents {
    padding: 24px 0 0;
  }
}
.marketing-consents__submit {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  padding-bottom: 100px;
}
@media (max-width: 769px) {
  .marketing-consents__submit {
    margin-top: 24px;
    padding-bottom: 40px;
  }
  .marketing-consents__submit .btn {
    width: 100%;
  }
}

.page-voucher .voucher {
  padding: 64px 0 0;
}
.page-voucher .voucher__hero {
  display: flex;
  gap: 88px;
  align-items: flex-start;
  margin-bottom: 64px;
}
.page-voucher .voucher__image-wrapper {
  flex-shrink: 0;
  width: 579px;
  height: 579px;
  border-radius: 0.5rem;
  overflow: hidden;
}
.page-voucher .voucher__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.page-voucher .voucher__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 577px;
}
.page-voucher .voucher__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-voucher .voucher__titles {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.page-voucher .voucher__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 64px;
  line-height: 72px;
  letter-spacing: -1.25px;
  color: #333;
  margin: 0;
}
.page-voucher .voucher__subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 40px;
  letter-spacing: -1.25px;
  color: #3a3d3f;
  margin: 0;
}
.page-voucher .voucher__exchange {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-voucher .voucher__price {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #184689;
  margin: 0;
}
.page-voucher .voucher__cta {
  width: 241px;
}
.page-voucher .voucher__notice {
  border: 1px solid #d3d3d3;
  border-radius: 0.5rem;
  padding: 16px 20px;
  overflow: hidden;
}
.page-voucher .voucher__notice-text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5c5c5c;
  margin: 0;
}
.page-voucher .voucher__notice-link {
  color: #1c51a0;
  text-decoration: underline;
}
.page-voucher .voucher__validity {
  border: 1px solid #d3d3d3;
  border-radius: 0.5rem;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-voucher .voucher__validity-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3a3d3f;
  margin: 0;
}
.page-voucher .voucher__validity-date {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  color: #3a3d3f;
}
.page-voucher .voucher__validity-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
}
.page-voucher .voucher__description-box {
  border: 1px solid #e6e7e8;
  border-radius: 0.5rem;
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-voucher .voucher__description-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5c5c5c;
  margin: 0;
}
.page-voucher .voucher__description-text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  color: #3a3d3f;
  margin: 0;
}
.page-voucher .voucher__instruction-box {
  border: 1px solid #e6e7e8;
  border-radius: 0.5rem;
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 64px;
}
.page-voucher .voucher__instruction-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5c5c5c;
  margin: 0;
}
.page-voucher .voucher__instruction-content {
  overflow: hidden;
  max-height: 154px;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-voucher .voucher__instruction-text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  color: #3a3d3f;
}
.page-voucher .voucher__instruction-text p {
  margin: 0 0 12px;
}
.page-voucher .voucher__instruction-text p:last-child {
  margin-bottom: 0;
}
.page-voucher .voucher__instruction-text strong {
  font-weight: 700;
}
.page-voucher .voucher__instruction-text ol {
  margin: 0 0 12px;
  padding-left: 24px;
  list-style: decimal;
}
.page-voucher .voucher__instruction-text ol:last-child {
  margin-bottom: 0;
}
.page-voucher .voucher__instruction-text li {
  margin-bottom: 2px;
}
.page-voucher .voucher__instruction-text li:last-child {
  margin-bottom: 0;
}
.page-voucher .voucher__read-more {
  display: none;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 22px;
  color: #1c51a0;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}
.page-voucher .voucher__read-more.is-visible {
  display: block;
}
.page-voucher .voucher__info-banners {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 100px;
}
.page-voucher .voucher__info-banner {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #fbfbfb;
  border-radius: 0.5rem;
  padding: 20px;
}
.page-voucher .voucher__info-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
}
.page-voucher .voucher__info-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.page-voucher .voucher__info-text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: #3a3d3f;
  margin: 0;
}
.page-voucher .voucher__redeemed-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: rgba(53, 103, 255, 0.1);
  border-radius: 0.5rem;
  padding: 2px 8px;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1c51a0;
  max-width: 245px;
}
.page-voucher .voucher__code-box {
  border: 1px solid #d3d3d3;
  border-radius: 0.5rem;
  padding: 12px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-voucher .voucher__code-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3a3d3f;
  margin: 0;
}
.page-voucher .voucher__code-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.page-voucher .voucher__code-value {
  flex: 1;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #184689;
}
.page-voucher .voucher__copy-btn {
  font-size: 18px;
  line-height: 24px;
}
.page-voucher .voucher__download-box {
  border: 1px solid #d3d3d3;
  border-radius: 0.5rem;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-voucher .voucher__download-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3a3d3f;
  margin: 0;
  max-width: 268px;
}
.page-voucher .voucher__download-btn {
  width: 190px;
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .page-voucher .voucher {
    padding: 24px 0 0;
  }
  .page-voucher .voucher__hero {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 32px;
  }
  .page-voucher .voucher__image-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
  }
  .page-voucher .voucher__content {
    max-width: 100%;
  }
  .page-voucher .voucher__title {
    font-size: 44px;
    line-height: 52px;
  }
  .page-voucher .voucher__subtitle {
    font-size: 26px;
    line-height: 36px;
  }
  .page-voucher .voucher__price {
    font-size: 18px;
    line-height: 32px;
  }
  .page-voucher .voucher__cta {
    display: none;
  }
  .page-voucher .voucher__notice-text {
    font-size: 0.75rem;
    line-height: 18px;
  }
  .page-voucher .voucher__instruction-box {
    margin-bottom: 24px;
  }
  .page-voucher .voucher__instruction-content {
    max-height: 180px;
  }
  .page-voucher .voucher__info-banners {
    margin-bottom: 64px;
  }
  .page-voucher .voucher__info-text {
    font-size: 1rem;
    line-height: 22px;
  }
  .page-voucher .voucher__code-box {
    display: none;
  }
  .page-voucher .voucher__code-row {
    flex-direction: column;
    align-items: stretch;
  }
  .page-voucher .voucher__code-value {
    font-size: 24px;
    line-height: 32px;
  }
  .page-voucher .voucher__copy-btn {
    width: 100%;
  }
}
.page-voucher .voucher__mobile-code {
  display: none;
}
@media (max-width: 1023px) {
  .page-voucher .voucher__mobile-code {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    position: sticky;
    bottom: 0;
    z-index: 200;
    background-color: #fff;
    padding: 16px 20px 12px;
    box-shadow: 0 -8px 20px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }
  .page-voucher .voucher__mobile-code.is-unpinned {
    box-shadow: none;
  }
  .page-voucher .voucher__mobile-code-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    text-transform: uppercase;
  }
  .page-voucher .voucher__mobile-code-label {
    flex: 1;
    font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 20px;
    letter-spacing: 2px;
    color: #3a3d3f;
  }
  .page-voucher .voucher__mobile-code-value {
    flex-shrink: 0;
    font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 2px;
    color: #184689;
  }
}
.page-voucher .voucher__mobile-cta {
  display: none;
}
@media (max-width: 1023px) {
  .page-voucher .voucher__mobile-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    position: sticky;
    bottom: 0;
    z-index: 200;
    background-color: #fff;
    padding: 16px 20px 12px;
    box-shadow: 0 -8px 20px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }
  .page-voucher .voucher__mobile-cta.is-unpinned {
    box-shadow: none;
  }
  .page-voucher .voucher__mobile-cta-info {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  .page-voucher .voucher__mobile-cta-title {
    flex: 1;
    font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
    font-size: 0.75rem;
    line-height: 16px;
    color: #333;
    margin: 0;
  }
  .page-voucher .voucher__mobile-cta-name {
    display: block;
    font-weight: 700;
  }
  .page-voucher .voucher__mobile-cta-value {
    display: block;
    font-weight: 400;
    letter-spacing: -0.5px;
  }
  .page-voucher .voucher__mobile-cta-price {
    flex-shrink: 0;
    font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #184689;
    margin: 0;
  }
  .page-voucher .voucher__mobile-cta-btn {
    width: 100%;
  }
}
.page-voucher .voucher__mobile-download {
  display: none;
}
.page-voucher .voucher__mobile-download-sentinel {
  display: none;
}
@media (max-width: 1023px) {
  .page-voucher .voucher__download-box {
    display: none;
  }
  .page-voucher .voucher__mobile-download {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: sticky;
    bottom: 0;
    z-index: 200;
    background-color: #fff;
    padding: 16px 20px 12px;
    box-shadow: 0 -8px 20px 0 rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
  }
  .page-voucher .voucher__mobile-download.is-unpinned {
    box-shadow: none;
  }
  .page-voucher .voucher__mobile-download-label {
    width: 100%;
    font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    line-height: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3a3d3f;
    margin: 0;
  }
  .page-voucher .voucher__mobile-download-btn {
    width: 100%;
  }
  .page-voucher .voucher__mobile-download-sentinel {
    display: block;
  }
}

.page-vouchers .vouchers-hero {
  padding: 64px 0 48px;
  text-align: center;
}
.page-vouchers .vouchers-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.page-vouchers .vouchers-hero__title {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 100px;
  line-height: 72px;
  letter-spacing: -1.25px;
  color: #1c51a0;
  margin: 0;
}
.page-vouchers .vouchers-hero__subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -1.25px;
  color: #333;
  margin: 0;
  max-width: 1260px;
}
.page-vouchers .vouchers-section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.page-vouchers .vouchers-section-title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -1.25px;
  color: #333;
  margin: 0;
}
.page-vouchers .vouchers-section-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-vouchers .vouchers-section-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.page-vouchers .vouchers-catalog {
  padding-bottom: 64px;
}
.page-vouchers .vouchers-catalog .vouchers-section-header {
  margin-bottom: 40px;
}
.page-vouchers .vouchers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.page-vouchers .vouchers-grid--special {
  grid-template-columns: repeat(3, 1fr);
  width: 100%;
}
.page-vouchers .vouchers-grid--special .voucher-card:only-child {
  grid-column: 2;
}
.page-vouchers .voucher-special__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
@media (min-width: 1024px) {
  .page-vouchers .voucher-special__container {
    border-radius: var(--radius-md, 8px);
    border: 1px solid #858886;
    padding: 28px;
  }
}
.page-vouchers .vouchers-special {
  padding-bottom: 100px;
}
.page-vouchers .vouchers-special__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 40px;
}
.page-vouchers .vouchers-special__description {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: -1.25px;
  color: #333;
  text-align: center;
  margin: 0;
  max-width: 1000px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .page-vouchers .vouchers-special__description {
    margin-bottom: 40px;
  }
}
.page-vouchers .vouchers-special__progress {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 832px;
  margin-bottom: 16px;
}
@media (min-width: 1024px) {
  .page-vouchers .vouchers-special__progress {
    margin-bottom: 20px;
  }
}
.page-vouchers .alert-banner {
  margin: 0 auto 40px;
  max-width: 621px;
}
@media (max-width: 1023px) {
  .page-vouchers .vouchers-hero {
    padding: 32px 0;
  }
  .page-vouchers .vouchers-hero__content {
    gap: 24px;
  }
  .page-vouchers .vouchers-hero__title {
    font-size: 64px;
    line-height: 72px;
  }
  .page-vouchers .vouchers-hero__subtitle {
    font-size: 18px;
    line-height: 28px;
  }
  .page-vouchers .vouchers-section-header {
    gap: 16px;
  }
  .page-vouchers .vouchers-section-title {
    font-size: 16px;
    line-height: 28px;
    text-align: center;
  }
  .page-vouchers .vouchers-catalog {
    padding-bottom: 40px;
  }
  .page-vouchers .vouchers-catalog .vouchers-section-header {
    margin-bottom: 32px;
  }
  .page-vouchers .vouchers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .page-vouchers .vouchers-grid--special {
    grid-template-columns: repeat(1, 1fr);
    justify-items: center;
  }
  .page-vouchers .vouchers-grid--special .voucher-card:only-child {
    grid-column: auto;
    width: 50%;
  }
  .page-vouchers .vouchers-special {
    padding-bottom: 64px;
  }
  .page-vouchers .vouchers-special__content {
    gap: 20px;
    margin-bottom: 32px;
  }
  .page-vouchers .vouchers-special__description {
    font-size: 16px;
    line-height: 24px;
  }
  .page-vouchers .alert-banner {
    margin-bottom: 32px;
  }
}
@media (max-width: 639px) {
  .page-vouchers .vouchers-grid,
  .page-vouchers .vouchers-grid--special {
    grid-template-columns: 1fr;
  }
  .page-vouchers .vouchers-grid .voucher-card:only-child,
  .page-vouchers .vouchers-grid--special .voucher-card:only-child {
    width: 100%;
  }
  .page-vouchers .vouchers-special__content {
    margin-bottom: 0;
  }
}

.historia-header {
  text-align: center;
  padding: 40px 0 0;
}
@media (min-width: 769px) {
  .historia-header {
    padding: 0;
  }
}

.historia-header__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #333;
  letter-spacing: -1.25px;
  font-size: 28px;
  line-height: 40px;
}
@media (min-width: 769px) {
  .historia-header__title {
    font-size: 64px;
    line-height: 72px;
  }
}

.historia-header__description {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #3a3d3f;
  margin-top: 8px;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 769px) {
  .historia-header__description {
    font-size: 24px;
    line-height: 40px;
    letter-spacing: -1.25px;
    max-width: 994px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
  }
}
.historia-header__description strong {
  font-weight: 700;
}

.historia-manifesto {
  text-align: center;
}
.historia-manifesto .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 769px) {
  .historia-manifesto .container {
    gap: 80px;
  }
}

.historia-manifesto__heading {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #333;
  letter-spacing: -1.25px;
  font-size: 26px;
  line-height: 36px;
}
@media (min-width: 769px) {
  .historia-manifesto__heading {
    font-size: 44px;
    line-height: 52px;
  }
}

.historia-manifesto__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 500;
  color: #333;
  font-size: 20px;
  line-height: 32px;
}
@media (min-width: 769px) {
  .historia-manifesto__text {
    font-size: 32px;
    line-height: 44px;
    letter-spacing: -1.25px;
  }
}
.historia-manifesto__text strong {
  font-weight: 700;
}

.historia-manifesto__line {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 73px;
}
@media (min-width: 769px) {
  .historia-manifesto__line {
    height: 70px;
  }
}

.historia-manifesto__heading {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transform: translateY(24px);
  filter: blur(6px);
  text-box-trim: trim-both;
  transition: clip-path 0.9s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.historia-manifesto__heading.is-visible {
  clip-path: inset(0 0% 0 0);
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.historia-manifesto__text {
  clip-path: inset(0 100% 0 0);
  opacity: 0;
  transform: translateY(12px);
  transition: clip-path 0.75s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}
.historia-manifesto__text.is-visible {
  clip-path: inset(0 0% 0 0);
  opacity: 1;
  transform: translateY(0);
}

.historia-manifesto__line svg {
  display: block;
  height: 70px;
  width: 2px;
  overflow: visible;
}
.historia-manifesto__line path {
  stroke-dasharray: 70;
  stroke-dashoffset: 70;
  transition: stroke-dashoffset 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.historia-manifesto__line.is-visible path {
  stroke-dashoffset: 0;
}

.historia-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.historia-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.historia-cta__icon {
  border-radius: 14.84px;
  overflow: hidden;
  width: 88px;
  height: 88px;
}
@media (max-width: 769px) {
  .historia-cta__icon {
    width: 83px;
    height: 83px;
    border-radius: 14.5px;
  }
}
.historia-cta__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}

.page-historia-winston .main-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (min-width: 769px) {
  .page-historia-winston .main-content {
    gap: 80px;
  }
}
.page-historia-winston .main-content {
  padding-bottom: 100px;
}
@media (max-width: 769px) {
  .page-historia-winston .main-content {
    padding-bottom: 64px;
  }
}
@media (min-width: 769px) {
  .page-historia-winston .slider-history {
    max-width: 1920px;
  }
}

.page-odebrane-nagrody .vouchers-hero {
  padding: 64px 0 48px;
  text-align: center;
}
.page-odebrane-nagrody .vouchers-hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}
.page-odebrane-nagrody .vouchers-hero__title {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 100px;
  line-height: 72px;
  letter-spacing: -1.25px;
  color: #1c51a0;
  margin: 0;
}
.page-odebrane-nagrody .vouchers-hero__subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 300;
  font-size: 32px;
  line-height: 32px;
  color: #333;
  margin: 0;
  max-width: 1260px;
}
.page-odebrane-nagrody .redeemed-vouchers {
  padding-bottom: 100px;
}
.page-odebrane-nagrody .vouchers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.page-odebrane-nagrody .voucher-card--redeemed {
  text-decoration: none;
  color: inherit;
}
.page-odebrane-nagrody .voucher-card--redeemed .voucher-card__ribbon {
  color: #1c51a0;
}
.page-odebrane-nagrody .redeemed-vouchers-empty {
  padding-bottom: 100px;
}
.page-odebrane-nagrody .redeemed-vouchers-empty__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.page-odebrane-nagrody .redeemed-vouchers-empty__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 300;
  font-size: 18px;
  line-height: 32px;
  color: #333;
  text-align: center;
  margin: 0;
  max-width: 680px;
}
@media (max-width: 1023px) {
  .page-odebrane-nagrody .vouchers-hero {
    padding: 32px 0;
  }
  .page-odebrane-nagrody .vouchers-hero__content {
    gap: 24px;
  }
  .page-odebrane-nagrody .vouchers-hero__title {
    font-size: 64px;
    line-height: 72px;
  }
  .page-odebrane-nagrody .vouchers-hero__subtitle {
    font-size: 18px;
    line-height: 28px;
  }
  .page-odebrane-nagrody .redeemed-vouchers {
    padding-bottom: 64px;
  }
  .page-odebrane-nagrody .redeemed-vouchers-empty {
    padding-bottom: 64px;
  }
  .page-odebrane-nagrody .vouchers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 639px) {
  .page-odebrane-nagrody .vouchers-grid {
    grid-template-columns: 1fr;
  }
}

.page-kontakt .kontakt-header {
  padding-top: 3rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .page-kontakt .kontakt-header {
    padding-top: 6rem;
  }
}
.page-kontakt .kontakt-header__title {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1c51a0;
  letter-spacing: -1.25px;
  line-height: 72px;
  font-size: clamp(64px, 64px + 36px * (100vw - 320px) / 160px, 100px);
  margin-bottom: 40px;
}
.page-kontakt .kontakt-header__subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #333;
  margin-top: 14px;
  letter-spacing: -1.25px;
  font-size: clamp(16px, 16px + 12px * (100vw - 320px) / 160px, 28px);
  line-height: 28px;
}
@media (min-width: 1024px) {
  .page-kontakt .kontakt-header__subtitle {
    margin-top: 1rem;
    line-height: 40px;
    margin-bottom: 40px;
  }
}
.page-kontakt .kontakt-info {
  padding: 40px 0;
}
@media (min-width: 1024px) {
  .page-kontakt .kontakt-info {
    padding: 20px 0;
  }
}
.page-kontakt .kontakt-info__card {
  background-color: #f5f5f1;
  border-radius: 0.5rem;
  padding: 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  justify-content: space-between;
  min-height: 600px;
}
@media (min-width: 769px) {
  .page-kontakt .kontakt-info__card {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 40px 12px;
    min-height: auto;
  }
}
@media (min-width: 1024px) {
  .page-kontakt .kontakt-info__card {
    flex-wrap: nowrap;
  }
}
.page-kontakt .kontakt-info__item {
  text-align: center;
  padding: 20px 0;
  width: 100%;
}
@media (min-width: 769px) {
  .page-kontakt .kontakt-info__item {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  .page-kontakt .kontakt-info__item {
    width: 297px;
    padding: 0;
  }
}
.page-kontakt .kontakt-info__label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px;
  font-size: clamp(22px, 22px + 6px * (100vw - 320px) / 160px, 28px);
  line-height: 30px;
}
@media (min-width: 1024px) {
  .page-kontakt .kontakt-info__label {
    line-height: 38px;
    margin-bottom: 21px;
  }
}
.page-kontakt .kontakt-info__value {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #333;
  margin: 0;
  font-size: clamp(22px, 22px + 6px * (100vw - 320px) / 160px, 28px);
  line-height: 30px;
}
@media (min-width: 1024px) {
  .page-kontakt .kontakt-info__value {
    line-height: 29px;
  }
}
.page-kontakt .kontakt-info__value--link {
  display: block;
  text-decoration: none;
  color: #333;
}
.page-kontakt .kontakt-info__value--link:hover {
  text-decoration: underline;
}
.page-kontakt .main-content {
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .page-kontakt .main-content {
    padding-bottom: 100px;
  }
}

.page-moj-profil .main-content {
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .page-moj-profil .main-content {
    padding-bottom: 100px;
  }
}
.page-moj-profil .profil-header {
  padding-top: 3rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-header {
    padding-top: 6rem;
  }
}
.page-moj-profil .profil-header__title {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1c51a0;
  letter-spacing: -1.25px;
  line-height: 1em;
  font-size: clamp(64px, 64px + 36px * (100vw - 320px) / 160px, 100px);
  margin-bottom: 14px;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-header__title {
    margin-bottom: 40px;
  }
}
.page-moj-profil .profil-header__subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #333;
  letter-spacing: -1.25px;
  font-size: clamp(16px, 16px + 16px * (100vw - 320px) / 160px, 32px);
  line-height: 1.2em;
  margin: 0;
}
.page-moj-profil .profil-cards {
  padding-top: 40px;
}
.page-moj-profil .profil-cards .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}
.page-moj-profil .profil-card {
  border: 1px solid #858886;
  border-radius: 0.5rem;
  padding: 20px;
  width: 100%;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-card {
    padding: 28px;
  }
}
.page-moj-profil .profil-card__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1c51a0;
  margin: 0 0 20px;
  font-size: clamp(20px, 20px + 6px * (100vw - 320px) / 160px, 26px);
  line-height: 32px;
  letter-spacing: -1.25px;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-card__title {
    line-height: 36px;
    margin-bottom: 32px;
  }
}
.page-moj-profil .profil-card__body {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.page-moj-profil .profil-card__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #333;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-card__text {
    font-size: 20px;
    line-height: 32px;
  }
}
.page-moj-profil .profil-card__text--bold {
  font-weight: 700;
}
.page-moj-profil .profil-card__action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  text-decoration: none;
  color: #1c51a0;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-card__action {
    font-size: 18px;
    line-height: 24px;
  }
}
.page-moj-profil .profil-card__action-arrow {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-card__action-arrow {
    width: 38px;
    height: 38px;
  }
}
.page-moj-profil .profil-card__header-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-card__header-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 95px;
    margin-bottom: 32px;
  }
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-card__header-row .profil-card__title {
    margin-bottom: 0;
  }
}
.page-moj-profil .profil-card__action--badge {
  gap: 12px;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-card__action--badge {
    display: flex !important;
    flex-direction: row;
  }
}
.page-moj-profil .profil-card__action--badge .profil-card__badge-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  flex-shrink: 0;
}
.page-moj-profil .profil-card__action--badge span {
  font-size: 12px;
  line-height: 16px;
  color: #1c51a0;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-card__action--badge span {
    font-size: 18px;
    line-height: 24px;
  }
}
.page-moj-profil .profil-card--extra {
  background: #fff;
}
.page-moj-profil .profil-data {
  background: #f5f5f1;
  border-radius: 0.5rem;
  padding: 24px;
  overflow: hidden;
  margin-bottom: 12px;
}
.page-moj-profil .profil-data--row {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-data--row {
    flex-direction: row;
  }
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-data--two-col .profil-data__field {
    flex: 1;
  }
}
.page-moj-profil .profil-data--edit-pass {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-data--edit-pass {
    flex-direction: row;
    align-items: flex-start;
  }
}
.page-moj-profil .profil-data--edit-pass .profil-card__action {
  margin-left: auto;
}
.page-moj-profil .profil-data__field {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-data__field {
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-data__field--password {
    flex: 0 0 50%;
  }
}
.page-moj-profil .profil-data__label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #606060;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 11px;
}
.page-moj-profil .profil-data__value {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #606060;
  font-size: 18px;
  line-height: 24px;
}
.page-moj-profil .profil-info-banner {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  background: #fbfbfb;
  border-radius: 0.5rem;
  padding: 18px;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-info-banner {
    padding: 20px;
    align-items: center;
    margin-top: 40px;
  }
}
.page-moj-profil .profil-info-banner__icon {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  opacity: 0.75;
  color: #333;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-info-banner__icon {
    width: 32px;
    height: 32px;
  }
}
.page-moj-profil .profil-info-banner__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #3a3d3f;
  margin: 0;
  font-size: 12px;
  line-height: 18px;
}
@media (min-width: 1024px) {
  .page-moj-profil .profil-info-banner__text {
    font-size: 16px;
    line-height: 22px;
  }
}
.page-moj-profil .dialog-zmien-haslo__header {
  text-align: center;
}
.page-moj-profil .dialog-zmien-haslo__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1c51a0;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -1.25px;
  margin: 0 0 12px;
}
.page-moj-profil .dialog-zmien-haslo__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1c51a0;
  font-size: 20px;
  line-height: 32px;
  margin: 0;
}
.page-moj-profil .dialog-zmien-haslo__contact {
  text-align: center;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-size: 16px;
  line-height: 22px;
  color: #333;
}
.page-moj-profil .dialog-zmien-haslo__contact-title {
  font-weight: 700;
  margin: 0;
}
.page-moj-profil .dialog-zmien-haslo__contact-text {
  font-weight: 400;
  margin: 0;
}

.page-zdobyte-punkty .main-content {
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .page-zdobyte-punkty .main-content {
    padding-bottom: 100px;
  }
}
.page-zdobyte-punkty .punkty-header {
  padding-top: 3rem;
  text-align: center;
}
@media (min-width: 1024px) {
  .page-zdobyte-punkty .punkty-header {
    padding-top: 6rem;
  }
}
.page-zdobyte-punkty .punkty-header__title {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1c51a0;
  letter-spacing: -1.25px;
  line-height: 1em;
  font-size: clamp(64px, 64px + 36px * (100vw - 320px) / 160px, 100px);
  margin-bottom: 14px;
}
@media (min-width: 1024px) {
  .page-zdobyte-punkty .punkty-header__title {
    margin-bottom: 40px;
  }
}
.page-zdobyte-punkty .punkty-header__subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #333;
  letter-spacing: -1.25px;
  font-size: clamp(16px, 16px + 16px * (100vw - 320px) / 160px, 32px);
  line-height: 1.2em;
  margin: 0;
}
.page-zdobyte-punkty .punkty-section {
  padding-top: 40px;
}
.page-zdobyte-punkty .punkty-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .page-zdobyte-punkty .punkty-wrapper {
    padding: 28px;
    border: 1px solid #858886;
    border-radius: 0.5rem;
    padding: 20px;
  }
}
@media (max-width: 1024px) {
  .page-zdobyte-punkty .profil-card.profil-card--points {
    padding: 20px;
    border: 1px solid #858886;
    border-radius: 0.5rem;
  }
}
.page-zdobyte-punkty .punkty-historia {
  border: 1px solid #858886;
  border-radius: 8px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .page-zdobyte-punkty .punkty-historia {
    padding: 24px 32px;
    background: #f5f5f1;
    border: 0;
    display: table;
  }
}
.page-zdobyte-punkty .punkty-historia__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1c51a0;
  margin: 0 0 10px;
  font-size: clamp(20px, 20px + 6px * (100vw - 320px) / 160px, 26px);
  line-height: 36px;
  letter-spacing: -1.25px;
}
.page-zdobyte-punkty .punkty-historia__header {
  display: none;
}
@media (min-width: 1024px) {
  .page-zdobyte-punkty .punkty-historia__header {
    display: table-row;
    align-items: center;
    padding-bottom: 4px;
  }
}
.page-zdobyte-punkty .punkty-historia__col {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #606060;
  font-size: 12px;
  line-height: 16px;
  display: table-cell;
}
.page-zdobyte-punkty .punkty-historia__col--date {
  width: 170px;
  flex-shrink: 0;
}
.page-zdobyte-punkty .punkty-historia__col--points {
  width: 150px;
}
.page-zdobyte-punkty .punkty-historia__col--balance {
  width: 100px;
}
.page-zdobyte-punkty .punkty-historia__row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 16px 0;
  background: #f5f5f1;
  padding: 24px;
  border-radius: 0.5rem;
}
.page-zdobyte-punkty .punkty-historia__row:last-child {
  border-bottom: none;
}
@media (min-width: 1024px) {
  .page-zdobyte-punkty .punkty-historia__row {
    display: table-row;
    margin: 0 0 20px;
  }
}
.page-zdobyte-punkty .punkty-historia__label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #606060;
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 4px;
  margin-top: 12px;
  flex-basis: 100%;
}
@media (min-width: 1024px) {
  .page-zdobyte-punkty .punkty-historia__label {
    display: none;
  }
}
.page-zdobyte-punkty .punkty-historia__label:first-child {
  margin-top: 0;
}
@media (max-width: 1024px) {
  .page-zdobyte-punkty .punkty-historia__label--order-mobile {
    order: 0;
    flex-basis: 50%;
  }
}
@media (max-width: 1024px) {
  .page-zdobyte-punkty .punkty-historia__label--order-mobile-2 {
    order: 1;
    flex-basis: 50%;
  }
}
.page-zdobyte-punkty .punkty-historia__cell {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #606060;
  font-size: 14px;
  line-height: 20px;
  flex-basis: 100%;
}
@media (min-width: 1024px) {
  .page-zdobyte-punkty .punkty-historia__cell {
    font-size: 18px;
    line-height: 24px;
    display: table-cell;
    padding: 8px 0;
  }
}
@media (min-width: 1024px) {
  .page-zdobyte-punkty .punkty-historia__cell--date {
    width: 170px;
    flex-shrink: 0;
  }
}
@media (min-width: 1024px) {
  .page-zdobyte-punkty .punkty-historia__cell--details {
    flex: 1;
  }
}
@media (min-width: 1024px) {
  .page-zdobyte-punkty .punkty-historia__cell--points {
    width: 150px;
    flex-shrink: 0;
  }
}
@media (min-width: 1024px) {
  .page-zdobyte-punkty .punkty-historia__cell--balance {
    width: 100px;
    flex-shrink: 0;
  }
}
.page-zdobyte-punkty .punkty-historia__cell--positive {
  color: #00b388;
}
.page-zdobyte-punkty .punkty-historia__cell--negative {
  color: #e91741;
}
@media (max-width: 1024px) {
  .page-zdobyte-punkty .punkty-historia__cell--order-mobile {
    order: 2;
    flex-basis: 50%;
  }
}
@media (max-width: 1024px) {
  .page-zdobyte-punkty .punkty-historia__cell--order-mobile-2 {
    order: 3;
    flex-basis: 50%;
  }
}

.wc-hero {
  text-align: center;
  padding: 4rem 0 0;
}
@media (min-width: 769px) {
  .wc-hero {
    padding: 80px 0 2.5rem;
  }
}

.wc-hero__title {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1c51a0;
  letter-spacing: -1.25px;
  margin: 0 0 1rem;
  font-size: 64px;
  line-height: 72px;
}
@media (min-width: 769px) {
  .wc-hero__title {
    font-size: 72px;
    line-height: 72px;
  }
}

.wc-hero__greeting {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -1.25px;
  color: #333;
  margin: 0 0 1.5rem;
}
@media (max-width: 768px) {
  .wc-hero__greeting {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
  }
}

.wc-hero__intro {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -1.25px;
  color: #333;
  margin: 0 auto;
  max-width: 957px;
}
@media (max-width: 768px) {
  .wc-hero__intro {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
  }
}

.wc-collect {
  padding: 2.5rem 0 1.25rem;
}
@media (min-width: 769px) {
  .wc-collect {
    padding: 3rem 0;
  }
}

.wc-collect__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -1.25px;
  color: #333;
  text-align: center;
  margin: 0 0 1.25rem;
}
@media (max-width: 768px) {
  .wc-collect__title {
    font-size: 24px;
    line-height: 32px;
  }
}

.wc-collect__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: -1.25px;
  color: #333;
  text-align: center;
  margin: 0 auto 28px;
  max-width: 960px;
}
@media (max-width: 768px) {
  .wc-collect__desc {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
  }
}

.wc-info-link {
  padding: 2.5rem 0;
  text-align: center;
}
@media (min-width: 769px) {
  .wc-info-link {
    padding: 3rem 0;
  }
}

.wc-info-link__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: -1.25px;
  color: #333;
  margin: 0 0 1rem;
}
@media (max-width: 768px) {
  .wc-info-link__text {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
  }
}

.wc-info-link__link {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: 0;
  color: #1c51a0;
  text-decoration: none;
}
@media (max-width: 768px) {
  .wc-info-link__link {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
  }
}
.wc-info-link__link:hover {
  text-decoration: underline;
}

.wc-section {
  padding: 0 0 1rem 0;
}
@media (min-width: 769px) {
  .wc-section {
    padding: 1.5rem 0;
  }
}

.wc-earning {
  padding: 2.5rem 0;
}
@media (min-width: 769px) {
  .wc-earning {
    padding: 3rem 0;
  }
}

.wc-earning__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -1.25px;
  color: #333;
  text-align: center;
  margin: 0 0 2.5rem;
}
@media (max-width: 768px) {
  .wc-earning__title {
    font-size: 24px;
    line-height: 32px;
  }
}

.wc-earning__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: -1.25px;
  color: #333;
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 960px;
}
@media (max-width: 768px) {
  .wc-earning__desc {
    font-size: 16px;
    line-height: 28px;
    letter-spacing: 0;
  }
}

.wc-rewards {
  padding: 2.5rem 0 0;
}
@media (min-width: 769px) {
  .wc-rewards {
    padding: 3rem 0 0;
  }
}

.wc-rewards__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -1.25px;
  color: #333;
  text-align: center;
  margin: 0 0 1.25rem;
}
@media (max-width: 768px) {
  .wc-rewards__title {
    font-size: 24px;
    line-height: 32px;
  }
}

.wc-rewards__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: -1.25px;
  color: #333;
  text-align: center;
  margin: 0 auto 1.25rem;
  max-width: 960px;
}
@media (max-width: 768px) {
  .wc-rewards__desc {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
  }
}

.wc-rewards__cta {
  text-align: center;
  margin-bottom: 40px;
}

.wc-rewards .vouchers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 1023px) {
  .wc-rewards .vouchers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
@media (max-width: 639px) {
  .wc-rewards .vouchers-grid {
    grid-template-columns: 1fr;
  }
}

.wc-rules {
  padding: 2.5rem 0;
}
@media (min-width: 769px) {
  .wc-rules {
    padding: 3rem 0;
  }
}
.wc-rules .alert-banner__text {
  font-size: 1.125rem;
  line-height: 24px;
}
@media (max-width: 768px) {
  .wc-rules .alert-banner__text {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (min-width: 1024px) {
  .wc-rules .alert-banner__text {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .wc-rules .alert-banner {
    padding: 18px 12px;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .wc-rules .alert-banner__content {
    padding: 0;
  }
}

.wc-rules__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -1.25px;
  color: #333;
  text-align: center;
  margin: 0 0 2.5rem;
}
@media (max-width: 768px) {
  .wc-rules__title {
    font-size: 24px;
    line-height: 32px;
  }
}

.wc-rules__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: -1.25px;
  color: #333;
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 960px;
}
@media (max-width: 768px) {
  .wc-rules__desc {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
  }
}

.wc-rules__grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .wc-rules__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.wc-rules__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .wc-rules__icon {
    width: 38px;
    height: 38px;
  }
}

.wc-hero__title--xl {
  font-size: 64px;
  line-height: 64px;
}
@media (min-width: 769px) {
  .wc-hero__title--xl {
    font-size: 100px;
    line-height: 100px;
  }
}

@media (max-width: 768px) {
  .wc-code-input {
    margin-top: 40px;
  }
}

.wc-dk-remember {
  padding: 2.5rem 0;
}
@media (min-width: 769px) {
  .wc-dk-remember {
    padding: 3rem 0;
  }
}
.wc-dk-remember .alert-banner__text {
  font-size: 1.125rem;
  line-height: 24px;
}
@media (max-width: 768px) {
  .wc-dk-remember .alert-banner__text {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 768px) {
  .wc-dk-remember .alert-banner {
    padding: 18px 12px;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .wc-dk-remember .alert-banner__content {
    padding: 0;
  }
}

.wc-dk-remember__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -1.25px;
  color: #333;
  text-align: center;
  margin: 0 0 1.5rem;
}
@media (max-width: 768px) {
  .wc-dk-remember__title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media (min-width: 769px) {
  .wc-dk-remember__title {
    font-size: 45px;
    line-height: 72px;
  }
}

.wc-dk-remember__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 36px;
  letter-spacing: -1.25px;
  color: #333;
  text-align: center;
  margin: 0 auto 2.5rem;
  max-width: 960px;
}
@media (max-width: 768px) {
  .wc-dk-remember__desc {
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0;
  }
}

.wc-dk-remember__grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.wc-how {
  padding: 2.5rem 0;
}
@media (min-width: 769px) {
  .wc-how {
    padding: 3rem 0;
  }
}

@media (max-width: 768px) {
  .wc-referal-link {
    margin-top: 40px;
  }
}

.wc-how__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 44px;
  letter-spacing: -1.25px;
  color: #333;
  text-align: center;
  margin: 0 0 40px;
}
@media (max-width: 768px) {
  .wc-how__title {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 2.5rem;
  }
}
@media (min-width: 769px) {
  .wc-how__title {
    font-size: 44px;
    line-height: 52px;
  }
}

.wc-how__grid {
  display: flex;
  background-color: #fbfbfb;
  border-radius: 0.5rem;
  padding: 1.25rem;
  gap: 10px;
}
@media (max-width: 768px) {
  .wc-how__grid {
    flex-direction: column;
    gap: 1rem;
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }
}
@media (min-width: 1920px) {
  .wc-how__grid {
    gap: 70px;
  }
}

.wc-how__step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 10px 0;
}
@media (max-width: 768px) {
  .wc-how__step {
    flex-direction: row;
    align-items: center;
    background-color: #fbfbfb;
    border-radius: 0.5rem;
    padding: 1.25rem;
    gap: 1rem;
  }
}

.wc-how__icon {
  position: relative;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: url(/assets/images/winclub/point-bg.jpg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .wc-how__icon {
    width: 32px;
    height: 32px;
  }
}

.wc-how__number {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 1em;
  color: #1c51a0;
  margin-top: 8px;
  letter-spacing: 12px;
}
@media (max-width: 768px) {
  .wc-how__number {
    font-size: 25px;
    margin-top: 4px;
    letter-spacing: 5px;
  }
}

.wc-how__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 24px;
  letter-spacing: 0;
  color: #3a3d3f;
  text-align: center;
  margin: 0;
}
@media (max-width: 768px) {
  .wc-how__text {
    font-size: 0.875rem;
    line-height: 20px;
    text-align: left;
  }
}

.page-faq .faq-hero {
  padding: 3rem 0;
  text-align: center;
}
@media (min-width: 1024px) {
  .page-faq .faq-hero {
    padding: 2.5rem 0;
  }
}
.page-faq .faq-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-faq .faq-hero__title {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1c51a0;
  letter-spacing: -1.25px;
  line-height: 0.75em;
  font-size: clamp(64px, 64px + 36px * (100vw - 320px) / 160px, 100px);
  margin-bottom: 2.5rem;
}
.page-faq .faq-hero__subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #333;
  margin-top: 14px;
  letter-spacing: -1.25px;
  font-size: 16px;
  line-height: 1.37em;
}
@media (min-width: 1024px) {
  .page-faq .faq-hero__subtitle {
    margin-top: 1rem;
    font-size: 32px;
    max-width: 994px;
  }
}
.page-faq .faq-help {
  padding: 0 0 20px;
}
@media (min-width: 1024px) {
  .page-faq .faq-help {
    padding: 0 0 40px;
  }
}
.page-faq .faq-help__card {
  display: flex;
  align-items: center;
  gap: 16px;
  background-color: #f5f5f1;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 20px;
}
@media (max-width: 1023px) {
  .page-faq .faq-help__card {
    flex-direction: column;
    text-align: center;
  }
}
.page-faq .faq-help__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #1c51a0;
}
.page-faq .faq-help__text {
  flex: 1;
}
.page-faq .faq-help__text p {
  margin: 0;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 22px;
  color: #333;
}
@media (min-width: 1024px) {
  .page-faq .faq-help__text p {
    font-size: 0.875rem;
    line-height: 22px;
  }
}
.page-faq .faq-help__btn {
  flex-shrink: 0;
}
@media (max-width: 1023px) {
  .page-faq .faq-help__btn {
    display: none;
  }
}
.page-faq .faq-nav__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.5rem;
  padding: 20px;
}
@media (min-width: 769px) {
  .page-faq .faq-nav__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
@media (min-width: 1024px) {
  .page-faq .faq-nav__list {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
@media (min-width: 1280px) {
  .page-faq .faq-nav__list {
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
  }
}
.page-faq .faq-nav__pill {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 54px;
  min-height: 54px;
  padding: 12px 16px;
  border: none;
  border-radius: 0.5rem;
  background-color: #f5f5f1;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 20px;
  color: #333;
  cursor: pointer;
  transition: all 150ms ease;
  white-space: nowrap;
  overflow: hidden;
}
.page-faq .faq-nav__pill:hover {
  background-color: rgba(28, 81, 160, 0.1);
}
.page-faq .faq-section {
  padding-top: 48px;
}
@media (min-width: 1024px) {
  .page-faq .faq-section {
    padding-top: 80px;
  }
}
.page-faq .faq-section__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px;
  font-size: clamp(24px, 24px + 8px * (100vw - 320px) / 160px, 32px);
  line-height: 1.2;
}
@media (min-width: 1024px) {
  .page-faq .faq-section__title {
    line-height: 52px;
    margin-bottom: 16px;
  }
}
.page-faq .faq-section__subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  text-align: center;
  margin: 0 0 32px;
  font-size: 0.875rem;
  line-height: 20px;
}
@media (min-width: 1024px) {
  .page-faq .faq-section__subtitle {
    font-size: 1.125rem;
    line-height: 32px;
    margin-bottom: 40px;
  }
}
.page-faq .faq-bottom {
  padding: 48px 0 60px;
  text-align: center;
  scroll-margin-top: 40px;
}
@media (min-width: 1024px) {
  .page-faq .faq-bottom {
    padding: 80px 0;
  }
}
.page-faq .faq-bottom__regulations {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 48px;
}
@media (min-width: 1024px) {
  .page-faq .faq-bottom__regulations {
    gap: 16px;
    margin-bottom: 80px;
  }
}
.page-faq .faq-bottom__regulations-title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #333;
  margin: 0 0 4px;
  font-size: clamp(24px, 24px + 8px * (100vw - 320px) / 160px, 32px);
  line-height: 1.2;
  letter-spacing: -1.25px;
}
@media (min-width: 1024px) {
  .page-faq .faq-bottom__regulations-title {
    line-height: 44px;
  }
}
.page-faq .faq-bottom__regulations-link {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1c51a0;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.3em;
  transition: opacity 150ms ease;
}
@media (min-width: 1024px) {
  .page-faq .faq-bottom__regulations-link {
    font-size: 26px;
  }
}
.page-faq .faq-bottom__regulations-link:hover {
  opacity: 0.7;
}
.page-faq .faq-bottom__cta {
  margin-bottom: 40px;
}
.page-faq .faq-bottom__cta p {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #333;
  margin: 0;
  font-size: 16px;
  line-height: 32px;
  letter-spacing: -1.25px;
}
@media (min-width: 1024px) {
  .page-faq .faq-bottom__cta p {
    font-size: 28px;
    line-height: 40px;
  }
}
.page-faq .faq-bottom__contact-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  background-color: #f5f5f1;
  border-radius: 0.5rem;
  padding: 40px 20px;
}
@media (min-width: 769px) {
  .page-faq .faq-bottom__contact-card {
    grid-template-columns: repeat(3, 1fr);
    padding: 40px;
  }
}
@media (min-width: 1024px) {
  .page-faq .faq-bottom__contact-card {
    grid-template-columns: repeat(3, 1fr);
    padding: 40px 12px;
  }
}
.page-faq .faq-bottom__contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (min-width: 1024px) {
  .page-faq .faq-bottom__contact-item {
    gap: 12px;
  }
}
.page-faq .faq-bottom__contact-label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #333;
  margin: 0;
  font-size: 20px;
  line-height: 30px;
}
@media (min-width: 1024px) {
  .page-faq .faq-bottom__contact-label {
    font-size: 28px;
    line-height: 38px;
  }
}
.page-faq .faq-bottom__contact-value {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #333;
  margin: 0;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 1024px) {
  .page-faq .faq-bottom__contact-value {
    font-size: 20px;
    line-height: 29px;
  }
}
.page-faq .faq-bottom__contact-value a {
  color: #333;
  text-decoration: none;
}
.page-faq .faq-bottom__contact-value a:hover {
  text-decoration: underline;
}
.page-faq .main-content {
  padding-bottom: 4rem;
}
@media (min-width: 1024px) {
  .page-faq .main-content {
    padding-bottom: 0;
  }
}

.page-graj .graj-hero {
  padding-top: 3rem;
  margin-bottom: 32px;
}
@media (min-width: 769px) {
  .page-graj .graj-hero {
    margin-bottom: 50px;
  }
}
.page-graj .graj-categories {
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  .page-graj .graj-categories {
    margin-bottom: 50px;
  }
}
.page-graj .graj-games {
  margin-bottom: 32px;
  scroll-margin-top: 55px;
}
@media (min-width: 769px) {
  .page-graj .graj-games {
    margin-bottom: 40px;
    scroll-margin-top: 170px;
  }
}
.page-graj .graj-faq {
  margin-bottom: 64px;
}
@media (min-width: 769px) {
  .page-graj .graj-faq {
    margin-bottom: 100px;
  }
}

.graj-hero {
  text-align: center;
  padding-top: 20px;
}
@media (min-width: 769px) {
  .graj-hero {
    padding-top: 0;
  }
}

.graj-hero__title {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1c51a0;
  letter-spacing: -1.25px;
  margin: 0 0 20px;
  font-size: 48px;
  line-height: 56px;
}
@media (min-width: 769px) {
  .graj-hero__title {
    font-size: 100px;
    line-height: 72px;
    margin-bottom: 50px;
  }
}

.graj-hero__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #333;
  margin: 0 auto;
  letter-spacing: -1.25px;
  font-size: 1.125rem;
  line-height: 24px;
}
@media (min-width: 769px) {
  .graj-hero__desc {
    font-size: 32px;
    line-height: 44px;
    max-width: 957px;
  }
}

.graj-categories__grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 769px) {
  .graj-categories__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

.game-cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0.5rem;
  text-decoration: none;
  cursor: pointer;
  color: #fff;
  height: 140px;
  padding: 16px 20px;
}
@media (min-width: 769px) {
  .game-cat-card {
    height: 180px;
    padding: 16px 28px;
  }
}
.game-cat-card, .game-cat-card:link, .game-cat-card:visited, .game-cat-card:hover, .game-cat-card:active, .game-cat-card:focus {
  color: #fff;
  text-decoration: none;
}

.game-cat-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.game-cat-card__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
@media (min-width: 769px) {
  .game-cat-card:not(.game-cat-card--disabled):hover .game-cat-card__bg img {
    transform: scale(1.05);
  }
}

.game-cat-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.2);
}
.game-cat-card__overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 0.5rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 14.91%, rgba(0, 0, 0, 0) 75.44%);
}
.game-cat-card--disabled .game-cat-card__overlay {
  background: rgba(0, 0, 0, 0.55);
}
.game-cat-card--disabled .game-cat-card__overlay::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 14.91%, rgba(0, 0, 0, 0) 75.44%);
}

.game-cat-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  width: 100%;
  height: 100%;
}
@media (min-width: 769px) {
  .game-cat-card__content {
    padding-top: 16px;
    padding-bottom: 28px;
  }
}

.game-cat-card__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #fff;
  text-align: center;
  margin: 0;
  letter-spacing: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.5rem;
  line-height: 28px;
}
@media (min-width: 769px) {
  .game-cat-card__title {
    font-size: 30px;
    line-height: 34px;
  }
}

.game-cat-card__ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  height: 30px;
  padding: 2px 10px;
  border-radius: 0.5rem;
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .game-cat-card__ribbon {
    font-size: 1.125rem;
  }
}

.game-cat-card__ribbon--active {
  background-color: #ffa747;
  color: #333;
}

.game-cat-card__ribbon--disabled {
  background-color: #d8d8d8;
  border: 1px solid #e6e6e6;
  color: rgba(51, 51, 51, 0.9);
}

.game-cat-card__lock-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: rgba(51, 51, 51, 0.9);
}

.game-cat-card--disabled {
  cursor: default;
  pointer-events: none;
}

.graj-games .card-full {
  margin-bottom: 20px;
}
.graj-games .alert-banner {
  margin-bottom: 0;
}

.memory-intro,
.memory-board,
.memory-end {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}
.memory-intro.memory-section--active,
.memory-board.memory-section--active,
.memory-end.memory-section--active {
  opacity: 1;
  transform: translateY(0);
}

.page-memory .memory-hero {
  padding-top: 3rem;
  margin-bottom: 32px;
}
@media (min-width: 769px) {
  .page-memory .memory-hero {
    margin-bottom: 50px;
  }
}
.page-memory .memory-intro {
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  .page-memory .memory-intro {
    margin-bottom: 100px;
  }
}
.page-memory .memory-board {
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  .page-memory .memory-board {
    margin-bottom: 100px;
  }
}
.page-memory .memory-end {
  margin-bottom: 40px;
}
@media (min-width: 769px) {
  .page-memory .memory-end {
    margin-bottom: 100px;
  }
}
.page-memory .memory-faq {
  margin-bottom: 64px;
}
@media (min-width: 769px) {
  .page-memory .memory-faq {
    margin-bottom: 100px;
  }
}

.memory-hero {
  text-align: center;
  padding-top: 20px;
}
@media (min-width: 769px) {
  .memory-hero {
    padding-top: 0;
  }
}

.memory-hero__title {
  font-family: "Winston PL", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1c51a0;
  letter-spacing: -1.25px;
  margin: 0 0 20px;
  font-size: 48px;
  line-height: 56px;
}
@media (min-width: 769px) {
  .memory-hero__title {
    font-size: 100px;
    line-height: 72px;
    margin-bottom: 50px;
  }
}

.memory-hero__desc {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #333;
  margin: 0 auto;
  letter-spacing: -1.25px;
  font-size: 1.125rem;
  line-height: 24px;
}
@media (min-width: 769px) {
  .memory-hero__desc {
    font-size: 32px;
    line-height: 44px;
    max-width: 957px;
  }
}

@media (min-width: 769px) {
  .memory-intro__wrapper {
    border: 1px solid #858886;
    border-radius: 0.5rem;
    min-height: 120px;
    padding: 28px;
  }
}

.memory-intro__inner {
  background-color: #f5f5f1;
  border: 1px solid #f5f5f1;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
@media (min-width: 769px) {
  .memory-intro__inner {
    padding: 40px 20px;
  }
}

.memory-points-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: #fff;
  border: 1px solid #333;
  border-radius: 0.5rem;
  padding: 20px;
  width: 100%;
  max-width: 500px;
}
@media (min-width: 769px) {
  .memory-points-bar {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 20px 32px 20px 20px;
    border-color: #858886;
    max-width: 832px;
    min-height: 120px;
  }
}

.memory-points-bar__left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.memory-points-bar__coin {
  width: 32px;
  flex-shrink: 0;
  margin-right: 10px;
}
@media (min-width: 769px) {
  .memory-points-bar__coin {
    width: 48px;
    margin-right: 20px;
    margin-left: 20px;
  }
}

.memory-points-bar__value {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 95px;
}
@media (min-width: 769px) {
  .memory-points-bar__value {
    width: 127px;
  }
}

.memory-points-bar__number {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #1c51a0;
  letter-spacing: -0.94px;
  font-size: 30px;
  line-height: 39px;
}
@media (min-width: 769px) {
  .memory-points-bar__number {
    font-size: 40px;
    line-height: 52px;
    letter-spacing: -1.25px;
  }
}

.memory-points-bar__label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #767676;
  font-size: 10.5px;
  line-height: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-wrap-mode: nowrap;
}
@media (min-width: 769px) {
  .memory-points-bar__label {
    font-size: 0.875rem;
    line-height: 20px;
    letter-spacing: 2px;
  }
}

.memory-points-bar__separator {
  flex-shrink: 0;
  width: 100%;
  height: 1px;
  background-color: #858886;
}
@media (min-width: 769px) {
  .memory-points-bar__separator {
    width: 1px;
    height: 80px;
    align-self: center;
  }
}

.memory-points-bar__right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.memory-points-bar__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #1c51a0;
  margin: 0;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
}
@media (min-width: 769px) {
  .memory-points-bar__title {
    text-align: left;
    font-size: 20px;
    line-height: 26px;
  }
}

.memory-points-bar__subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #1c51a0;
  margin: 0;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
@media (min-width: 769px) {
  .memory-points-bar__subtitle {
    text-align: left;
    font-size: 1rem;
    line-height: 22px;
  }
}

@media (min-width: 769px) {
  .memory-intro__illustration {
    width: 100%;
    max-width: 826px;
    margin-top: 20px;
  }
}
.memory-intro__illustration img {
  width: 100%;
  height: auto;
  border-radius: 11px;
  display: block;
}
@media (min-width: 769px) {
  .memory-intro__illustration img {
    border-radius: 0.5rem;
  }
}

.memory-intro__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  width: 100%;
}
@media (min-width: 769px) {
  .memory-intro__cta {
    gap: 20px;
    width: auto;
  }
}

.memory-intro__heading {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #333;
  margin: 0;
  letter-spacing: -1.25px;
  font-size: 24px;
  line-height: 34px;
}
@media (min-width: 769px) {
  .memory-intro__heading {
    font-size: 32px;
    line-height: 44px;
    max-width: 957px;
  }
}

.memory-intro__text {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #333;
  margin: 0;
  letter-spacing: 0;
  font-size: 16px;
  line-height: 28px;
}
@media (min-width: 769px) {
  .memory-intro__text {
    font-size: 26px;
    line-height: 36px;
    max-width: 957px;
    letter-spacing: -1.25px;
    margin-bottom: 20px;
  }
}

.memory-intro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 36px;
  padding: 8px 26px;
  font-size: 0.875rem;
  width: 100%;
}
@media (min-width: 769px) {
  .memory-intro__btn {
    height: 56px;
    padding: 16px 28px;
    font-size: 1.125rem;
    width: auto;
  }
}

.memory-intro__play-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.memory-faq__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin: 0 0 32px;
  letter-spacing: -1.25px;
  font-size: 1.5rem;
  line-height: 32px;
}
@media (min-width: 769px) {
  .memory-faq__title {
    font-size: 32px;
    line-height: 44px;
  }
}

@media (min-width: 769px) {
  .memory-end__wrapper {
    border: 1px solid #858886;
    border-radius: 0.5rem;
    padding: 20px;
  }
}

.memory-end__inner {
  background-color: #f5f5f1;
  border: 1px solid #f5f5f1;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
@media (min-width: 769px) {
  .memory-end__inner {
    padding: 40px 20px;
  }
}

.memory-end__content {
  background-color: #fff;
  border-radius: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  width: 100%;
  max-width: 520px;
}
@media (min-width: 769px) {
  .memory-end__content {
    padding: 40px;
  }
}

.memory-end__illustration {
  width: 100%;
  max-width: 480px;
}
.memory-end__illustration img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  display: block;
}

.memory-end__label {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 700;
  color: #333;
  margin: 0;
  font-size: 1.125rem;
  line-height: 26px;
}

.memory-end__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
@media (min-width: 769px) {
  .memory-end__stats {
    gap: 12px;
  }
}

.memory-end__stat {
  display: flex;
  align-items: center;
  gap: 5px;
  background: #1c51a0;
  height: 20px;
  padding: 1px 7px;
  border-radius: 5px;
}
@media (min-width: 769px) {
  .memory-end__stat {
    gap: 8px;
    height: 30px;
    padding: 2px 14px;
    border-radius: 0.5rem;
  }
}

.memory-end__stat-icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}
.memory-end__stat-icon--moves {
  width: 10px;
  height: 10px;
}
@media (min-width: 769px) {
  .memory-end__stat-icon {
    width: 20px;
    height: 20px;
  }
  .memory-end__stat-icon--moves {
    width: 16px;
    height: 16px;
  }
}

.memory-end__stat-value {
  color: #fff;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  line-height: 16px;
  white-space: nowrap;
}
@media (min-width: 769px) {
  .memory-end__stat-value {
    font-size: 0.875rem;
    letter-spacing: 2px;
    line-height: 24px;
  }
}

#memoryFinalTime,
#memoryFinalMoves {
  display: inline-block;
  min-width: 2.2ch;
  font-family: "Roboto Mono", monospace;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 769px) {
  .memory-end__btn {
    min-width: 280px;
  }
}

.news-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.news-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.news-hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.news-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
}
.news-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  max-width: 523px;
  padding: 0 1rem;
}
.news-hero__title {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: -1.25px;
  margin: 0;
  font-size: clamp(32px, 32px + 12px * (100vw - 320px) / 160px, 44px);
  line-height: 1.18;
}
.news-hero__separator {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  margin: 2.5rem 0;
}
.news-hero__separator svg {
  display: block;
}
.news-hero__subtitle {
  font-family: "Futura Now Text", -apple-system, blinkmacsystemfont, "Segoe UI", roboto, sans-serif;
  font-weight: 400;
  color: #fff;
  letter-spacing: -1.25px;
  margin: 0;
  font-size: clamp(32px, 32px + 12px * (100vw - 320px) / 160px, 44px);
  line-height: 1.18;
}
.news-hero__cta {
  margin-top: 2.5rem;
}

.news-products {
  margin: 64px 0;
  scroll-margin-top: 100px;
}
@media (min-width: 769px) {
  .news-products {
    margin: 100px 0;
    scroll-margin-top: 120px;
  }
}
.news-products__grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 769px) {
  .news-products__grid {
    flex-direction: row;
    gap: 1.5rem;
  }
}
.news-products__packshot {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 290px;
  flex-shrink: 0;
  margin: auto auto 20px auto;
}
.news-products__packshot img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (min-width: 769px) {
  .news-products__packshot {
    width: 293px;
    height: 422px;
    margin-bottom: 30px;
  }
}

.home-card.home-card--news {
  aspect-ratio: 285/507;
  min-height: 500px;
}
@media (min-width: 769px) {
  .home-card.home-card--news {
    min-height: 760px;
    aspect-ratio: 618/760;
  }
}
.home-card.home-card--news .home-card__content {
  justify-content: flex-end;
  padding-top: 40px;
}
.home-card.home-card--news .home-card__title {
  font-size: 36px;
  line-height: 1.2;
}
@media (min-width: 769px) {
  .home-card.home-card--news .home-card__title {
    font-size: clamp(36px, 36px + 28px * (100vw - 320px) / 160px, 64px);
    line-height: 1.125;
  }
}
.home-card.home-card--news .home-card__text {
  font-size: clamp(14px, 14px + 4px * (100vw - 320px) / 160px, 18px);
  line-height: 1.33;
}

.news-configurator .card-full--game {
  min-height: 360px;
  aspect-ratio: 285/507;
}
@media (min-width: 769px) {
  .news-configurator .card-full--game {
    min-height: 494px;
    aspect-ratio: auto;
  }
}
@media (min-width: 769px) {
  .news-configurator .card-full__title {
    font-size: clamp(36px, 36px + 28px * (100vw - 320px) / 160px, 64px);
    line-height: 1.125;
  }
}
@media (min-width: 769px) {
  .news-configurator .card-full__text {
    font-size: clamp(14px, 14px + 2px * (100vw - 320px) / 160px, 16px);
    line-height: 1.375;
  }
}
/*# sourceMappingURL=main.css.map */
