body, html {
  overflow-x: hidden;
}
.sm-popup-btn {
	display: none !important;
}
/* Remove underline from links */
#Menu ul.skyway li a, #page-container .et_pb_section a  {
	text-decoration: unset !important;
}
.popup-container,  .sm-popup-container {
	background: rgba(255,255,255,.9);
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all .3s linear;
	z-index: -1;
}
.popup-container.popup-show, .sm-popup-container.sm-popup-show {
	opacity: 1;
	visibility: visible;
	z-index: 9999999;
}
.popup-content {
	background: #fff;
	width: 50%;
	max-width: 600px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 60px;
	box-shadow: 0px 0px 8px 4px rgba(0,0,0,.1);
	display: flex;
	flex-direction: column;
	text-align: center;
}
.popup-content img {
	max-width: 350px;
	width: 100%;
	margin: 0 auto;
}
.popup-content h3 {
	font-size: 33px;
	color: #000; 
}
.popup-content p {
  font-family: 'Montserrat';
  color: #BB2026;
  margin-bottom: 20px;
}
.close-btn {
	position: absolute;
	top: 20px;
	right: 40px;
	font-size: 22px;
	cursor: pointer;
	color: #000;
}
.popup-content .frm_primary_label {
	text-align: center;
	color: #000;
}
.popup-content .frm_button_submit {
	width: 100% !important;
	font-size: 20px !important;  
	font-weight: 600 !important;
	text-transform: uppercase;
}
.popup-content fieldset input {
	border: 0 !important;
	box-shadow: none !important;
	border-bottom: 1.5px solid #000 !important;
	border-radius: 0px !important;
	font-size: 20px !important;
	height: 45px !important;
	color: #000;
	font-family: 'Montserrat';
	text-align: center;
}
.popup-content fieldset input:focus {
	border-color: #BB2026 !important;
}

.popup-trigger-wrapper button:hover {
	color: #9b2222;
	background: #fff;
	border-color: #9b2222;
}
.popup-trigger-wrapper button {
	background: #000;
	color: #fff;
	padding: 20px 35px;
	font-family: 'Montserrat';
	font-weight: 700;
	border: 3px solid #fff;
	box-shadow: none;
	cursor: pointer;
	border-radius: 40px;
	transition: all 0.2s ease-in-out;
	font-size: 16px;
}
.popup-trigger-wrapper {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 99999;
}
@media screen and (max-width: 980px) {
	html body .popup-content {
		width: 90% !important;
		max-width: unset !important;
	}
	.popup-trigger-wrapper {
		right: 0px !important;
		bottom: 0px !important;
		width: 100% !important;
	}
	.popup-trigger-wrapper button {
		background: #000 !important;
		width: 100% !important;
		border-radius: 0px !important;
		border-color: #fff !important;
		color: #fff !important;
	}
}
@media screen and (max-width: 350px) {
	.popup-content fieldset input {
		font-size: 16px !important;
		text-align: left !important;
	}	
}