/***********************************
* BASE
**********************************/ 
body {
	overflow-x: hidden; 
}
/***********************************
* POPUP
**********************************/ 
/** POPUP **/

.specs-popup-container {
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.9);
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all .200s linear;
	z-index: -1;
}
.specs-popup-container.popup-visible {
	opacity: 1;
	visibility: visible;
	z-index: 9999;
}
.specs-popup-content {
	width: 100%;
	min-width: 500px;
	background: #fff;
	padding: 50px 110px;
	position: relative;
	top: 5%;
	box-shadow: 0 0 8px 2px rgba(0,0,0,.1);
	opacity: 0;
	visibility: hidden;
	transition: all .2s linear;
	text-align: center;
	max-width: 900px;
}
.specs-popup-content.popup-content-visible {
	top: 0;
	opacity: 1;
	visibility: visible;
}

.specs-popup-content h3 {
	font-family: 'Montserrat';
	font-size: 31px;
	color: #b70005 !important;
	line-height: 40px;
	margin-bottom: 15px;
}
.popup-close {
	font-size: 25px;
	color: #b70005;
	padding: 8px 11px;
	border-radius: 100px;
	cursor: pointer;
	position: absolute;
	right: 5%;
	top: 5%;
}
.specs-popup-content .wpcf7-form input {
	background: #fff !important;
	border: 2px solid #ccc !important;
	color: #000 !important;
}
.specs-popup-content h4 {
	margin-bottom: 10px;
}
.specs-popup-content .wpcf7-form input[type="submit"] {
	color: #fff !important;
	background-color: #b70005 !important;
	float: none !important;
	border: none !important;
	max-width: 210px !important;
	width: 100% !important;
}
.specs-popup-content .wpcf7-form .wpcf7-spinner {
	display: none;
}
/***********************************
* MEDIA QUERIES
**********************************/ 
@media screen and (min-width: 981px) {
	header .skyway li ul ul {
		top: 0 !important;
	}
}
@media screen and (max-width: 980px) {
	.et_pb_section_0_tb_header .sm-header-row #Menu {
		overflow-y: scroll !important;
	}
	.specs-popup-content {
		max-width: 90% !important;
		min-width: auto !important;
		padding: 50px !important;
	}
}