
.quizz_theme1.wrapper {
  position: relative;
  max-width: 1080px;
  margin: 50px auto;
}

.quiz_modal .quizz_theme1.wrapper {
  margin: 0px auto;
}

.quizz_theme1 .wizard {
  max-width: 100%;
  margin: 0 auto;
}
.quizz_theme1 .wizard__header {
  position: relative;
  color: #FFF;
  padding: 50px;
  border-radius: 5px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  text-align: center;
  height: 100px;
  background-color: #4D637B;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.quizz_theme1 .wizard__header-content {
  position: absolute;
  width: 100%;
  padding: 0 50px;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}
.quizz_theme1 .wizard__header-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*background: rgba(77, 99, 123, 0.6);*/
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.quizz_theme1 .wizard__title {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 0;
}
.quizz_theme1 .wizard__subheading {
  text-transform: uppercase;
  margin: 0;
  font-size: 0.8rem;
  font-weight: 100;
  letter-spacing: 2px;
}
.quizz_theme1 .wizard__subheading span {
  font-weight: 600;
}
.quizz_theme1 .wizard__steps {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transform: translateY(50%);
  z-index: 10;
}
.quizz_theme1 .wizard__footer {
  padding: 0 50px 50px;
  border-radius: 5px;
}
.quizz_theme1 .wizard__content {
  background: #FFF;
  box-shadow: 0px 0px 10px #c5c5c5;
  border-radius: 5px;
}
.quizz_theme1 .wizard__congrats-message {
  color: #676767;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.quizz_theme1 .wizard.completed .wizard__content {
  animation: gettingOut 2s cubic-bezier(1, -0.71, 1, 1.16) forwards;
}
.quizz_theme1 .wizard.completed .wizard__congrats-message {
  animation: fadeIn 2s cubic-bezier(1, -0.71, 1, 1.16) forwards;
}

.quizz_theme1 .line {
  position: absolute;
  top: 20px;
  left: 50%;
  z-index: -1;
  height: 6px;
  transition: all 0.5s ease;
}
.quizz_theme1 .line.-start {
  left: 0%;
  background: #5094de;
  width: 50%;
}
.quizz_theme1 .line.-end {
  left: 50%;
  background: #5094de;
  width: 50%;
}
.quizz_theme1 .line.-background {
  background: #c3c3c3;
  width: 100%;
}
.quizz_theme1 .line.-progress {
  background: #5094de;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
}
.quizz_theme1 .line.-in-progress {
  transform: scaleX(1);
}

.quizz_theme1 .panels {
  position: relative;
  overflow: hidden;
}

.quizz_theme1 .panel {
  /*position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s all;
  padding: 50px;*/
  padding: 50px;
}

.quizz_theme1 .panel__header {
  margin-bottom: 30px;
}
.quizz_theme1 .panel__title {
  font-size: 1.5rem;
  line-height: 2rem;
  margin: 0;
}
.quizz_theme1 .panel__subheading {
  font-size: 0.9rem;
  line-height: 1.2rem;
  margin: 0;
}
.quizz_theme1 .panel.movingOutBackward {
  transform: translateX(-620px);
}
.quizz_theme1 .panel.movingOutFoward {
  transform: translateX(620px);
}
.quizz_theme1 .panel.movingIn {
  transform: translateX(0);
}

.quizz_theme1 .steps {
  position: relative;
  display: flex;
  flex: 0 1 auto;
  color: #fff;
}

.quizz_theme1 .step {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  box-sizing: border-box;
  text-align: center;
  border-radius: 5px;
}
.quizz_theme1 .step__content {
  position: relative;
  z-index: 2;
}
.quizz_theme1 .step__number {
font-size: 0.7rem;
    color: #676767;
    background: #FFF;
    font-weight: 400;
    width: 40px;
    height: 40px;
    line-height: 30px;
    margin: 0 auto;
    border-radius: 50%;
    border: 5px solid #c3c3c3;
    transition: opacity 0.5s;
    opacity: 1;
    z-index: 5;
    text-align: center;
}

.quizz_theme1 .step__number span{
    position: relative;
    margin-left: -35px;
    width: 100px;
    text-align: center;
    display: block;
}
.quizz_theme1 .step__current {
    color: #75b2f5;
}
    
    
.quizz_theme1 .step.-completed .step__number {
  opacity: 0.9;
}
.quizz_theme1 .step.-completed .checkmark {
  z-index: 0;
  animation: fill 0.4s ease-in-out forwards, scale 0.3s ease-in-out 0.6s both;
  opacity: 0.4;  
}
.quizz_theme1 .step.-completed .checkmark__check {
  animation: stroke 0.5s linear 0.4s forwards;
}
.quizz_theme1 .step.-completed .line {
  transform: scaleX(1);
}
.quizz_theme1 .step:last-child .line {
  width: 50%;
}

.quizz_theme1 .checkmark {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #75b2f5;
    z-index: -1;
}
.quizz_theme1 .checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 8;
  stroke-miterlimit: 10;
  stroke: #5094de;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}
.quizz_theme1 .checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  stroke: #FFF;
  stroke-width: 5;
}

.quizz_theme1 .button {
  cursor: pointer;
  font-size: 1rem;
  line-height: 1rem;
  background: #5094de;
  color: #FFF;
  padding: 10px 15px;
  border: none;
  outline: none;
  display: inline-block;
  transition: all 0.3s;
}
.quizz_theme1 .button:hover {
  background: #7baee6;
}
.quizz_theme1 .button.previous {
  margin-right: 5px;
}
.quizz_theme1 .button.disabled {
  background: #c3c3c3;
  cursor: default;
}

 @keyframes stroke {
   to {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  50% {
    transform: translateX(-50%) scale3d(1.5, 1.5, 1.5);
  }
  100% {
    transform: scale3d(0);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #75b2f5;
  }
}
@keyframes gettingOut {
  0% {
    transform: translateY(0%);
  }
  30% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(-200%);
  }
}
@keyframes fadeIn {
  100% {
    opacity: 1;
  }
}

.quizz_theme1 .quiz h2 {
    margin-bottom: 25px;
}


.quizz_theme1 .quiz .answerList {
    margin-bottom: 15px;
    margin-left:  10px;
}


.quizz_theme1 .quiz ol, .quizz_theme1 .quiz ul {
    list-style: none !important;
}
.quizz_theme1 .quiz .answerList li:first-child {
    border-top-width: 0;
}

.quizz_theme1 .quiz .answerList li {
    padding: 3px 0;
}
.quizz_theme1 .quiz .answerList label {
    display: block;
    padding: 6px;
    border-radius: 6px;
    border: solid 1px #dde7e8;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.quizz_theme1 .answerList li{
    margin-bottom: 20px
}

@media(max-width:992px){ 
    .quiz_modal .quizz_theme1 .panel.form_wizard {
      padding: 15px 0px;
    }
} 

/********* FORM *********/


.quizz_theme1 .quiz .quiz_form{

	margin:0px auto;
	background:#fff;
	border-radius:2px;
	padding:20px;
}
.quizz_theme1 .quiz .quiz_form h18{
	display: block;
	text-align: center;
	padding: 0;
	margin: 0px 0px 20px 0px;
	color: #5C5C5C;
	font-size:x-large;
}
.quizz_theme1 .quiz .quiz_form ul{
	list-style:none;
	padding:0;
	margin:0;	
}
.quizz_theme1 .quiz .quiz_form li{
	display: block;
	padding: 9px;
	border:1px solid #DDDDDD;
	margin-bottom: 30px;
	border-radius: 3px;
}
.quizz_theme1 .quiz .quiz_form li:last-child{
	border:none;
	margin-bottom: 0px;
	text-align: center;
}
.quizz_theme1 .quiz .quiz_form li > label{
	display: block;
	float: left;
	margin-top: -19px;
	background: #FFFFFF;
	padding: 2px 5px 2px 5px;
	color: #B9B9B9;
	font-size: 14px;
	overflow: hidden;
}
.quizz_theme1 .quiz .quiz_form input[type="text"],
.quizz_theme1 .quiz .quiz_form input[type="date"],
.quizz_theme1 .quiz .quiz_form input[type="datetime"],
.quizz_theme1 .quiz .quiz_form input[type="email"],
.quizz_theme1 .quiz .quiz_form input[type="number"],
.quizz_theme1 .quiz .quiz_form input[type="search"],
.quizz_theme1 .quiz .quiz_form input[type="time"],
.quizz_theme1 .quiz .quiz_form input[type="url"],
.quizz_theme1 .quiz .quiz_form input[type="password"],
.quizz_theme1 .quiz .quiz_form textarea,
.quizz_theme1 .quiz .quiz_form select 
{
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	width: 100%;
	display: block;
	outline: none;
	border: none;
	height: 25px;
	line-height: 25px;
	font-size: 16px;
	padding: 0;
}
.quizz_theme1 .quiz .quiz_form input[type="text"]:focus,
.quizz_theme1 .quiz .quiz_form input[type="date"]:focus,
.quizz_theme1 .quiz .quiz_form input[type="datetime"]:focus,
.quizz_theme1 .quiz .quiz_form input[type="email"]:focus,
.quizz_theme1 .quiz .quiz_form input[type="number"]:focus,
.quizz_theme1 .quiz .quiz_form input[type="search"]:focus,
.quizz_theme1 .quiz .quiz_form input[type="time"]:focus,
.quizz_theme1 .quiz .quiz_form input[type="url"]:focus,
.quizz_theme1 .quiz .quiz_form input[type="password"]:focus,
.quizz_theme1 .quiz .quiz_form textarea:focus,
.quizz_theme1 .quiz .quiz_form select:focus 
{
}
.quizz_theme1 .quiz .quiz_form li > span{
	background: #F3F3F3;
	display: block;
	padding: 3px;
	margin: 0 -9px -9px -9px;
	text-align: center;
	color: red;
	font-size: 11px;
}
.quizz_theme1 .quiz .quiz_form textarea{
	resize:none;
}
.quizz_theme1 .quiz .quiz_form input[type="submit"],
.quizz_theme1 .quiz .quiz_form input[type="button"]{
	background: #2471FF;
	border: none;
	padding: 10px 20px 10px 20px;
	border-bottom: 3px solid #5994FF;
	border-radius: 3px;
	color: #D2E2FF;
}
.quizz_theme1 .quiz .quiz_form input[type="submit"]:hover,
.quizz_theme1 .quiz .quiz_form input[type="button"]:hover{
	background: #6B9FFF;
	color:#fff;
}


.quizz_theme1 .quiz .error{ color: red  !important; }

.quizz_theme1 .questions_text{ margin-bottom: 15px; }

