:root {
  --focus-color: #097efb;
  --focus-color-dark-bg: #3b99fc;
}
@media (prefers-color-scheme: dark) {
  :root {
    --focus-color: #3b99fc;
    --focus-color-dark-bg: #097efb;
  }
}
#product-grid,
#view-grid {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.product-tile,
.view-tile {
  position: relative;
  width: 33.3333%;
  box-sizing: border-box;
  display: inline-block;
  padding: 20px;
}
.product-tile img,
.view-tile img {
  max-width: 100%;
  border: 1px solid #ccc;
  padding: 20px;
}
@media only screen and (min-width: 1px) and (max-width: 719px) {
  .product-tile,
  .view-tile {
    width: 100%;
  }
}
.product-name {
  font-size: 1rem;
}
.product-price {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 15px;
}
.product-details-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.view-details-link {
  position: absolute;
  font-size: 1rem;
  line-height: 2.75rem;
  left: 0;
  bottom: 0;
  font-weight: bold;
  width: 100%;
  background: #0c3f75;
  color: #fff;
  min-height: 44px;
  border: none;
  outline-offset: 4px;
  text-align: center;
  text-decoration: none;
}
@media only screen and (min-width: 720px) and (max-width: 959px) {
  .view-details-link {
    font-size: 0.75rem;
    line-height: 2.125rem;
    min-height: 34px;
  }
}
#product-count,
#category-count {
  text-align: center;
}
#load-more-btn,
#display-more-btn {
  font-size: 0.9375rem;
  font-weight: bold;
  min-width: 200px;
  min-height: 44px;
  display: block;
  cursor: pointer;
  background: #3a4b5c;
  color: #fff;
  border: none;
  margin: 10px auto;
  outline-offset: 4px;
}
#product-reset-btn,
#display-reset-btn {
  font-size: 0.9375rem;
  font-weight: bold;
  min-width: 200px;
  min-height: 44px;
  display: block;
  cursor: pointer;
  background: none;
  border: none;
  margin: 10px auto;
  outline-offset: 4px;
  text-decoration: underline;
}
.enable__is-dark-mode #product-reset-btn,
.enable__is-dark-mode #display-reset-btn {
  color: #ededed;
}
.add-to-cart-btn {
  font-size: 0.9375rem;
  font-weight: bold;
  min-height: 44px;
  background: #0c3f75;
  color: #fff;
  border: none;
  padding: 0 15px;
  outline-offset: 4px;
}
.hide-btn {
  display: none !important;
}
.tile-relative {
  position: relative;
}
/*# sourceMappingURL=load-more.css.map */