@import "https://fonts.googleapis.com/css?family=Quattrocento+Sans:400,400i,700";
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box
}

:focus {
	outline: 0
}

img {
	border: none;
	display: block
}

ol,
ul {
	list-style: none
}

iframe {
	border: none !important;
	width: 0 !important;
	height: 0 !important
}

a {
	text-decoration: none;
	cursor: pointer !important
}

html {
	font-size: 62.5%;
	-webkit-text-size-adjust: 100%;
	position: relative
}

body {
	font-family: 'Quattrocento Sans', Arial, sans-serif;
	color: #32445c;
	line-height: 1.3;
	font-size: 1.8rem;
	background: #F7FAA1
}

.step-block {
	width: 90%;
	margin: 0 auto
}

.step-item {
	display: none;
	text-align: center
}

.step-item.visible {
	display: block
}

.step-header {
	text-align: center;
	padding: 2.5rem 0;
	font-size: 4rem;
	color: #ea1d5d;
	line-height: 1;
	font-weight: 700
}

.step-content p {
	margin-bottom: 2rem
}

.main-img {
	max-width: 100%;
	margin: 2rem auto
}

.first-step {
	font-weight: 700;
	font-size: 2.4rem
}

.first-step .notice {
	font-size: 1.8rem;
	margin: 0
}

.question-notice {
	font-style: italic;
	font-size: 1.8rem;
	text-align: center
}

.checkbox-block {
	margin-top: 2rem
}

.checkbox-item {
	display: inline-block;
	position: relative;
	padding: 0 0 0 5rem;
	margin: 2rem;
	text-align: left;
	line-height: 3.8rem;
	cursor: pointer;
	transition: all 0.3s linear;
	color: #333;
	font-size: 2.4rem
}

.checkbox-item:before {
	content: "";
	position: absolute;
	width: 3.5rem;
	height: 3.5rem;
	line-height: 3.5rem;
	border: 1px solid #ccc;
	top: 0;
	left: 0;
	z-index: 1;
	color: #fff;
	font-family: Arial, sans-serif;
	font-weight: bold;
	font-size: 2.4rem;
	text-align: center;
	background: #fff;
	display: flex;
	flex-flow: row nowrap;
	justify-content: center;
	align-items: center
}

.checkbox-item.checked:before {
	content: "\2713";
	color: #ea1d5d
}

.buttons-block {
	text-align: center;
	padding: 1rem 0;
	font-size: 0
}

.step-btn {
	background: #32c26b;
	display: block;
	width: 100%;
	max-width: 300px;
	margin: 2rem auto;
	height: 6rem;
	line-height: 6rem;
	cursor: pointer;
	transition: all 0.3s linear;
	font-size: 2.8rem;
	color: #fff
}

.step-btn:hover {
	opacity: 0.8
}

@media (max-width: 600px) {
	html {
		font-size: 50%
	}
	.checkbox-item {
		display: block;
		margin: 2rem 0
	}
}