/* Start custom CSS for html, class: .elementor-element-9dd8fcd */.quiz-wrapper {
  max-width: 760px;
  margin: 40px auto;
  background: #e6f4e6;
  padding: 45px;
  border-radius: 24px;
  box-shadow: 0 0 30px rgba(0,0,0,0.18);
  font-family: Arial, sans-serif;
  position: relative;
}

.quiz-title { font-size: 34px; font-weight: bold; text-align: center; color: #1b4d1b; margin-bottom: 12px; }
.quiz-subtitle { text-align: center; font-size: 18px; color: #345e34; margin-bottom: 35px; }

.question-slide { display: none; margin-bottom: 35px; }
.question-slide h3 { font-size: 22px; margin-bottom: 22px; color: #1b4d1b; }

.icon { font-size: 44px; text-align: center; margin-bottom: 10px; }

.option {
  background: white;
  border: 2px solid #c4d8c4;
  padding: 18px 20px;
  margin: 14px 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  font-size: 18px;
}
.option:hover { background: #f1f1f1; border-color: #8cb88c; }
.option input { transform: scale(1.45); }

#nextBtn {
  background: #4caf50;
  color: white;
  padding: 16px 36px;
  border: none;
  border-radius: 14px;
  font-size: 20px;
  cursor: pointer;
  margin-top: 25px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#nextBtn:hover { background: #449944; }

.progress-container {
  width: 100%;
  background: #cfe5cf;
  height: 12px;
  border-radius: 8px;
  margin-bottom: 30px;
}
.progress-bar {
  width: 0%;
  height: 100%;
  background: #4caf50;
  border-radius: 8px;
  transition: width .4s ease;
}

.result-box {
  display: none;
  margin-top: 40px;
  padding: 30px;
  border-radius: 18px;
  color: white;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
}
.riesgo-alto { background: #d32f2f; }
.riesgo-medio { background: #ef6c00; }
.riesgo-bajo  { background: #388e3c; }

.result-box button {
  margin-top: 20px;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 20px;
  border: none;
  cursor: pointer;
}/* End custom CSS */