@charset "UTF-8";
*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}
html {
	width: 100%;
	height: 100%;
	min-width: 100vw;
	min-height: 100vh;
	height: -webkit-fill-available;
	min-height: -webkit-fill-available;
	overflow-x: hidden;
	line-height: 1.15;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	height: -webkit-fill-available;
}
body {
	width: 100%;
	height: 100%;
	min-width: 100vw;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	margin: 0 auto;
	overflow: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	min-height: -webkit-fill-available;
}
article, aside, footer, header, nav, section, figcaption, figure, main {
	display: block;
}
img {
	border-style: none;
	-ms-interpolation-mode: bicubic;
	vertical-align: middle;
}
svg:not(:root) {
	overflow: hidden;
}
button, input, optgroup, select, textarea {
	font-family: sans-serif;
	font-size: 100%;
	margin: 0;
}
button, input {
	overflow: visible;
}
button, select {
	text-transform: none;
}
button, button:active, button:focus {
	outline:none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
	-webkit-appearance: button;
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}
button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}
form {
	margin: 0;
}

html {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 16px;
	line-height:1.4;
	font-weight:normal;
	color:#3f484b;
}
body {
	background-color: #E1E1E1;
	background-image: url("../images/esteria_bg.svg");
	background-repeat: no-repeat;
	background-position: top 40px left 30%;
	background-size: auto 90vh;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
h1, h3 {
	font-weight: normal;
	text-align: center;
}
h1 {
	color: #137cbf;
	font-size:2.625rem;
	line-height: 2.875rem;
	padding-bottom: 20px;
	text-transform: uppercase;
}
h3 {
	display: flex;
	flex-direction: column;
	color: #3f484b;
	font-size:1.875rem;
	line-height: 2.125rem;
}
h3:not(:last-of-type) {
	margin-bottom: 10px;
}
.color {
	color: #F06423;
}
button {
	background-color:#F06423;
	color:#fff;
	margin:0;
	padding:10px 20px;
	font-size:2rem;
	text-decoration:none;
	text-transform: uppercase;
	white-space:nowrap;
	vertical-align:middle;
	text-align:center;
	display: block;
	cursor: pointer;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: none;
	-webkit-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	transition: all ease-in-out 0.2s;
}

a:link {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}

@media only screen and (max-width : 480px) {
	h1 {
		font-size:2.125rem;
		line-height: 2.375rem;
	}
	h3 {
		font-size:1.375rem;
		line-height: 1.625rem;
	}
	button {
		font-size:1.75rem;
	}
}
button:focus {
	background-color:#CE4B0E;
	text-decoration: none;
	-webkit-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	transition: all ease-in-out 0.2s;
}
button:hover {
	background-color:#137cbf;
	text-decoration: none;
	-webkit-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	transition: all ease-in-out 0.2s;
}

@media (hover: none) and (pointer: coarse) {
	button:hover {
		background-color:#F06423;
		text-decoration: none;
		-webkit-transition: all ease-in-out 0.2s;
		-o-transition: all ease-in-out 0.2s;
		-moz-transition: all ease-in-out 0.2s;
		transition: all ease-in-out 0.2s;
	}
}
.unsubscribe_box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-moz-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding:20px 40px 0;
}
.text_box {
	padding-bottom: 20px;
}
.text_box p {
	color: #000;
	font-size: 12px;
	line-height: 16px;
	text-align: center;
}
.unsubscribe_box form {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.checkbox_box {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	-webkit-box-align: start;
	-webkit-align-items: start;
	-moz-box-align: start;
	-ms-flex-align: start;
	align-items: start;
	margin-bottom: 40px;
	cursor: pointer;
}
.checkbox_box input[type="checkbox"] {
	position: absolute;
	width: 1.2em;
	height: 1.2em;
	opacity: 0;
}
.checkbox_box span:first-of-type {
	-webkit-box-flex: 0;
	-webkit-flex: none;
	-moz-box-flex: 0;
	-ms-flex: none;
	flex: none;
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	width: 1.2em;
	height: 1.2em;
	margin-top: 0.1em;
	margin-right: 0.5em;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	border: 1px solid #3f484b;
	-webkit-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	transition: all ease-in-out 0.2s;
}
.checkbox_box input[type="checkbox"]:focus ~ span:first-of-type {
	border-color: #137cbf;
	-webkit-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	transition: all ease-in-out 0.2s;
}
.checkbox_box input[type="checkbox"]:checked ~ span:first-of-type {
	border-color: #F06423;
	-webkit-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	transition: all ease-in-out 0.2s;
}
.checkbox_box input[type="checkbox"]:checked ~ span:first-of-type::after {
	content: ' ';
	display: block;
	width: 0.6em;
	height: 0.4em;
	border-left: 2px solid #F06423;
	border-bottom: 2px solid #F06423;
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	transition: all ease-in-out 0.2s;
}
/*.checkbox_box input[type="checkbox"]:checked ~ span:last-of-type {
	color: #F06423;
}*/
/*.invalid_input {
	border-bottom: 1px dashed #BF2627;
}*/
.invalid_input span:first-of-type {
	border-color: #BF2627;
	-webkit-transition: all ease-in-out 0.2s;
	-o-transition: all ease-in-out 0.2s;
	-moz-transition: all ease-in-out 0.2s;
	transition: all ease-in-out 0.2s;
}
.invalid_input span:last-of-type {
	color: #BF2627;
}
.error_text {
	color: #BF2627;
}
.footer_box {
	padding: 20px 40px;
	-webkit-box-flex: 0;
	-webkit-flex: none;
	-moz-box-flex: 0;
	-ms-flex: none;
	flex: none;
	min-width: 220px;
}
.copy {
	font-size: 12px;
	margin-bottom: 5px;
}
.logo {
	width: 100%;
	max-width: 140px;
	height: auto;
	opacity: 0.5;
}