h1,
h2,
h3,
h4,
p {
	font-family: 'Muli', Arial, sans-serif;
	color: #000000;
}

h1 {
	font-family: 'Open Sans', sans-serif;
	font-weight: 600;
	font-size: 22px;
	margin: 0px 0px 10px 0px;
	padding: 0px 0px 5px 0px;
	line-height: normal;
	text-align: center;
}
h2 {
	font-family: 'Open Sans', sans-serif;
	font-weight: lighter;
	font-size: 21px;
	text-transform: uppercase;
	margin: 0px 0px 5px 0px;
	padding: 0px 0px 5px 0px;
	line-height: normal;
	letter-spacing: 1px;
}
h3 {
	font-weight: 450;
	font-size: 12pt;
	width: 100%;
	font-family: helvetica, 'Muli', sans-serif;
	margin-bottom: 1px;
	margin-top: 24px;
}
h4 {
	font-weight: normal;
	font-size: 12pt;
	font-family: helvetica, 'Muli', sans-serif;
	margin-bottom: 5px;
	margin-top: 5px;
}
a {
	text-decoration: underline;
	color: #8c4766;
}
a:hover {
	text-decoration: underline;
	color: #b46b8c;
}

input[type='button'],
input[type='submit'],
input[type='reset'],
button,
.button {
	color: #fff;
	background: #8c4766;
	font-size: 16px;
	border-radius: 3px;
	font-weight: 700;
	line-height: 1;
	margin: 0;
	padding: 10px 20px 11px;
	text-align: center;
	transition: background-color 0.15s ease-in-out;
	border: none;
	cursor: pointer;
	text-decoration: none;
}
input[type='button']:hover,
input[type='submit']:hover,
input[type='reset']:hover,
button:hover,
.button:hover {
	background: #b46b8c;
	text-decoration: none;
}

a.landingButton {
	/* fallback for older browsers */
	cursor: pointer;
	display: block;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	background: #8c4766;
	padding: 35px 0;
	box-shadow: 5px 5px 3px #ccc;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-family: 'Open Sans', 'MyriadPro', sans-serif;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0 auto 20px;
	border-radius: 4px;
	width: 90%;
	text-decoration: none;
	font-weight: 600;
	line-height: 1.2em;
}

a.landingButton:hover {
	transition: 0.5s all;
	background: #b46b8c;
	text-decoration: none;
}

a.landingButton:active {
	text-decoration: none;
	text-shadow: 1px 1px 1px #000;
}

.landingSection {
	margin-bottom: 20px;
}
.smaller {
	font-size: 14px;
	margin-top: 5px;
	font-family: 'Muli', sans-serif !important;
	color: #fff !important;
}

p.smaller {
	font-size: 14px;
	margin-bottom: 0px;
	font-family: 'Muli', sans-serif !important;
	color: #fff !important;
}
#wj--admin-button {
	text-align: center;
}
.red {
	color: red;
}

/* spinner */
#loaderWrap {
	/* The div that shows/hides. */
	display: none; /* starts out hidden */
	z-index: 40001; /* High z-index to ensure it appears above all content */
}
.loaderOverlay {
	/* Shades out background when selector is active */
	position: absolute;
	width: 50%;
	height: 100%;
	z-index: 40001;
}
.vertical-offset {
	/* Fixed position to provide the vertical offset */
	position: absolute;
	top: 54%;
	width: 100%;
	z-index: 40002; /* ensures box appears above overlay */
}
.loaderBox {
	/* The actual box, centered in the fixed-position div */
	max-width: 550px; /* Whatever width you want the box to be */
	position: relative;
	margin: 0 auto; /* Everything below is just visual styling */
	padding: 20px 20px 0 20px;
}

/* loading spinner */
.loader {
	margin: auto;
	border: 20px solid #eaf0f6; /*circle background*/
	border-radius: 50%;
	border-top: 20px solid #8e4766; /*spinning color*/
	width: 200px;
	height: 200px;
	animation: spinner 4s linear infinite;
}

@keyframes spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
