/* ===== STANDARD ===== */

html, body {
	margin: 0px;
	min-width: 300px;
	background-color: #FFFFFF;
	height: 100%;
	color: #525252;
}

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

a {
	color: inherit;
}

body {
	overflow: hidden;
}

body, input, button {
	font-family: 'Open Sans', sans-serif;
	font-weight: 400;
	font-size: 15px;
	color: #444444;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
}

h2 {
	margin: 0px;
	padding: 0px;
	margin-bottom: 20px;
	font-weight: 600;
	font-size: 26px;
}

div#disclaimer {
	font-size: 80%;
	opacity: 0.6;
}

.item {
	margin-bottom: 20px;
}

input[type="text"] {
	width: 100%;
	padding: 10px 15px;
	font-size: 14px;
	border: 1px solid #ced4da;
}

/*label {
	font-size: 110%;
}*/
label > * {
	vertical-align: middle;
}
input[type="radio"] {
	height: 2em;
	width: 2em;
}
input[type="radio"].mr {
	margin-left: 35px !important;
}

input[type="checkbox"] {
	height: 1em;
	width: 1em;
	margin-right: 5px;
}

button.submit {
	width: 100%;
	padding: 10px 30px;
	text-align: center;
	display: block;
	background-color: #FFFFFF;
	border: 0px;
	border-radius: 4px;
	cursor: pointer;
	font-size: 16px !important;
	margin-top: 10px;
	margin-bottom: 8px;
	transition: 0.5s;
}

button.submit:hover {
	background-color: #1b55ab;
}

div.cf {
	clear: both;
}

input, button {
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-ms-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

p.error > span {
	color: #FF0000;
}
p.success > span {
	color: #43A201;
}
p.error > span,
p.success > span {
	padding-right: 10px;
}





/* ===== STEPS ===== */

div#steps > div {
	margin: 20px 30px 20px 0px;
	background-repeat: no-repeat;
	background-position: left;
}

div#steps div.step1 {
	background-image: url("step1.png");
}

div#steps div.step2 {
	background-image: url("step2.png");
}

div#steps div.step3 {
	background-image: url("step3.png");
}





/* ===== COLORS ===== */

input[type="text"]:focus {
	border-color: #0084AB;
}
button.submit {
	background-color: #0084AB;
	color: #FFFFFF;
}
body {
	border-color: #0084AB;
}






/* ===== LAYOUT ===== */

div.section {
	padding: 13px;
}

div#steps > div {
	min-height: 85px;
	padding-left: 95px;
	background-size: 80px auto;
	display: flex;
	align-items: center;
}

@media (max-height: 610px) and (max-width: 799px) {
	div#introduction {
		display: none;
	}
}

@media (min-width: 600px) {
	div.section {
		padding: 20px;
	}

	div#steps > div {
		min-height: 85px;
		padding-left: 95px;
		background-size: 80px auto;
	}
}

@media (min-width: 800px) {
	div.section {
		padding: 14px;
		display: inline-block;
		width: 50%;
		vertical-align: top;
	}

	div#steps > div {
		min-height: 85px;
		padding-left: 95px;
		background-size: 80px auto;
	}
}


@media (min-width: 950px) and (min-height: 500px) {
	h2 {
		font-size: 25px;
	}
	body {
		font-size: 18px;
	}
	div.section {
		padding: 20px;
		display: inline-block;
		vertical-align: top;
	}
	div#introduction {
		width: 60%;
	}
	div#form {
		width: 40%;
	}

	div#steps > div {
		min-height: 110px;
		padding-left: 130px;
		background-size: 120px auto;
		margin-top: 30px;
	}
}

div.privacyPolicy {
	font-size: 80%;
}
