.btn-filtre {
  text-align: left;
  width: 20vw;
  background-color: var(--vitta-white);
  box-shadow: 0 0 3px #333;
  margin: 3px;
  margin-bottom: 0;
}

h5 a {
  color: var(--text-2);
}

td a {
  color: var(--text-2);
}

td a:hover {
  color: var(--vitta-blue);
}

.vittagreen-fade {
  background-color: rgba(34, 181, 115, 0.15);
}

#library-filter-container {
  padding: 10px;
}

.library-filter-box {
  display: inline-block;
  width: 13vw;
  margin-right: 5px;
}

.checkbox-label {
  font-size: 2vh;
}

.shop-footer {
  padding: 35px;
  color: var(--text-2);
  background-color: var(--footer-shop-color);
  text-align: start;
  width: 100%;
  justify-content: center;
}

.shop-footer h4 img {
  height: 1.5rem;
  margin-inline-end: 0.5rem;
  filter: invert(41%) sepia(0%) saturate(489%) hue-rotate(141deg) brightness(92%) contrast(85%);
}

.shop-footer h4 a {
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.shop-footer h4 a:hover {
  text-decoration: none;

}

.shop-footer .row .footer-shop-col:nth-child(2) {
  border-inline: 1px solid rgba(128, 128, 128, 0.5);
}


@media (max-width: 991px) {
  .shop-footer .row .footer-shop-col {
      text-align: center;
      padding: 2em 0px;
      align-items: center !important;

  }

  .shop-footer .row .footer-shop-col div:not(.payment-grid) {
      display: flex;
      flex-direction: column;

      justify-content: center;
      align-items: center;
      align-content: center;
  }

  .shop-footer .row .footer-shop-col div p {
      margin: 0px;
  }

  .shop-footer .row .footer-shop-col:nth-child(2) {

    border-inline: none;
    border-block: 1px solid rgba(128, 128, 128, 0.5);
   
  }

  .shop-footer .row .footer-shop-col:nth-child(1),
  .shop-footer .row .footer-shop-col:nth-child(3) {
      border-inline: none;
  }

}

.associe-item {
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  font-weight: bold;
}

#learn-more {
  padding-top: 100px;
  position: relative;
  top: -100px;
  margin-bottom: -100px;
}

#category {
  min-width: 350px;
}

.product-category {
  margin: 0 auto;
}

.products-presentation {
  display: flex;
  flex-wrap: wrap;
}

.product-item {
  width: 180px;
  height: 240px;
  background-color: var(--vitta-white);
  box-shadow: 3px 3px 3px var(--vitta-shadow-color);
  border-radius: 10px;
  margin: 10px;
  -webkit-transition: all .3s ease;
  -moz-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  cursor: pointer;
  position: relative;
}

.product-item-informations>span {
  font-size: 100%;
}

@media(max-width: 600px) {
  .product-item {
    width: 40vw;
    height: 56vw;
  }

  #category {
    left: -70px;
    font-size: 0.9rem;
  }

  .products-presentation {
    justify-content: space-between;
  }
}

.quantity-input {
  text-align: center;
  width: 40px;
  padding: 0px;

}

.product-description {
  min-height: 100px;
}

#product-exploded {
  padding-top: 64px;
}

.product-item-front {
  width: 100%;
  height: 100%;
  padding: 5px;
}

.product-item {
  accent-color: var(--vitta-blue) !important;
}

.product-item-back {
  width: 100%;
  height: 100%;
  padding: 5px;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
}

.product-item-img {
  width: 100%;
}

.product-item-informations {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  padding: 5px;
  bottom: 0;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  width: 100%;
  min-height: 50px;
}

.product-item-informations>span {
  margin: 0 auto;
  text-align: center;
  color: #565656;
  font-weight: bold;
  background-color: var(--vitta-white);
}

.product-item:hover .product-item-informations,
.product-item:hover .product-item-price,
.product-item:hover .product-item-back {
  opacity: 1;
  color: var(--vitta-green);
  transform: scale(1.05);
}

.product-item-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 1;
  position: absolute;
  padding: 2px 5px;
  top: 0;
  right: 0;
  -webkit-transition: all .3s linear;
  -moz-transition: all .3s linear;
  -o-transition: all .3s linear;
  transition: all .3s linear;
  color: black;
  width: 100%;
  min-height: 50px;
}

#product-content {
  min-height: 100%;
}

#product-informations {
  padding: 0 20px;
}

.product-title {
  font-size: 40px;
  font-weight: bold;
  line-height: 1;
}

#product-linked {
  display: none;
  border: 1px solid #ff9403;
  border-radius: 5px;
  padding: 5px 15px;
  margin-top: 10px;
}

.alert-low-stock {
  background-color: transparent;
  border-color: #ff9403;
}