/* =========================
   ОБЩИЕ НАСТРОЙКИ
========================= */

body {
  background-color: #f5f6f8;
}

.quiz-block {
  background: #ffffff;
  border-radius: 8px;
  padding: 12px 15px;
  margin-bottom: 16px;
}

/* =========================
   ЗАГОЛОВОК ВОПРОСА
========================= */

.quiz-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}

.quiz-title span:first-child {
  font-size: 16px;
}

/* стрелка */
.quiz-title .arrow::after {
  content: "▼";
  display: inline-block;
  transition: transform 0.3s ease;
}

/* разворот стрелки при открытом collapse */
.quiz-title:not(.collapsed) .arrow::after {
  transform: rotate(180deg);
}

/* =========================
   ВАРИАНТЫ ОТВЕТОВ
========================= */

.option {
  border: 4px solid #dee2e6;
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  height: 100%;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

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

/* выбранный вариант */
.option.active {
  border-color: #edc77f;
  box-shadow: 0 0 0 4px rgba(13,110,253,0.15);
  background-color: #edc77f;
}

/* изображение */
.option img {
  border-radius: 6px;
  margin-bottom: 6px;
}

/* заголовок варианта */
.option-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

/* =========================
   ИКОНКА УВЕЛИЧЕНИЯ
========================= */
.kviz-zoom {
	margin: 5px 0px 0 -170px;
    position: absolute;
	height:20px;
	width:20px;
}


/* =========================
   ИНФОРМАЦИОННАЯ ИКОНКА
========================= */

.info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  font-size: 12px;
  border-radius: 50%;
  background: #212936;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  font-weight: bold;
}

/* всплывающая подсказка */
#info-popup {
  position: absolute;
  display: none;
  max-width: 220px;
  background: #ffffff;
  border: 1px solid #ced4da;
  border-radius: 6px;
  padding: 10px;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 1000;
}

/* =========================
   ПОЛЯ РАЗМЕРОВ
========================= */

.dims {
  margin-top: 12px;
}

.dims input {
  font-size: 14px;
}

/* =========================
   БЛОК ИТОГО
========================= */

.summary {
  background: #ffffff;
  border-radius: 8px;
  padding: 15px;
  margin-top: 20px;
}

.summary h5 {
  margin-bottom: 12px;
}

.summary p {
  margin-bottom: 6px;
  font-size: 14px;
}

/* =========================
   АДАПТАЦИЯ МОБИЛЬНЫЕ
========================= */

@media (max-width: 576px) {
  .quiz-title span:first-child {
    font-size: 15px;
  }

  .option-title {
    font-size: 13px;
  }

  .summary p {
    font-size: 13px;
  }
}
