.sticker {
  position: absolute;
  height: 25px;
  width: 150px;
  border-radius: 1000px;
  background-color: #EE3F24;
  color: #000000;
  z-index: 3;
  font-size: 0.9rem;
	text-transform: lowercase;
  
}

.right-sticker {
  top: 0;
  right: 0;
  transform: rotate(45deg) translateX(45px);
  color: white;
  background-color: gray;
}

.left-sticker {
  top: 0;
  left: 0;
  transform: rotate(-45deg) translateX(-45px);
}

.filter-group a {
  cursor: pointer;
}

.filter-group a.is-checked:after {
  width: 100%;
}

.product-wrapper {
	padding: 1rem;
	transition: transform 1s ease;
}

.product-wrapper:hover {
  transform: scale(1.1);
}


.product-wrapper a {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}
.product-item {
	position:relative;
	padding-top:100%;
	-webkit-transition: all 1s ease-out;
	-moz-transition: all 1s ease-out;
	-ms-transition: all 1s ease-out;
	-o-transition: all 1s ease-out;
	transition: all 1s ease-out;
	overflow: hidden;
}

.product-item img {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	max-height: 100%;
	max-width: 100%;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	background-color: rgba(255, 255, 255, 0);
}

.product-overlay {
	position: absolute;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	-ms-transition: all 0.2s ease-in;
	-o-transition: all 0.2s ease-in;
	transition: all 0.2s ease-in;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
	z-index: 10;
}

.product-overlay p {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	text-align: center;
	width: 100%;
	overflow: hidden;
	margin: 0;
	color: #D0D0CF;
	font-weight: 400 !important;
	background-color: #000000;
  text-transform: lowercase;
}

.product-item:hover .product-overlay {
	opacity: 1;
}

.old-price {
  opacity: 0.5;
  text-decoration: line-through;
}

.price {
  color: #D0D0CF;
}

.mobile-price {
	display: none;
}

@media screen and (max-width: 45em) {
 .grid-sizer, .grid-item {
	width: 100%;
  } 
  
 .mobile-price {
   text-align: center;
   display: block !important;
   color: #D0D0CF !important;
   font-size: 15px !important;
 }
 
 .product-overlay {
	opacity: 0;
 }
}