.quize {
	background: #F5F5F5;
	padding:30px 0px;
	position:relative;
}
.quize[send="send"]:after {
	content:"";
	display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url(../images/loading.gif);
    background-color: hsla(0,0%,100%,.49);
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: 100px 100px;
    width: 100%;
    height: 100%;
    z-index: 3;
}
.quize input[type="radio"] {
	display:none;
}
.button-prev button {
    height: 70px;
}
.quize .quize-title span {
	color:#7E7E7E;
	font-family: Museo Sans Cyrl;
	font-style: normal;
	font-weight: 300;
	font-size: 22px;
	line-height: 140%;
}
.quize .quize-title div {
	color:#7E7E7E;
	font-family: Museo Sans Cyrl;
	font-style: normal;
	font-weight: bold;
	font-size: 22px;
	line-height: 140%;
	/* or 31px */

	text-transform: uppercase;
}
.quize .tolltip {
	background:#D3B790;
    border-radius: 4px;
    color: #fff;
    display: block;
    text-align: center;
    padding: 15px 35px;	
	font-family: Museo Sans Cyrl;
}
.quize .container {
	position:relative;
    padding: 50px 0px;
}
.quize .top {
	position:relative;
	display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 40px;
}
.quize .nav {
	background:url(../images/quize/dots.svg) repeat-x center;
	margin-bottom: 40px;
	display: flex;
    justify-content: flex-start;
    align-items: center;
}
.quize .nav .step-info {
	display:flex;
    justify-content: flex-start;
    align-items: center;
}
.quize .nav .step-info .name {
	display:none;
}
.quize .nav a, .quize .nav > label {
	margin-right:65px;
	cursor:pointer;
	
}
.quize .nav .step-info i {
    display: inline-block;
    background: #D0D0D0;
	width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
	position:relative;
}
.quize .nav input:checked + .step-info i {
	background-color:#AB1B1D;
}
/*
.quize .nav a:not(:first-child)  .step-info i:before,
.quize .nav .step-info i:after {
	content: "";
    display: inline-block;
    width: 10px;
    position: absolute;
    height: 100%;
    background: #f5f5f5;
    right: -10px;
}
*/
.quize .nav a:not(:first-child) .step-info i:before{
	right: auto;
	left:-10px;
}
.quize .nav input:checked + .step-info .name {
	display:inline-block;
    padding-left: 15px;
    font-size: 28px;
    font-weight: 300;
    padding-right: 20px;
    background-color: #f5f5f5;
	color:#000;
}
.quize .step {
	display: flex;
    flex-wrap: nowrap;
}
.quize .items-list {
	display:flex;
	flex-wrap:wrap;	
    min-width: 100%;
}
.quize .step-buttons {
    min-width: 20%;    
    display: flex;
    justify-content: left;
    align-items: flex-end;
	margin-bottom: 20px;
}
.quize .items-list label {
    width: 31%;
    margin-right: 15px;
    margin-bottom: 20px;
	cursor:pointer;
}

.quize .items-list .label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    color: #616161;
    padding: 3px;
    box-sizing: border-box;
	border:2px solid #fff;
    box-shadow: 3px 3px 1px #cdcccc;
}
.quize .items-list .label .name {
	display:block;
    padding: 10px 5px 10px 10px;
    font-size: 12px;
    line-height: 14px;
}
.quize .items-list .label img {
	height:60px;
}
.quize .items-list .label:hover {
	border:2px solid #B0B2DE;
}
.quize .items-list input:checked + .label {
	border:2px solid #B0B2DE;
	box-shadow: 3px 3px 1px #B0B2DE;
	color:#000;
}
.step-buttons .button {
    height: 70px;
    padding: 20px 55px;
}
.quize-count {
	display: none;
	
}
.is-submit .quize-count {
	display: inline-block;
}
@media screen and (max-width:768px) {
	.quize .items-list {
		min-width: 100%;
	}
	.quize .items-list label {
		width:100%;
		margin-right: 0px;
	}
	.quize .top {
		flex-wrap: wrap;
		padding: 0px 30px 0px 0px;		
	}
	.quize .quize-title div {		
		font-size: 20px;
		font-weight: bold;
		margin-bottom: 10px;
	}
	.quize .quize-title span {
		font-size: 14px;
		display: block;
		margin-bottom: 15px;
	}
	.quize .container {
		padding-left:30px;
		padding-top: 30px;
		padding-bottom: 0px;
	}
	.quize .nav input:checked + .step-info .name {
		font-size: 20px;
		display: block;
		min-width: 250px;
	}
	.quize .nav input:checked + .step-info i {
		min-width: 28px;
	}
	section[data-target="quize"] {
		/*margin-bottom:40px;*/
		-ms-flex-order: 1;
		order: 1;
	}
	.quize .nav {
		max-width: 100%;
		overflow: hidden;
		overflow-x: auto;
	}
	.quize .tolltip {
		text-align:left;
	}
	.quize .tolltip:before {
		content: "";
		display: block;
		position: absolute;
		background: #D3B790;
		transform: rotate(
	45deg);
		margin-top: -20px;
		margin-left: 0px;
		width: 15px;
		height: 15px;
	}
	.quize .step {
		flex-wrap: wrap;
	}
	.quize .nav a, .quize .nav > label {
		margin-right:30px;
	}
	.step-link.mobile-hide {
		display: none;
	}
}
.step-buttons{
	display:none !important;
}
@media screen and (min-width:768px) {
	.quize .container {
		background:url(../images/quize/bg.png?1) no-repeat;
		background-position: right bottom;
		background-size: contain;
	}
	.quize .tolltip {
		margin-left: 50px;
	}
	.quize .tolltip:before {
		content:"";
		background:#D3B790;
		transform:rotate(45deg);
		width: 20px;
		height: 20px;
		margin-left: -35px;
		position: absolute;
	}
}