/*============================================================================================*/
/* SHOP STYLES */
/*============================================================================================*/

.shop-section .items-sorting {
	margin-bottom:20px;
}

.shop-section .items-sorting .form-group{
	margin-bottom:0px;
	width:200px;
	float:right;
}

.shop-section .items-sorting .results_shop{
	padding-top:8px;
}

.shop-section .items-sorting select{
	display:block;
	width:100%;
	line-height:24px;
	padding:0 10px;
	height:45px;
	font-size:13px;
	font-weight: 600;
	border:1.5px solid #aeaeae;
	cursor:pointer;
	-moz-appearance:none;
	-webkit-appearance:none;
	-ms-appearance:none;
	-o-appearance:none;
	background:#fff url(../img/icon-select.png) right center no-repeat;
	color:#777;
	transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;	
	outline:none;
}

.shop-section .items-sorting select option{
	text-indent:15px;	
}

.shop-item{
	position:relative;
	text-align:center;
	margin-bottom:40px;	
}

.shop-item .inner-box{
	position:relative;
	display:block;
	    -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 10%);
	background:#ffffff;
	-webkit-transition:all 500ms ease;
	transition:all 500ms ease;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.shop-item .inner-box:hover{
	    -webkit-box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
    -moz-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.20);
    box-shadow: 0px 0px 15px 0px rgb(0 0 0 / 20%);
}

.shop-item .image-box{
	position:relative;
	-webkit-border-top-left-radius: 5px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}

.shop-item .image-box .image img{
	position:relative;
	display:block;
	width:100%;
	height:200px;	
}

.shop-item .image-box .item-options{
	position:absolute;
	right:10px;
	bottom:25px;
	opacity:0;
	visibility:hidden;
	-webkit-transition:all 500ms ease;
	transition:all 500ms ease;	
}

.shop-item:hover .image-box .item-options{
	opacity:1;
	visibility:visible;	
}

.shop-item .image-box .item-options .btn_shop{
	position:relative;
	display:block;
	float:left;
	width:46px;
	height:46px;
	padding:10px;
	text-align:center;
	line-height:26px;
	color:#5a5a5a;
	background:#ffffff;
	font-size:14px;
	margin-right:1px;
	-webkit-transition:all 500ms ease;
	transition:all 500ms ease;	
}

.shop-item .image-box .item-options .btn_shop .tool-tip{
	position:absolute;
	left:50%;
	margin-left:-45px;
	bottom:55px;
	width:90px;
	text-align:center;
	line-height:20px;
	font-size:11px;
	padding:5px 5px;
	background:#1c1c1c;
	color:#ffffff;
	border-radius:3px;
	-webkit-transition:all 500ms ease;
	transition:all 500ms ease;
	opacity:0;
	visibility:hidden;	
}

.shop-item .image-box .item-options .btn_shop .tool-tip:after{
	content:'';
	position:absolute;
	left:50%;
	margin-left:-5px;
	bottom:-9px;
	border:5px solid transparent;
	border-top:5px solid #1c1c1c;
}

.shop-item .image-box .item-options .btn_shop:hover{
	background:#93C13E;
	color:#ffffff;	
}

.shop-item .image-box .item-options .btn_shop:hover .tool-tip{
	opacity:1;
	visibility:visible;	
}

.shop-item .product_description{
	position:relative;
	padding:0 20px 20px 20px;	
}

.shop-item .product_description h3{
	margin-top: 0;
}
.shop-item h3 a{
	color:#555;	
	font-size:14px;
	text-transform:uppercase;
}
.shop-item h3 a:hover{
	color:#333;
}

.shop-item .product_description .price{
	font-size:16px;
	font-weight:500;
	color:#93C13E;
	line-height:20px;	
}

.shop-item .product_description .price .offer{
	color:#999999;
	padding-right:5px;
	text-decoration:line-through;
}