#quiz_main_form {
  font-size: 0.875em;
  font-style: italic;
  font-weight: 300;
}
#quiz_main_form .choices-wrap > li {
  font-size: 1.071em;
  list-style-type: none;
  vertical-align: middle;
  float: left;
  width: 50%;
  color: #FFF;
  position: relative;
}
.ans-desc {
    font-weight: normal;
    border: 1px dashed #c2272d;
    clear: both;
    padding: 5px;
}
#quiz_main_form .choices-wrap > li.total-3 {
	width: 33.33%;
}
#quiz_main_form .choices-wrap > li.total-4 {
	width: 25%;
}
#quiz_main_form ol {
  font-weight: bold;
  margin: 0;
  padding: 0;
}
#quiz_main_form ol li.question-wrap {
	list-style: none;
    max-width: 600px;
    width: 100%;
    position: relative;
    padding-bottom: 30px;
    overflow-y: auto;
    overflow-x: hidden;
}
#quiz_main_form ol li.question-wrap .wrap {
    height: auto;
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 3px solid #FFF;
    position: relative;
    top: 0;
}
img.white {
    width: 100%;
}
img.opacity0 {
    opacity: 0 !important;
}
#quiz_main_form ol li.question-wrap li .wrap {
  height: initial;
  border: 3px solid #FFF;
  border-bottom: 6px solid #FFF;
  position: relative;
}
#quiz_main_form ol .wrap img {
  width: 100%;
}
ul.choices-wrap .wrap img {

	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	
}
#quiz_main_form .choices-wrap > li input {
  margin: 2px 5px;
  padding: 0;
  opacity: 0;
  position: absolute;
  left: 0;
}
#quiz_main_form .choices-wrap > li label {
    display: flex;
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    align-items: center;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    padding: 5px 10px;
}
#quiz_main_form h3 {
	margin: 0;
    color: #FFFEFD;
    position: absolute;
    font-family: 'Lato', sans-serif;
    font-style: normal;
    font-size: 1.8em;
    text-align: center;
	padding: 0 5%
}
#quiz_main_form ol ul {
    font-weight: normal;
    position: relative;
    padding: 0;
    left: -3px;
    margin: 0 auto;
    width: 101%;
}
#quiz_main_form .button {
    background-color: #263b8e;
    border: medium none;
    color: #ffffff;
    cursor: pointer;
    font-size: 1.5em;
    font-weight: normal;
    margin: 0 5px;
    padding: 5px 10px;
    text-transform: uppercase;
}
.quiz-pop {
  max-width: 600px;
  width: 100%;
  padding-top: 10px;
}
.quiz-pop .pop-content {
    height: 495px;
    margin-bottom: 30px;
}

/* custom */
.wrap .card__back{
    background-color: #93989c;
}

/**
 * The cards
 *
 * Each card plays home to a front and back. I've set them up as squares here
 * by using the padding technique, but you may set them up in any dimensions
 * you like based on your site design.
 */
.card {
}

.card:nth-child(1) {

}

.card:nth-child(2),
.card:nth-child(3) {
}

/* card fronts and backs */
.card__front,
.card__back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.card__front,
.card__back {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.3s;
          transition: transform 0.3s;
}

.card__front {
}

.card__back {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

/* card text */
.card__text {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 20px;
  color: #fff;
  font-family: "Roboto Slab", serif;
  line-height: 20px;
}

/* hover effect */
.card.effect__hover:hover .card__front {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.card.effect__hover:hover .card__back {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}

.card.effect__random.flipped .card__back {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}
/* click effect */
.card.selected .card__front {
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.card.selected .card__back {
  -webkit-transform: rotateY(0);
          transform: rotateY(0);
}