@charset "utf-8";
/* CSS Document */

.quiz-wrapper {
  padding: 5px;
  text-align:center;
  line-height:1.1;
  margin-bottom:20px;
}
.quiz-wrapper h2{ font-size:1.4rem; margin-bottom:10px;}



/* HIDE TEMPLATE DATA */
.quiz-data {
  display: none;
}

/* PROGRESS */
.progress-bar {
  width: 100%;
  height: 8px;
  background: #eee;
  border-radius: 50px;
  overflow: hidden;
  margin-bottom: 10px;
}

.progress-fill {
  height: 100%;
  width: 0%;
  background: #4caf50;
  transition: width 0.4s ease;
}

.progress-text {
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}

/* QUESTION */
.question {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight:700;
}

/* ANSWERS */
.answers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 5px;
}

.answer-btn {
  padding: 12px;
  border-top: none;
    border-top-color: currentcolor;
  border-top-color: none;
  border-left: none;
    border-left-color: currentcolor;
  border-left-color: none;
  border-right: none;
    border-right-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom: 2px solid #000;
    border-bottom-color: rgb(0, 0, 0);
  border-radius: 8px;
  background: #f1c232;
  color: #000;
  cursor: pointer;
  text-align: center;
  font-size:14px;
  font-weight:700;
}

/* FADE */
.fade-out { opacity: 0; transition: 0.25s ease; }
.fade-in { opacity: 1; transition: 0.25s ease; }

/* LOADER */
.loader {
  display: none;
  text-align: center;
  padding: 30px;
}

.loader-text {
  font-size: 16px;
  margin-top: 10px;
}

/* RESULT */
.result {
  display: none;
  text-align: center;
  background:#fffeeb;
  border:2px solid #02a1ff;
  border-radius: 8px;
  padding:10px;
}

.result img {
  width: 160px;
  margin: 15px 0;
}

.cta {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 16px;
  background: #e53935;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  width:100%;
  text-transform:uppercase;
  font-weight:700;
  font-size:18px;
}
.quiz-top-prod{
	font-weight:700;
  font-size:18px;
	}
	
.loader svg{ width:80px; height:auto;}	


 @media (max-width: 640px) {
      .answers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

    }