/* Global page */
.boutique-container {
  width: 90%;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.boutique-container-title {
  font-family: "Bentham";
  font-size: 42px;
  margin-bottom: 21px;
  width: 100%;
  text-align: center;
  margin-top: 11px;
}

.boutique-product-list {
  grid-column: 1 / 4;
  grid-row: 1 / 2;
}

.boutique-basket-container {
  grid-column: 4 / 4;
  grid-row: 1;
  margin-top: 21px;
  position: relative;
}

@media screen and (max-width: 680px) {
  .boutique-product-list {
    grid-column: 1 / 5;
    grid-row: 2;
  }

  .boutique-basket-container {
    grid-column: 1 / 5;
    grid-row: 1;
  }
}

/* Block droite */
.boutique-basket-sticky {
  position: sticky;
  top: 82px;
  border: solid 1px #e6e6e6;
  padding: 10px;
  background-color: #fff;
}

.boutique-basket-command {
  cursor: pointer;
  font-size: 16px;
  background: #128F8B;
  background-image: -webkit-linear-gradient(top, #128F8B, #0c4229);
  background-image: -moz-linear-gradient(top, #128F8B, #0c4229);
  background-image: -ms-linear-gradient(top, #128F8B, #0c4229);
  background-image: -o-linear-gradient(top, #128F8B, #0c4229);
  background-image: linear-gradient(to bottom, #128F8B, #0c4229);
  font-family: Raleway;
  color: #ffffff;
  padding: 15px 20px 15px 20px;
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
}
.boutique-basket-command:hover {
  background: #0a4b2d;
  background-image: -webkit-linear-gradient(top, #0a4b2d, #0c4229);
  background-image: -moz-linear-gradient(top, #0a4b2d, #0c4229);
  background-image: -ms-linear-gradient(top, #0a4b2d, #0c4229);
  background-image: -o-linear-gradient(top, #0a4b2d, #0c4229);
  background-image: linear-gradient(to bottom, #0a4b2d, #0c4229);
}

.boutique-basket-info {
  padding: 10px;
}

.boutique-basket-price {
  padding-top: 30px;
  padding-bottom: 10px;
  text-align: right;
}

.boutique-basket-count-detail-title {
  padding-top: 18px;
  font-size: 18px;
  font-weight: bold;
}

.boutique-basket-count-detail {
  padding-top: 15px;
}

.cart-producttitle {
  padding: 6px 10px 8px 10px;
  border-bottom: solid 1px #e6e6e6;
}

.cart-producttitle-unitPrice {
  text-align: right;
}

.cart-producttitle-unitPrice > img {
  padding-left: 5px;
}

#cart-count {
  font-weight: bold;
}

.cart-trash {
  width: 14px;
  cursor: pointer;
}

/* Liste produits */
.boutique-product-item {
  border: solid 1px #e6e6e6;
  border-bottom: solid 1px #cccccc;
  margin: 10px;
  margin-right: 42px;
  padding: 10px;
  display: flex;
  background-color: #fff;
}

.boutique-product-item-image {
  height: 300px;
  display: inline-block;
}

.boutique-product-item-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 21px 11px 21px;
}

.boutique-product-item-title {
  font-size: 20px;
  font-weight: bold;
}

.boutique-product-item-resume {
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 5px;
}

.boutique-product-item-price {
  font-size: 18px;
  padding-bottom: 5px;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 11px 0 11px 0;
  text-align: center;
}

.boutique-product-item-add {
  display: inline-block;
  cursor: pointer;
  font-size: 16px;
  background: #128F8B;
  background-image: -webkit-linear-gradient(top, #128F8B, #0c4229);
  background-image: -moz-linear-gradient(top, #128F8B, #0c4229);
  background-image: -ms-linear-gradient(top, #128F8B, #0c4229);
  background-image: -o-linear-gradient(top, #128F8B, #0c4229);
  background-image: linear-gradient(to bottom, #128F8B, #0c4229);
  -webkit-border-radius: 15;
  -moz-border-radius: 15;
  border-radius: 15px;
  font-family: Raleway;
  color: #ffffff;
  padding: 5px 20px 5px 20px;
  text-decoration: none;
}

.boutique-product-item-add.disabled {
  cursor: not-allowed;
  background-image: none;
  background-color: #5a5a5a;
}

.boutique-product-item-stock-nodispo {
  background-color: #8f0404;
  color: #fff;
  padding: 5px 10px 5px 10px;
  border-radius: 5px;
}

.boutique-product-item-stock-count {
  background-color: #975AB6;
  color: #fff;
  padding: 5px 10px 5px 10px;
  border-radius: 5px;
}

#id-boutique-basket-price {
  font-weight: normal;
}

.boutique-basket-livraison {
  /* color: #ce0e0e; */
  font-size: 14px;
}
