.body {
	margin: 0;
    padding: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    background: #f9f9f9;
    color: #2f3146;
    font-family: "Jost", sans-serif;
    -moz-osx-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    background-size: cover;
    background-image: url(../img/qbg.jpg);	
}
.multisteps-form__progress {
    padding-top: 60px;
    height: 100%;
}
ul li {
    list-style: none;
}
.multisteps-form__panel {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    overflow: hidden;
    height: 0;
}
.multisteps-form__panel.js-active {
    opacity: 1;
    visibility: visible;
    overflow: visible;
    height: auto;
}
.multisteps-form__panel[data-animation=fadeIn].js-active {
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    transition-delay: 0s;
}
.multisteps-form__panel[data-animation=fadeIn].js-active {
    transition-property: all;
    transition-duration: 0.3s;
    transition-timing-function: linear;
    transition-delay: 0s;
}
.wizard-forms {
    padding: 90px 30px;
}
.quiz-title {
    margin: 0 auto;
    max-width: 800px;
}
.quiz-title span {
    font-size: 25px;
    color: #ed1b34;
}
.quiz-title h2 {
    color: #151515;
    font-size: 43px;
    font-weight: 700;
    padding-bottom: 20px;
    font-family: "Poppins";
}
.quiz-title p {
    color: #151515;
    font-size: 24px;
    font-weight: 500;
}
.quiz-option-selector {
    margin: 0 auto;
    max-width: 1135px;
    padding-top: 40px;
    padding-bottom: 80px;
}
.quiz-option-selector li {
    width: 100%;
    float: left;
    padding: 7px;
}
.quiz-option-selector li label {
    z-index: 2;
    width: 100%;
    height: 90px;
    padding: 10px;
    cursor: pointer;
    position: relative;
    border-radius: 4px;
    background-color: #fff;
    border: 2px solid #e7e7e7;
}
.quiz-option-selector li .exp-option-box {
    display: none;
}
.quiz-option-selector li label .exp-number {
    float: left;
    width: 75px;
    height: 68px;
    z-index: 2;
    display: block;
    color: #446d76;
    font-size: 30px;
    font-weight: 700;
    line-height: 68px;
    position: relative;
    margin-right: 45px;
    text-align: center;
    background-color: #fff;
    border: 2px solid #e7e7e7;
}
.quiz-option-selector li label .exp-label {
    z-index: 2;
    color: #446d76;
    font-size: 23px;
    font-weight: 600;
    line-height: 70px;
    position: relative;
	word-wrap: break-word;
	font-family: arial;
}
.quiz-option-selector li .exp-option-box:checked ~ .exp-label {
    color: #fff;
}
.quiz-option-selector li label .checkmark-border {
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    position: absolute;
}
.quiz-option-selector li label .checkmark-border:before, .quiz-option-selector li label .checkmark-border:after {
    top: 0;
    left: 0;
    z-index: -1;
    content: "";
    width: 100%;
    height: 100%;
    display: none;
    border-radius: 4px;
    position: absolute;
    background-image: linear-gradient(14deg, #eb3252 0%, #f82c28 100%);
}
.quiz-option-selector li .exp-option-box:checked ~ .checkmark-border:before, .quiz-option-selector li .exp-option-box:checked ~ .checkmark-border:after {
    display: block;
}
.quiz-option-selector li label .checkmark-border:after {
    background-image: inherit;
    box-shadow: 0px 1px 38px 0px rgb(2 2 2 / 27%);
}
.quiz-progress-area .progress {
    left: 0;
    right: 0;
    width: 100%;
    bottom: 140px;
    margin: 0 auto;
    max-width: 560px;
    overflow: visible;
    border-radius: 4px;
    position: absolute;
    background-color: #ffffff;
}
@media screen and (max-width: 1440px){
	.quiz-progress-area .progress {
		max-width: 400px;
	}
}
.quiz-progress-area .progress .progress-bar {
    border-radius: 4px;
    background-image: linear-gradient(14deg, #eb3252 0%, #f82c28 100%);
}
.progress-bar span {
    left: auto;
    right: -130px;
}
.quiz-progress-area .progress .progress-bar span {
    top: -65px;
    width: 275px;
    height: 40px;
    line-height: 40px;
    position: absolute;
    border-radius: 4px;
    background-image: linear-gradient(14deg, #eb3252 0%, #f82c28 100%);
}
.quiz-progress-area .progress .progress-bar span:after {
    left: 50%;
    content: "";
    bottom: -10px;
    position: absolute;
    transform: translateX(-50%);
    border-top: 10px solid #ed1b34;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}
.actions {
    width: 100%;
    border-radius: 4px;
    padding: 20px 30px;
    background-color: #3c3c3c;
}
.actions li {
    color: #3c3c3c;
    height: 65px;
    width: 430px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    line-height: 65px;
    border-radius: 3px;
    display: inline-block;
    background-color: #fff;
    text-transform: uppercase;
    transition: 0.3s all ease-in-out;
}
@media screen and (max-width: 1440px){
	.actions li {
		width: 20%;
	}
}
.actions li:nth-child(1) {
    float: left;
}
.actions li span, .actions li button {
    width: 100%;
    display: block;
    border: none;
}
.actions li:nth-child(2) {
    float: right;
}
.multisteps-form__panel {
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    overflow: hidden;
    height: 0;
}
.wizard-forms {
    padding: 90px 30px;
}
@media screen and (max-width: 991px)
{
	.quiz-option-selector li {
		width: 100%;
	}
}
@media screen and (max-width: 480px)
{
	.quiz-option-selector li label .exp-number {
		margin-right: 15px;
	}
}
@media screen and (max-width: 480px)
{
	.quiz-title span, .quiz-title p, .quiz-option-selector li label .exp-label {
		font-size: 20px;
	}
}
@media screen and (max-width: 991px)
{
	.quiz-progress-area .progress {
		position: static;
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 991px)
{
	.quiz-progress-area .progress .progress-bar span {
		width: 145px;
	}
}
@media screen and (max-width: 480px)
{
	.quiz-progress-area .progress .progress-bar span {
		display: none;
	}
}
@media screen and (max-width: 580px)
{
	.actions li:nth-child(2), .actions li:nth-child(1) {
		float: none;
		margin: 0 auto;
		width: 250px;
		height: 50px;
		font-size: 16px;
		font-weight: 500;
		line-height: 50px;
	}
}
@media screen and (max-width: 580px)
{
	.actions li:nth-child(1) {
		margin-bottom: 20px;
	}
}
@media screen and (max-width: 1440px)
{
	.quiz-progress-area .progress {
		max-width: 400px;
	}
}
@media screen and (max-width: 991px)
{
	.quiz-progress-area .progress {
		position: static;
		margin-bottom: 50px;
	}
	.wizard-forms {
		padding: 5px;
		margin: 0;
	}
	.kayit {
		padding: 0;
		margin: 0;
	}
	dl, ol, ul {
		padding: 0;
	}
	.quiz-title span {
		font-size: 24px;
		font-weight: 700;
	}
	.col-md-12 {
		padding: 0;
	}
}
@media screen and (max-width: 580px)
{
	.actions {
		text-align: center;
	}
}
@media screen and (max-width: 480px)
{
	.quiz-title span, .quiz-title p, .quiz-option-selector li label .exp-label {
		font-size: 20px;
		padding: 5px;
	}
}