


/* Phone frame container */

.phone-frame {
  display: flex;
  min-height: 100dvh;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 2rem 1rem
}

@media (min-width: 660px) {

.phone-frame {
    padding: 3rem 1rem
}
  }

@media (max-width: 659px) {

.phone-frame {
    padding: 0;
    background: white
}
  }

@media (min-width: 660px) {

.phone-screen {
    width: 460px;
    max-width: 100%;
    margin: 0 auto;
    background: #1a1a1a;
    border-radius: 3rem;
    padding: 1rem;
    box-shadow: 0 0 0 8px #2a2a2a, 0 0 0 12px #1a1a1a,
      0 20px 60px rgba(0, 0, 0, 0.5);
    position: relative
}

    .phone-screen::before {
      content: "";
      position: absolute;
      top: 0.5rem;
      left: 50%;
      transform: translateX(-50%);
      width: 120px;
      height: 24px;
      background: #1a1a1a;
      border-radius: 0 0 1rem 1rem;
      z-index: 10;
    }
  }

@media (max-width: 659px) {

.phone-screen {
    width: 100%
}
  }

.phone-screen #quiz-container {
    overflow: hidden;
  }

@media (min-width: 660px) {

.phone-screen #quiz-container {
      background: white;
      border-radius: 2.5rem;
      overflow: hidden;
      height: 100%;
      position: relative;
      aspect-ratio: 660 / 1434
  }
    }

@media (max-width: 659px) {

.phone-screen #quiz-container {
      min-height: 100dvh
  }
    }

.screen-content {
  min-height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}

@media (max-width: 659px) {

.screen-content {
    min-height: 100dvh
}
  }

/* Screen slots for layered rendering */
.screen-slot {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Allow clicks to pass through empty slots */
  overflow: hidden;
}

.screen-slot > * {
  pointer-events: auto; /* Re-enable pointer events for actual content */
}

.screen-slot-main {
  z-index: 1;
}

.screen-slot-transition {
  z-index: 2;
}

.screen-slot-overlay {
  z-index: 3;
}

.btn-primary {
  border-radius: 0 24px;
  background: #d51f3a;
  color: #fff;
}

.btn-secondary {
  border-radius: 0 24px;
  border: 2px solid #d51f3a;
  color: #d51f3a;
}

.btn-thirdary {
  border-radius: 0 24px;
  border: 2px solid #fff;
  color: #fff;
}

.btn-fourthary {
  border-radius: 0 24px;
  background: #fff;
  border: 2px solid #fff;
  color: #d51f3a;
}

.btn-primary,
.btn-secondary,
.btn-thirdary,
.btn-fourthary {
  font-size: 1.5em; /* 24px */
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  padding: 1.25em 1.5em;
  cursor: pointer;
}

/* Global Sound Toggle */
.sound-toggle {
  position: absolute;
  bottom: 2em;
  left: 1.5em;
  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media (max-width: 659px) {
.sound-toggle {
    position: fixed;
    right: 1.5em;
    left:auto
}
  }
.sound-toggle.sound-toggle-visible {
    opacity: 1;
    transform: scale(1);
  }
.sound-toggle.sound-toggle-ping {
    animation: sound-toggle-ping 0.6s cubic-bezier(0, 0, 0.2, 1);
  }
.sound-toggle:hover {
    transform: scale(1.1);
  }
.sound-toggle .sound-toggle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

@keyframes sound-toggle-ping {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Loading Screen - Full screen transition between screens */
.loading-screen-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  overflow: hidden;
  pointer-events: none;
  background-color: #D51F3A;
}

.loading-screen-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

/* Generic loading screen image */
.loading-screen-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Scenario text image */
.loading-screen-image-scenario {
  max-width: 80%;
  height: auto;
  display: block;
}

/* Scenario number image */
.loading-screen-image-number {
  max-width: 60%;
  height: auto;
  display: block;
}

/* Analyzing text image */
.loading-screen-image-analysing {
  max-width: 80%;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

/* Animated dots */
.loading-screen-image-dot {
  width: 20px;
  height: 20px;
  display: inline-block;
  margin: 0 8px;
  animation: dotPulse 1.4s infinite ease-in-out;
}

.loading-screen-image-dot.dot-1 {
  animation-delay: 0s;
}

.loading-screen-image-dot.dot-2 {
  animation-delay: 0.2s;
}

.loading-screen-image-dot.dot-3 {
  animation-delay: 0.4s;
}

@keyframes dotPulse {
  0%, 80%, 100% {
    opacity: 0.3;
    transform: scale(0.8);
  }
  40% {
    opacity: 1;
    transform: scale(1.2);
  }
}

/* Ensure sound toggle stays visible above overlay */
.sound-toggle {
  z-index: 2100;
}

/* Debug Panel - Only visible in development */
.debug-panel {
  position: fixed;
  top: 20px;
  right: -320px;
  width: 300px;
  max-height: calc(100vh - 80px);
  background: rgba(0, 0, 0, 0.95);
  color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  z-index: 10000;
  font-family: 'Courier New', monospace;
  font-size: 12px;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.debug-panel-visible {
  right: 20px;
}

.debug-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px 8px 0 0;
}

.debug-panel-header h3 {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #00ff00;
}

.debug-close-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: color 0.2s;
}

.debug-close-btn:hover {
  color: #ff4444;
}

.debug-panel-content {
  padding: 16px;
  overflow-y: auto;
  flex: 1;
}

.debug-section {
  margin-bottom: 16px;
}

.debug-section:last-child {
  margin-bottom: 0;
}

.debug-section h4 {
  margin: 0 0 8px 0;
  font-size: 12px;
  color: #00ff00;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.debug-btn {
  display: block;
  width: 100%;
  padding: 8px 12px;
  margin-bottom: 6px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-family: 'Courier New', monospace;
  transition: all 0.2s;
  text-align: left;
}

.debug-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
}

.debug-btn:active {
  background: rgba(255, 255, 255, 0.3);
}

.debug-btn-stop {
  background: rgba(255, 68, 68, 0.2);
  border-color: rgba(255, 68, 68, 0.4);
  text-align: center;
  font-weight: bold;
}

.debug-btn-stop:hover {
  background: rgba(255, 68, 68, 0.3);
  border-color: rgba(255, 68, 68, 0.6);
}

/* Keyboard shortcut hint */
.debug-panel::after {
  content: 'Press Ctrl+Shift+D to toggle';
  position: absolute;
  bottom: -25px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: opacity 0.3s;
}

.debug-panel:hover::after {
  opacity: 1;
}

.welcome-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
  /* Blur is animated by GSAP */
  transition: none;
  display: none;
}
/* Welcome Screen */
.welcome-screen {
  background: #f5f5f5;
}
/* Banner Images Layer - Always present */
.welcome-screen .welcome-banners-layer {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    gap: 1.5rem;
    transition: filter 0.8s ease-out;
  }
.welcome-screen .welcome-banners-layer .welcome-banner {
      position: absolute;
      width: 900px;
      /* opacity and transform handled by GSAP */
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);

      /* &.welcome-banner-1 {
        top: 0;
        left: 50%;
        transform: rotate(11deg) translateX(-35%) translateY(-3%);
      }

      &.welcome-banner-2 {
        top: 35%;
        left: 50%;
        transform: rotate(-12deg) translateX(-50%);
      }

      &.welcome-banner-3 {
        bottom: 5%;
        left: 50%;
        transform: rotate(6deg) translateX(50%);
      } */
    }
.welcome-screen .welcome-banners-layer .welcome-banner img {
        width: 900px;
        max-width: none;
        height: auto;
        display: block;
      }
/* Sound Selection Card */
.welcome-screen .welcome-sound-card {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(100%);

    background: white;
    border-radius: 24px 24px 0 0;
    padding: 3em 2em;

    text-align: center;
  }
@media (max-width: 659px) {
.welcome-screen .welcome-sound-card {
      position: fixed
  }
    }
.welcome-screen .welcome-sound-card .welcome-sound-title {
      font-size: 1.75em;
      font-weight: bold;
      color: #d32f2f;
      margin-bottom: 1rem;
      line-height: 1.3;
    }
.welcome-screen .welcome-sound-card .welcome-sound-subtitle {
      font-size: 1.5em;
      color: #d32f2f;
      margin-bottom: 2rem;
    }
.welcome-screen .welcome-sound-card .welcome-sound-buttons {
      display: flex;
      flex-direction: column;
      gap: 1em;
    }
/* Splash Content */
.welcome-screen .welcome-splash-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    display: flex;
    flex-direction: column;
    align-items: center;
    /* justify-content: center; */
    padding: 2rem;
    /* opacity, pointer-events handled by GSAP */
    display: none;
    background: #f4c9be;
    color: #d51f3a;

    overflow-y:auto;
  }
.welcome-screen .welcome-splash-content .welcome-splash-title {
      margin-top: 4em;
      margin-bottom: 4em;
    }
.welcome-screen .welcome-splash-content .welcome-splash-description {
      
      font-size: 1.75rem /* 28px */;
      margin-bottom: 3rem /* 48px */;
      line-height: 130%;
      text-align: center;
    }
.welcome-screen .welcome-splash-content .welcome-legal-disclaimer {
      width:100%;
      font-size: 1.25rem /* 20px */;
      margin-top: 3rem /* 48px */;
      padding-bottom: 5.5rem /* 88px */;
      line-height: 130%;
      text-align: left;
      font-style: italic;
    }
.welcome-screen .welcome-splash-content .welcome-legal-disclaimer .disclaimer-cursor {
        font-weight: bold;
        color: inherit;
      }
.welcome-screen .welcome-splash-content .welcome-legal-disclaimer .shrink-word {
        display: inline-block;
        transform-origin: center;
      }

/* Results Screen */
.results-screen {
  background: #f4c9be;
  color: #d51f3a;
  height: 100%;
  padding: 4rem 1rem 8rem /* 64px 16px 128px */;
}
.results-screen .result-title {
    text-align: center;

    font-size: 28px;
    font-size: 1.75rem /* 28px */;
    font-weight: 700;
    text-transform: uppercase;
  }
.results-screen .result-title.main {
      margin-bottom: 1rem /* 16px */;
    }
.results-screen .result-title.secondary {
      margin-bottom: 1.25rem /* 20px */;
      margin-top: 6.25rem /* 100px */;
    }
.results-screen .result-card {
    border-radius: 16px;
    background: #d51f3a;
    color: #fff;

    padding: 4rem 1.5rem /* 64px 24px */;
    margin-bottom: 2.5rem /* 40px */;

    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-self: stretch;
    text-align: center;
  }
.results-screen .result-card .result-card-content {
    }
.results-screen .result-card .result-card-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;

      background-image: url("/ffc-gullibletest/images/result/result-splash.svg");
      background-repeat: no-repeat;
      background-size: contain;

      width: 28.4375rem /* 455px */;
      height: 28.4375rem /* 455px */;

      margin-left: auto;
      margin-right: auto;
      margin-bottom: 1.5rem /* 24px */;

      color: #735244;
      text-transform: uppercase;
    }
.results-screen .result-card .result-card-badge .result-card-badge-percentage {
        font-size: 8rem /* 128px */;
        font-weight: 700;
        line-height: 1;
      }
.results-screen .result-card .result-card-badge .result-card-badge-label {
        font-size: 2.5rem /* 40px */;
        font-weight: 700;
        line-height: 1;
      }
.results-screen .result-card .result-card-text {
      font-size: 1.5rem /* 24px */;
    }
.results-screen .results-restart-btn {
    display: block;
    width: 100%;
    margin-bottom: 2.5rem /* 40px */;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
.results-screen .result-details {
    margin-bottom: 2.5rem /* 40px */;
    border-radius: 0 24px;
    
    padding: 1.5rem /* 24px */;
    

    border: 2px solid #d51f3a;
    transition: color 0.2s ease;
  }
.results-screen .result-details summary {
      font-size: 1.5rem /* 24px */;
      font-weight: 700;
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0rem 1rem /* 0px 16px */;

      border-radius: 16px 16px 0 0;
      color: #d51f3a;
    }
.results-screen .result-details summary::after {
        content: "+";
        font-size: 2rem /* 32px */;
        font-weight: 700;
        transition: transform 0.2s ease;
      }
.results-screen .result-details summary {
      transition: color 0.2s ease;
}
.results-screen .result-details[open] summary {
      margin-bottom: 1.5rem /* 24px */;
      color: #fff;
    }
.results-screen .result-details[open] summary::after {
        content: "−";
      }
.results-screen .result-details[open] {
      background: #d51f3a;
      color: #fff;
      
    }
.results-screen .result-details ol {
      list-style: decimal;
      padding-left: 2rem /* 32px */;
      margin-top: 0rem /* 0px */;
      margin-bottom: 2rem /* 32px */;
    }
.results-screen .result-details ol li {
        font-size: 1.5rem /* 24px */;
        margin-bottom: 1rem /* 16px */;

        font-weight: 400;
      }
.results-screen .result-details ol li:last-child {
          margin-bottom: 0;
        }
.results-screen .result-paragraph {
    font-size: 1.5rem /* 24px */;

    font-weight: 400;
    color: #af182f;
    text-align: center;
    
    margin-bottom: 2.5rem /* 40px */;
    padding: 0rem 1rem /* 0px 16px */;
  }
.results-screen .result-contentcards {
    display: flex;
    flex-direction: column;
    gap: 2.5rem /* 40px */;
    margin-bottom: 2.5rem /* 40px */;
  }
.results-screen .result-contentcards .result-contentcard {
      position: relative;
      border-radius: 16px;
      background: #fff;

      display: flex;

      padding: 4rem 1.5rem 2rem 1.5rem /* 64px 24px 32px 24px */;
      gap: 1.5rem /* 24px */;

      flex-direction: column;
    }
.results-screen .result-contentcards .result-contentcard .result-contentcard-heading {
        color: #735244;

        font-size: 1.5rem /* 24px */;
        font-style: normal;
        font-weight: 700;

        text-transform: uppercase;
        text-align: left;
      }
.results-screen .result-contentcards .result-contentcard .result-contentcard-icon {
        position: absolute;

        right: 1.5rem /* 24px */;
        top: -1rem /* -16px */;
      }
.results-screen .result-contentcards .result-contentcard .result-contentcard-description {
        color: #735244;
        font-size: 1.5rem /* 24px */;

        font-style: normal;
        font-weight: 400;
      }
.results-screen .result-contentcards .result-contentcard.delay .result-contentcard-icon {
          width: 4.5rem /* 72px */;
        }
.results-screen .result-contentcards .result-contentcard.inspectreflect .result-contentcard-icon {
          width: 6.5rem /* 104px */;
        }
.results-screen .result-contentcards .result-contentcard.detox .result-contentcard-icon {
          width: 6.1875rem /* 99px */;
        }
.results-screen .result-contentcards .result-contentcard.wardrobe .result-contentcard-icon {
          width: 6.75rem /* 108px */;
        }
.results-screen .result-sysav-btn {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    text-align: center;
    margin-bottom: 6.25rem /* 100px */;
  }
.results-screen .results-socialmedia .results-socialmedia-heading {
      color: #d51f3a;
      text-align: center;

      font-size: 1.5rem /* 24px */;
      margin-bottom: 2.5rem /* 40px */;
      font-weight: 700;
      text-transform: uppercase;
    }
.results-screen .results-socialmedia .results-socialmedia-links {
      display: flex;
      gap: 4rem /* 64px */;
      justify-content: center;
      text-align: center;
    }
.results-screen .results-socialmedia .results-socialmedia-links .results-socialmedia-link {
      }

.question1 {
  height: 100%;
  background: #f5f5f5;
}

.q1-container {
  margin: 0 auto;
  background: white;
  min-height: 100%;
}

/* Warning Banner */
.q1-warning-banner {
  background: #f4c9be;
  color: #d51f3a;
  padding: 3.125rem 1.5rem 2rem 1.5rem /* 50px 24px 32px 24px */;
  position: relative;
  line-height: 1.4;
  overflow: hidden;
}
.q1-warning-banner p {
    font-size: 1.75rem /* 28px */;
  }
.q1-warning-banner button img {
    width: 0.9375rem /* 15px */;
    height: 1rem /* 16px */;
  }

.q1-warning-banner-content {
  position: relative;
}

.q1-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-100%);
  background: none;
  border: none;
  color: #d51f3a;
  font-size: 1.5rem /* 24px */;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

.q1-close-btn:hover {
  opacity: 0.7;
}

/* Cart Header */
.q1-cart-header {
  padding: 1.375rem /* 22px */;
  text-align: center;
  border-bottom: 2px solid #f5f5f5;
}

.q1-cart-header h2 {
  font-size: 1.5rem /* 24px */;
  font-weight: 400;
  margin: 0;
}

/* Product Card */
.q1-product-card {
  display: grid;

  grid-template-columns: 5em 1fr auto;  
  grid-template-rows: auto auto;
  grid-template-columns: 9rem /* 144px */;
  gap: 1rem /* 16px */;
  padding: 1rem /* 16px */;
  border-bottom: 2px solid #f5f5f5;
  position: relative;
}

.q1-product-image {
  grid-row: 1 / 3;
  width: 9rem /* 144px */;

  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.q1-product-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem /* 4px */;
}

.q1-product-name {
  font-size: 1.75rem /* 28px */;
  font-weight: 600;
  margin: 0;
}

.q1-product-size {
  font-size: 1.5rem /* 24px */;
  color: #707070;
  margin: 0;
}

.q1-product-badge {
  position: absolute;
  top: 1rem /* 16px */;
  right: 1rem /* 16px */;
  background: #735244;
  color: #fff;
  padding: 0.25rem 0.5rem /* 4px 8px */;
  font-size: 1.5rem /* 24px */;
  font-weight: 400;
}

.q1-product-price {
  grid-column: 2 / 4;
  display: flex;
  gap: 0.5rem /* 8px */;
  align-items: center;
  justify-content: flex-end;
}

.q1-price-sale {
  font-size: 1.75rem /* 28px */;
  font-weight: 700;
  color: #d51f3a;
}

.q1-price-original {
  font-size: 1.75rem /* 28px */;
  color: #707070;
  text-decoration: line-through;
}

/* Price Breakdown */
.q1-price-breakdown {
  padding: 1rem /* 16px */;
  border-bottom: 1px solid #e5e5e5;
}

.q1-price-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0rem /* 8px 0px */;
  font-size: 1.5rem /* 24px */;
}

.q1-price-total {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0rem 0.5rem /* 12px 0px 8px */;
  font-size: 1.75rem /* 28px */;
  font-weight: 700;
  border-top: 2px solid #000;
  margin-top: 0.5rem /* 8px */;
}

/* Dark Pattern Notice */
.q1-notice {
  background: #735244;
  color: white;
  padding: 1.5rem 1.5rem 2rem /* 24px 24px 32px */;
  display: flex;
  gap: 1.5rem /* 24px */;
  align-items: flex-start;
}

.q1-notice-icon {
  font-size: 1.25rem /* 20px */;
  font-weight: bold;
  flex-shrink: 0;
  width: 2.5625rem /* 41px */;
  height: 2.5625rem /* 41px */;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.q1-notice-icon img {
    max-width: 100%;
  }

.q1-notice p {
  margin: 0;
  font-size: 1.5rem /* 24px */;
  line-height: 1.4;
}

.q1-vertical-spacer {
  background-color: #f5f5f5;
  height: 0.75rem /* 12px */;
}


/* Question Section */
.q1-question-section {
  padding: 1.5rem 1rem /* 24px 16px */;
}

.q1-question-title {
  font-size: 1.5rem /* 24px */;
  font-weight: 700;
  margin: 2.5rem 0rem 2rem /* 40px 0px 32px */;
  text-transform: uppercase;
}

.q1-answers-list {
  display: flex;
  flex-direction: column;
  margin-top: 2rem /* 32px */;
  margin-bottom: 7.5rem /* 120px */;
  gap: 1rem /* 16px */;
}

.q1-answer-btn {
  text-align: left;
}

.q1-answer-btn.selected {
  }

.q1-answer-btn:hover {
  }

.question2 {
  height: 100%;
  background: #735244;
}

.q2-container {
  margin: 0 auto;
  background: #735244;
  min-height: 100%;
  padding: 2rem 1.5rem /* 32px 24px */;
  overflow: hidden;
}

/* Header with Wardrobe Icon */
.q2-header {
  text-align: center;
  margin: 4rem 0rem /* 64px 0px */;
}
@media(max-width: 400px){
.q2-header {
      margin: 2.75rem 0rem /* 44px 0px */
}
  }

.q2-wardrobe-icon {
  width: 9.25rem /* 148px */;

  margin-bottom: 1.5rem /* 24px */;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media(max-width: 400px){

.q2-wardrobe-icon {
    width: 6.25rem /* 100px */
}
  }

.q2-title {
  font-size: 2.75rem /* 44px */;
  font-weight: 700;
  color: white;
  margin: 32px 0;
  text-align: center;
}

/* Spinning Wheel Container */
.q2-wheel-container {
  position: relative;
  /* @mixin em width, 560;
  @mixin em height, 560; */
  /* @mixin em margin, 32, auto; */
  margin: 32px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
}

.q2-wheel {
  width: 100%;
  height: 100%;
  display: block;
}

.q2-wheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12.5rem /* 200px */;
  height: 12.5rem /* 200px */;
  display: flex;
  align-items: center;
  justify-content: center;
}

.q2-spin-button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 14.375rem /* 230px */;

  transition: transform 0.2s;
}

.q2-spin-button img {
    width: 100%;
    height: 100%;
    display: block;
  }

.q2-spin-button:hover {
    transform: scale(1.05);
  }

.q2-spin-button:active {
    transform: scale(0.95);
  }

/* Description Text */
.q2-description {
  border-radius: 1rem /* 16px */;
  margin: 2rem 0rem 4.375rem /* 32px 0px 70px */;

  text-align: center;
}
.q2-description p {
    font-size: 1.25rem /* 20px */;
    margin-bottom: 1rem /* 16px */;
    line-height: 1.5;
    color: #2e1206;
  }
.q2-description p:last-child {
      margin-bottom: 0;
    }
.q2-description strong {
    font-weight: 700;
  }

/* Prize Reveal State */
.q2-prize-state {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem /* 32px 24px */;
}

.q2-confetti-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.q2-confetti-piece {
  position: absolute;
  width: 1rem /* 16px */;
  height: 1rem /* 16px */;
  border-radius: 50%;
  top: -20px;
}

.q2-prize-circle {
  position: relative;
  z-index: 2;
  width: 25rem /* 400px */;
  height: 25rem /* 400px */;
  margin-bottom: 2.5rem /* 40px */;
  display: flex;
  align-items: center;
  justify-content: center;
}

.q2-prize-badge {
  width: 100%;
  height: 100%;
  position: absolute;
}

.q2-speech-bubbles {
  position: relative;
  margin-top: -4em;
  margin-bottom: 5em;
  height: 20rem /* 320px */;
}

.q2-speech-bubble {
  position: absolute;
}

.q2-speech-left {
  top: 0%;
  left: 0%;
  width: 17.625rem /* 282px */;
  height: 11.875rem /* 190px */;
}

.q2-speech-right {
  bottom: 0%;
  right: 0%;
  width: 20.8125rem /* 333px */;
  height: 11.875rem /* 190px */;
}

.q2-claim-button {
  margin-left: auto;
  margin-right: auto;
}

/* Question State */
.q2-question-state {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.q2-cat-container {
  position: absolute;
  transform: translateY(-90%);
  width: 100%;

  padding: 3.75rem 1.5rem /* 60px 24px */;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 25rem /* 400px */;

  
}

.q2-cat {
 
  position: relative;
  z-index: 2;
  animation: catFloat 3s ease-in-out infinite;
}

@media(max-width: 400px){

.q2-cat {
     width: 12.5rem /* 200px */
}
  }

@keyframes catFloat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.q2-star {
  position: absolute;
  z-index: 1;
}

.q2-star-1 {
  width: 3.75rem /* 60px */;
  top: 3.75rem /* 60px */;
  left: 2.5rem /* 40px */;
}

.q2-star-2 {
  width: 3.125rem /* 50px */;
  top: 3.125rem /* 50px */;
  right: 3.75rem /* 60px */;
}

.q2-star-3 {
  width: 2.5rem /* 40px */;
  bottom: 5rem /* 80px */;
  left: 3.75rem /* 60px */;
}

.q2-star-4 {
  width: 4.375rem /* 70px */;
  top: 7.5rem /* 120px */;
  right: 2.5rem /* 40px */;
}

.q2-star-5 {
  width: 2.1875rem /* 35px */;
  bottom: 3.75rem /* 60px */;
  right: 5rem /* 80px */;
}

.q2-star-6 {
  width: 3.4375rem /* 55px */;
  top: 11.25rem /* 180px */;
  left: 7.5rem /* 120px */;
}

/* Question Section */
.q2-question-section {
  padding: 4rem 1.5rem /* 64px 24px */;
  margin-top: 2.5rem /* 40px */;

  display: none;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(100%);

  background: white;
  border-radius: 24px 24px 0 0;

  text-align: center;
}
@media (max-width: 659px) {
.q2-question-section {
    position: fixed
}
  }

.q2-question-title {
  font-size: 1.75rem /* 28px */;
  font-weight: 700;
  color: #735244;

  margin-bottom: 1.75rem /* 28px */;
  text-align: left;
  text-transform: uppercase;
}

.q2-answers-list {
  display: flex;
  flex-direction: column;
  gap: 1rem /* 16px */;
  margin-bottom: 7.5rem /* 120px */;
}

@media (max-width: 659px) {

.q2-answers-list {
      margin-bottom: 0rem /* 0px */
}
  }

.q2-answer-btn {
  text-align: left;
}

.q2-modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.q2-modal {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.question3 {
  margin-left: auto;
  margin-right: auto;
  max-width: 56rem;
  height: 100%;
}

  .question3 .container {
    background: #fff5f3;
  }

  .question3 .q3-cart-header {
    border-bottom: 1px solid #f4c9be;
    position: relative;
    z-index: 10;

    padding: 3.125rem 0rem 1.25rem /* 50px 0px 20px */;
  }

  .question3 .q3-cart-header .q3-cart-header-title {
      font-size: 1.5rem /* 24px */;

      color: #1a1a1a;
      text-align: center;
    }

  .question3 .q3-cart {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow-y: auto;
    height: 100%;
    transition: height 0.3s;
  }

  .question3 .q3-cart-items {
    position: relative;
    z-index: 5;
  }

  /* Product Card */

  .question3 .q3-product-card {
    position:relative;
    background: #fff5f3;
    border-bottom: 1px solid #f4c9be;
    padding: 1.5rem /* 24px */;
    display: flex;
    gap: 1.25rem /* 20px */;
    min-width: 0;
  }

  .question3 .q3-product-image {
    flex-shrink: 0;
    width: 7.5rem /* 120px */;
  }

  .question3 .q3-product-image img {
      max-width: 100%;
    }

  .question3 .q3-product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem /* 8px */;
    min-width: 0;
  }

  .question3 .q3-badge {
    gap: 0.375rem /* 6px */;
    font-size: 1.5rem /* 24px */;
    font-weight: 400;
    color: #d51f3a;
    position: relative;
    height: 1.875rem /* 30px */;
    overflow: hidden;
  }

  .question3 .q3-badge .q3-badge-item {
      display: flex;
      align-items: center;
      gap: 0.25rem /* 4px */;
      position: absolute;
      top: 0;
      left: 0;
    }

  .question3 .q3-badge .q3-badge-item img.fire {
        width: auto;
        width: 1.125rem /* 18px */;
      }

  .question3 .q3-badge .q3-badge-item img.like {
        width: auto;
        width: 0.9375rem /* 15px */;
      }

  .question3 .q3-product-title {
    font-size: 1.75rem /* 28px */;
    font-weight: 700;
    color: #000;
    line-height: 1.4;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .question3 .q3-product-attributes {
    font-size: 1.5rem /* 24px */;
    color: #707070;
  }

  .question3 .q3-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem /* 16px */;
  }

  .question3 .q3-product-price {
    font-weight: 700;
    color: #000;
  }

  .question3 .q3-product-price .q3-product-price-value {
      font-size: 2rem /* 32px */;
    }

  .question3 .q3-product-price .q3-product-price-currency {
      font-size: 1.5rem /* 24px */;
    }

  .question3 .q3-stock-warning {
    display: flex;
    align-items: center;
    gap: 0.5rem /* 8px */;
    font-size: 1.5rem /* 24px */;
    font-weight: 400;
    color: #dc2626;
  }

  .question3 .q3-stock-warning svg {
      width: 1.25rem /* 20px */;
      height: 1.25rem /* 20px */;
    }

  .question3 .q3-product-info {
    margin-top: 0.5rem /* 8px */;
    min-width: 0;
  }

  .question3 .q3-product-info .q3-info-toggle {
      display: flex;
      align-items: flex-start;
      gap: 0.375rem /* 6px */;
      font-size: 1.5rem /* 24px */;
      color: #707070;
      cursor: pointer;
      min-width: 0;
    }

  .question3 .q3-product-info .q3-info-toggle .alert {
        width: 1.125rem /* 18px */;
        flex-shrink: 0;
      }

  .question3 .q3-product-info .q3-info-toggle .q3-info-text {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
      }

  .question3 .q3-product-info .q3-info-toggle .q3-chevron {
        width: 0.75rem /* 12px */;
        height: 0.75rem /* 12px */;
        flex-shrink: 0;
        transition: transform 0.2s;
        margin-top: 0.3em;
      }

  .question3 .q3-product-info.expanded .q3-info-toggle .q3-info-text {
        white-space: normal;
      }

  .question3 .q3-product-info.expanded .q3-info-toggle .q3-chevron {
        transform: rotate(180deg);
      }

  /* Answers Section */

  .question3 .answers {
    padding: 3rem 1.5rem 12.5rem /* 48px 24px 200px */;

    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    overflow-y: auto;
    transition: height 0.3s;
  }

  .question3 .answers-title {
    font-size: 1.5rem /* 24px */;
    font-weight: 700;
    margin-bottom: 2rem /* 32px */;
    color: #000;
    text-transform: uppercase;
  }

  .question3 .answers-list {
    display: flex;
    flex-direction: column;
    gap: 1rem /* 16px */;
  }

  .question3 .answer-button {
    text-align: left;
  }

  .question3 .q3-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background: rgba(0, 0, 0, 0.6);
    pointer-events: none;
  }

  .question3 .q3-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
  }

  .question3 .q3-modal-content {
    background: #f4c9be;
    padding: 4rem 2.5rem /* 64px 40px */;
    gap: 4rem /* 64px */;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    width: 90%;
    position: relative;
  }

  .question3 .q3-modal-content p {
      font-size: 1.75rem /* 28px */;
      color: #d51f3a;
      font-weight: 700;
      line-height: 130%;
      text-align: center;
    }

  .question3 .q3-content.split .q3-cart {
        height: 50%;
      }

  .question3 .q3-content.split .answers {
        height: 50%;
      }

  .question3 .countdown-timer {
    position: absolute;
    top: 1.5rem /* 24px */;
    right: 1.5rem /* 24px */;
    background-image: url("/ffc-gullibletest/images/question3/countdown-splash.svg");
    background-repeat: no-repeat;
    background-size: contain;

    width: 12.3125rem /* 197px */;
    height: 12.3125rem /* 197px */;
    font-size: 2.5rem /* 40px */;
    font-weight: 700;
    color: #fff;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.question4 {
  margin-left: auto;
  margin-right: auto;
  max-width: 56rem;
  height: 100%;
  position: relative;
}

  .question4 .facebookad {
    height:100%;
  }

  .question4 .facebookad .clickable-link {
      cursor: pointer;
    }

  /* Warning Banner */

  .question4 .facebookad .q4-warning-banner {
      background: #f4c9be;
      color: #d51f3a;
      padding: 3.125rem 1.5rem 2rem 1.5rem /* 50px 24px 32px 24px */;
      position: relative;
      line-height: 1.4;
      overflow: hidden;
    }

  .question4 .facebookad .q4-warning-banner p {
        font-size: 1.75rem /* 28px */;
      }

  .question4 .facebookad .q4-warning-banner button img {
        width: 0.9375rem /* 15px */;
        height: 1rem /* 16px */;
      }

  .question4 .facebookad .q4-warning-banner-content {
      position: relative;
    }

  .question4 .facebookad .q4-close-btn {
      position: absolute;
      top: 0;
      right: 0;
      transform: translateY(-100%);
      background: none;
      border: none;
      color: #d51f3a;
      font-size: 1.5rem /* 24px */;
      cursor: pointer;

      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      line-height: 1;
    }

  .question4 .facebookad .q4-close-btn:hover {
      opacity: 0.7;
    }

  .question4 .post {
    padding: 1.5rem 1.5rem 10rem /* 24px 24px 160px */;
  }

  .question4 .post .post-image {
    }

  .question4 .post .post-meta {
      display: flex;
      gap: 1.5rem /* 24px */;
      padding: 1rem 0rem /* 16px 0px */;
    }

  .question4 .post .post-meta .bookmark {
        margin-left: auto;
      }

  .question4 .post .post-meta span {
        display: flex;
        align-items: center;
        gap: 0.5rem /* 8px */;
        font-size: 1.5rem /* 24px */;
      }

  .question4 .post .post-meta span img {
          width: 1.625rem /* 26px */;
        }

  .question4 .post .post-entry {
      color: #000;
    }

  .question4 .post .post-entry p {
        /* Lättlurad/text */
        font-family: Helvetica;
        font-size: 1.5rem /* 24px */;
        margin-bottom: 1.5rem /* 24px */;
        font-style: normal;
        line-height: 150%; /* 36px */
      }

  .question4 .post .post-entry a {
        color: #d51f3a;
        text-decoration-line: underline;
      }

  /* Loading Faux Page - Cloudflare Interstitial Style */

  .question4 .loading-faux-page {
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .question4 .loading-faux-page .interstitial-wrapper {
      padding: 2.5rem /* 40px */;
      text-align: center;
    }

  .question4 .loading-faux-page .interstitial-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.5rem /* 24px */;
    }

  .question4 .loading-faux-page .interstitial-title {
      font-size: 1.75rem /* 28px */;
      font-weight: 600;
      color: #000;
      line-height: 1.3;
      margin-bottom: 0.5rem /* 8px */;
    }

  .question4 .loading-faux-page .interstitial-text {
      font-size: 1.5rem /* 24px */;
      color: #333;
      line-height: 1.5;
    }

  .question4 .loading-faux-page .interstitial-wait {
      font-size: 1.5rem /* 24px */;
      color: #666;
      font-weight: 500;
    }

  .question4 .loading-faux-page .interstitial-loader {
      margin-top: 2rem /* 32px */;
      display: flex;
      justify-content: center;
    }

  .question4 .loading-faux-page .loading-dots {
      display: flex;
      gap: 0.5rem /* 8px */;
      justify-content: center;
      margin-top: 1rem /* 16px */;
    }

  .question4 .loading-faux-page .loading-dots .dot {
      width: 1rem /* 16px */;
      height: 1rem /* 16px */;
      background-color: #333;
      border-radius: 50%;
      animation: dotPulse 1.4s infinite ease-in-out both;
    }

  .question4 .loading-faux-page .loading-dots .dot:nth-child(1) {
      animation-delay: -0.32s;
    }

  .question4 .loading-faux-page .loading-dots .dot:nth-child(2) {
      animation-delay: -0.16s;
    }

  @keyframes dotPulse {
      0%,
      80%,
      100% {
        transform: scale(0.6);
        opacity: 0.5;
      }
      40% {
        transform: scale(1);
        opacity: 1;
      }
    }

  .question4 .loading-faux-page .interstitial-footer {
      margin-top: 3rem /* 48px */;
      text-align: center;
      color: #666;
      font-size: 1.25rem /* 20px */;
      line-height: 1.6;
    }

  .question4 .loading-faux-page .interstitial-footer .ray-id {
      margin-top: 0.25rem /* 4px */;
      font-family: monospace;
      color: #999;
    }

  /* Gunilla's Website */

  .question4 .gunillas-website {
    width: 100%;
    height: 100%;
    background: #fff;
    font-family: Alegreya, serif;
  }

  .question4 .gunillas-website .gw-header {
      padding: 3.125rem 1.375rem 1.375rem /* 50px 22px 22px */;
      gap: 1rem /* 16px */;
      display: flex;

      justify-content: space-between;
      align-items: center;
    }

  .question4 .gunillas-website .gw-header .text-logo {
        flex: 1;
        max-width: 80%;
        margin: 0 auto;
      }

  .question4 .gunillas-website .gw-header .hamburger-icon {
        width: 1.125rem /* 18px */;
      }

  .question4 .gunillas-website .gw-header .cart-icon {
        width: 1.5rem /* 24px */;
      }

  .question4 .gunillas-website .gw-hero {
      position: relative;
    }

  .question4 .gunillas-website .gw-hero .gw-hero-image {
      }

  .question4 .gunillas-website .gw-hero .gw-hero-splash {
        position: absolute;
        top: 5%;
        right: 5%;
        width: 18.75rem /* 300px */;
      }

  .question4 .gunillas-website .horizontal-products {
      margin: 4rem 1rem /* 64px 16px */;
    }

  .question4 .gunillas-website .horizontal-products .horizontal-products-title {
        font-size: 2rem /* 32px */;
        font-weight: 700;
        margin: 0rem 0rem 1.25rem /* 0px 0px 20px */;
      }

  .question4 .gunillas-website .horizontal-products .horizontal-products-scroll {
        overflow-x: auto;
        white-space: nowrap;
        margin-right: -1rem /* -16px */;
      }

  .question4 .gunillas-website .horizontal-products .horizontal-products-scroll img {
          max-width: none;
          height: 31.25rem /* 500px */;
        }

  .question4 .gunillas-website .gw-aboutus {
      margin: 0rem 1.375rem 8rem /* 0px 22px 128px */;
    }

  .question4 .gunillas-website .gw-aboutus .gw-aboutus-image {
        margin-bottom: 1.5rem /* 24px */;
      }

  .question4 .gunillas-website .gw-aboutus .gw-aboutus-heading {
        font-size: 2rem /* 32px */;

        margin-bottom: 0.8125rem /* 13px */;
      }

  .question4 .gunillas-website .gw-aboutus .gw-aboutus-body {
        font-size: 1.5rem /* 24px */;
      }

  .question4 .gunillas-website .gw-footer {
      background: #735244;
      color: #fff;
      padding: 2.6875rem 2.3125rem 10rem /* 43px 37px 160px */;
      text-align: center;
    }

  .question4 .gunillas-website .gw-footer .gw-footer-links {
        display: flex;
        flex-direction: column;
        gap: 1.5rem /* 24px */;
        padding-bottom: 3rem /* 48px */;
        margin-bottom: 3rem /* 48px */;

        border-bottom: 1px solid #fff;
      }

  .question4 .gunillas-website .gw-footer .gw-footer-links .gw-footer-link {
          font-size: 2rem /* 32px */;
          cursor: pointer;
        }

  .question4 .gunillas-website .gw-footer .gw-footer-info .gw-footer-info-copyright {
          font-size: 1.375rem /* 22px */;
          margin-bottom: 1.25rem /* 20px */;
        }

  .question4 .gunillas-website .gw-footer .gw-footer-info .gw-footer-info-adress {
          font-size: 1.25rem /* 20px */;
          font-style: italic;
          margin-bottom: 1.25rem /* 20px */;
        }

  .question4 .gunillas-website .gw-footer .gw-footer-info .gw-footer-info-poweredby {
          font-size: 1.5rem /* 24px */;
        }

  .question4 .q4-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .question4 .q4-modal .q4-modal-backdrop {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;

      background: rgba(0, 0, 0, 0.6);
      pointer-events: none;
    }

  .question4 .q4-modal .q4-modal-content {
      background: #f4c9be;
      padding: 4rem 2.5rem /* 64px 40px */;
      gap: 4rem /* 64px */;
      border-radius: 12px;
      display: flex;
      flex-direction: column;
      width: 90%;
      position: relative;
    }

  .question4 .q4-modal .q4-modal-content p {
        font-size: 1.75rem /* 28px */;
        color: #d51f3a;
        font-weight: 700;
        line-height: 130%;
        text-align: center;
      }

  .question4 .countdown-timer {
    position: absolute;
    top: 1.5rem /* 24px */;
    right: 1.5rem /* 24px */;
    background-image: url("/ffc-gullibletest/images/question3/countdown-splash.svg");
    background-repeat: no-repeat;
    background-size: contain;

    width: 12.3125rem /* 197px */;
    height: 12.3125rem /* 197px */;
    font-size: 2.5rem /* 40px */;
    font-weight: 700;
    color: #fff;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .question4 .answers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    background: #f4c9be;

    padding: 8rem 1.5rem 10rem /* 128px 24px 160px */;
  }

  .question4 .answers .answers-title {
      font-size: 1.5rem /* 24px */;
      font-weight: 700;
      margin-bottom: 2rem /* 32px */;
      color: #d51f3a;
      text-transform: uppercase;
    }

  .question4 .answers .answers-list {
      display: flex;
      flex-direction: column;
      gap: 1rem /* 16px */;
    }

  .question4 .answers .answer-button {
      text-align: left;
    }

/* Scrollable content utility class */
.scrollable-content {
  overflow: auto;
  overflow-y: overlay;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.3) transparent;
}
.scrollable-content::-webkit-scrollbar {
    width: 6px;
  }
.scrollable-content::-webkit-scrollbar-track {
    background: transparent;
  }
.scrollable-content::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
  }
.scrollable-content::-webkit-scrollbar-thumb:hover {
      background-color: rgba(0, 0, 0, 0.5);
    }

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}/*
! tailwindcss v3.4.19 | MIT License | https://tailwindcss.com
*//*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: currentColor; /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: 'Josefin Sans', ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
  -webkit-tap-highlight-color: transparent; /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

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

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-feature-settings: normal; /* 2 */
  font-variation-settings: normal; /* 3 */
  font-size: 1em; /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  letter-spacing: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

  body {
  --tw-bg-opacity: 1;
  background-color: rgb(243 237 232 / var(--tw-bg-opacity, 1));
    margin: 0;
    padding: 0;
    font-family: Helvetica, Arial, sans-serif;
}
.\!container {
  width: 100% !important;
}
.container {
  width: 100%;
}
@media (min-width: 375px) {

  .\!container {
    max-width: 375px !important;
  }

  .container {
    max-width: 375px;
  }
}
@media (min-width: 576px) {

  .\!container {
    max-width: 576px !important;
  }

  .container {
    max-width: 576px;
  }
}
@media (min-width: 960px) {

  .\!container {
    max-width: 960px !important;
  }

  .container {
    max-width: 960px;
  }
}
.visible {
  visibility: visible;
}
.invisible {
  visibility: hidden;
}
.collapse {
  visibility: collapse;
}
.static {
  position: static;
}
.fixed {
  position: fixed;
}
.absolute {
  position: absolute;
}
.relative {
  position: relative;
}
.sticky {
  position: sticky;
}
.isolate {
  isolation: isolate;
}
.m-0 {
  margin: 0px;
}
.m-0\.5 {
  margin: 0.125rem;
}
.m-1 {
  margin: 0.25rem;
}
.m-1\.5 {
  margin: 0.375rem;
}
.m-10 {
  margin: 2.5rem;
}
.m-11 {
  margin: 2.75rem;
}
.m-12 {
  margin: 3rem;
}
.m-14 {
  margin: 3.5rem;
}
.m-16 {
  margin: 4rem;
}
.m-2 {
  margin: 0.5rem;
}
.m-2\.5 {
  margin: 0.625rem;
}
.m-20 {
  margin: 5rem;
}
.m-24 {
  margin: 6rem;
}
.m-28 {
  margin: 7rem;
}
.m-3 {
  margin: 0.75rem;
}
.m-3\.5 {
  margin: 0.875rem;
}
.m-32 {
  margin: 8rem;
}
.m-36 {
  margin: 9rem;
}
.m-4 {
  margin: 1rem;
}
.m-40 {
  margin: 10rem;
}
.m-44 {
  margin: 11rem;
}
.m-48 {
  margin: 12rem;
}
.m-5 {
  margin: 1.25rem;
}
.m-52 {
  margin: 13rem;
}
.m-56 {
  margin: 14rem;
}
.m-6 {
  margin: 1.5rem;
}
.m-60 {
  margin: 15rem;
}
.m-64 {
  margin: 16rem;
}
.m-7 {
  margin: 1.75rem;
}
.m-72 {
  margin: 18rem;
}
.m-8 {
  margin: 2rem;
}
.m-80 {
  margin: 20rem;
}
.m-9 {
  margin: 2.25rem;
}
.m-96 {
  margin: 24rem;
}
.m-auto {
  margin: auto;
}
.m-gutter-lg {
  margin: 100px;
}
.m-gutter-md {
  margin: 40px;
}
.m-gutter-sm {
  margin: 20px;
}
.m-px {
  margin: 1px;
}
.block {
  display: block;
}
.inline-block {
  display: inline-block;
}
.inline {
  display: inline;
}
.flex {
  display: flex;
}
.table {
  display: table;
}
.grid {
  display: grid;
}
.contents {
  display: contents;
}
.hidden {
  display: none;
}
.shrink {
  flex-shrink: 1;
}
.grow {
  flex-grow: 1;
}
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.resize {
  resize: both;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.rounded {
  border-radius: 0.25rem;
}
.rounded-2xl {
  border-radius: 1rem;
}
.rounded-3xl {
  border-radius: 1.5rem;
}
.rounded-full {
  border-radius: 9999px;
}
.rounded-lg {
  border-radius: 0.5rem;
}
.rounded-md {
  border-radius: 0.375rem;
}
.rounded-none {
  border-radius: 0px;
}
.rounded-sm {
  border-radius: 0.125rem;
}
.rounded-xl {
  border-radius: 0.75rem;
}
.border {
  border-width: 1px;
}
.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}
.bg-blue {
  --tw-bg-opacity: 1;
  background-color: rgb(50 50 210 / var(--tw-bg-opacity, 1));
}
.bg-current {
  background-color: currentColor;
}
.bg-orange {
  --tw-bg-opacity: 1;
  background-color: rgb(255 92 36 / var(--tw-bg-opacity, 1));
}
.bg-purple {
  --tw-bg-opacity: 1;
  background-color: rgb(108 67 155 / var(--tw-bg-opacity, 1));
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(243 237 232 / var(--tw-bg-opacity, 1));
}
.uppercase {
  text-transform: uppercase;
}
.lowercase {
  text-transform: lowercase;
}
.italic {
  font-style: italic;
}
.ordinal {
  --tw-ordinal: ordinal;
  font-variant-numeric: var(--tw-ordinal) var(--tw-slashed-zero) var(--tw-numeric-figure) var(--tw-numeric-spacing) var(--tw-numeric-fraction);
}
.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}
.text-blue {
  --tw-text-opacity: 1;
  color: rgb(50 50 210 / var(--tw-text-opacity, 1));
}
.text-current {
  color: currentColor;
}
.text-orange {
  --tw-text-opacity: 1;
  color: rgb(255 92 36 / var(--tw-text-opacity, 1));
}
.text-purple {
  --tw-text-opacity: 1;
  color: rgb(108 67 155 / var(--tw-text-opacity, 1));
}
.text-transparent {
  color: transparent;
}
.text-white {
  --tw-text-opacity: 1;
  color: rgb(243 237 232 / var(--tw-text-opacity, 1));
}
.underline {
  text-decoration-line: underline;
}
.overline {
  text-decoration-line: overline;
}
.shadow {
  --tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline {
  outline-style: solid;
}
.ring {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}
.blur {
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale {
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.invert {
  --tw-invert: invert(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.sepia {
  --tw-sepia: sepia(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Module styles */

/* Utility */

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;

  font-size: 10px;
}

@media (max-width: 659px) {

html {
    font-size: 11px
}
  }

.before\:bg-black::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.before\:bg-blue::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(50 50 210 / var(--tw-bg-opacity, 1));
}

.before\:bg-current::before {
  content: var(--tw-content);
  background-color: currentColor;
}

.before\:bg-orange::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(255 92 36 / var(--tw-bg-opacity, 1));
}

.before\:bg-purple::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(108 67 155 / var(--tw-bg-opacity, 1));
}

.before\:bg-transparent::before {
  content: var(--tw-content);
  background-color: transparent;
}

.before\:bg-white::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(243 237 232 / var(--tw-bg-opacity, 1));
}

