@import url("https://fonts.googleapis.com/css?family=Montserrat:100,200,300,400,500,700,900&display=swap");
* {
  font-family: Montserrat;
}

.heading .jumbotron {
  background: none !important;
}

#quiz {
  top: -15%;
  margin: -44px 50px 0px;
  position: relative;
  width: calc(100% - 100px);
}

#quiz h1 {
  color: #FAFAFA;
  font-weight: 600;
  font-size: 36px;
  text-transform: uppercase;
  text-align: left;
  line-height: 44px;
}

#quiz button {
  float: left;
  margin: 8px 0px 0px 8px;
  padding: 4px 8px;
  background: black;
  color: white;
  font-size: 14px;
  cursor: pointer;
  outline: none;
  border: none;
  padding: 5px 10px;
}

#quiz button:hover {
  background: #36a39c;
  color: #FFF;
}

#quiz button:disabled {
  opacity: 0.5;
  background: #000000;
  color: white;
  cursor: default;
  border: none;
  padding: 5px 10px;
}

#question {
  padding: 20px;
  background: #FAFAFA;
  text-align: center;
}

#question h2 {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 20px;
}

#question input[type=radio] {
  display: none;
}

#question label {
  display: inline-block;
  margin: 4px;
  padding: 8px;
  background: #007bff;
  color: white;
  width: calc(50% - 8px);
  min-width: 50px;
  cursor: pointer;
}

#question label:hover {
  background: #007bff;
}

#question input[type=radio]:checked + label {
  background: #ffbb29;
  color: #474747;
}

#quiz-results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: 44px;
  left: 0px;
  background: #FAFAFA;
  width: 100%;
  height: calc(100% - 44px);
}

#quiz-results-message {
  display: block;
  color: #00403C;
  font-size: 20px;
  font-weight: bold;
  border: none;
}

#quiz-results-score {
  display: block;
  color: #31706c;
  font-size: 20px;
  border: none;
}

#quiz-results-score b {
  color: #00403C;
  font-weight: 600;
  font-size: 20px;
}

#quiz-retry-button {
  float: left;
  margin: 8px 0px 0px 8px;
  padding: 4px 8px;
  background: #007bff;
  color: #00403C;
  font-size: 14px;
  cursor: pointer;
  outline: none;
}

.ques .jumbotron {
  background: white;
}
/*# sourceMappingURL=main.css.map */