.quiz-box-wide {
  background: white;
  padding: 50px;
  border-radius: 40px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
  max-width: 1100px;
  margin: auto;
}

.price-item { cursor: pointer; }

@media (min-width: 992px) {
  .quiz-box-wide {
    max-width: 100%;
  }
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.quiz-options label {
  padding: 15px;
  border-radius: 15px;
  border: 1px solid #eee;
  cursor: pointer;
  transition: 0.2s;
}

.quiz-options label:hover {
  background: #f9fafc;
}

.quiz-skip {
  margin-top: 15px;
  font-size: 14px;
  color: #999;
  cursor: pointer;
}

.quiz-skip:hover {
  color: #000;
}

.quiz-progress {
  height: 8px;
  background: #eee;
  border-radius: 10px;
  margin-bottom: 30px;
}

.quiz-progress-bar {
  height: 100%;
  width: 16%;
  background: linear-gradient(72deg, #f7474a, #fe8a4f);
  border-radius: 10px;
  transition: 0.3s;
}

.quiz-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
