.quiz_area {
  padding: 35px 0;
  position: relative;
  display: block;
  background-image: url("/inner-pages-banner/quiz.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  padding: 2rem;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  min-height: 33rem;
  justify-content: center;
}
.quiz_area::after {
  content: "";
  border-bottom: 100px solid #47ee40;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  height: 18rem;
  width: 13rem;
  top: 30%;
  position: absolute;
  z-index: 100;
  left: 2.5rem;
  transform: rotate(90deg);
}
.quiz_area::before {
  content: "";
  border-bottom: 100px solid #47ee40;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  height: 18rem;
  width: 13rem;
  top: 30%;
  position: absolute;
  z-index: 100;
  right: 2.5rem;
  transform: rotate(-90deg);
}
.quiz_area .card_flip {
  transition: transform 0.4s ease-in-out;
  animation: cardFlipAnimation 0.4s ease-in-out forwards;
}
.quiz_area .result_desc {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}
.quiz_area .result_desc .result_desc_p {
  max-width: 80%;
}
.quiz_area .result_desc .result_desc_p .fieldPart {
  text-align: left;
}
.quiz_area .result_desc .result_desc_p .fieldPart .form-item {
  position: relative;
  margin-bottom: 0.9375rem;
}
.quiz_area .result_desc .result_desc_p .fieldPart .form-item input {
  font-size: 0.7rem;
  font-weight: 400;
  color: #fff;
  line-height: 1rem;
  font-family: var(--main-font, "Filson Pro");
  display: block;
  height: 2.8125rem;
  border-radius: 0.3125rem;
  width: 100%;
  background: transparent;
  border: 0.0625rem solid #ccc;
  transition: all 0.3s ease;
  padding: 0 0.9375rem;
  outline: none;
  box-shadow: none;
}
.quiz_area .result_desc .result_desc_p .fieldPart .form-item label {
  position: absolute;
  cursor: text;
  z-index: 2;
  top: 0.8125rem;
  left: 0.625rem;
  background: transparent;
  padding: 0 0.625rem;
  transition: all 0.3s ease;
  font-size: 0.7rem;
  font-weight: 400;
  color: #fff;
  line-height: 1rem;
  font-family: var(--main-font, "Filson Pro");
}
.quiz_area .result_desc .result_desc_p .fieldPart .form-item input:focus + label,
.quiz_area .result_desc .result_desc_p .fieldPart .form-item .has-value + label {
  background-color: #174035;
  color: #c7cfcf;
  top: -0.3125rem;
  font-size: 0.6875rem;
}
.quiz_area .result_desc .result_desc_p .btn-form {
  background-color: #174035;
  color: #fff;
  border: none;
  outline: none;
  height: 2.8125rem;
  border-radius: 0.3125rem;
  width: 33%;
}
.quiz_area .result_desc .result_desc_p .btn-form:disabled,
.quiz_area .result_desc .result_desc_p .btn-form.disabled {
  background-color: #ccc !important;
  color: #666 !important;
  opacity: 0.6;
}
@keyframes cardFlipAnimation {
  0% {
    transform: rotateY(90deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
.quiz_area .question_area {
  position: relative;
  background-color: white;
  padding: 1rem;
  border-radius: 8px;
  width: fit-content;
  min-width: 70vw;
  z-index: 101 !important;
}
.quiz_area .question_area .q_main {
  min-height: 16rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.instantcashimg {
  position: absolute;
  left: 0;
  height: 4rem;
}

@media (max-width: 768px) {
  .quiz_area {
    position: relative;
  }
  .quiz_area::after {
    border-bottom: 35px solid #47ee40;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    height: 11rem;
    width: 11rem;
    top: 30%;
    position: absolute;
    z-index: 100;
    left: 0;
    transform: rotate(90deg);
  }
  .quiz_area::before {
    border-bottom: 35px solid #47ee40;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    height: 11rem;
    width: 11rem;
    top: 30%;
    overflow-x: hidden;
    position: absolute;
    z-index: 100;
    right: 0;
    transform: rotate(-90deg);
  }
  .quiz_area .result_desc .result_desc_p {
    max-width: 95%;
  }
  .instantcashimg {
    display: none;
  }
}
@media (max-width: 998px) {
  .rowMHeight {
    height: 10.2rem;
  }
}
.error {
  margin: 0;
  font-size: 0.6rem !important;
  font-weight: 500 !important;
  color: #f00 !important;
  line-height: 1rem;
}

.dgButton a {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  line-height: 1rem;
  font-family: var(--main-font, "Filson Pro");
  background-color: #004135;
  padding: 0.7rem 1rem;
  border-radius: 0.5rem;
  text-decoration: none !important;
  transition: 300ms;
  height: 2.5rem;
  text-align: center;
  border: 1px solid #004135;
}
.dgButton:hover a {
  font-size: 0.8rem;
  font-weight: 700;
  color: #47ee40;
  line-height: 1rem;
  font-family: var(--main-font, "Filson Pro");
  background-color: #47ee40;
  color: #fff;
  border: 1px solid #fff;
}
