.page-template-quizz #primary {
  padding: 16px 0 40px 0;
}

@media (min-width: 767px) {
  .page-template-quizz #primary {
    padding: 50px 0;
  }
}

.page-template-quizz #primary h1 {
  color: #e42221;
  font-weight: bolder;
  margin-bottom: 4px;
}

@media (min-width: 767px) {
  .page-template-quizz #primary h1 {
    margin-bottom: 30px;
  }
}

.page-template-quizz #primary #step {
  width: 100%;
  text-align: center;
  font-size: 20pt;
  margin-top: 20px;
  color: #e42221;
  font-weight: bolder;
}
.page-template-quizz #primary .responses {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 32px;
}

@media (min-width: 767px) {
  .page-template-quizz #primary .responses {
    margin-top: 50px;
  }

  .page-template-quizz #primary .responses button {
    font-size: 1.875rem;
  }
}

.page-template-quizz #primary .responses button {
  min-width: 132px;
  padding: 16px 32px;
  border-radius: 10px;
  border: none;
  font-size: 1.75rem;
  font-weight: bolder;
  color: #e42221;
  border: #e42221 solid 1px;
  cursor: pointer;
  background-color: white;
  transition: all linear 0.2s;
}

@media (hover: hover) {
  .page-template-quizz #primary .responses button:hover {
    background-color: #fde8e9;
  }
}

.page-template-quizz #primary hr {
  margin-top: 30px;
  margin-bottom: 20px;
}
.page-template-quizz #primary .progressbar-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.page-template-quizz #primary .progressbar-wrapper #progressBar {
  width: 50%;
  height: 15px;
  background-color: #fde8e9;
  border-radius: 10px;
  position: relative;
}
.page-template-quizz #primary .progressbar-wrapper #progressBar .innerBar {
  background-color: #e42221;
  border-radius: 10px;
  position: absolute;
  height: 15px;
  left: 0;
  top: 0;
  transition: all ease-in-out 1s;
}

.quizz-icon-wrapper {
  text-align: center;
}

.quizz-icon {
  max-width: 6rem;
  max-height: 6rem;
  margin-bottom: 0.5rem;
}