/*второй экран*/


.SectionQuiz {
	/*background-image: url(img/tai-1.jpg);*/
	width                  : 100%;
	background-repeat      : no-repeat;
	-webkit-background-size: cover;
	background-size        : cover;
	background-position    : center center;
	position               : relative;
	border-radius          : 20px;
	/* padding             : 60px 0; */
}


.SectionQuiz:before {
	/* content: '';
	display: block;
	position: absolute;
	z-index: 15;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(255, 255, 255, 0.8); */
}


.SectionQuiz .rowQuiz {
	/* min-height: 100vh; */
	padding              : 30px 20px 50px 20px;
	-webkit-align-content: space-between;
	/* Safari */
	align-content        : space-between;
	background-color     : #fff;
	border-radius        : 20px;
	/*	-webkit-box-shadow: 0 0 5px 2px rgba(0,0,0,0.5);
	box-shadow           : 0 0 5px 2px rgba(0,0,0,0.5); */
}




.wrapQuiz {
	width             : 94%;
	/*max-width       : 900px;*/
	min-height        : 300px;
	margin            : 10px auto;
	background-color  : #fff;
	-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.5);
	box-shadow        : 0 0 5px 2px rgba(0, 0, 0, 0.5);
	border-radius     : 10px;
}


.wrapDescriptionQText {
	flex      : 1 0 100%;
	text-align: center;
	display   : none;
}


.text-10 {
	font-size  : 30px;
	font-weight: 600;
	max-width  : 1100px;
	text-align : center;
	margin     : 0 auto;
}



.wrapHeaderGift {
	flex   : 1 0 100%;
	margin : 20px 0 0;
	display: none;
}

.giftItem {
	flex               : 1 0 33.3%;
	/*min-width        : 300px;*/
	margin-bottom      : 20px;
	-webkit-align-items: center;
	/* Safari */
	align-items        : center;

}

.text-11 {
	font-size   : 16px;
	font-weight : 400;
	flex        : 1 0 40%;
	margin-right: 25px;
}

.giftImg {
	display                : block;
	width                  : 150px;
	height                 : 190px;
	/*background-image     : url(img/tai-3.jpg);*/
	background-repeat      : no-repeat;
	-webkit-background-size: cover;
	background-size        : cover;
	background-position    : center center;
	margin-right           : 15px;
}





/* полоса прохождения вопросов */

.wrapProgressBar {
	/* flex: 0 0 calc(100% - 40px); */
	width       : 100%;
	max-width   : calc(100% - 40px);
	margin      : 40px auto;
	/*transition: height 0.4s;*/
}

.wrapProgressBar.hide {
	height      : 0;
	/*transition: all 0.4s;*/
	overflow    : hidden;
	margin      : 5px auto;
}

.text-13 {
	font-size  : 22px;
	font-weight: 600;
	padding-top: 0px;
}


.ProgressBar {
	height            : 22px;
	-webkit-box-shadow: inset 2px 3px 7px rgba(0, 0, 0, 0.05);
	box-shadow        : inset 2px 3px 7px rgba(0, 0, 0, 0.05);
	border-radius     : 1.8rem;
	background-color  : #fcfaf3;
	flex              : 1 0 50%;
	/*min-width       : 320px;	*/
	overflow          : hidden;
	position          : relative;
	margin-left       : 15px;
	-webkit-box-shadow: 0px 3px 15px 0px rgba(0, 0, 0, 0.25);
	-moz-box-shadow   : 0px 3px 15px 0px rgba(0, 0, 0, 0.25);
	box-shadow        : 0px 3px 15px 0px rgba(0, 0, 0, 0.25);


}

.ProgressBarInner {
	position          : absolute;
	left              : 0;
	-webkit-box-shadow: inset 2px 3px 7px rgba(0, 0, 0, 0.05);
	box-shadow        : inset 2px 3px 7px rgba(0, 0, 0, 0.05);
	top               : 0;
	height            : 100%;
	width             : 0%;
	display           : -webkit-box;
	display           : -ms-flexbox;
	display           : flex;
	-webkit-box-align : center;
	-ms-flex-align    : center;
	align-items       : center;
	-webkit-box-pack  : center;
	-ms-flex-pack     : center;
	justify-content   : center;

	background: rgb(0,0,0);
	background: -moz-linear-gradient(90deg, rgba(0,0,0,0.5046393557422969) 0%, rgba(0,0,0,0.2777485994397759) 100%);
	background: -webkit-linear-gradient(90deg, rgba(0,0,0,0.5046393557422969) 0%, rgba(0,0,0,0.2777485994397759) 100%);
	background: linear-gradient(90deg, rgba(0,0,0,0.5046393557422969) 0%, rgba(0,0,0,0.2777485994397759) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);


	-webkit-animation : progres 2.8s linear infinite;
	animation         : progres 2.8s linear infinite;
	-webkit-transition: width 0.4s;
	-o-transition     : width 0.4s;
	transition        : width 0.4s;
}

.ProgressBarInner .text-14 {
	font-size  : 18px;
	color      : #fff;
	font-weight: 600;
}


@-webkit-keyframes progres {
	from {
		background-position: 0 0, 0 0;
	}

	to {
		background-position: 0 0, 60px 30px;
	}
}

@keyframes progres {
	from {
		background-position: 0 0, 0 0;
	}

	to {
		background-position: 0 0, 60px 30px;
	}
}



.wrapProgressBar{
	-webkit-align-items: center; /* Safari */
	align-items: center;
}



/* полоса прохождения вопросов */








.quizFirstWindow,
.quizWindowQuestions,
.quizWindowContacts,
.quizWindowGratitude {
	display: none;
}

.quizFirstWindow.active,
.quizWindowQuestions.active,
.quizWindowContacts.active,
.quizWindowGratitude.active {
	display: block;
}



.wrapWindowQuestions {}

.wrapWindowQuestions.hide {
	display: none;
}

.WindowQuestions {
	flex      : 1 0 70%;
	max-width : 70%;
	text-align: center;
	padding   : 20px 15px;
}


.text-12 {
	font-size  : 32px;
	font-weight: 600;
}

.text-12description {
	font-size    : 28px;
	font-weight  : 400;
	margin-bottom: 20px;
}


.WindowSidebar {
	flex: 1 0 30%;
}

.wrapAnswer {
	max-width: 100%;
	margin   : 40px auto 15px;
}

.stepItems {
	/*flex-wrap: nowrap;*/
	/*height: 220px;*/
}







/*один ответ тип ввод своих данных*/

.stepItems-typeYourText {
	height: auto;
}

.answerItem-typeYourText {
	flex: 0 0 33%;

}


.wrapInputAnswerText {
	flex: 1 0 100%;
}


.inputAnsverQ {
	background-color: #f7f7f7;
	box-shadow      : none;
	height          : 2.65em;
	border          : #b1b5be solid 1px;
	color           : #363636;
	border-radius   : 4px;
	font-size       : 20px;
	padding-left    : 15px;
	padding-right   : 15px;
	width           : 80%;
	max-width       : 400px;

}

.stepItems-typeYourText {
	-webkit-flex-direction: column;
	/* Safari */

	flex-direction: column;
}






/* окончание один ответ тип ввод своих данных*/









/* один ответ. Тип  ImgRadio*/
/* тип ответов - множественный выбор, с картинкой */
/* .wrapAnswers-typeCheckbox-NoImg */


.answerItem-typeImgRadio {
	margin            : 0 10px;
	border-radius     : 1rem;
	padding           : 6px;
	border            : 1px solid rgba(0, 0, 0, 0.07);
	-webkit-transition: all 0.3s;
	-o-transition     : all 0.3s;
	transition        : all 0.3s;
	position          : relative;
}


.answerItem-typeImgRadio .label-wrapImg {
	width        : 160px;
	height       : 120px;
	display      : block;
	overflow     : hidden;
	border-radius: 1rem 1rem 0 0;
	cursor       : pointer;
}

.answerItem-typeImgRadio .label-wrapImg img {
	max-width: 100%;
	height   : auto;
}


.answerItem-typeImgRadio .wrapTitleAnswer {}

.answerItem-typeImgRadio .label-wrapText {
	min-height             : 85px;
	display                : -webkit-flex;
	display                : -moz-flex;
	display                : -ms-flex;
	display                : -o-flex;
	display                : flex;
	flex-wrap              : nowrap;
	text-align             : center;
	padding                : 5px;
	-webkit-align-items    : center;
	/* Safari */
	align-items            : center;
	-webkit-align-content  : center;
	/* Safari */
	align-content          : center;
	-webkit-justify-content: center;
	justify-content        : center;
	width                  : 100%;
	background-color       : #fff;
	position               : relative;
	-webkit-transition     : all 0.3s;
	-o-transition          : all 0.3s;
	transition             : all 0.3s;
	word-break             : break-word;
	-webkit-box-align      : center;
	-ms-flex-align         : center;
	align-items            : center;
	cursor                 : pointer;



}

.label-wrapText .text-13 {
	-webkit-align-self: center;
	align-self        : center;
	font-size         : 20px;
	flex              : 1 0 50%;

}


/* стилизация radio */


.radio-btn {
	display: none;
}



.label-wrapText {}

.radio-psevdo {
	-webkit-box-shadow: inset 0px 3px 7px 0px rgba(0, 0, 0, 0.07);
	-moz-box-shadow   : inset 0px 3px 7px 0px rgba(0, 0, 0, 0.07);
	box-shadow        : inset 0px 3px 7px 0px rgba(0, 0, 0, 0.07);
	border            : 2px solid rgba(0, 0, 0, 0.07);
	background-color  : #f4f2ec;
	width             : 20px;
	height            : 20px;
	border-radius     : 100%;
	-webkit-transition: all 0.3s;
	-o-transition     : all 0.3s;
	transition        : all 0.3s;
	-ms-flex-negative : 0;
	flex-shrink       : 0;
	margin-right      : 0.6vw;
	display           : -webkit-box;
	display           : -ms-flexbox;
	display           : flex;
	-webkit-box-align : center;
	-ms-flex-align    : center;
	align-items       : center;
	-webkit-box-pack  : center;
	-ms-flex-pack     : center;
	justify-content   : center;
	-webkit-box-flex  : 0;
	-ms-flex-positive : 0;
	flex-grow         : 0;
}

.radio-psevdo-active {
	width             : 7px;
	height            : 7px;
	background-color  : #b162f2;
	border-radius     : 100%;
	opacity           : 0;
	-webkit-transition: all 0.3s;
	-o-transition     : all 0.3s;
	transition        : all 0.3s;
}

.radio-btn:checked+.label-wrapText {
	color: #2a2a2a;
}

.radio-btn:checked+label .radio-psevdo {
	border          : 0;
	background-color: #e6d6f3;
}

.radio-btn:checked+label .radio-psevdo-active {
	opacity: 1;
}



/* окончание один ответ. Тип  ImgRadio*/








/*тип ответов - множественный выбор, без картинки*/
/*.wrapAnswers-typeRadio-NoImg*/


.wrapAnswers-typeCheckbox-NoImg .stepItems {
	height                 : auto;
	-webkit-justify-content: space-between;
	/* Safari */

	justify-content: space-between;
}

.wrapAnswers-typeCheckbox-NoImg .answerItem {
	flex: 0 0 48%;
}

.wrapAnswers-typeCheckbox-NoImg .label-wrapText {
	height       : 60px;
	width        : 100%;
	display      : block;
	border       : 1px solid #e6e6e6;
	border-radius: 5px;
	margin-top   : 18px;
}

.wrapAnswers-typeCheckbox-NoImg .label-wrapText:hover {
	-webkit-box-shadow: 0 1px 3px 0 #e6e6e6;
	box-shadow        : 0 1px 3px 0 #e6e6e6;
	transition        : all 0.3s;
}





/* стилизация checkbox */

.wrapAnswers-typeCheckbox-NoImg .inputQuiz {
	opacity: 0;
	display: none;
}

.wrapAnswers-typeCheckbox-NoImg .input-psevdo {
	position: relative;
	top     : 15px;
	left    : -45px;
}



.wrapAnswers-typeCheckbox-NoImg .input-psevdo:before {
	content   : ' ';
	display   : block;
	height    : 16px;
	width     : 16px;
	position  : absolute;
	top       : 5px;
	left      : 10px;
	background: #F4F4F4;
}



.wrapAnswers-typeCheckbox-NoImg .input-psevdo:after {
	content           : ' ';
	display           : block;
	height            : 14px;
	width             : 14px;
	border            : 2px solid #999;
	transition        : 200ms;
	position          : absolute;
	top               : 5px;
	left              : 10px;
	/* background     : #fff200;*/
	transition        : 100ms ease-in-out;
	-webkit-box-shadow: 0 1px 3px 0 #e6e6e6;
	box-shadow        : 0 1px 3px 0 #e6e6e6;

}




.wrapAnswers-typeCheckbox-NoImg .inputQuiz:checked~.label-wrapText .input-psevdo:after {
	border-top-style  : none;
	border-right-style: none;
	-ms-transform     : rotate(-45deg);
	transform         : rotate(-45deg);
	height            : 10px;
	width             : 26px;
	top               : 3px;
	right             : 3px;
	border-color      : green;
	border-width      : 4px;
}

.wrapAnswers-typeCheckbox-NoImg .inputQuiz:checked~.label-wrapText .input-psevdo:before {
	background: #fff;
}



.wrapAnswers-typeCheckbox-NoImg .label-wrapText {

	display                    : -webkit-flex;
	display                    : -moz-flex;
	display                    : -ms-flex;
	display                    : -o-flex;
	display                    : flex;
	position                   : relative;
	cursor                     : pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	padding-left               : 45px;
	padding-right              : 15px;
}


.wrapAnswers-typeCheckbox-NoImg .inputQuiz:checked~.label-wrapText {
	-webkit-box-shadow: 0 1px 3px 0 rgba(0, 128, 0, 0.5);
	box-shadow        : 0 1px 3px 0 rgba(0, 128, 0, 0.5);
	transition        : all 0.3s;
}

/*окончание тип ответов - множественный выбор, без картинки*/









/*  тип ответов - одиночный выбор, без картинки  */
/*.wrapAnswers-typeRadio-NoImg*/



.wrapAnswers-typeRadio-NoImg .stepItems {
	height                 : auto;
	-webkit-justify-content: space-between;
	/* Safari */

	justify-content: space-between;
}

.wrapAnswers-typeRadio-NoImg .answerItem {
	flex: 0 0 48%;
}

.wrapAnswers-typeRadio-NoImg .label-wrapText {
	height       : 60px;
	width        : 100%;
	display      : block;
	border       : 1px solid #e6e6e6;
	border-radius: 5px;
	margin-top   : 18px;
}

.wrapAnswers-typeRadio-NoImg .label-wrapText:hover {
	-webkit-box-shadow: 0 1px 3px 0 #e6e6e6;
	box-shadow        : 0 1px 3px 0 #e6e6e6;
	transition        : all 0.3s;
}





/* стилизация radio */

.wrapAnswers-typeRadio-NoImg .inputQuiz {
	opacity: 0;
	display: none;
}

.wrapAnswers-typeRadio-NoImg .input-psevdo {
	position: relative;
	top     : 15px;
	left    : -45px;
}



.wrapAnswers-typeRadio-NoImg .input-psevdo:before {
	content      : ' ';
	display      : block;
	height       : 18px;
	width        : 18px;
	border-radius: 50%;
	position     : absolute;
	top          : 5px;
	left         : 10px;
	background   : #F4F4F4;
}



.wrapAnswers-typeRadio-NoImg .input-psevdo:after {
	content           : ' ';
	display           : block;
	height            : 16px;
	width             : 16px;
	border-radius     : 50%;
	border            : 2px solid #999;
	transition        : 200ms;
	position          : absolute;
	top               : 5px;
	left              : 10px;
	/* background     : #fff200;*/
	transition        : 100ms ease-in-out;
	-webkit-box-shadow: 0 1px 3px 0 #e6e6e6;
	box-shadow        : 0 1px 3px 0 #e6e6e6;
}




.wrapAnswers-typeRadio-NoImg .inputQuiz:checked~.label-wrapText .input-psevdo:after {
	border: 2px solid green;
}

.wrapAnswers-typeRadio-NoImg .inputQuiz:checked~.label-wrapText .input-psevdo:before {
	height          : 8px;
	width           : 8px;
	/* top          : 10px;
	left            : 16px; */
	top             : 9px;
	left            : 14px;
	background-color: green;
}



.wrapAnswers-typeRadio-NoImg .label-wrapText {
	display                    : -webkit-flex;
	display                    : -moz-flex;
	display                    : -ms-flex;
	display                    : -o-flex;
	display                    : flex;
	position                   : relative;
	cursor                     : pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	padding-left               : 45px;
	padding-right              : 15px;
}


.wrapAnswers-typeRadio-NoImg .inputQuiz:checked~.label-wrapText {
	-webkit-box-shadow: 0 1px 3px 0 rgba(0, 128, 0, 0.5);
	box-shadow        : 0 1px 3px 0 rgba(0, 128, 0, 0.5);
	transition        : all 0.3s;
}



/*окончание   тип ответов - одиночный выбор, без картинки   */
















/*  тип ответов - одиночный выбор, с картинкой  */
/*.wrapAnswers-typeRadio-Img*/



.wrapAnswers-typeRadio-Img .stepItems {
	height                 : auto;
	-webkit-justify-content: space-between;
	/* Safari */

	justify-content: space-between;
}

.wrapAnswers-typeRadio-Img .answerItem {
	flex         : 0 0 48%;
	margin-bottom: 50px;
}

.wrapWindowQuestions:nth-child(2) .wrapAnswers-typeRadio-Img .answerItem {
	flex: 0 0 32%;
}


.wrapAnswers-typeRadio-Img .label-wrapText {
	height       : 60px;
	width        : 100%;
	display      : block;
	border       : 1px solid #e6e6e6;
	border-radius: 5px;
	/*margin-top : 18px;*/
}

.wrapAnswers-typeRadio-Img .label-wrapText:hover {
	-webkit-box-shadow: 0 1px 3px 0 #e6e6e6;
	box-shadow        : 0 1px 3px 0 #e6e6e6;
	transition        : all 0.3s;
}





/* стилизация radio */

.wrapAnswers-typeRadio-Img .inputQuiz {
	opacity: 0;
	display: none;
}

.wrapAnswers-typeRadio-Img .input-psevdo {
	position: relative;
	top     : 15px;
	left    : -45px;
}



.wrapAnswers-typeRadio-Img .input-psevdo:before {
	content      : ' ';
	display      : block;
	height       : 22px;
	width        : 22px;
	border-radius: 50%;
	position     : absolute;
	top          : 5px;
	left         : 10px;
	background   : #F4F4F4;
}



.wrapAnswers-typeRadio-Img .input-psevdo:after {
	content           : ' ';
	display           : block;
	height            : 22px;
	width             : 22px;
	border-radius     : 50%;
	border            : 3px solid #999;
	transition        : 200ms;
	position          : absolute;
	top               : 5px;
	left              : 10px;
	/* background     : #fff200;*/
	transition        : 100ms ease-in-out;
	-webkit-box-shadow: 0 1px 3px 0 #e6e6e6;
	box-shadow        : 0 1px 3px 0 #e6e6e6;
}




.wrapAnswers-typeRadio-Img .inputQuiz:checked~.label-wrapText .input-psevdo:after {
	border: 3px solid green;
}

.wrapAnswers-typeRadio-Img .inputQuiz:checked~.label-wrapText .input-psevdo:before {
	height: 10px;
	width : 10px;
	/* top: 10px;
	left  : 16px; */
	top   : 11px;
	left  : 16px;


	background-color: green;
}



.wrapAnswers-typeRadio-Img .label-wrapText {
	display                    : -webkit-flex;
	display                    : -moz-flex;
	display                    : -ms-flex;
	display                    : -o-flex;
	display                    : flex;
	position                   : relative;
	cursor                     : pointer;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	padding-left               : 45px;
	padding-right              : 15px;
	background-color           : #fff;
}


.wrapAnswers-typeRadio-Img .inputQuiz:checked~.label-wrapText {
	-webkit-box-shadow: 0 1px 3px 0 rgba(0, 128, 0, 0.5);
	box-shadow        : 0 1px 3px 0 rgba(0, 128, 0, 0.5);
	transition        : all 0.3s;
}


.wrapAnswers-typeRadio-Img .label-ImgRadio {
	border                 : 1px solid #d0d0d0;
	width                  : 100%;
	height                 : 180px;
	display                : block;
	background-repeat      : no-repeat;
	-webkit-background-size: cover;
	background-size        : cover;
	-webkit-background-size: contain;
	background-size        : contain;
	background-position    : center center;
	cursor                 : pointer;
	border-radius          : 5px 5px 0 0;
	margin-bottom          : -4px;
}

/* т.к. изображения подарков на первом шаге не вмещаются, всем остальным можно растягивать */
.wrapWindowQuestions:not(:first-child) .wrapAnswers-typeRadio-Img .label-ImgRadio {
	-webkit-background-size: cover;
	background-size        : cover;
}


/*окончание   тип ответов - одиночный выбор, без картинки   */
































/*тип ответов - множественный выбор, одна общая картинка*/
/*.wrapAnswers-typeRadio-wrapImg*/





/* одиночное изображение вопроса  */
.wrapImgQuestion {
	/*display: none;*/
}

/* изображение возле вопроса */
/* .wrapAnswers-ImgQuestion */

.imgQuestionQ {
	display                : block;
	width                  : 100%;
	max-width              : 400px;
	height                 : 200px;
	margin                 : 10px auto;
	/*background-image     : url(img/evro_calendar_school_september_unfas.png);*/
	background-repeat      : no-repeat;
	-webkit-background-size: contain;
	background-size        : contain;
	background-position    : center center;
}

/* окончание  одиночное озображение вопроса  */

/*окончание тип ответов - множественный выбор, одна общая картинка*/


.WindowButtons {
	margin                 : 40px 0;
	-webkit-justify-content: center;
	justify-content        : center;
	flex                   : 1 0 100%;
}


.buttonStepQuestion {
	font-size          : 20px;
	/* background-image: linear-gradient(45deg , #ff9715 60%, #ff5959);
	background-position: 99% 0;
	background-size    : 200% 200%; */
	background-color   : #f5f50e;
	display            : flex;
	align-items        : center;
	min-width          : 200px;
	height             : 50px;
	-webkit-box-shadow : 0px 3px 15px 0px rgba(0, 0, 0, 0.25);
	-moz-box-shadow    : 0px 3px 15px 0px rgba(0, 0, 0, 0.25);
	box-shadow         : 0px 3px 15px 0px rgba(0, 0, 0, 0.25);
	border-radius      : 2.5rem;
	justify-content    : center;
	text-transform     : uppercase;
	margin             : 0 30px;
	cursor             : pointer;
	position           : relative;
	overflow           : hidden;
	color              : #000;
	font-weight        : 600;
	padding            : 15px 30px;
}

.buttonStepQuestion.hide {
	display: none;
}

.buttonStepQuestion-back {
	background: rgb(232, 227, 255);
	/* Old browsers */
	color     : #bdbbc8;


	-webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.20);
	-moz-box-shadow   : 0px 2px 5px 0px rgba(0, 0, 0, 0.20);
	box-shadow        : 0px 2px 5px 0px rgba(0, 0, 0, 0.20);
}







.buttonStepQuestion-next {
	opacity   : 0.5;
	transition: 0.3s;
}

.buttonStepQuestion-next,
.buttonStepQuestion-back {
	min-width: 220px;
	height   : 60px;
}


.buttonStepQuestion-next:hover {
	cursor: wait;

}

.buttonStepQuestion-next.active {
	opacity   : 1;
	transition: 0.3s;

}

.buttonStepQuestion-next.active:hover {
	cursor: pointer;
}



/* правая секция с подсказкой */


.WindowSidebar {
	/* background-image: url(img/bg-right2.png); */
	background             : #e6edff;
	background-repeat      : no-repeat;
	-webkit-background-size: cover;
	background-size        : cover;
	background-position    : center center;
	padding                : 10px 18px;

}


.imgManager {
	display            : block;
	margin             : 0 auto;
	max-width          : 240px;
	height             : 240px;
	background-image   : url(img/director2.jpg);
	background-repeat  : no-repeat;
	background-size    : contain;
	background-position: center center;
}

.nameManager {
	font-size  : 18px;
	font-weight: 700;
	color      : #292929;
	text-align : center;
	margin     : 4px auto 0;
}

.profManager {
	color      : #7a7a7a;
	font-weight: 600;
	font-size  : 15px;
	text-align : center;
	margin     : 0 auto 15px;
}


.hintManager {
	width             : 1000px;
	color             : #000;
	font-weight       : 600;
	font-size         : 14px;
	text-align        : center;
	margin            : 0 6px 4px;
	min-height        : 60px;
	height            : 60px;
	padding           : 10px;
	background-color  : #fff;
	vertical-align    : middle;
	-webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	box-shadow        : 0 5px 20px rgba(0, 0, 0, 0.15);
	display           : table-cell;
	border-radius     : 10px;
	position          : relative;
}

.hintManager:before {
	content      : '';
	display      : block;
	position     : absolute;
	z-index      : 15;
	top          : -19px;
	left         : 50%;
	transform    : translateX(-10px);
	border       : 10px solid transparent;
	border-bottom: 10px solid #fff;
}




.choicePrize {
	margin-top   : 32px;
	font-size    : 18px;
	color        : #292929;
	margin-bottom: 6px;
	font-weight  : 700;
	text-align   : center;
}



.textHintAnswers {
	color        : #292929;
	font-size    : 24px;
	font-weight  : 400;
	margin-bottom: 5px;
	text-align   : center;
}

.textHintAnswers.prize {
	margin-top : 20px;
	font-size  : 28px;
	color      : #ff6817;
	font-weight: 600;
}


.imgHintPrize,
.imgHintPrizeContacts {
	display            : block;
	margin             : 0 auto;
	width              : 220px;
	height             : 160px;
	background-image   : url(img/giftbox.png);
	background-repeat  : no-repeat;
	background-size    : contain;
	background-position: center center;
}

.imgHintPrize.choice,
.imgHintPrizeContacts.choice {
	width           : 240px;
	height          : 180px;
	/* border-radius: 500px; */
	background-size : contain;
	margin-bottom   : 12px;
	margin-top      : 8px;
}

/* окончание правая секция с подсказкой */







/*окончание второй экран*/













@media only screen and (max-width : 1199px) {
	.giftItem {
		padding-left : 16px;
		padding-right: 16px;
	}

	.text-11 {
		flex        : 1 0 100%;
		margin-right: 0px;
		text-align  : center;
	}

	.giftImg {
		margin: 0 auto 12px;
	}

	.WindowSidebar{
		display: none;
	}



}


@media only screen and (max-width : 991px) {
	.WindowQuestions {
		flex     : 1 0 100%;
		max-width: 100%;
	}

	.quizWindowContacts .WindowSidebar {
		display: none;
	}

	.wrapWindowQuestions:nth-child(2) .wrapAnswers-typeRadio-Img .answerItem {
		flex: 0 0 48%;
	}



}



@media only screen and (max-width : 767px) {
	.text-10 {
		font-size: 24px;
	}

	.text-12 {
		font-size: 28px;
	}

	.text-12description {
		font-size: 26px;
	}

	.SectionQuiz .rowQuiz {
		padding-left : 12px;
		padding-right: 12px;
	}

	.giftItem {
		flex               : 1 0 100%;
		/* min-width       : 300px; */
		margin-bottom      : 20px;
		-webkit-align-items: center;
		align-items        : center;
	}

	.giftImg {
		margin: 0 12px 0 0;
		width : 120px;
		height: 150px;
	}

	.text-11 {
		flex      : 1 0 20%;
		text-align: left;
	}

	.giftItem {
		padding-left : 0px;
		padding-right: 0px;
	}

	.WindowButtons {
		margin: 30px 0 10px;
	}

	.buttonStepQuestion {
		margin   : 15px;
		min-width: 170px;
		height   : 44px;
		font-size: 17px;
	}

	.buttonStepQuestion-next,
	.buttonStepQuestion-back {
		min-width: 174px;
		height   : 52px;
	}


	.inputAnsverQ {
		width: 100%;
	}

	.label-wrapText .text-13 {
		font-size: 17px;
	}



}



@media only screen and (max-width : 575px) {
	.text-10 {
		font-size: 22px;
	}

	.text-13 {
		flex      : 1 0 100%;
		text-align: center;
	}

	.ProgressBar {
		flex       : 1 0 100%;
		margin-left: 0;
		margin-top : 12px;
	}

	.text-12 {
		font-size: 24px;
	}

	.text-12description {
		font-size: 20px;
	}

	.buttonStepQuestion {
		margin: 15px;
	}

	.wrapAnswers-typeCheckbox-NoImg .answerItem {
		flex: 0 0 100%;
	}

	.wrapAnswers-typeRadio-NoImg .answerItem {
		/* flex: 0 0 100%; */
	}

	.wrapQuiz {
		width: 100%;
	}



	.SectionQuiz .containerQuiz {
		padding-right: 0px;
		padding-left : 0px;
	}


	.WindowButtons {
		-webkit-justify-content: space-between;
		justify-content        : space-between;
		flex                   : 1 0 100%;
	}

	.wrapWindowQuestions:first-child .WindowButtons {
		-webkit-justify-content: center;
		justify-content        : center;

	}

	.buttonStepQuestion {
		flex     : 0 0 45%;
		margin   : 0px;
		min-width: 1px;
		font-size: 17px;
		padding  : 10px 20px;
	}


	.buttonStepQuestion-next {
		flex: 0 0 49%;
	}

}





@media only screen and (max-width : 480px) {
	.wrapAnswers-typeRadio-Img .answerItem {
		/* flex: 0 0 100%; */
		margin-bottom: 25px;
	}

	.wrapWindowQuestions:nth-child(2) .wrapAnswers-typeRadio-Img .answerItem {
		/* flex: 0 0 100%; */
	}


	.wrapAnswers-typeRadio-Img .label-wrapText,
	.wrapAnswers-typeRadio-NoImg .label-wrapText {
		padding-left : 25px;
		padding-right: 5px;

	}

	.wrapAnswers-typeRadio-Img .input-psevdo,
	.wrapAnswers-typeRadio-NoImg .input-psevdo {
		left: -30px;
	}

	.wrapAnswers-typeRadio-Img .label-ImgRadio {
		height: 80px;
	}

	.label-wrapText .text-13 {
		font-size: 14px;
	}

	.WindowQuestions {
		padding: 20px 10px;
	}

}

@media only screen and (max-width : 375px) {

	.label-wrapText .text-13 {
		font-size: 14px;
	}
}




/*окончание второй экран*/