.quiz-step {
  font-family: inherit !important;
  color: #000;
  line-height: 1.3 !important;
}

/**
* Quiz questions side (left)
*/
.quiz-questions {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
}

.quiz-header {
  padding: 20px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.quiz-title-md {
  font-size: 18px;
  opacity: 0.5;
}

.quiz-question-title {
  font-size: 32px;
  font-weight: 500;
}

.quiz-answers {
  margin: 10px 0;
  padding: 40px 30px;
}

.quiz-radio-checkbox {
  position: relative;
  width: 100%;
  margin-top: 30px;
  cursor: pointer;
  height: 100%;
  margin: 0;
}

.quiz-radio-checkbox:hover span {
  border-color: rgba(239, 206, 54, 0.75);
}

.quiz-radio-checkbox input:checked + span {
  border-color: rgba(239, 206, 54, 0.75);
}

.quiz-radio-checkbox input:checked + span::before {
  opacity: 1;
}

.quiz-radio-checkbox input:checked + span::after {
  opacity: 1;
}

.quiz-radio-checkbox input {
  position: absolute;
  opacity: 0;
}

.quiz-radio-checkbox span {
  height: 100%;
  position: relative;
  display: block;
  width: 100%;
  position: relative;
  -webkit-animation: all 0.3s ease;
          animation: all 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px solid rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.quiz-radio-checkbox span::before {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 31px;
  width: 31px;
  content: "";
  z-index: 101;
  background: #fff;
  border: 4px solid #efce36;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}

.quiz-radio-checkbox span::after {
  position: absolute;
  top: 18px;
  right: 18px;
  height: 15px;
  width: 15px;
  content: "";
  z-index: 101;
  border-radius: 100%;
  background: #efce36;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0;
}

.quiz-radio-row {
  margin-top: 0;
}

.quiz-radio-row span {
  border: 1px solid rgba(0, 0, 0, 0.25);
  position: relative;
  padding-left: 30px;
}

.quiz-radio-row span::before {
  position: absolute;
  top: 50%;
  left: 10px;
  content: "";
  width: 20px;
  height: 20px;
  background: #fff;
  opacity: 0.2;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.quiz-radio-row input:checked + span::after {
  position: absolute;
  left: 13px;
  top: 50%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 5px;
  height: 5px;
  background: #f2d863;
  opacity: 0.2;
}

.quiz-answer-pic {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f3f3f3;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.quiz-answer-title {
  font-weight: 400;
  font-size: 16px;
  padding: 20px 0 20px 10px;
}

.quiz-question-title-sm {
  font-size: 20px;
}

.quiz-answers-sm {
  padding: 20px;
}

.quiz-radio-circle {
  position: relative;
  cursor: pointer;
}

.quiz-radio-circle input {
  opacity: 0;
  position: absolute;
}

.quiz-radio-circle .quiz-answer-title {
  position: relative;
  padding: 0 0 0 30px;
}

.quiz-radio-circle .quiz-answer-title::after {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 100%;
  border: 1px solid #deb812;
  opacity: 0.5;
}

.quiz-radio-circle input:hover + span .quiz-answer-title::before {
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #deb812;
  opacity: 0.7;
}

.quiz-radio-circle input:checked + span .quiz-answer-title::before {
  position: absolute;
  top: 50%;
  left: 5px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background: #deb812;
  opacity: 1;
}

.quiz-radio-circle input:checked + span .quiz-answer-title::after {
  opacity: 1;
}

.quiz-footer {
  padding: 10px 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.quiz-progress {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-right: 25px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.quiz-progressbar {
  position: relative;
  background: #f3f3f3;
  width: 100%;
  height: 7px;
  border-radius: 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 10px;
}

.quiz-progressbar-current {
  width: 25%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background: rgba(239, 206, 54, 0.75);
}

.b-pform__step[data-pform-step="1"] .quiz-progressbar-current {
  width: 0%;
}

.b-pform__step[data-pform-step="2"] .quiz-progressbar-current {
  width: 20%;
}

.b-pform__step[data-pform-step="3"] .quiz-progressbar-current {
  width: 40%;
}

.b-pform__step[data-pform-step="4"] .quiz-progressbar-current {
  width: 60%;
}

.b-pform__step[data-pform-step="5"] .quiz-progressbar-current {
  width: 80%;
}

.b-pform__step[data-pform-step="6"] .quiz-progressbar-current {
  width: 99%;
}

.b-pform__step[data-pform-step="7"] .quiz-progressbar-current {
  width: 100%;
}

.quiz-progressbar-info {
  opacity: 0.4;
  font-size: 14px;
  margin-top: 10px;
}

.btn-quiz {
  position: relative;
  display: inline-block;
  cursor: pointer;
  border-radius: 100px;
  border: 0;
  -webkit-animation: all 0.3s ease;
          animation: all 0.3s ease;
  padding: 10px 30px;
  overflow: hidden;
  -webkit-box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.15);
}

.btn-quiz:before {
  content: "";
  width: 100%;
  height: 100%;
  background: -o-linear-gradient(340deg, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0.95) 25%, rgba(255, 255, 255, 0) 35%);
  background: linear-gradient(110deg, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0.95) 25%, rgba(255, 255, 255, 0) 35%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-animation: bt 4.5s linear infinite;
          animation: bt 4.5s linear infinite;
}

.btn-quiz-next {
  background: rgba(239, 206, 54, 0.75);
  margin-left: 1em;
}

.btn-quiz-next:hover {
  background: #efce36;
}

.btn-quiz-back {
  background: rgba(0, 0, 0, 0.05);
}

.btn-quiz-back:hover {
  background: rgba(0, 0, 0, 0.1);
}

@-webkit-keyframes bt {
  0% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  16% {
    opacity: 1;
    -webkit-transform: translate(35%, 0);
            transform: translate(35%, 0);
  }
  22% {
    opacity: 0.5;
    -webkit-transform: translate(55%, 0);
            transform: translate(55%, 0);
  }
  40% {
    -webkit-transform: translate(120%, 0);
            transform: translate(120%, 0);
  }
  100% {
    opacity: 0.35;
    -webkit-transform: translate(120%, 0);
            transform: translate(120%, 0);
  }
}

@keyframes bt {
  0% {
    opacity: 0.1;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  16% {
    opacity: 1;
    -webkit-transform: translate(35%, 0);
            transform: translate(35%, 0);
  }
  22% {
    opacity: 0.5;
    -webkit-transform: translate(55%, 0);
            transform: translate(55%, 0);
  }
  40% {
    -webkit-transform: translate(120%, 0);
            transform: translate(120%, 0);
  }
  100% {
    opacity: 0.35;
    -webkit-transform: translate(120%, 0);
            transform: translate(120%, 0);
  }
}

/** *
* Quiz assitant style's (right block)
*/
.quiz-assistant-box {
  background: #f3f3f3;
  height: 100%;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.quiz-assistant-person {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.quiz-assistant-sale {
  position: relative;
  padding: 20px 30px;
  background: #f2d863;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
  border: 1px solid #deb812;
}

.quiz-assistant-sale-percent {
  font-weight: bold;
}

.quiz-assistant-pic {
  width: 100px;
  border-radius: 100%;
  position: relative;
}

.quiz-assistant-pic::before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  background: green;
  border: 2px solid #fff;
  bottom: 6px;
  right: 6px;
  border-radius: 100%;
}

.quiz-assistant-pic img {
  border-radius: 100%;
}

.quiz-assistant-title {
  margin-left: 10px;
}

.quiz-assistant-name {
  font-weight: bold;
}

.quiz-assistant-desc {
  opacity: 0.7;
  font-size: 14px;
}

.quiz-assistant-text {
  background: #fff;
  color: #000;
  -webkit-box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.375em 0.675em rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 10px;
  margin-top: 1.75em;
  position: relative;
  font-size: 14px;
}

.quiz-assistant-text::after {
  position: absolute;
  left: 40px;
  top: -20px;
  border: 10px solid transparent;
  border-bottom: 10px solid #fff;
  content: "";
}

.quiz-present {
  border: 5px solid #fff;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  margin-top: 1rem;
  background: -o-linear-gradient(119deg, #c2a522, #d19e1e);
  background: linear-gradient(331deg, #c2a522, #d19e1e);
  border: 1px solid #af9118;
}

.quiz-present-pic {
  width: 70px;
}

.quiz-present-title {
  margin-left: 10px;
  font-weight: bold;
  opacity: 0.9;
  text-align: right;
  font-weight: 400;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-transform: uppercase;
  font-weight: bold;
  color: #fff;
  font-size: 14px;
}

.quiz-present-boxtitle {
  font-weight: bold;
  margin: 40px 0 0 0;
  font-size: 20px;
  text-transform: uppercase;
  opacity: 0.7;
}

/**
* QUiz final step
*/
.quiz-final-title {
  font-size: 24px;
  text-align: center;
}

.quiz-final-subtitle {
  font-size: 18px;
  opacity: 0.5;
  text-align: center;
}

.quiz-form-subtitle {
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.7;
  font-size: 14px;
  font-weight: bold;
  margin-top: 20px;
}

.quiz-form-input {
  padding: 20px 10px;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.26);
  width: 100%;
}

.btn-quiz-final {
  background-color: #efce36 !important;
  -webkit-box-shadow: 0 3px 10px 0 rgba(239, 206, 54, 0.5);
          box-shadow: 0 3px 10px 0 rgba(239, 206, 54, 0.5);
  border-radius: 4px;
  width: 100%;
  padding: 20px;
  margin-top: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.quiz-final,
.quiz-form {
  padding: 0 20px;
}

.quiz-final .quiz-assistant-sale,
.quiz-form .quiz-assistant-sale {
  margin-top: 20px;
}

.quiz-final .quiz-present-boxtitle,
.quiz-form .quiz-present-boxtitle {
  margin-top: 0;
}

.iexmodal[data-iexmodal-id='id-iexform-quiz'] .iexmodal-inner {
  padding: 0;
}

@media (max-width: 992px) {
  .quiz-assistant-text {
    display: none;
  }
}

@media (max-width: 780px) {
  .quiz-answer-pic {
    display: none;
  }
  .quiz-assistant-box {
    display: none;
  }
  .quiz-question-title {
    font-size: 24px;
  }
  .quiz-title-md {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .quiz-footer {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .quiz-buttons {
    width: 100%;
    margin-top: 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .quiz-progress {
    width: 100%;
    padding: 0;
    margin-top: 20px;
  }
  .quiz-answers, .quiz-header, .quiz-footer {
    padding: 15px 15px;
  }
}
