<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

.text-mossGreen {
  color: #447355;
}
.text-denim {
  color: #6A768C;
}
.bg-mintGreen {
  background-color: #e7ede2;
}

.products__container_used {
  border-radius: 8px;
  border: 2px solid #447355;
}
.products__container_unused {
  border-radius: 8px;
  border: 2px solid #6A768C;
}
.products__container_pickup {
  border-radius: 8px;
  border: 2px solid #666666;
}

.product__image {
  width: 180px;
  height: 180px;
}

.product__button_used {
  background-color: #447355;
}
.product__button_used:hover {
  background-color: #447355;
  opacity: 0.6;
}
.product__button_unused {
  background-color: #6A768C;
}
.product__button_unused:hover {
  background-color: #6A768C;
  opacity: 0.6;
}

.product__featureIcon {
  border-radius: 4px;
  border: 2px solid  #AE72A3;
  padding: 6px;
  color: #AE72A3;
}
.product__unusedIcon {
  border-radius: 100px;
  padding: 5px 10px;
  background-color: #6A768C;
}
.product__unusedIcon_large {
  border-radius: 100px;
  padding: 6px 15px 9px;
  background-color: #6A768C;
}

@media screen and (max-width: 576px) {
  .products__unit:not(:last-child) &gt; .products__borderBox {
    border-bottom: solid 1px #aaa;
  }
}</pre></body></html>