/** Shopify CDN: Minification failed

Line 112:0 Expected "*/" to terminate multi-line comment

**/
.quiz-wrapper {
  max-width: 100%; /* Makes the wrapper stretch dynamically */
  width: 80%; /* Keeps the wrapper dynamic but adds width for larger screens */
  margin: auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  background-color: #f3f0ed; /* Background color for the section */
  border-radius: 8px;
  /* Removed shadow */
}

.question {
  display: none;
  text-align: center;
  background-color: #f3f0ed; /* Background color for the question cards */
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 15px;
  width: 100%; /* Makes the question card span full width of the wrapper */
}

.question.active {
  display: block;
}

.question h2 {
  font-size: 1.8rem;
  color: #686464; /* Question text color */
  margin-bottom: 20px;
}

button.answer {
  background-color: #e5f1e8; /* Background color for answer buttons */
  color: #686464; /* Answer button text color */
  border: 1px solid #ddd;
  padding: 15px;
  margin: 10px 0;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button.answer:hover {
  background-color: #9da9a0; /* Hover color for answer buttons */
  color: #ffffff; /* Text color when hovering */
}

button.back-button {
  display: block; /* Full row */
  background-color: #f3f0ed; /* Match section background */
  color: #686464; /* Text color */
  border: 1px solid #ddd;
  padding: 10px;
  margin: 20px auto 0; /* Centered and spaced from answer buttons */
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 150px; /* Consistent button width */
  text-align: center;
}

button.back-button:hover {
  background-color: #9da9a0; /* Hover color */
  color: #ffffff; /* Hover text color */
}

#progress-bar-container {
  width: 100%;
  background-color: #e0e0e0;
  height: 10px;
  margin-bottom: 20px;
  border-radius: 5px;
}

#progress-bar {
  width: 0%;
  height: 100%;
  background-color: #9da9a0; /* Progress bar color */
  transition: width 0.4s ease-in-out;
}

/* Wrapper for centering the Back button */
.button-wrapper {
  text-align: center; /* Center-align the button */
  margin-top: 20px; /* Add space between answers and the button */
}

/* Back button styling */
.back-button {
  display: inline-block;
  padding: 10px 20px;
  font-size: 16px;
  background-color: #e5f1e8; /* Button background color */
  color: #686464; /* Button text color */
  border: none;
  border-radius: 5px; /* Rounded corners */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Hover effect for Back button */
.back-button:hover {
  background-color: #9da9a0; /*
