/* CONTENEDOR OUTLET */
.srt-outlet-container {
  max-width: 800px !important;
}

.srt-outlet-container h1 {
  color: #29458e;
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
}

.srt-outlet-container p {
  font-size: 1.125rem;
  line-height: 1.75rem;
  color: rgb(75, 85, 99);
}

/* LISTA DE PRODUCTOS */
#js-product-list {
  font-size: 0.875rem;
  line-height: 1.99rem;
}

#js-product-list .first-image {
  max-width: 65%;
}

#js-product-list .product_desc {
  padding: 1.25rem !important;
}

#js-product-list .manufacturer {
  color: rgba(107, 114, 128, 1);
  font-weight: 700;
  line-height: 1.25rem;
  margin-bottom: 15px;
}

#js-product-list .product-desc {
  margin-top: -15px !important;
}

#js-product-list h3 {
  color: #29458e;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.6rem;
  display: block;
}

#js-product-list .product-code {
  background-color: rgb(243, 244, 246);
  border-radius: 0.375rem;
  padding: 1.5rem;
}

#js-product-list .availability .availability-list {
  color: rgba(22, 163, 74, 0.7);
  line-height: 1;
  display: block;
  font-weight: 700;
  font-size: 17px;
  margin-top: 15px;
}

#js-product-list .product-price-and-shipping > .price-sale {
  font-weight: 800;
  font-size: 28px !important;
  margin-left: -60px;
}

#js-product-list .product-price-and-shipping {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

#js-product-list .product-price-and-shipping .add-to-links {
  margin: 0;
  padding: 0;
  list-style: none;
}

#js-product-list .product-price-and-shipping .add-to-links li {
  display: flex;
}

#js-product-list .product-price-and-shipping .button {
  padding: 0.5rem 1rem;
  background-color: #29458e;
  color: white;
  border: none;
  border-radius: 0.25rem;
  font-weight: bold;
  cursor: pointer;
  white-space: nowrap;
}

#js-product-list .product-price-and-shipping .button:hover {
  background-color: #1e3266;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  #js-product-list .first-image {
    max-width: 50%;
  }

  #js-product-list .price-sale {
    margin-left: -75px !important;
  }

  #js-product-list .product-price-and-shipping .add-to-links {
    width: 100%;
  }
}

