/* Variables */
/* Mixens: */
.product-thumb {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.product-card {
  display: block;
  max-width: 270px;
  height: 100%;
  padding: 10px;
  margin: auto;
  border: solid 1px #ccc;
  text-decoration: none;
}

.product-thumbs .swiper-slide {
  opacity: 0.4;
  border: solid 2px #fff;
}

.product-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #00529B;
}

.cart-table {
  width: 100%;
  margin-top: 20px;
}

.cart-thumb {
  max-width: 100px;
  margin-right: 12px;
}

.cart-item-link {
  display: flex;
  align-items: center;
}

.cart-label {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(128, 128, 128, 0.5);
  width: auto;
  aspect-ratio: 1;
  border-radius: 50%;
}

.swiper-thumb-wrapper {
  flex-wrap: wrap;
}

#search_query {
  margin-left: 0.5em;
}

@media screen and (max-width: 575px) {
  .cart-table thead {
    display: none;
  }
  .cart-table,
  .cart-table tbody,
  .cart-table tr {
    display: block;
  }
  .cart-table td {
    display: flex;
    padding-left: 40px;
  }
  .cart-label {
    display: block;
    margin-right: 10px;
  }
}