 
/* ======================= 
    Product Page Sidebar 
   ===================== */

 
/* produtc gallery */

.product-gallery {
    text-align: center;
	padding:0px;
	margin:0px;
}
.product-gallery li,
.product-gallery > div {
	display: inline-block;
	vertical-align: top;
	height: 250px;
	width: 31%;
	overflow: hidden;
	margin-right: 2%;
	margin-bottom: 30px;
}

 


/* Product popup */

.popup-overlay {
    background-color: rgba(68, 68, 68, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.product-gallery-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index:2;
}
.product-gallery-popup .product-popup-content {
	position: absolute;
	width: 800px;
	height: 400px;
	top: 50%;
	left: 50%;
	margin-left: -400px;
	margin-top: -200px;
	background-color: #fff;
	overflow: hidden;
	border: 5px solid #FFF;
	border-radius: 5px;
}




.product-information,
.product-image {
    float: left;
}
.product-information {
    width: 58%;
    margin: 4% 1%;
}


.product-information .list-details{
margin:0px;	
}

.product-information .list-details li{
	list-style-type: disc;	
}



.product-image {
    width: 40%;
    height: 400px;
    overflow: hidden;
    position: relative;
    text-align: center;
}
.product-image img {
     width:100%;
    height: 100%;
    
}
.cross {
    position: absolute;
    top: 10px;
    right: 10px;
}
 



 
