*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;	
	font-family: 'Poppins', sans-serif;
}

html, body{	
	height: 80%;
}

nav{	
	z-index: 100;
	display: flex;
	position: fixed;	
	justify-content: space-between;
	align-items: center;
	min-height: 8vh;
	min-width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #ccc; 
}

.logo{
	padding: 0px 15px 0px 55px;	
	z-index: 2;
	color: rgb(226,226,226);
	text-transform: uppercase;
	letter-spacing: 5px;
	font-size: 20px;	
}

.nav-links{
	z-index: 1;
	display: flex;
	justify-content: space-around;
	width: 50%;
}

.nav-links li{
	list-style: none;
}

.nav-links a{
	color: rgb(0,0,0);
	text-decoration: none;
	letter-spacing: 3px;
	font-weight: bold;
	font-size: 14px;
	transition: all 0.3s ease;	
	cursor: pointer;
}

.nav-links input[type="submit"]{
	color: rgb(0,0,0);
	text-decoration: none;
	letter-spacing: 3px;
	font-weight: bold;
	font-size: 14px;
	transition: all 0.3s ease;	
	border: none;
	cursor: pointer;
	background: transparent;
}

.nav-links input[type="submit"]:hover{
	font-size: 16px;
	cursor: pointer;
}

.nav-links a:hover{
	font-size: 16px;
}

.burger{
	padding: 0px 15px 0px 15px;	
	z-index: 2;
	display: none;
}

.burger div{
	width: 25px;
	height: 3px;
	background-color: rgb(226,226,226);
	margin: 5px;
	transition: all 0.3s ease;
}

@media screen and (min-width: 800px) and (max-width: 1366px){

	html, body{
		height: 90%;
	}

	.nav-links{		
		position: absolute;		
		height: 92vh;
		top: 8vh;
		background-color: #fff;
		width: 100vw;
		display: flex;
		flex-direction: column; 
		align-items: center;
		visibility: hidden;
		transform: translateY(-100%);
		transition: transform 0.5s, visibility 0.5s ease-in;
	}



	.nav-links li{
		opacity: 0;		
	}

	.nav-links a{
		font-size: 14px;
	}

	.nav-links input[type="submit"]{
		opacity: 0;
		font-size: 14px;
	}

	.burger{
		display: block;
		cursor: pointer;	
	}

}

@supports (-webkit-overflow-scrolling: touch){

	@media screen and (min-width: 769px) and (max-width: 1366px){

		html, body{
			height: 100%;
		}

		.nav-links{		
			position: absolute;		
			height: 92vh;
			top: 8vh;
			background-color: #fff;
			width: 100vw;
			display: flex;
			flex-direction: column; 
			align-items: center;
			visibility: hidden;
			transform: translate(-93.6%,-100%)!important;
			transition: transform 0.5s, visibility 0.5s ease-in;
		}

		.nav-active{	
			transform: translate(-93.6%,0%)!important;
			visibility: visible!important;
			overflow-y: scroll!important;
		}

		.nav-links li{
			opacity: 0;		
		}

		.nav-links a{
			font-size: 14px;
		}

		.nav-links input[type="submit"]{
			opacity: 0;
			font-size: 14px;
		}

		.burger{
			display: block;
			cursor: pointer;	
		}

	}

	@media screen and (max-width: 768px){
		.nav-links{		
			position: absolute;		
			height: 92vh;
			top: 8vh;
			background-color: #fff;
			width: 100vw;
			display: flex;
			flex-direction: column; 
			align-items: center;
			visibility: hidden;
			transform: translate(-91.6%,-100%)!important;
			transition: transform 0.5s, visibility 0.5s ease-in;
		}

		.nav-active{	
			transform: translate(-91.6%,0%)!important;
			visibility: visible!important;
			overflow-y: scroll!important;
		}
	}


}

@media screen and (max-width: 768px){

	html, body{
		height: 100%;
	}

	body{
		overflow-x: hidden;
		background: #F6F6F6;				
	}

	.nav-links a{
		font-size: 14px;
	}

	.nav-links input[type="submit"]{
		opacity: 0;
		font-size: 14px;
	}

	.nav-links{
		position: absolute;		
		height: 92vh;
		top: 8vh;
		background-color: #fff;
		width: 100vw;
		display: flex;
		flex-direction: column; 
		align-items: center;
		visibility: hidden;
		transform: translateY(-100%);
		transition: transform 0.5s, visibility 0.5s ease-in;
	}

	.nav-links li{
		opacity: 0;
	}

	.burger{
		display: block;
		cursor: pointer;	
	}
}

.nav-active{	
	transform: translateY(0%);
	visibility: visible;
	overflow-y: scroll;
}

@keyframes navLinkFade{
	from{
		opacity: 0;
		transform: translateY(50px);
	}
	to{
		opacity: 1;
		transform: translateY(0px);
	}
}

.toggle .line1{
	transform: rotate(-45deg) translate(-5px,6px);
}

.toggle .line2{
	opacity: 0;
}

.toggle .line3{
	transform: rotate(45deg) translate(-5px,-6px);
}

.slideshowContainer {
	position: relative;
	overflow: hidden;	
	width: 100%;
	height: 400px;
}

.imageSlides {
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
	position: absolute;
	left: 50%;
	top: 50%;
	max-width: -webkit-fill-available;
	transform: translate(-50%, -50%);
	min-width: 100%;
	min-height: 100%;
	opacity: 0;
	transition: opacity 1s ease-out;	
}

@media screen and (min-width: 1366px) and (max-width: 1440px){
	.slideshowContainer {
		position: relative;
		overflow: hidden;	
		width: 100%;
		height: 350px;
	}
}

@media screen and (max-width: 1366px){
	.slideshowContainer {
		position: relative;
		overflow: hidden;	
		width: 100%;
		height: 300px;
	}
}

@media screen and (min-width: 800px){
	.slideshowContainer {
		position: relative;
		overflow: hidden;	
		width: 100%;
		height: 300px;
	}
}

@media screen and (max-height: 1366px) and (min-width: 1024px){
	.slideshowContainer {
		position: relative;
		overflow: hidden;	
		width: 100%;
		height: 450px;
	}
}

/* add 'visible' class via Javascript */
.visible {
	opacity: 1;
}

.slideshowArrow {
	font-size: 7em;
	color: rgba(255, 255, 255, 1);
	cursor: pointer;
	transition: opacity 0.2s ease-in-out;
}

.slideshowArrow:hover {
	opacity: 0.75;
}

#leftArrow {
	padding-top: 50%;
	padding-bottom: 50%;
	padding-left: 15%;
	padding-right: 5%;	
	position: absolute;
	left: 0%;
	top: 50%;
	transform: translate(-50%, -50%);
}

#rightArrow {
	padding-top: 50%;
	padding-bottom: 50%;
	padding-right: 15%;	
	padding-left: 5%;	
	position: absolute;
	right: 0%;
	top: 50%;
	transform: translate(50%, -50%);
}

.slideshowCircles {
	position: absolute;
	bottom: 2%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
}

.circle {
	display: inline-block;
	margin-left: 3px;
	margin-right: 3px;
	width: 15px;
	height: 15px;
	border-radius: 50%;
	border: solid 2px rgba(255, 255, 255, 0.5);
	transition: 1s ease-in-out;
}

.dot {
	background-color: rgba(255, 255, 255, 0.7);
	border: solid 2px rgba(255, 255, 255, 0.5);
}

.container{
	position: relative;
	top: 8vh;
	min-height: 100%;	
}

.services{
	background: #f1f1f1;
	text-align: center;	
	position: relative;
}
.services h1{
	display: inline-block;
	text-transform: uppercase;
	border-bottom: 4px solid #aa2727;
	font-size: 20px;
	padding-bottom: 10px;
	margin-top: 40px;
}
.cen{
	max-width: 1600px;
	margin: auto;
	overflow: hidden;
	padding: 20px;
}
.service{
	display: inline-block;
	width: calc(100% / 3);
	margin: 0 -2px;
	padding: 20px;
	box-sizing: border-box;
	cursor: pointer;
	transition: 0.4s;
}
.service:hover{
	background: #ddd;
}
.service i{
	color: #aa2727;
	font-size: 34px;
	margin-bottom: 30px;
}
.service h2{
	font-size: 18px;
	text-transform: uppercase;
	font-weight: 500;
	margin: 0;
}
.service p{
	color: #000;
	font-size: 15px;
	font-weight: 500;
}
@media screen and (max-width: 800px) {
	.service{
		width: 50%;
	}
}
@media screen and (max-width: 500px) {
	.service{
		width: 100%;
	}
}

.footer {
	background: #28284a;
	color: rgb(226,226,226);
	top: 8vh;
	height: 450px;
	position: relative;
}

.footer .footer-content{
	height: 350px;
	display: flex;
}

.footer .footer-content .footer-section{
	flex: 1;
	padding: 25px;	
}

.footer .footer-bottom{
	background: #343A40;
	color: #686868;
	height: 50px;
	text-align: center;
	position: absolute;
	bottom: 0px;
	left: 0px;
	padding-top: 20px;
	width: 100% 
}

@media screen and (max-width: 400px){
	.footer{
		height: 750px;
	}

	.footer .footer-content{
		width: 100%;
		display: inline-block;
	}

	.footer .footer-content .footer-section{
		padding: 10px 25px 10px 25px;
		text-align: center;
		border-top: 1px solid #fff; 
	}	

	.footer .footer-bottom{
		background: #343A40;
		color: #686868;
		height: 50px;
		text-align: center;
		position: absolute;
		bottom: 0px;
		left: 0px;
		width: 100%;
		padding-top: 0px;
	}
}

@media screen and (max-width: 600px) and (min-width: 400px){
	.footer{
		height: 730px;
	}

	.footer .footer-content{
		width: 100%;
		display: inline-block;
	}

	.footer .footer-content .footer-section{
		padding: 10px 25px 10px 25px;
		text-align: center;
		border-top: 1px solid #fff; 
	}	

	.footer .footer-bottom{
		background: #343A40;
		color: #686868;
		height: 50px;
		text-align: center;
		position: absolute;
		bottom: 0px;
		left: 0px;
		width: 100%;
		padding-top: 10px;
	}
}

.footer .footer-content .about .contact span{
	display: block;
	font-size: 1em;
	margin-bottom: 8px;
}

.footer .footer-content .about .socials a{
	color: rgb(226,226,226);	
	border: 1px solid gray;
	width: 45px;
	height: 41px;
	padding-top: 5px;
	margin-right: 5px;
	text-align: center;
	display: inline-block;
	font-size: 1.2em;
	border-radius: 5px; 
	transition: all 0.3s ease;
}

.footer .footer-content .about .socials a:hover{
	border: 1px solid rgb(226,226,226);
	transition: all 0.3s ease;
}

.footer .footer-content .contact-form .contact-input{
	background: #fff;
	color: #000;
	margin-bottom: 10px;
	line-height: 1.5rem;
	padding: .4rem 1.0rem;
	border: none;
	transition: all 0.5s ease;
	resize: none;
}

.footer .footer-content .contact-form .contact-input:focus{
	color: #000;
	background: #c6c8c9;		
}

.links ul, .links h2{		
	list-style: none;
	text-align: center;
}

.links a{		
	color: rgb(226,226,226);
	text-decoration: none;
	letter-spacing: 3px;
	font-weight: bold;
	font-size: 14px;
}

.links li{
	padding: 10px;
	font-size: 14px;
	transition: background 0.2s ease-in, font-size 0.2s ease;
}

.links li:hover{
	color: rgb(236,236,236);
	font-size: 20px;
	background: #262646;
}

.text-input{
	
	width: 100%;	
	border-radius: 4px;
	resize: vertical;
}

.btn{
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;		
}

.center{
	overflow-x: auto; 
	display: flex; 	
	margin: 0;
}

.btn-page{	
	color: #000;
	font-size: 14px;
	background-color: #c6c8c9;
	transition: background-color 0.3s ease;	
	align-items: center;
	justify-content: center;
	position: relative;	
	text-decoration: none;	
	margin: auto;
}

.btn-page:hover{
	background-color: #b5b6b7;
}

.btn-submit{
	padding: 10px 18		px;
	color: rgb(236,236,236);
	font-size: 14px;
	background-color: #aa2727;
	transition: background-color 0.3s ease;
}

.btn-submit:hover{
	background-color: #636e72;
}

.container .product-container{
	display: flex;
	height: 100%;	
}

.container .product-container .product-section h1{	
	margin: 15px 15px 0px 15px;
}

.container .product-container .categories{	
	width: 20%;
	display: block;	
	color: #fff;
}

.container .product-container .products{	
	margin-top: 1%;
	position: relative;
	left: 15%;
	width: 50%;
	display: block;	
}

.category-link a{
	text-decoration: none;	
	color: #fff;
}

.category-link li{
	list-style: none;
	height: 50px;
	padding: 10px 15px;
	font-size: 16px;
	transition: font-size 0.3s ease;
}

.category-link li:hover{
	background-color: #9a2525; 	
}

.category-link-dda{
	float:right; 
	cursor: pointer; 
	padding: 0 30px;
}

.category-link-sC{	
	margin: 0!important;
	background-color: #c6c8c9!important;	
	display: none;
	overflow-y: auto;
	max-height: 50vh;
}

.category-link-sC li{
	list-style: none;
	height: 50px;
	padding: 10px 15px;
	font-size: 16px;
	transition: font-size 0.3s ease;
}

.category-link-sC li:hover{
	background-color: rgba(0, 0, 0, 0.1); 	
}

.category-link-sC li a{
	color:#000;
	list-style: none;
	height: 50px;
	padding: 10px 15px;
	font-size: 16px;
	transition: font-size 0.3s ease;
}

.toggle-categories{
	position: fixed;
	padding: 8% 15px 0px 15px;
	cursor: pointer;
	display: none;
	transition: all 0.3s ease;
}

.categories-title{
	background-color: #aa2727;
	padding: 2.5% 0;	
	display: block;	
	z-index: 1;
}

.categories-links{
	background-color: #aa2727;	
	display: block;	
	height: 100vh;
	max-height: 100vh;
}

@media screen and (max-width: 368px){
	.container .product-container .categories{
		width: 100%;		
		z-index: 1;
		position: fixed;
	}

	.container .product-container .categories-title{
		width: 100%;
		cursor: pointer;
		padding: 0;
		z-index: 1;
		font-size: 12px;
	}

	.container .product-container .categories-links{
		width: 100%;
		transform: translateX(-100%);		
		position: absolute;		
		visibility: hidden;
		transition: all 0.5s ease;
		font-size: 16px;
	}
	
	.toggle-categories{
		z-index: 1;
		display: block;
	}

	.container .product-container .products{
		padding-top:  102.14px;
		left: 0px;
		width: 100%;
	}

	.container .product-container .product-section ul{
		margin-top: 45px; 
	}

	.container .product-container{
		height: 100%;		
		margin-bottom: 15px;
	}
}
@media screen and (min-width: 800px) and (max-height: 500px){
	.container .product-container .categories{
		width: 50%;		
		z-index: 1;
		position: fixed;
		top: 15vh;			
	}

	.container .product-container .categories-title{		
		cursor: pointer;
		padding: 2.5% 0;		
	}

	.container .product-container .categories-links{
		width: 100%;
		transform: translateX(-100%);				
		visibility: hidden;
		transition: all 0.5s ease;
		font-size: 20px;
		
	}

	.toggle-categories{
		z-index: 1;
		display: block;
	}

	.container .product-container{
		height: 100%;
		margin-bottom: 15px;
	}

	.container .product-container .products{
		padding-top:  102.14px;
		left: 0px;
		width: 100%;
	}
}
@media screen and (min-width: 768px) and (max-width: 1023px){
	.container .product-container .categories{
		width: 50%;		
		z-index: 1;
		position: fixed;			
	}

	.container .product-container .categories-title{		
		cursor: pointer;
		padding: 2.5% 0;		
	}

	.container .product-container .categories-links{
		width: 100%;
		transform: translateX(-100%);				
		visibility: hidden;
		transition: all 0.5s ease;
		font-size: 20px;
		
	}

	.toggle-categories{
		z-index: 1;
		display: block;
	}

	.container .product-container{
		height: 100%;
		margin-bottom: 15px;
	}

	.container .product-container .products{
		padding-top:  102.14px;
		left: 0px;
		width: 100%;
	}
}

@media screen and (min-width: 1024px) and (max-width: 1440px){	
	.container .product-container .categories{		
		z-index: 1;
		position: fixed;
		width: 32%;
	}

	.container .product-container .categories-title{		
		cursor: pointer;
		padding: 2.5% 0;				
	}

	.category-link{
		max-height: 82vh;
		overflow-y: auto;
	}

	.container .product-container .categories-links{		
		transform: translateX(-100%);				
		visibility: hidden;
		transition: all 0.5s ease;
		font-size: 20px;
		position: absolute;
		min-width: 100%;
	}

	.toggle-categories{
		z-index: 1;
		display: block;
	}

	.container .product-container{
		height: 100%;	
		margin-bottom: 15px;	
	}

	.container .product-container .products{
		padding-top:  102.14px;
		left: 0px;
		width: 100%;
	}
}

@media screen and (max-height: 375px){
	.container .product-container .categories-title{
		width: 100%;
		cursor: pointer;
		padding: 0;
		font-size: 16px;
		top: 15vh;	
	}

	.container .product-container .categories-links{
		width: 100%;
		transform: translateX(-100%);		
		position: absolute;		
		visibility: hidden;
		transition: all 0.5s ease;
		font-size: 16px;		
	}
}

@media screen and (min-height: 300px) and (max-height: 600px){
	.container .product-container .categories-title{
		width: 100%;
		cursor: pointer;
		padding: 1.25% 0;
		font-size: 16px;		
	}

	.category-link{
		max-height: 65vh;
		overflow-y: auto;
	}

	.container .product-container .categories-links{
		width: 100%;
		transform: translateX(-100%);		
		position: absolute;		
		visibility: hidden;
		transition: all 0.5s ease;
		font-size: 16px;			
	}

	.container .product-container{
		height: 100%;
		margin-bottom: 15px;
	}
}


@media screen and (min-width: 368px) and (max-width: 767px){
	.container .product-container .product-section h1{	
		margin: 30px 15px 0px 15px;
	}
	.category-link{
		max-height: 60vh;
		overflow-y: auto;
	}
	.container .product-container .categories{
		width: 100%;		
		z-index: 1;
		position: fixed;
	}

	.category-link-sC{	
		margin: 0!important;
		background-color: #c6c8c9!important;	
		display: none;
		overflow-y: auto;
		max-height: 30vh;
	}

	.container .product-container .categories-title{
		width: 100%;
		cursor: pointer;
		padding: 2.5% 0;
		z-index: 1;
		font-size: 16px;
	}

	.container .product-container .categories-links{
		width: 100%;
		transform: translateX(-100%);		
		position: absolute;		
		visibility: hidden;
		transition: all 0.5s ease;
		font-size: 16px;		
	}
	
	.toggle-categories{
		z-index: 1;
		display: block;
	}

	.container .product-container{
		height: 100%;
		margin-bottom: 15px;
	}

	.container .product-container .products{
		padding-top:  102.14px;
		left: 0px;
		width: 100%;
	}
}

.container .product-container .categories-active{
	transform: translateX(0%);	
	visibility: visible;
}

@keyframes CatLinkFade{
	from{
		opacity: 0;
		transform: translateX(-100%);
	}
	to{
		opacity: 1;
		transform: translateX(0%);
	}
}

.product-image{
	max-height: 100%;
	max-width: 100%;
}

/* Create two equal columns that floats next to each other */

.column {
	padding: 0% 4%;
	position: relative;
	float: left;
	top: 5vh;
	width: 33.33%;
	height: 500px; /* Should be removed. Only for demonstration */	
}	

.column-img {
	padding: 0% 4%;
	position: relative;
	float: left;
	top: 5vh;
	width: 33.33%;
	height: 500px; /* Should be removed. Only for demonstration */	
	line-height: 500px;
   	text-align: center;
}	

.column-img img{
	vertical-align: middle;
	max-height: 100px; max-width:100%;
}

.column h2{
	text-align: center;
}

.column p{
	margin-top: 30px;
	font-size: 18px;
	text-align: justify;
}

@media screen and (max-width: 768px){
	.column {
		width: 100%;
		height: 30vh; /* Should be removed. Only for demonstration */
		border-right: 0!important;		
	}	

	.column-img {
		width: 100%;
		height: 30vh; /* Should be removed. Only for demonstration */
		border-right: 0!important;
		line-height: 30vh;
   		text-align: center;		
	}	

	.column-img img{
		vertical-align: middle;
		max-height: 100px; max-width:100%;
	}

	.column p{
		margin-top: 30px;
		font-size: 16px;
		text-align: justify;
	}
}

@media screen and (min-width: 768px) and (max-width: 1366px){
	.column {
		width: 80%;
	    height: 25vh;
		border-right: 0!important;		
		margin-left: auto;
		margin-right: auto;
		float: unset;
	}

	.column-img {
		width: 80%;
	    height: 25vh;
		border-right: 0!important;		
		margin-left: auto;
		margin-right: auto;
		float: unset;
		line-height: 25vh;
    	text-align: center;
	}		

	.column h2{
		font-size: 26px;
	}

	.column p{
		margin-top: 30px;
		font-size: 20px;
		text-align: justify;
	}

	.column-img img{
		vertical-align: middle;
		max-height: 300px; max-width:50%!important;
	}
}

.column-1{
	padding: 10px;
	float: left;
	width: 30%; 	
	height: 250px;  
	text-align: center;	
}

.column-1 img{
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}

.column-2{
	float: left;
	width: 70%!important;
	padding: 10px 50px 10px 50px;
	min-height: 250px;  
	max-height: 100%;
	text-align: justify;
	font-size: 14px;
}

.row{
	margin-top: 50px; 
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

/* Extra styles for the cancel button */
.cancelbtn {
	width: auto;
	padding: 10px 18px;
	background-color: #f44336;
}

/* Center the image and position the close button */
.imgcontainer {
	text-align: center;
	margin: 24px 0 0 0;
	position: relative;
}

img.avatar {
	width: 20%;
	border-radius: 50%;
	-webkit-user-drag: none;
	-khtml-user-drag: none;
	-moz-user-drag: none;
	-o-user-drag: none;
	user-drag: none;
}

.log-container {
	padding: 16px 16px 16px 16px;
	border-radius: 0 0px 15px 15px;
}

/* The Modal (background) */
.modal {
	opacity: 0;	
	visibility: hidden; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 6; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: none; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
	padding-top: 60px;
	transition: all 0.3s ease;	

}

/* Modal Content/Box */
.modal-content {
	background-color: #fefefe;
	margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
	border: 1px solid #888;
	width: 60%; /* Could be more or less, depending on screen size */	
	border-radius: 15px; 
}

.modal-content-li {
	background-color: #fefefe;
	margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
	border: 1px solid #888;
	width: 60%; /* Could be more or less, depending on screen size */	
	border-radius: 15px; 
}

.modal-content-li-p {
	background-color: #fefefe;
	margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
	border: 1px solid #888;
	width: 80%; /* Could be more or less, depending on screen size */	
	border-radius: 15px; 
}

@media screen and (max-width: 1366px){
	.modal {
		opacity: 0;	
		visibility: hidden; /* Hidden by default */
		position: fixed; /* Stay in place */
		z-index: 6; /* Sit on top */
		left: 0;
		top: 0;
		width: 100%; /* Full width */
		height: 100%; /* Full height */
		overflow-y: auto; /* Enable scroll if needed */
		background-color: rgb(0,0,0); /* Fallback color */
		background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
		padding-top: 60px;
		transition: all 0.3s ease;	

	}

	.modal-content-li {
		background-color: #fefefe;
		margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
		border: 1px solid #888;
		width: 100%; /* Could be more or less, depending on screen size */	
		border-radius: 15px; 
		overflow-y: scroll;
	}
}

/* The Close Button (x) */
.close {
	position: absolute;
	right: 25px;
	top: 0;
	color: #000;
	font-size: 35px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: red;
	cursor: pointer;
}

.log-input{
	width: 100%;
	padding: 12px 20px;
	margin: 8px 0;
	display: inline-block;
	border: 1px solid #ccc;
	box-sizing: border-box;
}

.animate {  
	visibility: visible;
	opacity: 1;	
	display: block!important;
}

.btn-log{	
	color: #fff;
	font-size: 14px;
	background-color: #aa2727;
	transition: background-color 0.3s ease;	
	align-items: center;
	justify-content: center;
	position: relative;		
	cursor: pointer;
	display: block;
	width: 100%;
}

.btn-log:hover{
	background-color: #982323;
}

.dropdown {
	float: right;
	position: relative;
	display: inline-block;
}

.dropdown-content {
	display: none;
	visibility: hidden;
	position: absolute;
	background-color: #f1f1f1;
	min-width: 400px;
	overflow: none;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
	transition: visibility 0.3s, opacity 0.3s ease;
	opacity: 0;
	right: 0;
	top: 3vh;
}

.dropdown-content a {
	font-size: 12px;
	color: black;
	padding: 16px 12px;
	text-decoration: none;
}

@media screen and (min-width: 768px) and (max-width: 1366px){
	.dropdown {
		float: none;
		position: relative;
		display: inline-block;
		text-align: center;
	}

	.dropdown-content {
		display: none;
		visibility: hidden;
		position: relative;
		background-color: #f1f1f1;
		width: 100vw;
		overflow: auto;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
		z-index: 1;
		transition: visibility 0.3s, opacity 0.3s ease;
		opacity: 0;
		right: 0;
	}
}

@media screen and (max-width: 768px){
	.dropdown {
		float: none;
		position: relative;
		display: block;
		text-align: center;
	}

	.dropdown-content {
		visibility: hidden;
		position: relative;
		background-color: #f1f1f1;
		width: 100vw;
		overflow: auto;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
		z-index: 1;
		transition: visibility 0.3s, opacity 0.3s ease;
		opacity: 0;
		right: 0;
	}
}

.alert {	
	justify-content: center;
	align-items: center;
	text-align: center;
	padding: 30px;
	background-color: #aa2727;
	color: white;	
	top: 20vh;
	position: relative;
}

.alert h1{
	font-size: 60px;
}

.alert h2{
	font-size: 40px;
}

.table{
	width: 100%;
	border: 2px solid #ccc;
	border-collapse: collapse;
	margin: 0;
	padding: 0;	
	table-layout: fixed;
}

.table caption{
	font-size: 28px;
	text-transform: uppercase;
	font-weight: bold;
	margin: 8px 0px;
}

.table tr{
	background-color: #c6c8c9;
	border: 2px solid #ccc;
}

.table th, .table td{
	font-size: 16px;
	padding: 8px;
	text-align: center;
}

.table thead th{
	text-transform: uppercase;
	background-color: #9c9c9c;
}

.table tbody tr:hover{
	background-color: rgba(0, 0, 0, 0.3);
}

.table tbody td:hover{
	background-color: rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 1024px){
	.table{
		border: 0px;				
	}

	.table caption{
		font-size: 20px;
	}

	.table thead{
		display: none;
	}

	.table tr{
		margin-bottom: 8px;
		border: 4px solid #ccc;
		display: block;
	}

	.table th, .table td{
		font-size: 12px;		
	}

	.table td{
		display: block;
		border-bottom: 1px  solid #ccc;
		text-align: right; 
	}

	.table td:last-child{
		border-bottom: 0px;
	}

	.table td:before{
		content: attr(data-label);
		font-weight: bold;
		text-transform: uppercase;		
		float: left;
	}
}

.btn-success{	
	color: rgb(236,236,236);
	font-size: 14px;
	background-color: #aa2727;
	transition: background-color 0.3s ease;
}

.btn-success:hover{
	background-color: #d42f2f;
}

.btn-table{
	padding: 8px 16px;
	border: none;
	border-radius: 4px;
	cursor: pointer;		
}

.f-c-b{
	color: #000;
}

.search-bar{
	min-width: 160px;
	padding: 6px 10px;
	font-size: 14px;
	border-radius: 4px;
	position: relative;
	float: right;	
}

.btn-page-ap{	
	color: #fff;
	font-size: 14px;
	background-color: #aa2727;
	transition: background-color 0.3s ease;	
	align-items: center;
	justify-content: center;
	position: relative;
	margin: 8px 0px 8px 0px;
	text-decoration: none;
	display: inline-block;	
}
.btn-page-ap:hover{
	background-color: #d42f2f;
}

.div-c{
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-y: auto;
}

.column-2 a{
	text-decoration: none;	
	color: #000;
}

.m-info{
	margin-top: 15px;
	font-size: 15px;
	color: #1e3799!important;
	float: right;
	position: relative;
	transition: font-size 0.3s ease;
	font-weight: bold;
}

.m-info:hover{
	font-size: 16px;
}

.pro-info{
	color: #fff;
	font-size: 14px;
	margin-top: 10px;
	text-align: center;
	height: 30px;
	line-height: 30px;
	display: flex;
}

.pro-info .active{
	background-color: #aa2727;
}

.pro-btn{
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	padding: 0 20px;
	margin-right: 5px;
	background: #ccc;
	cursor: pointer;    
}

.pro-con{
	width: 95%;
	box-sizing: border-box;
	border: 1px solid #e6e6e6;
	border-top: 3px solid #f24e41;
	padding: 20px;  
}

.pro-con-p{
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #e6e6e6;
	border-top: 3px solid #f24e41;
	padding: 20px;  
}

.deli{
	width: 100%;
	display: none;
	text-align: justify;
}

.show {display: block;visibility: visible; opacity: 1}

.products-logo{
	position: absolute; left: -25%;max-height: 150px; max-width:150px
}

@media screen and (max-width: 768px){
	.products-logo{
		position: absolute; left: 5%;max-height: 150px; max-width:150px
	}
}

@media screen and (max-width: 1366px){
	.products-logo{
		position: absolute; left: 5%;max-height: 150px; max-width:150px
	}
}

.login-modal{
	z-index: 120;
}

.reset-password {	
	position: fixed; /* Stay in place */
	z-index: 6; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */	
	padding-top: 60px;
}

/* Modal Content/Box */
.reset-password-content {
	background-color: #fefefe;
	margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
	border: 1px solid #888;
	width: 30%; /* Could be more or less, depending on screen size */	
	border-radius: 15px; 
}

@media screen and (max-width: 1366px){
	.reset-password-content {
		background-color: #fefefe;
		margin: 5% auto 15% auto; /* 5% from the top, 15% from the bottom and centered */
		border: 1px solid #888;
		width: 100%; /* Could be more or less, depending on screen size */	
		border-radius: 15px; 
	}
}

.reset-password-input-container {
	padding: 48px 16px;
	border-radius: 15px;
	background-color: #28284a;
	color: #fff;
}


@media screen and (max-width: 1366px){
	.reset-password {		
		position: fixed; /* Stay in place */
		z-index: 6; /* Sit on top */
		left: 0;
		top: 0;
		width: 100%; /* Full width */
		height: 100%; /* Full height */		
		padding-top: 60px;
	}
}
.category-link-sC-active{	
	display: block;
}