@import url('https://use.typekit.net/mdy4vto.css');

@font-face {
	font-family: 'icomoon';
	src: url('fonts/icomoon.eot?agw1gd');
	src: url('fonts/icomoon.eot?agw1gd#iefix') format('embedded-opentype'),
		url('fonts/icomoon.ttf?agw1gd') format('truetype'),
		url('fonts/icomoon.woff?agw1gd') format('woff'),
		url('fonts/icomoon.svg?agw1gd#icomoon') format('svg');
	font-weight: normal;
	font-style: normal;
	font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
	/* use !important to prevent issues with browser extensions that change fonts */
	font-family: 'icomoon' !important;
	speak: never;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;

	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icon-flamingo:before {
	content: "\e900";
}

:root {
	--appRed: #ED0F68;
	--appTeal: #00ABCC;
	--appTan: #F3EDE7;
	--appBlue: #2B85AC;
	--appGrey: #606060;
	--appDarkGrey: #36454f;
}

* {
	box-sizing: border-box;
}

a {
	text-decoration: none;
	color: var(--appTeal);
}

h1, h2 {
	font-family: 'azo-sans-web';
	font-weight: 500;
	letter-spacing: 4px;
}

.hide-desktop {
	display: none;
}

.btn {
	padding: 15px;
	font-size: 1.1em;
	text-transform: uppercase;
	border-radius: 3px;
}

.btn-info {
	background-color: var(--appBlue);
}

.btn:hover {
	filter: brightness(0.85);
}

.iziModal .iziModal-footer-buttons.flex .iziModal-footer-button {
	font-size: 1.1em;
	font-weight: 700;
}

.iziModal .iziModal-footer-buttons.flex .iziModal-footer-button:disabled,
.iziModal .iziModal-footer-buttons.flex .iziModal-footer-button[disabled] {
	opacity: 0.3;
}


.message-box {
	color: indianred;
	text-align: center;
	font-size: 0.8em;
	margin-bottom: 20px;
}

body {
	font-family: 'azo-sans-web',Helvetica, Arial, sans-serif !important;
	font-weight: 400;
	font-style: normal;
	margin: 0;
	padding: 0;
	font-size: 16px;
	height: 100vh;
}

.flex {
	display: flex;
}

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

.hidden {
	display: none;
}

button {
	cursor: pointer;
	border-radius: 7px;
	border: none;
}

.input-container {
	margin-bottom: 15px;
	width: 100%;
}

.input-group {
	display: flex;
	width: 100%;
}

/* Style the form icons */
.icon {
	padding: 10px;
	background: var(--appBlue);
	color: white;
	min-width: 50px;
	text-align: center;
	border-radius: 3px 0 0 3px;
}

/* Style the input fields */
.input-field {
	width: 100%;
	padding: 10px;
	outline: none;
	border-left: none;
	border: 1px solid #c3c3c3;
	border-radius: 0 3px 3px 0;
}

.input-field:focus {
	border: 2px solid var(--appBlue);
}

.input-container .error-message {
	display: none;
	color: #cc0033;
	font-size: 12px;
	line-height: 15px;
	margin: 5px 0 0;
}


.error label {
	color: #cc0033;
}

.error input[type=text],
.error input[type=email] {
	background-color: #fce4e4;
	border: 1px solid #cc0033;
	outline: none;
}

.error .icon {
	background-color: #cc0033;
}

.error .error-message {
	display: inline-block;
}

.hr-container {
	display: flex;
	width: 100%;
	margin: 10px auto;
}

.hr-line {
	width: 100%;
	position: relative;
	margin: 15px 0;
	border-bottom: 1px solid #647d7f;
}

.hr-icon {
	position: relative;
	top: 3px;
	color: #647d7f;
	font-size: 1.5em;
}

.hr-line.pink {
	border-bottom: 1px solid var(--appRed);
}

.hr-line.orange {
	border-bottom: 1px solid var(--appOrange);
}

.hr-icon.pink {
	color: var(--appRed);
	font-size: 2em;
}

.c2a-button {
	background-color: var(--appRed);
	color: #fff;
	padding: 0.7vw 25px;
	display: inline;
	width: 100%;
	border-radius: 5px;
	font-size: 1.3em;
	text-transform: uppercase;
	margin: 5px auto;
}

.c2a-blue {
	background-color: var(--appBlue) !important;
}

.c2a-teal {
	background-color: var(--appTeal) !important;
}

.c2a-grey {
	background-color: var(--appGrey) !important;
}