@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

main {
  display: flex;
  justify-content: center;
  background-color: #f4f4f6;
  width: 100%; /* Hace que el contenido dentro ocupe el 100% del ancho del body */
  box-sizing: border-box;
}

.columna-central {
  width: 85%;
  background-color: #f4f4f6;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 320px) and (max-width: 900px) {
  .columna-central {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

.mjs-noproductos {
  width: 90%;
  font-family: "Work Sans", sans-serif;
  font-weight: 900;
  font-size: clamp(1px, 1.4vw, 1.26rem);
  margin: 10vh clamp(1px, 4vw, 3.6rem);
  padding: 2vh clamp(1px, 2vw, 1.8rem);
  background-color: #000000;
  border-radius: 5px;
  color: #FBD300;
  text-align: left;
}
@media (min-width: 320px) and (max-width: 900px) {
  .mjs-noproductos {
    font-size: 3.4vw;
  }
}

.detalle-compra {
  width: 90%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 0 clamp(1px, 2vw, 1.8rem) 6vh clamp(1px, 2vw, 1.8rem);
  align-items: center;
}
@media (min-width: 320px) and (max-width: 900px) {
  .detalle-compra {
    width: 100%;
    margin: 4vh 0px 0px 0px;
  }
}

.titulos-carrito {
  display: flex;
  width: 90%;
  border-bottom: 1px solid rgb(150, 150, 150);
  margin-bottom: 1vh;
}
@media (min-width: 320px) and (max-width: 900px) {
  .titulos-carrito {
    width: 100%;
  }
}

.titulos-carrito h2 {
  font-family: "Work Sans", sans-serif;
  font-weight: 800;
  font-size: clamp(1px, 1.7vw, 1.53rem);
  margin-bottom: 1vh;
}
@media (min-width: 320px) and (max-width: 900px) {
  .titulos-carrito h2 {
    font-size: 6vw;
  }
}

#titulo-detalle {
  padding-left: clamp(1px, 5vw, 4.5rem);
  padding-top: 3vh;
}

#titulo-resumen {
  padding-right: clamp(1px, 6vw, 5.4rem);
  padding-top: 3vh;
}
@media (min-width: 320px) and (max-width: 900px) {
  #titulo-resumen {
    display: none;
  }
}

.links-items {
  color: rgb(80, 80, 255);
}
@media (min-width: 320px) and (max-width: 900px) {
  .links-items {
    font-size: clamp(1px, 3vw, 2.7rem);
  }
}

.links-items:hover {
  color: rgb(51, 51, 173);
}

.item {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  height: 10vh;
  justify-content: space-between;
  align-items: flex-start;
  font-family: "Work Sans", sans-serif;
  border-bottom: 1px solid rgb(150, 150, 150);
  margin: 2vh 0;
  padding: 0.3vh 0 2vh 0;
}
@media (min-width: 320px) and (max-width: 900px) {
  .item {
    height: 11vh;
    justify-content: space-around;
  }
}

.img-descripcion {
  width: 70%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

#boton-eliminar {
  margin-right: clamp(1px, 2vw, 1.8rem);
}

.textos {
  display: flex;
  flex-direction: column;
  width: 50%;
  padding-left: clamp(1px, 1vw, 0.9rem);
}
@media (min-width: 320px) and (max-width: 900px) {
  .textos {
    width: auto;
  }
}

.titulo-producto {
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1px, 1.4vw, 1.26rem);
  margin-bottom: 1vh;
}
@media (min-width: 320px) and (max-width: 900px) {
  .titulo-producto {
    font-size: clamp(1px, 3.5vw, 3.15rem);
  }
}

.sin-envio {
  font-size: clamp(1px, 0.9vw, 0.81rem);
  margin-bottom: 2vh;
  color: gray;
}
@media (min-width: 320px) and (max-width: 900px) {
  .sin-envio {
    font-size: clamp(1px, 3vw, 2.7rem);
  }
}

.miniatura-imagen {
  width: 50px;
  height: 50px;
  margin: 0 clamp(1px, 1vw, 0.9rem);
}
@media (min-width: 320px) and (max-width: 900px) {
  .miniatura-imagen {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.manejo-cantidades {
  display: flex;
  width: 10%;
  justify-content: center;
  flex-wrap: wrap;
}
@media (min-width: 320px) and (max-width: 900px) {
  .manejo-cantidades {
    width: 25%;
    display: none;
  }
}

.cantidadDisponible {
  font-size: clamp(1px, 0.7vw, 0.63rem);
  margin-bottom: 2vh;
  margin-top: 0.5vh;
  color: gray;
  text-align: center;
  width: 100%;
}

.costoProducto {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  width: 20%;
}
@media (min-width: 320px) and (max-width: 900px) {
  .costoProducto {
    width: 30%;
    margin-right: clamp(1px, 1vw, 0.9rem);
  }
}

.subtotal {
  width: 100%;
  text-align: end;
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1px, 1.8vw, 1.62rem);
  font-weight: 500;
}
@media (min-width: 320px) and (max-width: 900px) {
  .subtotal {
    font-size: clamp(1px, 3.3vw, 2.97rem);
  }
}

.precioOriginal {
  font-family: "Work Sans", sans-serif;
  text-decoration: line-through;
  font-size: clamp(1px, 0.7vw, 0.63rem);
  color: rgb(138, 138, 138);
}
@media (min-width: 320px) and (max-width: 900px) {
  .precioOriginal {
    font-size: 2.3vw;
  }
}

.cantidadDescuento {
  margin-right: clamp(1px, 1vw, 0.9rem);
  font-family: "Work Sans", sans-serif;
  font-size: clamp(1px, 0.7vw, 0.63rem);
  color: rgb(0, 190, 0);
}
@media (min-width: 320px) and (max-width: 900px) {
  .cantidadDescuento {
    width: auto;
    font-size: clamp(1px, 2.5vw, 2.25rem);
    margin-right: clamp(1px, 0.7vw, 0.63rem);
  }
}

/*.formEliminar{
    width: 10%;
}*/
.botonesProducto {
  width: 100%;
  display: flex;
  flex-direction: row;
}

.manejo-cantidades input {
  margin-right: clamp(1px, 1vw, 0.9rem);
  width: clamp(1px, 3vw, 2.7rem);
  font-family: "Work Sans", sans-serif;
}
@media (min-width: 320px) and (max-width: 900px) {
  .manejo-cantidades input {
    width: clamp(1px, 8vw, 7.2rem);
  }
}

.boton-item {
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: "Work Sans", sans-serif;
}

.resumen {
  width: 90%;
  /* margin: 3vh 2vw; */
  display: flex;
  flex-direction: column;
  align-items: center;
  /* padding-top: 3vh;*/
}
@media (min-width: 320px) and (max-width: 900px) {
  .resumen {
    width: 100%;
    margin: 3vh 0vw;
  }
}

.info-resumen-carrito {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  padding: 0 clamp(1px, 1vw, 0.9rem) 2vh 0;
  margin-top: 3vh;
  border-bottom: 1px solid rgb(150, 150, 150);
  font-family: "Work Sans", sans-serif;
  align-items: center;
}
@media (min-width: 320px) and (max-width: 900px) {
  .info-resumen-carrito {
    justify-content: space-around;
  }
}

/*
.info-resumen-carrito p{
    margin-left: 5vw;
    font-weight: 600;
}
*/
.texto-resumen {
  font-size: clamp(1px, 1.7vw, 1.53rem);
  font-weight: 450;
}
@media (min-width: 320px) and (max-width: 900px) {
  .texto-resumen {
    font-size: clamp(1px, 4vw, 3.6rem);
    margin-left: 0px;
  }
}

.monto-resumen {
  font-size: clamp(1px, 1.7vw, 1.53rem);
  margin-left: clamp(1px, 5vw, 4.5rem);
  font-weight: 600;
}
@media (min-width: 320px) and (max-width: 900px) {
  .monto-resumen {
    font-size: clamp(1px, 4vw, 3.6rem);
  }
}

.form-siguiente {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#boton-siguiente {
  font-family: "Work Sans", sans-serif;
  color: #FBD300;
  height: 40px;
  width: 20%;
  margin: 4vh 0 4vh clamp(1px, 0.5vw, 0.45rem);
  padding: 5px 10px;
  font-weight: bold;
  cursor: pointer;
  background-color: #000000;
  border: 1px solid #000000;
  border-radius: 5px;
  transition: all 300ms cubic-bezier(0.23, 1, 0.32, 1);
}
@media (min-width: 320px) and (max-width: 900px) {
  #boton-siguiente {
    width: 35%;
    margin: 4vh clamp(1px, 7vw, 6.3rem);
  }
}

#boton-siguiente:hover {
  color: #fff;
  background-color: #1A1A1A;
  box-shadow: rgba(0, 0, 0, 0.25) 0 8px 15px;
  transform: translateY(-2px);
}

.btn-wsp {
  position: fixed;
  width: 60px;
  height: 60px;
  line-height: 63px;
  bottom: 25px;
  right: 25px;
  color: #FFF;
  text-align: center;
  font-size: 2.4vw;
  z-index: 100;
  border-radius: 50px;
  transition: all 300ms ease;
  transition: all 0.4s ease;
  border-radius: 50px;
  background-color: #25d366;
  box-shadow: 2px 2px 4px #c9c9c9, -2px -2px 4px #ffffff, inset 0 0 0 transparent, inset 0 0 0 transparent;
}
@media (min-width: 320px) and (max-width: 900px) {
  .btn-wsp {
    font-size: 6.4vw;
  }
}

.btn-wsp:active {
  transition: all 0.4s ease;
  border-radius: 50px;
  background-color: #25d366;
  box-shadow: 0 0 0 transparent, 0 0 0 transparent, inset 2px 2px 4px rgb(30.152016129, 171.947983871, 83.1217741935), inset -2px -2px 4px rgb(71.1407258065, 222.7592741935, 127.7798387097);
}/*# sourceMappingURL=cart.css.map */