/********************* Mousehover Effect**********************/

*,
*:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.grid {
	position: relative;
	padding: 1em 0 4em;
	width: 100%;
	list-style: none;
	height: 210px;
}


/* Common style */

.grid figure {
	position: relative;
	float: left;
	overflow: hidden;
	margin: 10px 1%;
	width: 100%;
	cursor: pointer;
}

.grid figure img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	min-width:100%
}

.grid figure figcaption,
.grid figure figcaption>a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


/* Anchor will cover the whole item by default */


/* For some effects it will show as a button */

.grid figure figcaption>a {
	z-index: 1000;
	text-indent: 200%;
	white-space: nowrap;
	font-size: 0;
}

figure.effect-bubba:hover img {
	opacity: 0.7;
}

figure.effect-bubba figcaption::before,
figure.effect-bubba figcaption::after {
	position: absolute;
	top: 20px;
	right: 20px;
	bottom: 20px;
	left: 20px;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
	transition: opacity 0.35s, transform 0.35s;
}

figure.effect-bubba.footerhover:hover figcaption {
	background: #000;
	opacity: .5;
}

figure.effect-bubba figcaption::before {
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
}

figure.effect-bubba figcaption::after {
	border-right: 1px solid #fff;
	border-left: 1px solid #fff;
	-webkit-transform: scale(1, 0);
	transform: scale(1, 0);
}

figure.effect-bubba:hover figcaption::before,
figure.effect-bubba:hover figcaption::after {
	opacity: .7;
	-webkit-transform: scale(1);
	transform: scale(1);
}


/* @media screen and (max-width: 50em) {
	.grid figure {
		display: inline-block;
		float: none;
		margin: 10px auto;
		width: 100%;
	}
} */


/********************* Latest product **********************/

h3.h3 {
	text-align: center;
	margin: 1em;
	text-transform: capitalize;
	font-size: 1.7em;
}

.product-grid,
.product-grid1 {
	text-align: center;
	padding:0px 5%;
	overflow: hidden;
	position: relative;
	z-index: 1;
	padding-top: 14px;
	height:358px;	
}

.product-grid{
border: 2px solid #e8e8e8;
}

.product-grid .product-image,
.product-grid1 .product-image {
	position: relative;
	transition: all .3s ease 0s
}

.product-grid .product-image a,
.product-grid1 .product-image a {
	display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.product-grid .product-image img {
	height: auto;
	max-height:200px;
	vertical-align:middle;
}

.product-grid1 .product-image img {
	height: auto;
	
}

.product-grid .pic-1 {
	opacity: 1;
	transition: all .3s ease-out 0s
}

.product-grid:hover .pic-1,
.product-grid1:hover .pic-1 {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

.product-grid .pic-2,
.product-grid1 .pic-2 {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	transition: all .3s ease-out 0s
}

.product-grid:hover .pic-2 {
	opacity: 1
}

.product-grid .social,
.product-grid1 .social {
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	opacity: 0;
	transform: translateY(-50%) translateX(-50%);
	position: absolute;
	top: 60%;
	left: 50%;
	z-index: 1;
	transition: all .3s ease 0s
}

.product-grid:hover .social {
	opacity: 1;
	top: 115%
}

.product-grid .social li {
	display: inline-block
}

.product-grid .social li a {
	color: #fff;
	border: 1px solid #ccc;
	font-size: 16px;
	line-height: 35px;
	text-align: center;
	height: 35px;
	width: 35px;
	margin: 0 2px;
	display: block;
	position: relative;
	transition: all .3s ease-in-out
}

.product-grid .social li a:hover {
	color: #fff;
	background-color: #cb2d41;
	border: 1px solid #cb2d41;
}

.product-grid .social li a:after,
.product-grid .social li a:before {
	content: attr(data-tip);
	color: #fff;
	background-color: #000;
	font-size: 12px;
	letter-spacing: 1px;
	line-height: 20px;
	padding: 1px 5px;
	white-space: nowrap;
	opacity: 0;
	transform: translateX(-50%);
	position: absolute;
	left: 50%;
	top: -30px
}

.product-grid .social li a:after {
	content: '';
	height: 15px;
	width: 15px;
	border-radius: 0;
	transform: translateX(-50%) rotate(45deg);
	top: -20px;
	z-index: -1
}

.product-grid .social li a:hover:after,
.product-grid .social li a:hover:before {
	opacity: 1
}

.product-grid .product-new-label,
.product-grid1 .product-new-label {
	color: #fff;
	background: #59454b;
	font-size: 11px;
	text-transform: uppercase;
	padding: 3px 7px;
	display: block;
	position: absolute;
	top: 10px;
	left: 10px;
	font-weight: 600;
	border: 1px solid transparent;
}

.product-grid .product-content,
.product-grid1 .product-content {
	background-color: #fff;
	text-align: center;
	padding: 12px 0;
	margin: 0 auto;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 1;
	transition: all .3s
}

.product-grid:hover .product-content {
	bottom: 0
}

.product-grid .title,
.product-grid1 .title {
	font-size: 13px;
	font-weight: 400;
	text-transform: capitalize;
	margin: 0 0 10px;
	transition: all .3s ease 0s;
	margin-bottom: 0px;
}

.product-grid .title a,
.product-grid1 .title a {
	color: #828282;
	line-height:20px;
}

.product-grid .title a:hover,
.product-grid:hover .title a {
	color: #ef5777;
}

.product-grid .price,
.product-grid1 .price {
	color: #cb2d41;
	font-size: 14px;
	font-weight: 600;
	margin-bottom: 8px;
	text-align: center;
	transition: all .3s
}

.product-grid .price span,
.product-grid1 .price span {
	color: #999;
	font-size: 15px;
	font-weight: 500;
	text-decoration: line-through;
	margin-left: 3px;
	display: inline-block
}

.product-grid .add-to-cart {
	color: #000;
	font-size: 13px;
	font-weight: 600;
}

#myBtn {
	font-size: 30px !important;
	font-weight: bold;
	height: 40px;
	line-height: 40px;
	text-align: center;
	width: 40px;
	box-shadow: inset 0 0 10px rgba(255, 0, 0, 0);
	right: 10px;
	bottom: 10px;
	position: fixed;
	display: none;
	margin: 0;
	padding: 0 !important;
	border: 1px solid #cb2d41;
	z-index:999;
}


/********************* list/grid view **********************/

.thumbnail {
	margin-bottom: 20px;
	padding: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
}

.item.list-group-item {
	float: none;
	width: 100%;
	background-color: #fff;
	margin-bottom:1%;
}

.item.list-group-item .list-group-image {
	margin-right: 10px;
}

.item.list-group-item .thumbnail {
	margin-bottom: 0px;
}

.item.list-group-item .caption {
	padding: 9px 9px 0px 9px;
}

.item.list-group-item:before,
.item.list-group-item:after {
	display: table;
	content: " ";
}

.item.list-group-item:after {
	clear: both;
}

.list-group-item-text {
	margin: 0 0 11px;
}

.ui-slider-horizontal {
	height: .6em;
}

.ui-slider-horizontal {
	margin-bottom: 15px;
	width: 100%;
}

.ui-widget-header {
	background: #333;
}

.dropdown_select {
	width: 238px;
	display: inline-block;
	transition: all .5s ease;
	position: relative;
	font-size: 14px;
	color: #474747;
	height: 100%;
	text-align: left;
	border: 1px solid #e0e0e0;
	float: right;
	margin-bottom: 5%;
}

.dropdown_select .select {
	cursor: pointer;
	display: block;
	padding: 10px
}

.dropdown_select .select>i {
	font-size: 13px;
	color: #888;
	cursor: pointer;
	transition: all .3s ease-in-out;
	float: right;
	line-height: 20px
}

.dropdown_select.active .select>i {
	transform: rotate(-180deg)
}

.dropdown_select .dropdown-menu {
	position: absolute;
	border: 1px solid #aaa;
	width: 100%;
	left: 0;
	margin-top: 1px;
	overflow: hidden;
	display: none;
	max-height: 144px;
	overflow-y: auto;
	z-index: 9;
	border-radius: 0;
}

.dropdown_select .dropdown-menu li {
	padding: 6px;
	transition: all .2s ease-in-out;
	cursor: pointer;
}

.dropdown_select .dropdown-menu {
	padding: 0;
	list-style: none
}

.dropdown_select .dropdown-menu li:hover {
	background-color: #0073aa;
	color: #fff
}

.dropdown_select .dropdown-menu li:active {
	background-color: #0073aa;
	color: #fff;
}

/******************* Horizontal menu tab *******************/

div.hrtab div.hrtab_content:not(.active){
  display: none;
}


/******************* category filter toggle *******************/
.cd-main-content {
  position: relative;
  min-height: 100vh;
}
.cd-main-content:after {
  content: "";
  display: table;
  clear: both;
}
.cd-main-content.is-fixed .cd-tab-filter-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
}

.cd-main-content.is-fixed .cd-filter-trigger {
  position: fixed;
}

.cd-filter-block h4 {
  position: relative;
  padding: 10px 0 10px 20px;  
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

.cd-filter-block h4::before {
  content: '\f107';
  font-family: FontAwesome;
  position: absolute;
  left: 0;
  top: 36%;
  width: 16px;
  height: 16px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%)  rotate(-90deg);
  -ms-transform: translateY(-50%)  rotate(-90deg);
  -o-transform: translateY(-50%)  rotate(-90deg);
  transform: translateY(-50%)  rotate(-90deg);
  -webkit-transition: -webkit-transform 0.3s;
  -moz-transition: -moz-transform 0.3s;
  transition: transform 0.3s;
}
.cd-filter-block h4.closed::before {
  -webkit-transform: translateY(-50%) ;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%) rotate(0deg);
  -o-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  top:50%;
}

.cd-filter-block .list li {
  position: relative;
  margin-bottom: .8em;
}
.cd-filter-block .list li:last-of-type {
  margin-bottom: 0;
}

.cd-filter-block{
	float:left;
	width:100%;
}

.panel-default{border-color:#e5e5e5;border-left:none;border-right:none;}
.panel-group .panel{border-radius:0;border-top:2px solid #e5e5e5;padding-top:.5px;}
.panel-default>.panel-heading{background:none;}
.panel-default>.panel-heading+.panel-collapse>.panel-body{border:none;}
.panel-group .panel:last-child{border-bottom:2px solid #e5e5e5;}
.panel-title{font-size:20px;}
.alert {
    padding: 2%;
    border-radius: 5px;
    background: #fff;
    width: 50% !important;
    margin: 0px auto;
}

.gc-display-area:hover .gc-display-display{}