body, html {
	width: 100%;
	height: 100vh;
	background-color: #fafffe;
	margin: 0;
	padding: 0;
	font-family: Roboto, sans-serif;
	font-size: 18px;
}

.main {
	position: relative;
	min-height: 100%;
	height: 100%;
	padding: 10px;
	box-sizing: border-box;
}

.form {
	position: relative;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 300px;
	max-width: 500px;
	padding: 20px;
	background-color: transparent;
	border: 1px solid #007D96;
	border-radius: 10px;
	box-sizing: border-box;
}

.title {
	text-align: center;
	/*text-transform: uppercase;*/
	margin: 0 0 15px;
	padding: 0;
	font-weight: bold;
	font-size: 32px;
}

.question-title {
	/*text-align: center;*/
	font-size: 18px;
	font-weight: 400;
	font-weight: bold;
}

.question-number {
	text-align: center;
	display: block;
	margin: 0;
	padding-bottom: 15px;
	font-size: 18px;
	font-style: italic;
	font-weight: 400;
	border-bottom: 1px solid #007D96;
	font-family: serif;
}

.question {
	display: none;
}

.check {
	display: block;
	margin-bottom: 10px;
}

/*.check input[type='radio'] {
	margin: 0;
	padding: 0;
	height: 14px;
	width: 14px;
	margin-right: 10px;
}*/

.check input[type=radio] {
	display: none;
}

.check label {
	display: inline-block;
	position: relative;
	cursor: pointer;
	padding: 10px 30px;
	font-size: 18px;
}

.check label:before {
	content: '';
	display: inline-block;

	width: 20px;
	height: 20px;

	margin-right: 10px;
	position: absolute;
	left: 0;
	top: 10px;
	background-color: #fff;
	box-shadow: inset 0px 1px 1px 0px rgba(0, 0, 0, .3), 0px 1px 0px 0px rgba(255, 255, 255, .8);

	border-radius: 10px;
}

input[type=radio]:checked + label:before {
    content: "\2022";
    color: #31bfc3;
    font-size: 38px;
    text-align: center;
    line-height: 24px;
}

.order-form input {
	display: block;
	width: 100%;
	box-sizing: border-box;
	padding: 15px 30px;
	margin-bottom: 10px;
	border-radius: 7px;
	border: none;
	font-size: 18px;
	box-shadow: inset 0 0 3px rgba(0, 0, 0, .5);
}

.form-title {
	text-align: center;
}

.btn-next, .btn-submit {
	display: block;
	padding: 15px;
	margin: 0 auto;
	width: 100%;
	background: #31bfc3; /* Old browsers */
	background: -moz-linear-gradient(top,  #31bfc3 0%, #009ead 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #31bfc3 0%,#009ead 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #31bfc3 0%,#009ead 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#31bfc3', endColorstr='#009ead',GradientType=0 ); /* IE6-9 */
	
	border: 1px solid #007D96;

	border-radius: 7px;
	
	color: #fff;
	text-align: center;
	font-size: 18px;

	cursor: pointer;
	box-sizing: border-box;
}

.btn-next:hover, .btn-submit:hover {
	cursor: pointer;
}

.order-form {
	display: none;
}

@media (max-width: 578px) {
	.form {
		top: 0;
		left: 0;
		transform: none;
	}
}