* {
  margin: 0;
  padding: 0;
}

header .navbar {
  position: fixed;
  width: 100%;
  z-index: 100;
  box-shadow: 0 5px 30px #212529;
  max-height: 100px;
  padding: 1rem 3rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header .navbar a {
  text-decoration: none;
}
header .navbar button {
  background-color: rgba(33, 37, 41, 0);
  border: none;
}
header #carrito-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
header #carrito-header p {
  color: white;
  margin-left: 2rem;
  font-size: 1.2rem;
  margin-bottom: 0;
}
header #carrito-header p span {
  font-weight: bold;
}
header #carrito-header .iconoCarrito {
  max-width: 3.5rem;
  max-height: 2.5rem;
  margin-left: 2rem;
}

main .presentacion-contenedor {
  background-image: url("../assets/bg-img-presentacion.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: 2rem;
}
main .presentacion-contenedor .presentacion-img {
  width: 100%;
  height: 480px;
  background-image: linear-gradient(#212529, #212529, rgba(33, 37, 41, 0.3176470588), rgba(33, 37, 41, 0.4352941176), rgba(33, 37, 41, 0.1058823529));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
main .presentacion-contenedor .presentacion-img h1, main .presentacion-contenedor .presentacion-img h2 {
  color: red;
}
main #main-body {
  padding: 0 1rem;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}
main #main-body #filtro {
  margin: 1rem;
  padding: 2rem 0 1rem 0;
}
main #main-body #filtro #lista-filtro {
  padding: 0;
}
main #main-body #filtro #lista-filtro li {
  list-style: none;
  margin: 8px auto;
}
main #main-body #filtro #lista-filtro li button {
  background: none;
  border: none;
  text-decoration: none;
  font-size: 1.1rem;
  text-align: start;
  white-space: nowrap;
}
main #main-body #productos-contenedor {
  background-color: lightgray;
  display: grid;
  grid-template-columns: 33% 33% 33%;
  padding: 2rem;
  margin: 2rem;
}
main #main-body #productos-contenedor .card {
  width: auto;
  max-height: fit-content;
  margin: 2rem;
  box-shadow: 0px 5px 30px;
  box-sizing: border-box;
}
main #main-body #productos-contenedor .card .card-img-top {
  width: 100%;
  height: 75%;
  padding: 1rem;
}

.modal-dialog {
  width: max-content;
}
.modal-dialog .modal-content {
  width: max-content;
}
.modal-dialog .modal-content .modal-header, .modal-dialog .modal-content .modal-body, .modal-dialog .modal-content .modal-footer {
  width: 50rem;
}

#carrito-contenedor #carrito-cards li {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 2rem;
}
#carrito-contenedor #carrito-cards li button.material-symbols-outlined {
  background: none;
  border: none;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}
#carrito-contenedor #carrito-cards li p {
  font-size: 1.1rem;
}
#carrito-contenedor #carrito-cards li .material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 48;
}
#carrito-contenedor #carrito-cards hr {
  width: 90%;
  margin: 0 auto;
}
#carrito-contenedor #carrito-cards img {
  max-width: 10rem;
}
#carrito-contenedor .carrito-total {
  font-size: 1.5rem;
  font-weight: bolder;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 0 2rem;
}

.toastify {
  background: linear-gradient(to left, rgba(30, 26, 40, 0.7921568627) 15%, rgba(203, 19, 2, 0.8235294118));
  font-weight: 600;
  font-size: 1.1rem;
  -webkit-box-reflect: below 0px linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.096));
}

/*# sourceMappingURL=style.css.map */
