
/*POPUP STYLES*/
#register-popup {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	z-index: 10001;
	font-family: 'PT Sans Narrow', Arial, Verdana, sans-serif;
}

.popup-block {
	box-sizing: border-box;
	position: absolute;
	top: 50%;
	left: 50%;
	margin: -186px 0 0 -322px;
	width: 644px;
	height: 371px;
	border: 10px solid rgba(255,255,255,.24);
}

.popup-block video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.popup-content {
	box-sizing: border-box;
	padding: 0 52px 0 47px;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	text-align: center;
	color: #fff;
}

.popup-block .close-popup-btn {
	position: absolute;
	right: -50px;
	top: -10px;
	width: 22px;
	height: 22px;
	overflow: hidden;
	text-indent: -9999px;
	background: url('/images/popup/close-bg.png') no-repeat 50% 50%;
	-webkit-transition: all 0.15s ease-in-out;
			transition: all 0.15s ease-in-out;
}

.popup-block .close-popup-btn:hover {opacity: .6;}

.popup-block .popup-filter {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.5);
}

.popup-content h1 {
	margin: 0;
	padding: 0;
	font-weight: 700;
	font-size: 70px;
	line-height: 1;
	letter-spacing: 4px;
	color: #fff;
	text-transform: uppercase;
}

.popup-content h1:after {display: none;}

.popup-content p {
	margin-bottom: 25px;
	font: 35px/1.2 'PT Sans Narrow', Arial, Verdana, sans-serif;
	letter-spacing: 0px;
	color: #fff;
}

.popup-content label {
	display: block;
	margin-bottom: 15px;
	font-size: 24px;
	line-height: 1.2;
	letter-spacing: 0px;
}

.popup-content fieldset {
	position: relative;
	padding-right: 5px;
	margin: 0;
}

.popup-content input[type="text"],
.popup-content input[type="email"] {
	width: 69.7%;
	height: 49px;
	padding: 9px 25px;
	font-size: 22px;
	line-height: 31px;
	letter-spacing: -1px;
	font-family: 'PT Sans Narrow', Arial, Verdana, sans-serif;
	border: 1px solid #fff;
	box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box;
	color: #555;
	display: block;
	outline: none;
	background: #fff;
}
.search-bar input[type=text]:focus{border:none;}
.popup-content ::-webkit-input-placeholder {color:#555;}
.popup-content input:focus::-webkit-input-placeholder {opacity: 0.5;}
.popup-content :-moz-placeholder {color: #555;}
.popup-content input:focus:-moz-placeholder {opacity: 0.5;}
.popup-content ::-moz-placeholder {
	color: #555;
	opacity: 1;
}
.popup-content input:focus::-moz-placeholder {opacity: 0.5;}
.popup-content :-ms-input-placeholder {color: #555;}
.popup-content input:focus:-ms-input-placeholder {opacity: 0.5;}
.popup-content .error input[type="text"],
.popup-content .error input[type="email"] {
	border-color: red;
}

.popup-content .error input::-webkit-input-placeholder {
	color: red;
	opacity: 1;
}

.popup-content .error input:-moz-placeholder {
	color: #959595;
	opacity: 1;
}

.popup-content .error input::-moz-placeholder {
	color: red;
	opacity: 1;
}

.popup-content .error input:-ms-input-placeholder {
	color: red;
	opacity: 1;
}

.popup-content input::-webkit-input-placeholder {
	color: #959595;
	opacity: 1;
}

.popup-content input:-moz-placeholder {
	color: #959595;
	opacity: 1;
}

.popup-content input::-moz-placeholder {
	color: #959595;
	opacity: 1;
}

.popup-content input:-ms-input-placeholder {
	color: #959595;
	opacity: 1;
}

.popup-content input[type="submit"] {
	width: 158px;
	position: absolute;
	top: 0;
	right: 5px;
	height: 49px;
	background-color: #10b0ed;
	border: none;
	border-radius: 0 6px 6px 0;
	font-size: 22px;
	font-weight: 700;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
	font-family: 'PT Sans Narrow', Arial, Verdana, sans-serif;
}

.popup-block.thanks {text-align: center;}

.popup-content .thank-you,
.to-site-btn,
.thanks .popup-content .sign-up {
	display: none;
}

.thanks .popup-content {top: 91px;}

.thanks .to-site-btn {
	display: inline-block;
	padding-top: 15px;
	font-size: 25px;
	color: #fff;
	text-decoration: underline;
}

.thanks .to-site-btn:hover {text-decoration: none;}

.thanks .popup-content .thank-you,
.popup-content .to-site-btn {
	display: block;
}

.popup-content .thank-you h1 {
	margin-bottom: 15px;
	font-weight: 400;
}

.popup-content .thank-you p {font-size: 25px;}

