@charset "utf-8";
/* CSS Document */


th{
	width: 100%;
	border-bottom: thin solid #0CC;
	/*background-color:#999;*/
	color:#0CC;
        text-align:center;
}
td{
	width: 100%;
	border-top: thin solid #0CC;
	/*background-color:#999;*/
	text-align:center;
	color: #000;
	padding: 0 5px 0 10px;
	/*background-color: #EAEAEB; */

}


h4{
	color:gray; width:100%;padding:5px; /* background-color:#F1890E;   */
}
body{
	color:gray;
}

/* <!-- ::::::::::::::::Image Slider CSS ::::::::::::::::-->*/
.galleryContainer{
	position: absolute;
	top: 0;
	widows: 100%;
	max-width: 100%;
	width: 100%;
	height: 100vh;
	user-select: none; 
	/*box-shadow: 0px 0px 3px 10px #00000078; */
	/*padding: 5px 10px 0px 10px; */
	box-sizing: border-box;
	/*margin: 0px 0px 50px 0px ; */
	z-index: 10;
}

.galleryContainer .slideShowContainer{
	width: 100%;
	height: 100%;
	overflow: hidden;
	/*background-color: gainsboro; */
	position: relative;
}

.galleryContainer .slideShowContainer .imageHolder{
	width: 100%;
	height: 100%;
	position: absolute;
	opacity: 0;
}

.galleryContainer .slideShowContainer .imageHolder img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.galleryContainer .slideShowContainer .imageHolder captionText{
	display: none;
}

.galleryContainer .slideShowContainer .leftArrow, .galleryContainer .slideShowContainer .rightArrow{
	width: 50px;
	/* background: #00000036; */
	position: absolute;
	left: 0;
	z-index: 1;
	transition: background 0.5s;
	height: 72px;
	top: 50%;
	transform: translateY(-50%);
	border-top-right-radius: 10px;
	border-bottom-right-radius: 10px;
}

.galleryContainer .slideShowContainer .rightArrow{
	left: auto;
	right: 0;
	border-top-left-radius: 0px;
	border-bottom-left-radius: 0px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;

}

.galleryContainer .slideShowContainer .leftArrow:hover{
	background:#000000a8;
	cursor: pointer;
}

.galleryContainer .slideShowContainer .rightArrow:hover{
	background:#000000a8;
	cursor: pointer;
}

.galleryContainer .slideShowContainer .arrow{
	display: inline-block;
	border: 3px solid white;
	width: 10px;
	height: 10px;
	border-left: none;
	border-bottom: none;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
}

.galleryContainer .slideShowContainer .arrow.arrowLeft{
	transform: rotateZ(-135deg);
}

.galleryContainer .slideShowContainer .arrow.arrowRight{
	transform: rotateZ(45deg);
}

.galleryContainer .captionHolder{
	position: absolute;
	top:  35%;
	right: 0;
	z-index: 1;
	color: white;
	font-family: Arial, Helvetica, sans-serif;
	padding-left: 50%;
	padding-top: 50px;
	height: auto;
/* 	background:00000047; */
	line-height: 30px;
	 overflow: hidden; 

/*
	 background-color: rgb(0,0,0);
   background-color: rgba(0,0,5,.5);
	box-shadow: 0 1px 5px rgba(0,0,0,0.5); 
	*/
}


.captionText, .captionText2{
	font-size: 2.5em;
	font-weight: bold;
	text-align: center;
}

.captionTextSmall{
	font-size: 1.2em;
	font-weight: lighter;
	text-align: center;
}


.galleryContainer .slideShowContainer>.captionHolder>.captionText{
	margin: 0;
	background-color: 
	opacity: .9;
   padding: 2%;

}



.galleryContainer #dotsContainer{
	position: absolute;
	bottom: 10px;
	width: 100%;
	height: 10%;
	text-align: center;
	padding-top: 20px;
	box-sizing: border-box;
}

.galleryContainer #dotsContainer .dots{ /*NOTE: THE dots CLASS WAS ADDED USING Javascript*/
	display: inline-block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	margin-left: 10px;
	background-color: #bbb;
	cursor: pointer;
	transition: background-color 0.5s;
	
}

.galleryContainer #dotsContainer .dots:hover, .galleryContainer #dotsContainer .dots.active{
	/*NOTE: THE active CLASS WAS ADDED USING Javascript*/
	background-color: transparent;
	border:3px #fff solid;
	width: 12px;
	height: 12px;
	background-image: url('image/dot.png');
}

.galleryContainer #dotsContainer .dots:first-child{
	margin-left: 0;
}

.galleryContainer .moveLeftCurrentSlide{
	animation-name: moveLeftCurrent;
	animation-duration: 0.5s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}

.galleryContainer .moveLeftNextSlide{
	animation-name: moveLeftNext;
	animation-duration: 0.5s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}

@keyframes moveLeftCurrent{
	from{
		margin-left: 0;
		opacity: 1;
	}to{
		margin-left: -100%;
		opacity: 1;
	}
}

@keyframes moveLeftNext{
	from{
		margin-left: 100%;
		opacity: 1;
	}to{
		margin-left: 0;
		opacity: 1;
	}
}

.galleryContainer .moveRightCurrentSlide{
	animation-name: moveRightCurrent;
	animation-duration: 0.5s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}

@keyframes moveRightCurrent{
	from{
		margin-left: 0;
		opacity: 1;
	}to{
		margin-left: 100%;
		opacity: 1;
	}
}

.galleryContainer .moveRightNextSlide{
	animation-name: moveRightNext;
	animation-duration: 0.5s;
	animation-timing-function: linear;
	animation-fill-mode: forwards;
}

@keyframes moveRightNext{
	from{
		margin-left: -100%;
		opacity: 1;
	}to{
		margin-left: 0;
		opacity: 1;
	}
}
 
.slideTestFromBottom{
	animation-name: slideTestFromBottom;
	animation-duration: .7s;
	animation-timing-function: ease-out;

}

@keyframes slideTestFromBottom{
	from{opacity: 0;margin-top: 100px;}
	to{opacity: 1;margin-top: 0;}
}

.slideTestFromTop{
	animation-name: slideTestFromTop;
	animation-duration: .7s;
	animation-timing-function: ease-out;

}

@keyframes slideTestFromTop{
	from{opacity: 0;margin-top: -100px;}
	to{opacity: 1;margin-top: 0;}
}

/*  <!-- ::::::::::::::::END Image Slider CSS ::::::::::::::::-->*/  

#ListingContainer{
	width:99%;
	float:left;
	padding-top: 0px;
	/*margin-left: 0.5%;*/
	background-color:#fff;
	margin-right: 0px;
	/*box-shadow: 0 6px 40px rgba(0,0,0,0.5); */
}
#listing{
	width:98%;
	overflow:auto;
	padding: 0px 0px 0px 0px;
	float:left;
	background-color:#fff;
	min-height: auto;
	height:600px;
	overflow:auto;	
}

#Contener{
		width: 100%;
		background-color: #ccffff;
		margin-right: 0px;
		padding-right: 0px;
		clear: right;

	}
#Content{
	text-align: justify;
	color:#fff; 
	width: 98%; 
	clear: right;
	min-height: 100px;
	height: auto;
	background-color: #ccffff;
	margin:0px;
	padding-right: 0px;
}
#sub{
	text-align: center;
	color:#fff;
	margin-top: 0px; 
	width: 100%; 
	text-align: center; 
	height: auto;
	background-color: #2A2E5B;
	padding-top: 20px; 
	padding-bottom:10px;
}
#subplan{
	width: 100%;
	min-height: 120px;
	float:left; 
	padding-left:0px;
	margin: 0 10px 10px 2px;
	color:#CCCCCC;
	background-color: #fff;
	border: 1px #999 solid;
	
	border-radius: 3px;
}
#plane{
	float:left;color: #fff;padding: 2%; width: 28%; margin-top: 20px;
}
#subTop{
	text-align: center;
	color:#fff;
	margin: 120px 0px 0px 0.3%; 
	width: 80.5%; 
	height: auto;
	background-color: #0079FE;
	/* padding-top: 45px; 
	padding-bottom: 10px;
	line-height: 50px; */
	float: left;
}

#spanTop{
	font-size: 1.5em; 
	line-height: 35px;
}
#nameMobile{
	display: none;
}
#subin{
	float: left; width: 45%; text-align: left;
}
#subin img{
	width: 400px; height: 200px;
}
#subin a{
	font-size: 0.9em;
	color: #fff;
}
#subin a:hover{
	color: #F0F0F0;
	font-size: 1em;
}
#ScrollDiv{
	width:100%;
	min-height: auto;
	height:80%;
	margin-bottom: 10px;
	overflow:auto;
}
#SideNavLeft{
	margin-top: 85px;
}
#SideNavLeft a{
	padding: 10px 0 10px 0;
	display: inline-block;
	color:#F1890E;
	border-bottom: #EEEEEE 1px solid;
	width: 99%;
	text-decoration: none;
	text-align: left;
	padding-left: 1%;
}
#SideNavLeft a:hover{
background-color: #0079FE;
color: #fff;
}

#subdonemain{
	min-height: 300px; width: 80.5%; text-align: left; float: left; margin-left: 0.3%; padding-top: 0px;  background-color: #fff; 
}

.subdone{
	width: 25%;
	height: 250px; max-height: 250px;
	float:left; 
	margin: 20px 20px 10px 5%;
	color:#CCCCCC;
	/* background-color: #F0F0F0; */
	background-color: #fff;
	text-align: center;
	border-radius: 6px;
	border: 1px #e1e1e1 solid;
	padding-bottom: 2%;
	
	/*STOP ALL TEXT FROM SHOWING */
	/*
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	*/
	/*END STOP ALL TEXT FROM SHOWING */


}

.subdone:hover{
	/*background-color: #CCFFFF;*/
	box-shadow: 0 6px 10px rgba(0,0,0,0.5);
	-webkit-transition: box-shadow 1s; 
    -webkit-transition-delay: 0s;
	
}

.subdoneContener{
	width:90%;
	height: 100%;
	/*box-shadow: 0 6px 40px rgba(0,0,0,0.5); */
	padding: 2% 5% 2% 5%;
		 
}

.DeImage{width:100%;height:90%; text-align: center; padding-bottom: 1%;}

.DeImage img{width: 100%; max-height: 220px; height: auto;}

.dis{width:100%;  bottom:0px; height:10%; overflow-y: auto; clear: both;}



#subSend{
	background-color: #00A6EB;
	width: 80%; 
	height: 30px;
	margin-left: 20px;
	margin-bottom: 20px;
	padding-top: 8px;
}
#subSend:hover{
	background-color: #40BCF0;
	
}

.forSearch{
	display: none;

}
/* FOR PRODUCT PREVIEW */
#desImage{
	width: 45%;
	padding-top:5px;
}
#desImage button{
	width: 10%;
	border: none;
}

#desImage img{
	max-width:300px;  max-height:300px;
	max-width:550px;  max-height:550px; 
	width:80%; height:80%;
}
#desItem{
	width: 50%;
	padding-top:5px;
}

#pageNo{
	width: 99%;
	float: left;
	padding: 2%;
	color: #0079FE;
}

#pageNo a {
	 padding: 1px 4px 1px 4px; border: 1px #ccffff solid;margin-left:5px; color: #0079FE;
}

#pageNo a.active {
	color: #fff; border: 1px #0079FE solid; background-color: #0079FE;
}

#exitStore{
	display: block;
	position:fixed;
	bottom: 10%;
	right:  0%;
	width:auto;
	background-color: #F1890E;
	color:#fff;
	padding: 1%;
	word-spacing: 2px;
	font-size:0.9em;
	font-weight: bold;
	border-bottom-left-radius: 3px;
	border-top-left-radius: 3px;
	z-index: 200;
}

@media only screen and (max-width: 990px){

	
	h4{
		width:98%; 
	}
	
	.forSearch{
		display: block;
	}
	#subdonemain{
	padding-left: 2%; 
	width: 100%;
	}

	
	#subplan{
	width: 97%;
	text-align: justify;
	}
	#plane{
	width: 95%;
	}
	#subTop{
		color:#fff;
		width: 103%; 
		text-align: center; 
		height: auto;
		/*  background-color: #0079FE; */
		font-size: 0.8em;
		margin-right: 0%;
		margin-top: 60px;
		padding-right: 0%;
		padding-top: 10px;

	}
	#spanTop{
		font-size: 1.5em; 
		line-height: 40px;
	}
	#nameMobile{
		display: inline-block;
		width: 103%; 
		background-color: #0079FE;
		margin-top: 60px; 
		text-align: center;

	}
	#subin{
		width: 100%; 
		text-align: center;
	}
	#subin img{
		width: 90%; height: 70%;
	}
	#subdiv{
		padding-left: 2%;
		width:95%; 
		margin-right: 1%;
	}
	#sub{
	width: 100%;
	text-align: justify;
	}
	#subContent{
	width: 91%;
	}
	#Content{
	width:96%;
	margin-left:0px;
	padding-left: 1%;
	padding-right: 3%;
	padding-top: 20px;
	margin-top:0px;
	
	}
	#Contener{
		width: 99.1%;
		background-color: #0079FE;
		margin: 0px;
		padding: 0px;
	}


}


@media only screen and (max-width: 882px){
	.subdone{max-height: 200px;}
	.DeImage img{max-height: 170px;}
}

@media only screen and (max-width: 800px){
	/* IMAGE SLIDER*/
	.galleryContainer{
		/*	height: 200px; */
	}
	
	
    	
    .galleryContainer .captionHolder{
        
    	top:  32%;
    	line-height: 40px;
    }
	/* <!-- ::::::::::::::::END Image Slider CSS ::::::::::::::::-->*/
	/* IMAGE SLIDER*/

}
@media only screen and (max-width: 715px){
	
}


@media only screen and (max-width: 708px){
	.subdone{
		width: 30%;
		margin: 20px 5px 10px 2%;
		max-height: 200px;
	}
	.DeImage img{max-height: 170px;}
}


@media only screen and (max-width: 576px){
	.subdone{
		width: 30%;
		margin: 20px 5px 10px 2%;
		max-height: 180px;
	}
	.DeImage img{max-height: 140px;}


	/* IMAGE SLIDER*/
	.galleryContainer{
		/* height: 250px; */
	}

	
}

@media only screen and (max-width: 561px){
	.subdone{
		width: 29%;
		margin: 20px 5px 10px 2%;
		max-height: 160px;
	}
	.DeImage img{max-height: 130px;}

}

@media only screen and (max-width: 469px){
	.subdone{
		 width: 29%;
		 min-height: 150px; max-height: 150px;
		 margin: 20px 1% 10px 1%;
	}

	#subTop{
		margin-top: 50px;
	}
	
}

@media only screen and (max-width: 444px){

	#spanTop{
		font-size: 1em; 
		line-height: 20px;
		font-weight: 60px; 
	}
	/*IMAGE SLIEDER*/
	.galleryContainer{
		/* height: 180px; */
	}
}

@media only screen and (max-width: 400px){
	.subdone{
		 width: 45%;
		 min-height: 150px; max-height: 150px;
		 margin: 20px 2% 10px 2%;
	}
}

@media only screen and (max-width: 310px){
	.subdone{
		 min-height: 130px; max-height: 130px;
	}

	/*IMAGE SLIEDER*/
	.galleryContainer{
		/* height: 150px; */
	}
}


@media only screen and (max-width: 222px){

	#subTop{
		margin-top: 60px;
	}

	.DeImage img{width: 100%; max-height:150px;}

	.subdone{
		 width: 90%;
		 margin: 30px 2% 10px 2%;
		 min-height: 180px; max-height: 180px;
	}

}