.rapidQuiz {
  margin-bottom: 60px;
}
@media (min-width: 850px) {
  .rapidQuiz {
    margin-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  .rapidQuiz {
    margin-bottom: 100px;
  }
}

.rapidQuiz__container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1400px) {
  .rapidQuiz__container {
    max-width: 1300px;
  }
}

.rapidQuiz__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.rapidQuiz__scoreCard {
  display: flex;
  justify-content: center;
  gap: 2px;
  border-radius: 8px;
}
.rapidQuiz__scoreCard__item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #ffffff;
  height: 90px;
  width: 139px;
}
.rapidQuiz__scoreCard__item:nth-child(1) {
  background-color: #A3CB38;
  border-radius: 8px 0 0 8px;
}
.rapidQuiz__scoreCard__item:nth-child(2) {
  background-color: #f85829;
  border-radius: 0 8px 8px 0;
}
.rapidQuiz__scoreCard__item .marks {
  font-size: 32px;
  font-weight: 600;
}
.rapidQuiz__count {
  display: flex;
  justify-content: center;
}
.rapidQuiz__count__inner {
  position: relative;
  width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90px;
  border-radius: 8px;
  overflow: hidden;
  background-color: #18333b;
}
.rapidQuiz__count__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(0, 98, 102, 0.95);
  transition: width 0.5s;
}
.rapidQuiz__count__text {
  position: relative;
  font-weight: 500;
  font-size: 24px;
  color: #ffffff;
}
.rapidQuiz__btn {
  display: flex;
  justify-content: center;
  padding-top: 20px;
}
.rapidQuiz__btn__start {
  background-color: #1e90ff;
  color: #ffffff;
  cursor: pointer;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 500;
  padding: 14px 28px;
  transition: background-color 0.5s;
}
@media (min-width: 1200px) {
  .rapidQuiz__btn__start {
    padding: 18px 32px;
    font-size: 20px;
  }
}
@media (min-width: 1200px) {
  .rapidQuiz__btn__start:hover {
    background-color: #f85829;
  }
}
.rapidQuiz__gameBoard__item {
  display: none;
}
.rapidQuiz__gameBoard__title {
  background-color: #006266;
  color: #ffffff;
  text-align: center;
  padding: 12px 20px;
  font-size: 24px;
  line-height: 1.4;
  border-radius: 10px;
  margin-bottom: 50px;
}
@media (min-width: 1200px) {
  .rapidQuiz__gameBoard__title {
    font-size: 28px;
    padding: 15px 20px;
  }
}
.rapidQuiz__gameBoard__pic {
  width: 100%;
  max-width: 320px;
  padding: 5px;
  border: 1px solid #ecf0f1;
  margin: 0 auto 30px;
}
@media (min-width: 850px) {
  .rapidQuiz__gameBoard__pic {
    margin-bottom: 40px;
    max-width: 360px;
  }
}
@media (min-width: 1200px) {
  .rapidQuiz__gameBoard__pic {
    margin-bottom: 50px;
    max-width: 400px;
  }
}
.rapidQuiz__gameBoard__pic__img {
  width: 100%;
  height: auto;
}
.rapidQuiz__gameBoard__options {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 850px) {
  .rapidQuiz__gameBoard__options {
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
  }
}
.rapidQuiz__gameBoard__options__item {
  font-size: 18px;
  text-align: center;
  padding: 14px 20px;
  border-radius: 10px;
  font-weight: 500;
  background-color: #ecf0f1;
  cursor: pointer;
  transition: background-color 0.5s, color 0.5s;
}
@media (min-width: 1200px) {
  .rapidQuiz__gameBoard__options__item {
    font-size: 22px;
    padding: 20px;
  }
}
@media (min-width: 1200px) {
  .rapidQuiz__gameBoard__options__item:hover {
    background-color: #1e90ff;
    color: #ffffff;
  }
}
.rapidQuiz__gameBoard__options__item.correct {
  background-color: #A3CB38;
  color: #ffffff;
}
.rapidQuiz__gameBoard__options__item.wrong {
  background-color: #e74c3c;
  color: #ffffff;
}
.rapidQuiz__gameBoard__options__item.disabled {
  pointer-events: none;
}
.rapidQuiz .thankYou {
  display: none;
}
.rapidQuiz .thankYou__text {
  color: #006266;
  font-size: 28px;
  padding: 30px 0 20px;
  text-align: center;
  font-weight: 500;
}
@media (min-width: 850px) {
  .rapidQuiz .thankYou__text {
    font-size: 36px;
  }
}
@media (min-width: 1200px) {
  .rapidQuiz .thankYou__text {
    font-size: 44px;
  }
}
.rapidQuiz .thankYou__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.rapidQuiz .thankYou__btns__link {
  font-size: 16px;
  font-weight: 500;
  background-color: #1e90ff;
  color: #ffffff;
  border-radius: 8px;
  padding: 14px 24px;
  transition: background-color 0.5s;
}
@media (min-width: 1200px) {
  .rapidQuiz .thankYou__btns__link:hover {
    background-color: #A3CB38;
  }
}

.countdownQuestion {
  display: none;
  position: fixed;
  bottom: 20px;
  left: calc(50% - 25px);
  z-index: 20;
  width: 50px;
  height: 50px;
  overflow: hidden;
}
.countdownQuestion__num {
  border: 2px solid #f85829;
  background-color: #ffffff;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__goto-top.visible {
  opacity: 0;
  pointer-events: none;
}

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