/** Shopify CDN: Minification failed

Line 192:0 Unexpected "{"

**/
#popup {
  position: fixed;
  z-index: 2000;
  top: -100%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90vw;
  max-width: 700px;
  height: auto;
  background-color: #ffffff;
  color: var(--color);
  padding: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-wrap: wrap;
  box-shadow: 0vw 0vw 0vw 300vw rgb(0 0 0 / 30%);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.320, 1.275), opacity 0.25s cubic-bezier(0.175, 0.885, 0.320, 1.275);
}

#popup.show {
  top: 40%;
  opacity: 1;
  visibility: visible;
}

#popup .cerrar {
  position: absolute;
  top: 0;
  right: 17px;
  color: #707070;
  font-size: 25px;
  font-weight: 100;
  transform: rotate(45deg);
  cursor: pointer;
  text-stroke: 1px #707070;
  -webkit-text-stroke: 1px #707070;
}

#popup .content {
  padding: 5px;
}

#popup .content .left {
  width: 100%;
  height: 100%;
}

#popup .content .left img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

#popup .content .right {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  -ms-flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

#popup .content h3 {
  font-family: var(--font);
  font-size: var(--f18);
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 28px;
  color: var(--color);
  margin-bottom: 20px;
}

#popup .content p {
  color: var(--color);
  font-size: var(--f12);
  font-weight: 300;
  padding: 0 0px;
  line-height: 1.4em;
  letter-spacing: 1px;
}

#popup .content p em {
  font-size: 18px;
  line-height: 28px;
  font-weight: 400;
  font-style: inherit;
  text-transform: uppercase;
}

#popup .content p em strong {
  font-weight: 400;
}

#popup .content p.bien {
  display: none;
  font-weight: 600;
  padding: 5px 10px;
  border: 1px solid green;
  margin: 10px 0 0;
}

#popup .content p.mal {
  display: none;
  font-weight: 600;
  padding: 5px 10px;
  border: 1px solid red;
  margin: 10px 0 0;
}

/* Popup Form */
#popup form {
  width: 100%;
  margin: 30px auto 0;
  overflow: auto;
  border: none;
}

#popup form input {
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  border-radius: 0;
  outline: none;
}

#popup form input[type="email"] {
  width: 100%;
  height: 45px;
  float: left;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--color);
  font-weight: 300;
  letter-spacing: 1px;
  font-size: var(--f14);
  padding: 5px 15px;
  border-bottom: 1px solid var(--color);
  text-align: center;
}

#popup form input[type="email"]::placeholder {
  color: var(--color);
  font-size: var(--f14);
}

#popup form input[type="submit"] {
  font-size: var(--f15);
  text-transform: uppercase;
  color: var(--color);
  background-color: transparent;
  border: 0;
  width: 100%;
  height: 45px;
  padding: 5px 5px;
  text-align: center;
}

/* Popup Sociales */
#popup .sociales {
  max-width: none;
  margin: 20px 0 0px;
  text-align: center;
}

#popup .sociales li {
  display: inline-block;
  margin: 0 5px 0;
  font-size: 1em;
}

#popup .sociales li a {
  color: var(--color);
}

#popup .sociales li a:hover {
  text-decoration: none;
  opacity: 0.8;
}

{

   #popup {
    padding: 40px 20px;
  }

  #popup .content {
    padding: 40px 0px 40px;
  }

}