.quiz-wrapper {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.quiz-wrapper p.question-description {
  background: #19286C;
  color: white;
  padding: 25px 20px;
}
#submit{
  display:none;
}

.quiz-wrapper ul.options {
  color: rgb(21,142,223);
  column-count: 4;
  background-color:white;
  position: relative;
  display: inline-block;
  line-height: 20px;
  vertical-align: top;
  width: 300px;
  list-style: none;
  font-weight:normal;
  
  border: 1px solid #19286C;
  text-align: center;
  padding: 0;
  margin: 0;
}

.quiz-wrapper ul.options li {
  border: 1px solid transparent;
  padding: 6px 8px;

}
.quiz-wrapper ul.options li.title {
  background: #19286C;
  color: white;
}
.quiz-wrapper ul.options li.option {
  display: block;
  position: relative;
  z-index: 50;

  font-size: 16px;
}
.quiz-wrapper .answers {
  background-color:white;
  display: inline-block;
  /* width: 500px; */
  font-size:16px;
  
}
.quiz-wrapper .answers .target {
  color: rgb(21,142,223);
  display: inline-block;
  width: 35px;
 border:1px solid gray;
 border-radius:5px;
  margin: 0 3px;
  text-align: center;
}
.quiz-wrapper button[type="submit"] {
  display: block;
  position: relative;
  margin: 10px auto;
  padding: 10px;
  background: #19286C;
  border: none;
  color: white;

}
.lightbox-bg {
  display: none;
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
}
.status {
  display: none;
  position: absolute;
  z-index: 110;
  text-align: center;
  width: 80%;
  top: 220px;
  left: 47px;
}
.status p {
  background: white;
  padding: 30px;
}