.template5_v1 {
  font-size: 33px;
  height: 100%;
}

.carousel-inner {
  margin-top: 2%;
}

.template5_v1 .imageContainer {
  position: absolute;
  top: 10px;
}

.template5_v1 .numTxt {
  font-weight: bold;
  position: absolute;
  left: 20px;
  margin-top: 10px;
}

.template5_v1 .optContainer {
  /* display: flex; */
  margin-top: 40px;
  margin-bottom: 40px;
  /* margin-left: 220px; */
}

/*.template5_v1 .opt {margin-right: 30px;font-weight:bold;cursor:pointer;}
*/

.template5_v1 .opt {
  border: 3px solid #36E084;
  padding: 5px 10px;
  border-radius: 15px;
  /* font-weight: bold; */
  margin-right: 15px;
  cursor: pointer;
  background-color: #ffffff;
  color: #000000;
}

.template5_v1 .opt.selected {
  color: #ffffff;
  background-color: #36E084;
}

.template5_v1 .question .ansContainer {
  display: flex;
  /* margin-top: 70px;
  margin-left: 170px; */
  width: 100%;
}

.template5_v1 .question .ansContainer .ans {
  cursor: pointer;
  position: relative;
  background: url("../../assets/images/page/line.png");
  width: 24%;
  height: 55px;
  margin-right: 15px;
  margin-top: -8px;
  text-align: center;
  /* font-weight: bold; */
  line-height: 62px;
  background-position: 0px -15px;
  font-size: 33px;
}

.template5_v1 .question .ansContainer .ans.disable {
  cursor: default;
}

.question {
  margin-bottom: 60px;
  margin-left: 30px;
}

#que_1 .numTxt, #que_4 .numTxt {
  margin-left: 55px;
}

.template5_v1 .showAnswerTickMark, .template5_v1 .showAnswerCrossMark {
  position: absolute;
  top: 40px;
  left: 88px;
  text-align: center;
}

.template5_v1 .showAnswerCrossMark {
  animation-name: crossBlinker;
  animation-duration: 1s;
  opacity: 0;
}

@keyframes crossBlinker {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}