/** Shopify CDN: Minification failed

Line 652:0 Unexpected "@"

**/
/* Quiz Container */
.quiz-container {
  font-family: Mintgrotesktrial, "Queens Compressed Trial", Nunitosans, sans-serif;
  background-color: #F4F2F0;
  color: #333;
  line-height: 1.6;
  margin: 0;
  padding: 20px;
}
.micro-results {
      text-align: center;
      padding: 30px;
       font-family: Mintgrotesktrial, sans-serif;
    }
    
    .micro-quiz-form-section {
      background: linear-gradient(135deg, #F4F2F0, #e2e8f0);
      padding: 30px;
      border-radius: 12px;
      border: 1px solid #cbd5e1;
       font-family: Mintgrotesktrial, sans-serif;
    }
    
    .micro-quiz-container {
      max-width: 850px;
      margin: 0 auto;
      background-color: white;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
      padding: 40px;
    }

.quiz-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

/* Header */
.quiz-header {
  text-align: center;
  margin-bottom: 30px;
}

.quiz-logo {
  margin-bottom: 20px;
    display: flex;
  justify-content: center;
}

.quiz-logo-image {
  max-width: 180px;
  height: auto;
}

.quiz-title {
  color: #000080;
  font-size: 36px;
  margin: 0 0 10px 0;
  font-weight:700;
  font-family: Queens Compressed Trial, sans-serif;
}

.quiz-subtitle {
  color: #000080;
  font-size: 20px;
  font-weight: normal;
  margin: 0;
  font-family: Mintgrotesktrial, sans-serif;
}
/* Step Indicator */
.step-indicator {
  margin-bottom: 2rem;
}

.step-text {
  text-align: center;
  color: #6b7280;
  margin-bottom: 1rem;
}

.steps-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.step-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e5e7eb;
  transition: all 0.3s ease;
}

.step-dot.active {
  background: #000080;
  transform: scale(1.2);
}

.step-dot.completed {
  background: #7f7fbf;
}

/* Progress Bar */
.progress-container {
  height: 8px;
  background-color: #F4F2F0;
  border-radius: 4px;
  margin-bottom: 25px;
}

.progress-bar {
  height: 100%;
  background-color: #00FF00;
  border-radius: 4px;
  transition: width 0.3s;
}

/* Questions and Options */
.question {
  font-size: 18px;
  font-weight: 600;
  color: #000080;
  margin-bottom: 20px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.option {
  padding: 15px;
  border: 1px solid #000080;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
}

.option:hover {
  border-color: #000080;
}

.option.selected {
  background-color: #000080;
  border-color: #000080;
  color:white;
}

/* Modal Styles */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal.hidden {
  display: none;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  z-index: 51;
}

/* Results Styles */
.results {
  text-align: center;
  padding: 2rem;
}

.results-header {
  margin-bottom: 2rem;
}

.risk-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.result-category {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.result-range {
  font-size: 1.5rem;
  color: #4b5563;
  margin-bottom: 1.5rem;
}

.results-body {
  color: #1f2937;
}

.result-text {
  margin-bottom: 1rem;
  line-height: 1.6;
  font-family: Mintgrotesktrial, sans-serif;
}

.result-estimate {
  color: #6b7280;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.cta-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

/* Fixed CTA */
.fixed-cta {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  background: white;
  padding: 1rem;
  box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: bottom 0.3s ease;
  z-index: 40;
}

.fixed-cta.visible {
  bottom: 0;
}

/* Validation Error */
.validation-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #dc2626;
  margin: 1rem 0;
  padding: 0.75rem;
  border-radius: 0.5rem;
  background: #fee2e2;
    margin-bottom: 30px;
}

.error-icon {
  width: 1.25rem;
  height: 1.25rem;
  stroke: currentColor;
}

/* Buttons */
.buttons {
  display: flex;
  justify-content: space-between;
}

.btn {
  padding: 12px 24px;
  border-radius: 8px;
  border: 1px solid #000080;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  color:#000080;
}

.btn-primary {
  background-color: #000080;
  color: white;
}

.btn-primary:hover {
  background-color: #000080;
}

.btn-secondary {
 background-color: white;
  color:#000080;
  border: 1px solid #000080;
}

.btn-secondary:hover {
  background-color: #000080;
  color:white;
}

.btn-accent {
  background-color: #000080;
  color: white;
}

.btn-accent:hover {
  background-color: #000080;
  color:white;
}

.btn-outline {
  background-color: white;
  color: #000080;
  border: 1px solid #000080;
}

.btn-outline:hover {
  background-color: #f5f7fa;
}

/* Form */
.form-section {
  background-color: #F4F2F0;
  padding: 25px;
  border-radius: 8px;
}

.form-title {
  text-align: center;
  color: #000080;
  font-size: 22px;
  margin-bottom: 10px;
  font-family: Mintgrotesktrial, sans-serif;
}

.form-subtitle {
  text-align: center;
  color: #000080;
  margin-bottom: 25px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #000080;
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  padding: 12px;
  border: 1px solid #000080;
  border-radius: 6px;
  font-size: 16px;
  box-sizing: border-box;
}

.form-input.error {
  border-color: #ef4444;
}

.error-text {
  color: #ef4444;
  font-size: 14px;
  margin-top: 4px;
}

.privacy-notice {
  font-size: 12px;
  color: #666;
  margin: 20px 0;
}

/* Results */
.results {
  text-align: center;
  padding: 25px;
  border-radius: 8px;
}

.result-category {
  font-size: 24px;
  font-weight: bold;
  color: #083D6B;
  margin-bottom: 5px;
}

.result-range {
  font-size: 18px;
  font-weight: 600;
  color: #0B5394;
  margin-bottom: 20px;
}

.result-text {
  margin-bottom: 15px;
}

.result-estimate {
  font-size: 14px;
  color: #000080;
  margin-bottom: 25px;
}

/* Loading */
.loading {
  text-align: center;
  padding: 40px 0;
}

.spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 4px solid #0B5394;
  width: 40px;
  height: 40px;
  margin: 0 auto 20px auto;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Utility Classes */
.hidden {
  display: none;
}

.spacer {
  flex-grow: 1;
}


/* Modal Styles */
.micro-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.micro-modal-content {
  background: white;
  padding: 2rem;
  border-radius: 0.5rem;
  max-width: 32rem;
  width: 100%;
  position: relative;
}

.micro-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
}

.micro-modal-close:hover {
  color: #333;
}

/* Email Collection Step */
.micro-email-step {
  display: block;
}

.micro-email-step.hidden {
  display: none;
}

.micro-email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.micro-email-input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #d1d5db;
  border-radius: 0.375rem;
}

/* Pre-order Step */
.micro-preorder-step {
  display: none;
}

.micro-preorder-step.visible {
  display: block;
}

.micro-modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #dc2626;
  margin-bottom: 1rem;
  text-align: center;
}

.micro-modal-text {
  color: #374151;
  margin-bottom: 1rem;
  text-align: center;
}

.micro-modal-warning {
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}

.micro-modal-button {
  width: 100%;
  background: #2563eb;
  color: white;
  padding: 0.75rem;
  border-radius: 0.375rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
}

.micro-modal-button:hover {
  background: #1d4ed8;
}

.micro-modal-button:disabled {
  background: #93c5fd;
  cursor: not-allowed;
}




/* Responsive Design */
@media (max-width: 1024px) {
  .quiz-wrapper {
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .quiz-container {
    padding: 10px;
  }
.micro-quiz-container{
  padding:30px;
}  
  .quiz-wrapper {
    padding: 20px;
  }
  
  .quiz-title {
    font-size: 24px;
  }

  .micro-quiz-title{
    font-size:32px;
    line-height:38px;
  }
 .micro-quiz-title-2{
   font-size:24px;
   line-height:30px;
 }
  .quiz-subtitle {
    font-size: 18px;
  }
  .micro-quiz-subtitle{
    font-size:12px;
    line-height:18px;
  }
  .buttons {
    flex-direction: column;
    gap: 10px;
  }
  .micro-quiz-form-section{
    padding:10px;
  }
  .micro-results{
    padding:0px;
  }
  .btn {
    width: 100%;
  }
}

@media (max-width:479px){
      .quiz-container {
        padding:10px 0px;
      }
  .micro-quiz-container{
    padding:20px
  }
  .quiz-wrapper{
  margin-left:10px;
  margin-right:10px;
  max-width:none;
  }
}



@@font-face {
  font-family: "Nunitosans";
  src: url("../fonts/NunitoSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Nunitosans";
  src: url("../fonts/NunitoSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Queens Compressed Trial";
  src: url("/cdn/shop/files/QueensCompressedTrial-Medium.woff?v=1690485769")
      format("woff"),
    url("/cdn/shop/files/QueensCompressedTrial-Medium.woff2?v=1690485769")
      format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Queens Compressed Trial";
  src: url("/cdn/shop/files/QueensCompressedTrial-Light.woff?v=1690485768")
      format("woff"),
    url("/cdn/shop/files/QueensCompressedTrial-Light.woff2?v=1690485768")
      format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Queenscondensedtrial";
  src: url("/cdn/shop/files/QueensCompressedTrial-Light.woff?v=1690485768")
      format("woff"),
    url("/cdn/shop/files/QueensCompressedTrial-Light.woff2?v=1690485768")
      format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Angleciaprodisplay";
  src: url("../fonts/AngleciaProDisplay-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mintgrotesktrial";
  src: url("/cdn/shop/files/MintGroteskTrial-Regular.woff?v=1690485768")
      format("woff"),
    url("/cdn/shop/files/MintGroteskTrial-Regular.woff2?v=1690485767")
      format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mintgrotesktrial";
  src: url("/cdn/shop/files/MintGrotesk-Bold.woff2?v=1690883493")
      format("woff"),
    url("/cdn/shop/files/MintGrotesk-Bold.woff?v=1690883492")
      format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mintgrotesktrial";
  src: url("/cdn/shop/files/MintGroteskTrial-Medium.woff?v=1690485768")
      format("woff"),
    url("/cdn/shop/files/MintGroteskTrial-Medium.woff2?v=1690485768")
      format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mintgrotesktrial";
  src: url("/cdn/shop/files/MintGroteskTrial-Heavy.woff?v=1690879375")
      format("woff"),
    url("/cdn/shop/files/MintGroteskTrial-Heavy.woff2?v=1690879374")
      format("woff2");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Mintgrotesktrial-light";
  src: url("/cdn/shop/files/MintGrotesk-Regular_2.woff?v=1691091285")
      format("woff"),
    url("/cdn/shop/files/MintGrotesk-Regular_1.woff2?v=1691091285")
      format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}