/** Shopify CDN: Minification failed

Line 413:25 Expected ":"

**/
#tienda {}


#tienda h2.title1 {
  margin-top: 10 !important;
}

#tienda .packs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 0 0 80px;
}

#tienda .pack {
  flex-basis: 50%;
  box-sizing: border-box;
  text-align: center;
  padding: 10px; /* Optional, for some space around each item */
}

#tienda .pack .image {
  position: relative;
}

#tienda .pack .image .descuento {
  position: absolute;
  bottom: 0;
  right: 0;
  background: #d2451e;
  color: #fff;
  padding: 4px 12px;
  font-size: 1.35rem;
  font-weight: 700;
}

#tienda .pack img {
  display: block;
  max-width: 300px;
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
}

#tienda .pack h3 {
  margin: 3rem 0 2rem;
}

#tienda .pack h4 {
  margin-top: 0 !important;
  margin-bottom: 2rem;
}

#tienda .pack h5 {
  margin-top: 0 !important;
}

#tienda .pack h5 .oferta {
  color: #d2451e;
}
#tienda .pack h5 .old {
  font-size: 1.5rem;
  text-decoration: line-through;
  padding: 0 0 0 3px;
  opacity: 0.7;
}

/* Productos */

#tienda .seleccionar {
  display: none;
}

#tienda .seleccionar .top {
  padding: 0;
  transition: all .4s ease-out;
  -webkit-transition: all .4s ease-out;
  -moz-transition: all .4s ease-out;
  -ms-transition: all .4s ease-out;
  opacity: 0;
  visibility: hidden;
  height: 0;
}

#tienda .seleccionar .top.show {
  padding: 0 0 40px;
  opacity: 1;
  visibility: visible;
  height: auto;
}

#tienda .seleccionar .top h2 {
  margin: 0;
}

#tienda .seleccionar .top .description {
  padding-top: 10px;
}

#tienda .products {
  margin: 0 0 100px;
  padding: 40px 0;
  display: none;
}

#tienda .products .items {
  display: flex;
}

#tienda .products .items img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
  padding: 0 30%;
}

#tienda .products .items .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  flex: 1;
}

#tienda .products .items .item .agregar {
  display: inline-block;
  width: 30px;
  height: 30px;
  transition: all .25s ease-out;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  margin-top: auto;
}

@media screen and (min-width: 749px) {

  #tienda .products .items .item:hover .agregar {
    transform: rotate(180deg);
  }

  #tienda .products .items .item.agotado:hover .agregar {
    transform: rotate(0deg);
  }

}

#tienda .products .items .item .agregar svg {
  display: block;
  width: 100%;
  height: 100%;
}

#tienda .products .items .item.agotado {
  position: relative;
  cursor: not-allowed;
}

#tienda .products .items .item.agotado:after {
  content: 'AGOTADO';
  display: inline-block;
  font-size: 1.5rem;
  color: #fff;
  background-color: rgba(0,0,0,0.75);
  padding: 8px 14px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#tienda .products .bottom {
  padding: 60px 0 0;
}

#tienda .products .botellas {
  display: flex;
}

#tienda .products .botellas .bot {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

#tienda .products .botellas .bot img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  margin: 0 auto 20px;
  padding: 0 10%;
}

#tienda .products .botellas .bot .quitar {
  display: inline-block;
  width: 20px;
  height: 20px;
  transition: all .25s ease-out;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
  margin-top: auto;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
}

#tienda .products .botellas .bot.full .quitar {
  opacity: 1;
  visibility: visible;
}

#tienda .products .botellas .bot .quitar:hover {
  transform: rotate(180deg);
}

#tienda .products .botellas .bot .quitar svg {
  display: block;
  width: 100%;
  height: 100%;
}

#tienda .products .botones {
  position: relative;
}

#tienda .products .botones .info h4 {
  margin: 0 0 10px;
}

#tienda .products .botones .info h5 {
  margin: 0 0 10px;
}

#tienda .products .botones .info h5 .oferta {
  color: #d2451e;
}
#tienda .products .botones .info h5 .old {
  font-size: 1.2rem;
  text-decoration: line-through;
  padding: 0 0 0 3px;
  opacity: 0.7;
}

#tienda .products .botones a {
  margin: 10px 0 0;
}

#tienda .products .botones a.show {
  display: inline-flex;
  margin: 10px 0 0;
}

#tienda .products .botones a.hide {
  display: none;
  margin: 0;
}

#tienda .products .botones a.hide:before {
  display: none;
}

#tienda .products .botones a.hide:after {
  display: none;
}

#tienda .products .botones a.disabled {
  cursor: not-allowed;
}

#tienda .products .botones a.allowed {
  cursor: pointer;
}

#tienda .products .botones label.btn-refill {
  display: grid;
  grid-template-columns: 30px calc(100% - 30px);
}

#tienda .products .botones label.btn-refill span {
  position: relative;
  top: -4px;
}

#tienda .products .botones span.blocked {
  display: block;
  width: 100%;
  height: 47px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(0,0,0,0);
  cursor: not-allowed;
  z-index: 2;
}

#tienda .products .botones .styled-checkbox+label:before {
  top: 0px;
}

#tienda .products .botones .styled-checkbox:checked+label:after {
  top: 9px;
}

/* Media Queries */

@media screen and (max-width: 749px) {

  #tienda .pack {
    flex-basis: 100%;
  }

  #tienda .seleccionar .top {
    padding: 0;
    grid-gap: 20px;
  }

  #tienda .products {
    padding: 20px 0;
  }

  #tienda .products .items {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }

  #tienda .products .items .item {
    flex-basis: calc(33.3333% - 20px);
  }

  #tienda .products .items .item .agregar {
    width: 20px;
    height: 20px;
  }

  #tienda .products .bottom {
    padding: 30px 0 0;
    grid-gap: 20px;
  }

}


/* Individuals */

#tienda .products.individuals .items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}

#tienda .products.individuals .items .item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
  grid-gap: 20px;
  border: var(--inputs-border-width) solid rgba(var(--inputs_border_color));
  padding: 10px;
  transition: all .25s ease-out;
  -webkit-transition: all .25s ease-out;
  -moz-transition: all .25s ease-out;
  -ms-transition: all .25s ease-out;
}

#tienda .products.individuals .items .item:hover {
  background-color: rgba(var(--inputs_border_color));
  color: var(--inputs_background_color);
  opacity: 0.7;
}

#tienda .products.individuals .items img {
  margin: 0;
}

#tienda .products.individuals .items h4 {
  margin: 0;
}

#tienda .products.individuals .items .item:hover h4 {
  color: var(--inputs_background_color);
}

#tienda .products.individuals .items .item.selected {
  background-color: rgba(var(--inputs_border_color));
  color: var(--inputs_background_color);
}

#tienda .products.individuals .items .item.selected:hover {
  opacity: 1;
}

#tienda .products.individuals .items .item.selected h4 {
  color: var(--inputs_background_color);
}

/* Media Queries */

@media screen and (max-width: 749px) {
  
  #tienda .products.individuals .items {
    grid-template-columns
  }

}