/********
* LEADLOCK
********/

#eap-lock * {
	box-sizing: border-box;
}

#eap-lock {
	display: flex;
	flex-direction: column;
	position: fixed;
	z-index: -50;
	visibility: hidden;
}

#eap-lock-form {
	font-family: "Lato";
	max-width: 350px;
	background-color: #fff;
	border-radius: 10px;
	padding: 20px;
	margin: 0 auto;
	box-shadow: 0 1px 0 #000;
	z-index: 15000;
}

#eap-lock-title {
	text-align: center;
	font-size: 2.5em;
	font-family: 'Lato';
	margin: 0 auto;
	margin-bottom: 50px;
	text-shadow: 0 1px 0px #000000;
	font-weight: 900;
}

.eap-lock-submitholder div {
	border: 1px solid rgba(51, 51, 51, 0.1);
	cursor: pointer;
	font-weight: 700;
	text-transform: uppercase;
	width: 100%;
	text-align: center;
}

#eap-lock-form input {
	position: relative;
	z-index: 20000;
}

#eap-lock-image {
	position: fixed;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	z-index: -51;
	visibility: hidden;
	background-size: cover;
	background-position: center center;
}

#eap-lock-overlay {
	position: fixed;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;
	background: rgba(0, 0, 0, .5);
	z-index: -52;
	visibility: hidden;
}

#eap-lock-form input {
	width: 100%;
}

#eap-lock-form input, .eap-lock-submitholder div {
	background: #F7F7F7;
	-moz-hyphens: none;
	border-radius: 4px;
	font-family: "Lato" !important;
	outline: 0px none;
	font-size: 18px;
	padding: 0.8125em 1.625em;
	line-height: normal;
	vertical-align: baseline;
	padding: 0.5278em;
	border: 1px solid rgba(51, 51, 51, 0.1);
	color: rgba(51, 51, 51, 0.698);
	box-shadow: initial !important;
	height: 43px;
}

#eap-lock-form input[type="text"]:focus {
	border: 1px solid rgba(51, 51, 51, 0.1);
	background: #FFF;
}

.eap-lock-firstnameholder {
	margin-right: 2%;
}

.eap-lock-lastnameholder {
	margin-left: 2%;
}

.eap-lock-firstnameholder, .eap-lock-lastnameholder {
	width: 48%;
	float: left;
}

.eap-lock-nameholder, .eap-lock-emailholder, .eap-lock-phoneholder {
	margin-bottom: 10px;
}

.eap-error-holder {
	display: none;
	text-align: center;
	color: red;
	margin-bottom: 10px;
}

.eap-errorEmail-holder {
	display: none;
	text-align: center;
	color: red;
	margin-bottom: 10px;
}

.eap-errorPhone-holder {
	display: none;
	text-align: center;
	color: red;
	margin-bottom: 10px;
}

.clear {
	clear: both;
}

@media only screen and (max-width: 768px) {
	#eap-lock {
		position: absolute;
		left: 15% !important;
		top: 25% !important;
	}
	#eap-lock-title {
		font-size: 1.5em;
		line-height: 1.2em;
		margin-bottom: 150px;
	}
	#eap-lock-form {
		position: absolute;
		width: 75%;
		right: 15%;
		bottom: calc(25% - 150px);
		display: block;
	}
}