<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.filter-group a {
  cursor: pointer;
}

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

.grid-item {
  position: relative;
}

.grid-item:hover {
  z-index: 2;
}


.grid-item:hover .alt-image {
  opacity: 1;
}

.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: absolute;
	top: 0;
  left: 0;
  width: 100%;
  height: 100%;
	transition: all 1s ease-out;
	background-size: cover;
	background-position: center;
}

.product-item.background-top {
  background-position: top;
}

.product-item.background-bottom {
  background-position: bottom;
}

.product-item.alt-image {
  opacity: 0;
  z-index: 2;
}

.product-content {
	position:relative;
	padding-top:100%;
	transition: all 1s ease-out;
	overflow: hidden;
}

.product-overlay {
  display: flex;
  justify-content: center;
  align-items: center;
	position: absolute;
	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 {
	text-align: center;
	width: 100%;
	overflow: hidden;
	margin: 0;
	color: #E4DDA9;
	font-weight: 400 !important;
	background-color: #162E2A ;
  text-transform: uppercase;
}

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

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

.price {
  color: #E4DDA9;
}

.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: #E4DDA9 !important;
   font-size: 15px !important;
 }
 
 .product-overlay {
	opacity: 0;
 }
}

.sticker {
  position: absolute;
  top: 0;
  left: 2%;
  z-index: 2;
  pointer-events: none;
}

.sticker li {
  padding: 5px 10px;
  color: #E4DDA9;
  text-shadow: #E4DDA9;
  margin: 10px 0;
  z-index: 10;
  text-align: center;
  pointer-events: none;
}

.sticker .pre-order {
  background-color: #162E2A ; 
}

.sticker .sale {
  background-color: rgba(91,192,91,.9); 
}

.sticker .sold-out {
  color: black;
  background-color: white; 
}

.sticker .new-badge {
  background-color: green; 
}</pre></body></html>