@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
@import '../fonts/icomoon/style.css';
.text-underline {
  text-decoration: underline;
}

.fw-normal {
  font-weight: normal;
}

.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-light, .fw-300 {
  font-weight: 300;
}

.fw-book, .fw-400 {
  font-weight: 400;
}

.fw-medium, .fw-500 {
  font-weight: 500;
}

.fw-semibold, .fw-600 {
  font-weight: 600;
}

.fw-bold, .fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-extrabold, .fw-900 {
  font-weight: 900;
}

.img-responsive {
  max-width: 100%;
  height: auto;
  width: auto;
}

img.alignnone {
  display: block;
}

img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

a img.alignnone {
  display: block;
}

a img.alignright {
  float: right;
  margin: 0 0 1em 1em;
}

a img.alignleft {
  float: left;
  margin: 0 1em 1em 0;
}

a img.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

.animated-all {
  transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}

.ul-plain, .ol-plain {
  list-style: none;
  margin: 0px;
  padding: 0px;
}

.quiz-loading {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 10;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.quiz-loading .preloader {
  width: 50px;
  height: 50px;
  border: 6px solid #eee;
  border-top: 6px solid #ed202c;
  border-radius: 50%;
  animation-name: girar;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -25px;
}
.quiz-loading.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.quiz-loading.anim-out {
  transition: all ease-in-out 0.2s;
}

.quiz-wrapper .quiz-step {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  min-height: 60vh;
}
.quiz-wrapper .quiz-step.on-play {
  position: relative;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.quiz-wrapper .btn {
  border-radius: 10px;
  min-width: 140px;
  padding: 7px 15px;
}
.quiz-wrapper .btn-quiz {
  background-color: #ed202c;
  border: 1px solid #ed202c;
  color: #fff;
}
.quiz-wrapper .btn-quiz:hover {
  background-color: #fff;
  color: #ed202c;
}
.quiz-wrapper .btn-quiz:disabled {
  background-color: #e3e2e2;
  color: #4c4c4c;
  border-color: #e3e2e2;
}
.quiz-wrapper .btn-back, .quiz-wrapper .btn-reset {
  background-color: #e3e2e2;
  color: #4c4c4c;
  border: 1px solid #e3e2e2;
}
.quiz-wrapper .btn-back:hover, .quiz-wrapper .btn-reset:hover {
  background-color: #fff;
  border-color: #4c4c4c;
}
.quiz-wrapper label {
  position: relative;
}
.quiz-wrapper label input {
  position: absolute;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
}
.quiz-wrapper label input:checked + img {
  box-shadow: 0 0 0px 3px #ed202c;
}

@keyframes girar {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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