<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.tabs {
	max-width: 90%;
	float: none;
	list-style: none;
	padding: 0;
	margin: 75px auto;
	border-bottom: 4px solid #ccc;
}
.tabs:after {
	content: '';
	display: table;
	clear: both;
}
.tabs input[type=radio] {
	display:none;
}
.tabs label {
	display: block;
	float: left;
	width: 25%;
	
	font-family: AGENCYR;
	font-size: 150%;
	text-transform: uppercase;
	
	font-weight: normal;
	text-decoration: none;
	text-align: center;
	line-height: 2;
	cursor: pointer;
	box-shadow: inset 0 4px #ccc;
	border-bottom: 4px solid #ccc;
	-webkit-transition: all 0.5s; /* Safari 3.1 to 6.0 */
	transition: all 0.5s;
}
.tabs label span {
	display: none;
}
.tabs label i {
	padding: 5px;
	margin-right: 0;
}
.tabs label:hover {
	color: #e60b11;
	box-shadow: inset 0 4px #e60b11;
	border-bottom: 4px solid #e60b11;
}
.tab-content {
	display: none;
	/* width: 100%; */
	float: none;
	padding: 15px;
	box-sizing: border-box;
	background-color:#ffffff;
	margin: auto;
}




.tab-content * {
	-webkit-animation: scale 0.7s ease-in-out;
	-moz-animation: scale 0.7s ease-in-out;
	animation: scale 0.7s ease-in-out;
}
@keyframes scale {
  0% {
	transform: scale(0.9);
	opacity: 0;
	}
  50% {
	transform: scale(1.01);
	opacity: 0.5;
	}
  100% {
	transform: scale(1);
	opacity: 1;
  }
}	
	
	
	
	
	
	
.tabs [id^="tab"]:checked + label {
	background: #FFF;
	box-shadow: inset 0 4px #e60b11;
	border-bottom: 4px solid #e60b11;
	color: #e60b11;
}
#tab1:checked ~ #tab-content1,
#tab2:checked ~ #tab-content2,
#tab3:checked ~ #tab-content3,
#tab4:checked ~ #tab-content4 {
	display: block;
}	




.tabs i{
    display: none;
}


@media (min-width: 768px) {
	.tabs i {
		padding: 5px; 
		margin-right: 10px;
	}
	.tabs label span {
		display: inline-block;
	}
	.tabs {
	/* max-width: 750px; */
	margin: 50px auto;
	}
}
	

@media(max-width:900px){

	.tabs label span {
		display: inline-block;
		
		font-size: 100%;
	}
	
	.tabs label
	{
		font-size: 80%;
	}
	
	.tabs {
		max-width: 100%;
	}
	
}
	
	
	
	
	
div.tab-content img
{
	width: 100%;
	height: auto;
}
	
	
	
	
div.tech-specs
{
	margin-top: 65px;
}
	
	
	
	
	
	</pre></body></html>