@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  background-color: #111;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-weight: 500; /* Default medium weight for body text */
}

.quiz-header {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.2vw 0;
  text-align: center;
  font-size: 1.8vw;
  font-weight: 600; /* Semi-bold for header */
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  color: #70fa00;
  z-index: 100;
  box-shadow: 0 0 0.5vw rgba(0, 0, 0, 0.4);
}

.quiz-section {
  width: 99vw;
  min-height: calc(100vh - 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 7vw;
}

.privacy-consent {
  width: 60vw;
  margin: 8vw auto;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1vw;
  padding: 3vw;
  text-align: center;
  color: #fff;
  box-shadow: 0 0 1vw rgba(0, 0, 0, 0.4);
}
.privacy-consent h3 {
  color: #70fa00;
  font-size: 2vw;
  font-weight: 600; /* Semi-bold for section title */
  margin-bottom: 1.2vw;
}
.privacy-consent p {
  font-size: 1vw;
  font-weight: 500; /* Consistent medium weight */
  line-height: 1.5;
  margin-bottom: 1.5vw;
}
.privacy-consent p a {
  color: #70fa00;
  text-decoration: underline;
}
.privacy-consent .privacy-label {
  display: flex;
  align-items: flex-start;
  gap: 1vw;
  justify-content: center;
  margin-bottom: 2vw;
}
.privacy-consent .privacy-label input {
  width: 1.2vw;
  height: 1.2vw;
  accent-color: #70fa00;
}
.privacy-consent .privacy-label span {
  font-size: 1vw;
  font-weight: 500; /* Consistent medium weight */
  text-align: left;
}
.privacy-consent button {
  background: #70fa00;
  color: #000;
  font-weight: 600; /* Semi-bold for buttons */
  padding: 0.8vw 2.5vw;
  border-radius: 0.5vw;
  font-size: 1.2vw;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.privacy-consent button:disabled {
  background: #666;
  color: #888;
  cursor: not-allowed;
}
.privacy-consent button:hover:not(:disabled) {
  background: rgb(93.7216, 209.2, 0);
}

.progress-bar {
  width: 70vw;
  height: 0.7vw;
  background-color: #222;
  border-radius: 0.35vw;
  margin-bottom: 2vw;
}
.progress-bar .progress {
  height: 100%;
  background: #70fa00;
  border-radius: 0.35vw;
  width: 0;
  transition: width 0.3s ease;
}

.quiz-container {
  width: 60vw;
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 2.5vw;
  border-radius: 0.7vw;
  box-shadow: 0 0 0.6vw rgba(0, 0, 0, 0.4);
  margin: 0 auto;
}

.section-title {
  font-size: 1.6vw;
  font-weight: 600; /* Semi-bold for titles */
  text-align: center;
  margin-bottom: 1vw;
  color: #70fa00;
}

.question,
.question-text,
.question-input {
  font-size: 1.4vw;
  font-weight: 500; /* Medium weight for question text */
  margin-bottom: 2vw;
  text-align: center;
}

.options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1vw;
}

.option-card {
  background: #1b1b1b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.6vw;
  padding: 1.5vw 1vw;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
}
.option-card .option-image img {
  width: 10vw;
  height: auto;
  border-radius: 0.35vw;
  margin-bottom: 0.7vw;
  object-fit: contain;
}
.option-card .option-text {
  font-size: 1vw;
  font-weight: 500; /* Medium weight for option text */
  text-align: center;
}
.option-card:hover {
  background: rgb(22.35, 22.35, 22.35);
}
.option-card.selected {
  border-color: #70fa00;
  background: rgba(112, 250, 0, 0.15);
}

.text-options-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1vw;
}

.text-option {
  flex: 1 1 40%;
  min-width: 12vw;
  max-width: 20vw;
  padding: 1vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.7vw;
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2vw;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}
.text-option input[type=radio] {
  appearance: none;
  width: 1.2vw;
  height: 1.2vw;
  border: 0.15vw solid #555;
  border-radius: 50%;
  background: #1b1b1b;
  position: relative;
  cursor: pointer;
  transition: border-color 0.25s ease;
}
.text-option input[type=radio]:checked {
  border-color: #70fa00;
  background: #70fa00;
}
.text-option input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0.5vw;
  height: 0.5vw;
  border-radius: 50%;
  background: #fff;
}
.text-option label {
  font-size: 1vw;
  font-weight: 500; /* Medium weight for labels */
  cursor: pointer;
}
.text-option:hover {
  background: rgb(22.35, 22.35, 22.35);
}
.text-option.selected {
  border-color: #70fa00;
  background: rgba(112, 250, 0, 0.15);
}

.text-option input[type=checkbox] {
  appearance: none;
  width: 1.2vw;
  height: 1.2vw;
  border: 0.15vw solid #555;
  border-radius: 0.2vw;
  background: #1b1b1b;
  cursor: pointer;
  position: relative;
  transition: border-color 0.25s ease;
}
.text-option input[type=checkbox]:checked {
  border-color: #70fa00;
  background: #70fa00;
}
.text-option input[type=checkbox]:checked::after {
  content: "✔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.8vw;
  color: #fff;
}

.multi-select-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16vw, 1fr));
  gap: 1.2vw;
  margin-top: 2vw;
}

.multi-option {
  display: flex;
  align-items: center;
  gap: 1vw;
  padding: 1.3vw 1.6vw;
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 0.7vw;
  color: #fff;
  font-size: 1.1vw;
  font-weight: 500; /* Medium weight for multi-option text */
  cursor: pointer;
  transition: all 0.25s ease;
  user-select: none;
  position: relative;
  box-shadow: 0 0.4vw 0.8vw rgba(0, 0, 0, 0.25);
}
.multi-option:hover {
  background: #1e1e1e;
  transform: translateY(-0.1vw);
  box-shadow: 0 0.8vw 1.2vw rgba(112, 250, 0, 0.25);
}
.multi-option.selected {
  border-color: #70fa00;
  background: rgba(112, 250, 0, 0.15);
  box-shadow: 0 0 1vw rgba(112, 250, 0, 0.35);
}

/* Custom checkbox */
.checkbox-wrapper {
  position: relative;
  width: 1.3vw;
  height: 1.3vw;
  flex-shrink: 0;
}

.checkbox-wrapper input[type=checkbox] {
  appearance: none;
  width: 100%;
  height: 100%;
  border-radius: 0.3vw;
  border: 0.15vw solid #777;
  background: #111;
  cursor: pointer;
  transition: all 0.25s ease;
}

.checkbox-wrapper .custom-check {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.multi-option.selected .checkbox-wrapper input[type=checkbox] {
  background: #70fa00;
  border-color: #70fa00;
}

.multi-option.selected .custom-check::after {
  content: "✔";
  color: #000;
  font-weight: 700; /* Bold for checkmark */
  font-size: 0.8vw;
}

.multi-label {
  flex: 1;
  line-height: 1.3;
  font-weight: 500; /* Medium weight for multi-label */
}

.multi-buttons {
  display: flex;
  justify-content: center; /* Center buttons horizontally */
  gap: 2vw; /* Spacing between buttons */
  margin: 3vw auto 2vw; /* Add top and bottom margin for spacing */
  padding-bottom: 1vw; /* Extra padding to avoid sticking to bottom */
}

.multi-buttons button {
  font-size: 1.2vw;
  font-weight: 600; /* Semi-bold for buttons */
  padding: 0.8vw 2vw;
  width: auto; /* Allow buttons to size based on content */
  min-width: 15vw; /* Minimum width for consistency */
  border-radius: 0.5vw;
  text-align: center;
  background: #70fa00;
  color: black;
  cursor: pointer;
  transition: all 0.25s ease;
}
.multi-buttons button:disabled {
  background: #666;
  cursor: not-allowed;
}
.multi-buttons button:hover:not(:disabled) {
  background: rgb(93.7216, 209.2, 0);
}
.multi-buttons button i {
  font-size: 1vw;
  margin-left: 0.5vw;
}

#slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 0.8vw;
  background: #222;
  border-radius: 1vw;
  margin: 2vw 0;
}
#slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1.6vw;
  height: 1.6vw;
  background: #70fa00;
  border-radius: 50%;
  cursor: grab;
}
#slider::-moz-range-thumb {
  width: 1.6vw;
  height: 1.6vw;
  background: #70fa00;
  border-radius: 50%;
  cursor: grab;
}

.slider-label {
  font-size: 1.1vw;
  font-weight: 500; /* Medium weight for slider labels */
  text-align: center;
  color: #70fa00;
}

.input-container {
  margin-left: 0 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  margin-left: 1vw;
}
.input-container #input-field {
  width: 50%;
  padding: 0.8vw;
  font-size: 1.2vw;
  font-weight: 500; /* Medium weight for input */
  text-align: center;
  background: #1e1e1e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5vw;
  color: #fff;
  transition: border-color 0.25s ease;
}
.input-container #input-field:focus {
  border-color: #70fa00;
  outline: none;
}
.input-container .input-unit {
  font-size: 1.1vw;
  font-weight: 500; /* Medium weight for input unit */
  color: #fff;
}

.navigation {
  display: flex;
  justify-content: center;
  margin-top: 2vw;
}

button {
  font-size: 1.2vw;
  font-weight: 600; /* Semi-bold for buttons */
  padding: 0.8vw 2vw;
  border: none;
  border-radius: 0.5vw;
  background: #70fa00;
  color: black;
  cursor: pointer;
  transition: all 0.25s ease;
}
button:disabled {
  background: #666;
  cursor: not-allowed;
}
button:hover:not(:disabled) {
  background: rgb(93.7216, 209.2, 0);
}

.result-page {
  display: none;
  width: 100vw;
  min-height: 100vh;
  padding: 5vw;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #1a1a1a;
}

.result-page.visible {
  display: flex;
}

@media (max-width: 800px) {
  .quiz-header {
    font-size: clamp(16px, 5vw, 20px);
    font-weight: 600; /* Consistent semi-bold */
    padding: 3vw 0;
  }
  .quiz-section {
    padding-top: 18vw;
    width: 100%;
  }
  .privacy-consent {
    margin-top: 30vw;
    width: 90vw;
    padding: 6vw;
    border-radius: 3vw;
  }
  .privacy-consent h3 {
    font-size: clamp(18px, 6vw, 24px);
    font-weight: 600; /* Consistent semi-bold */
  }
  .privacy-consent p {
    font-size: clamp(14px, 4vw, 16px);
    font-weight: 500; /* Consistent medium weight */
    margin-bottom: 5vw;
  }
  .privacy-consent .privacy-label {
    flex-direction: row;
    gap: 3vw;
  }
  .privacy-consent .privacy-label input {
    width: 6vw;
    height: 6vw;
  }
  .privacy-consent .privacy-label span {
    font-size: clamp(14px, 4vw, 16px);
    font-weight: 500; /* Consistent medium weight */
  }
  .privacy-consent button {
    width: 80vw;
    font-size: clamp(16px, 5vw, 18px);
    font-weight: 600; /* Consistent semi-bold */
    padding: 3vw;
    border-radius: 2vw;
  }
  .progress-bar {
    width: 90vw;
    height: 2vw;
    border-radius: 1vw;
    margin-bottom: 6vw;
  }
  .quiz-container {
    width: 92vw;
    padding: 5vw;
    border-radius: 2vw;
    margin: 0 auto;
  }
  .section-title {
    font-size: clamp(16px, 5vw, 20px);
    font-weight: 600; /* Consistent semi-bold */
    margin-bottom: 4vw;
  }
  .question,
  .question-text,
  .question-input {
    font-size: clamp(14px, 4.5vw, 18px);
    font-weight: 500; /* Consistent medium weight */
    margin-bottom: 5vw;
  }
  .options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3vw;
  }
  .option-card {
    padding: 4vw 2vw;
    border-radius: 3vw;
    transition: all 0.25s ease;
  }
  .option-card .option-image img {
    width: 28vw;
    margin-bottom: 2vw;
    border-radius: 2vw;
    object-fit: contain;
  }
  .option-card .option-text {
    font-size: clamp(12px, 3.8vw, 16px);
    font-weight: 500; /* Consistent medium weight */
  }
  .option-card.selected {
    border-color: #70fa00;
    background: rgba(112, 250, 0, 0.15);
    box-shadow: 0 0 2vw rgba(112, 250, 0, 0.4);
  }
  .text-options-container {
    flex-direction: column;
    gap: 3vw;
    align-items: center;
  }
  .text-option {
    min-width: 70vw;
    max-width: 90vw;
    padding: 3vw;
    border-radius: 5vw;
  }
  .text-option input[type=radio] {
    width: 6vw;
    height: 6vw;
    border: 0.5vw solid #555;
  }
  .text-option input[type=radio]:checked::after {
    width: 3vw;
    height: 3vw;
  }
  .text-option label {
    padding: 2vw;
    font-size: clamp(12px, 4vw, 16px);
    font-weight: 500; /* Consistent medium weight */
  }
  .multi-buttons {
    flex-direction: column;
    gap: 3vw;
    margin: 8vw auto 6vw;
    padding-bottom: 3vw;
  }
  .multi-buttons button {
    width: 80vw;
    font-size: clamp(14px, 4.5vw, 16px);
    font-weight: 600; /* Consistent semi-bold */
    padding: 3vw 4vw;
    border-radius: 2vw;
  }
  .multi-buttons button i {
    font-size: clamp(12px, 4vw, 14px);
    margin-right: 1vw;
  }
  #slider {
    -webkit-appearance: none;
    appearance: none;
    width: 80vw;
    height: 3vw;
    background: #222;
    border-radius: 1.5vw;
    margin: 6vw auto;
    touch-action: none;
  }
  #slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 8vw;
    height: 8vw;
    background: #70fa00;
    border-radius: 50%;
    border: 0.5vw solid #111;
    box-shadow: 0 0 2vw rgba(0, 0, 0, 0.5);
    cursor: grab;
    transition: transform 0.2s ease;
  }
  #slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
    cursor: grabbing;
  }
  #slider::-moz-range-thumb {
    width: 8vw;
    height: 8vw;
    background: #70fa00;
    border-radius: 50%;
    border: 0.5vw solid #111;
    box-shadow: 0 0 2vw rgba(0, 0, 0, 0.5);
    cursor: grab;
    transition: transform 0.2s ease;
  }
  #slider::-moz-range-thumb:active {
    transform: scale(1.2);
    cursor: grabbing;
  }
  #slider:focus {
    outline: none;
  }
  .slider-label {
    font-size: clamp(14px, 4.8vw, 18px);
    font-weight: 500; /* Consistent medium weight */
    margin-top: 4vw;
    text-align: center;
    color: #70fa00;
  }
  .input-container {
    flex-direction: row;
    gap: 2vw;
    margin-left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .input-container #input-field {
    width: 60vw;
    padding: 2.5vw;
    font-size: clamp(14px, 4.5vw, 16px);
    font-weight: 500; /* Consistent medium weight */
    border-radius: 2vw;
    text-align: center;
  }
  .input-container .input-unit {
    font-size: clamp(12px, 4vw, 16px);
    font-weight: 500; /* Consistent medium weight */
  }
  button {
    font-size: clamp(14px, 4.5vw, 16px);
    font-weight: 600; /* Consistent semi-bold */
    padding: 3vw 2vw;
    width: 30vw;
    text-align: center;
    border-radius: 2vw;
    margin: 4vw auto 0;
  }
  .navigation {
    flex-direction: column;
    gap: 3vw;
    justify-content: center;
  }
  .multi-select-container {
    grid-template-columns: 1fr;
    gap: 4vw;
  }
  .multi-option {
    padding: 4vw 5vw;
    font-size: clamp(12px, 4vw, 16px);
    font-weight: 500; /* Consistent medium weight */
    border-radius: 3vw;
    gap: 3vw;
  }
  .multi-option .checkbox-wrapper {
    width: 6vw;
    height: 6vw;
  }
  .multi-option.selected {
    background: rgba(112, 250, 0, 0.1);
    box-shadow: 0 0 3vw rgba(112, 250, 0, 0.35);
    transform: scale(1.02);
  }
  .multi-option.selected .custom-check::after {
    font-size: clamp(10px, 3.5vw, 14px);
    font-weight: 700; /* Bold for checkmark */
  }
  input, select, textarea {
    font-size: clamp(14px, 4.5vw, 16px);
    font-weight: 500; /* Consistent medium weight */
  }
  #input-field {
    font-size: clamp(14px, 4.5vw, 16px);
    font-weight: 500; /* Consistent medium weight */
  }
  .input-container {
    margin-left: 0;
  }
}
html, body {
  overflow-x: hidden;
}

/*# sourceMappingURL=quiz.css.map */
