/* MAIN PRODUCT LISTING (carousel)*/


.product{
	-moz-box-sizing: border-box; 
    box-sizing: border-box; 
}    

.product .prod_inside {
	text-align: center;
	padding: 20px 20px 32px;
	position: relative;
	z-index: 1;
	border: 1px solid #e0e0e0;
	-moz-box-sizing: border-box;
    box-sizing: border-box; 
}
.product .product_img a {
	display: block;
	position: relative;
	padding: 30px 10px;
	background: #fff;
}
.product .product_img a .product_img_ins {
	position: relative;
	display: block;
}
.product .product_img {
	margin-bottom: 22px;
}
.product .product_name {
	margin-top: 12px;
	min-height: 44px;
}
.product .product_links {
	margin-top: 17px;
}

.product .product_links .btn:hover {
    -ms-transform: scale(1.1);
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.product .prod_inside:before {
	position: absolute;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: -1;
	opacity: 0;
    background: -webkit-linear-gradient(45deg, #015eba 0%, #5cbe24 25%, #fab703 50%, #fb3144 75%, #bd20c7 100%);
    background: linear-gradient(45deg, #015eba 0%, #5cbe24 25%, #fab703 50%, #fb3144 75%, #bd20c7 100%);
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.product .prod_inside:hover:before {
	opacity: .1;
}

.product_listing_main .product {
	margin: 30px 0 0 0;
}

.product_listing_main .product_img img {
	background-color: #fff;
	position: relative;
	z-index: 1;
}

.product_img:hover .product_img_ins .img__2{
  opacity: 1;
  width: 100%;
  -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.product_listing_main .product_img .img__2 {
	position: absolute;
	left: 0;
	top: 0;
	z-index: 10;
	opacity: 0;
  
  -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}


.product_listing_main .product_img span.product_badge {
	display: block;
	padding: 5px 10px;
	color: #fff;
	position: absolute;
	top: 0;
	z-index: 100;
}
.product_listing_main .product_img span.new {
	background: #333333;
	left: 0;
}
.product_listing_main .product_img span.sale {
	background: #04cffa;
	right: 0;
}


.product .product_desc {
	padding-top:10px;
}

.product .product_price .money {
	font-size: 45px;
}
.product_listing_main .product_price .compare-at-price {
	font-size: 27px;
  	color: #fb3144;
  	font-weight:300;
}

.money {
    color: #fa7103;
}

.product_listing_main .product_links form {
	display: inline-block;
}

.compare-at-price {
    color: #333333;
    text-decoration: line-through;
    white-space: nowrap;
}

.product_name {
    color: #2f3333;
    font-size: 15px;
    font-weight: normal;
}

/* HOMEPAGE CAROUSEL */
.index-scope .bx-wrapper {
	max-width: 100% !important;
	width: 100%;
	margin: 48px 0 0 0;
}



.homepage_carousel .product {
	margin: 0;
}

.homepage_carousel{
	margin-bottom: 5px;
}
.index-scope{
	position: relative;
}

.index-scope .bx-controls a {
	width: 30px;
	height: 30px;
	display: block;
	overflow: hidden;
	margin: -15px 0 0 0;
	text-align: center;
	position: absolute;
	top: 50%;
	z-index: 99;
	background: #015eba;
	-webkit-border-radius: 50%;
	     -moz-border-radius: 50%;
	                border-radius: 50%;
	
	-webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.index-scope .bx-controls a:hover {
	background: #bd20c7;
}

.index-scope .bx-controls a:before {
	display: block;
	font: 12px/31px 'FontAwesome';
	color: #fff;
}

.index-scope .bx-prev:before {
	content: '\f053';
	padding: 0 1px 0 0;
}
.index-scope .bx-next:before {
	content: '\f054';
	padding: 0 0 0 1px;
}

.index-scope .bx-prev {
	left: -50px;
}
.index-scope .bx-next {
	right: -50px;
}
