* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
}

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type="checkbox"],
  input[type="radio"] {
    -webkit-appearance: none;
    -moz-appearance: none;
  }
}

button {
  background: none;
  border: 2px solid white;
  color: white;
  text-transform: uppercase;
  padding: 0.6em 1.2em;
  border-radius: 2em;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-weight: bold;
  letter-spacing: 0.05em;
}

button:focus {
  outline: none;
}

button:hover {
  background: #9c8ab9;
}

button:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.options, .info {
  background: #855fc2;
  color: white;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10vh;
}

.options {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translateY(calc(-10vh - 10px));
          transform: translateY(calc(-10vh - 10px));
  width: 100%;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  -webkit-box-shadow: #281547 0 0 10px;
          box-shadow: #281547 0 0 10px;
}

.options input:focus {
  outline: none;
}

.options .check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.options input[type="checkbox"] {
  width: 1.5rem;
  height: 1.5rem;
  border: 2px solid white;
  margin-right: 0.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  outline: none;
}

.options input[type="checkbox"]:focus {
  outline: none;
}

.options input[type="checkbox"]:checked {
  background: white;
}

.options input[type="checkbox"]:checked::after {
  content: '';
  background: #855fc2;
  position: absolute;
  left: 11px;
  height: 12px;
  width: 3px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.options input[type="checkbox"]:checked::before {
  content: '';
  background: #855fc2;
  position: absolute;
  height: 6px;
  width: 3px;
  left: 5px;
  top: 8px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.options.show {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.info .category {
  font-weight: bold;
}

.info .category::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
  display: inline-block;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  font-weight: normal;
  margin: 0 0.5em;
}

.info .category:first-of-type {
  margin-left: 0.5em;
}

.info .category:last-of-type::after {
  display: none;
}

.quiz {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #855fc2;
  height: 90vh;
}

.quiz .card-container {
  width: 100%;
  height: 600px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.quiz .possible-answers {
  height: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.quiz .possible-answers .answer {
  color: white;
  font-weight: bold;
  min-width: 60px;
  height: 60px;
  border-radius: 30px;
  padding: 0 1em;
  border: 2px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 1rem;
  text-transform: uppercase;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}

.quiz .possible-answers .answer:hover {
  background: #9c8ab9;
}

.quiz .possible-answers .answer:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.quiz .possible-answers .active {
  background-color: #9c8ab9;
}

.error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0%;
  left: 0;
  color: white;
  font-size: 4rem;
  font-weight: bold;
  background-color: rgba(133, 95, 194, 0.8);
  text-align: center;
}

.alert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0%;
  left: 0;
  color: white;
  font-size: 4rem;
  font-weight: bold;
  background-color: rgba(133, 95, 194, 0.8);
}

.disappear {
  -webkit-animation: disappear 1.8s cubic-bezier(0.68, -0.01, 0.64, 0.9);
          animation: disappear 1.8s cubic-bezier(0.68, -0.01, 0.64, 0.9);
}

@-webkit-keyframes disappear {
  from {
    opacity: 100%;
  }
  to {
    opacity: 0;
  }
}

@keyframes disappear {
  from {
    opacity: 100%;
  }
  to {
    opacity: 0;
  }
}

@media screen and (max-width: 600px) {
  .quiz {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .quiz .card-container {
    height: 66%;
  }
  .quiz .possible-answers {
    height: 20%;
    max-width: 278px;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 4rem;
  }
  .quiz .possible-answers .answer {
    width: 40px;
    height: 40px;
    margin: 0 0.5rem;
  }
  .error {
    font-size: 2rem;
  }
  .modal-wrapper .modal {
    width: 90%;
    height: 90vh;
  }
}
/*# sourceMappingURL=style.css.map */