/** Shopify CDN: Minification failed

Line 196:0 Unexpected "}"

**/
.np-popup{
  position:fixed;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:999999;
  font-family:inherit;
}

.np-popup[hidden]{
  display:none;
}

.np-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(3px);
}
.np-modal{
  width:min(760px,88vw);
  height:auto;
  max-height:90vh;
  position:relative;
  height:460px;
  background:#fff;
  border-radius:22px;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr 1fr;
  box-shadow:0 25px 80px rgba(0,0,0,.35);
  animation:popupIn .4s ease;
}

.np-image{
  position:relative;
  background-size:cover;
  background-position:center;
}

.np-image-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(0,0,0,.2),rgba(0,0,0,.45));
}

.np-content{
  padding:28px 32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  text-align:center;
}

.np-logo{
  max-width:140px;
  margin:0 auto 20px;
}

.np-title{
  font-size:30px;
  margin:0 0 10px;
  font-weight:700;
  letter-spacing:-0.5px;
}

.np-subtitle{
  font-size:20px;
  margin:0 0 10px;
}

.np-description{
  font-size:14px;
  color:#666;
  margin-bottom:25px;
  line-height:1.6;
}

.np-field{
  margin-bottom:12px;
}

.np-input{
  width:100%;
  height:44px;
  border:1px solid #e5e5e5;
  border-radius:12px;
  padding:0 15px;
  font-size:14px;
  outline:none;
  transition:.25s;
}

.np-input:focus{
  border-color:#111;
  box-shadow:0 0 0 3px rgba(0,0,0,.08);
}

.np-checkbox{
  display:flex;
  gap:10px;
  font-size:12px;
  color:#666;
  margin:10px 0 15px;
  text-align:right;
}

.np-button{
  height:46px;
  background:var(--np-button-bg);
  color:var(--np-button-text);  color:#fff;
  border:none;
  border-radius:12px;
  font-size:15px;
  cursor:pointer;
  transition:.25s;
}

.np-button:hover{
  background:#000;
  transform:translateY(-2px);
}

.np-success{
  margin-top:12px;
  color:green;
  font-weight:600;
}

.np-close{
    position:absolute;
    top:12px;
    right:12px;

    width:30px;
    height:30px;

    border:none;
    border-radius:50%;

    background:rgba(255,255,255,.9);

    color:#111;

    font-size:18px;
    font-weight:300;

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;

    transition:.25s;

    z-index:50;

    box-shadow:0 5px 12px rgba(0,0,0,.15);
}

.np-close:hover{
    background:#111;
    color:#fff;
    transform:rotate(90deg);
}

@keyframes popupIn{
  from{
    opacity:0;
    transform:translateY(25px);
  }
  to{
    opacity:1;
    transform:none;
  }
}


  .np-image{
    height:220px;
  }

  .np-content{
    padding:25px;
  }

  .np-title{
    font-size:30px;
  }
}

.np-content{
  background:var(--np-content-bg);
  color:var(--np-text-color);
}

.np-button{
  background:var(--np-button-bg);
  color:var(--np-button-text);
}

.np-content{
  overflow:hidden;
  padding:18px 28px;
}

.np-description{
  margin-bottom:18px;
}

.np-field{
  margin-bottom:10px;
}

.np-checkbox{
  margin:8px 0 12px;
}

.np-button{
  width:100%;
  display:block;
  margin-top:4px;
}

.np-logo{
  max-width:115px;
  margin-bottom:14px;
}

.np-title{
  font-size:26px;
  margin-bottom:6px;
}

.np-subtitle{
  font-size:17px;
  margin-bottom:6px;
}

.np-description{
  font-size:13px;
  line-height:1.45;
}

.np-input{
  height:42px;
}

.np-button{
  height:44px;
}

.np-modal{
  width:min(720px,88vw);
  height:420px;
}

.np-logo{
  max-width:95px;
  margin-bottom:10px;
}

.np-title{
  font-size:23px;
  margin-bottom:4px;
}

.np-subtitle{
  font-size:15px;
  margin-bottom:4px;
}

.np-description{
  font-size:12px;
  line-height:1.35;
  margin-bottom:12px;
}

.np-field{
  margin-bottom:8px;
}

.np-input{
  height:38px;
  font-size:13px;
}

.np-checkbox{
  font-size:11px;
  margin:6px 0 8px;
}

.np-button{
  height:40px;
  font-size:13px;
  margin-top:0;
}

/* DESKTOP FIX */
@media (min-width: 769px){
  .np-modal{
    width:min(760px,88vw);
    height:auto;
    min-height:420px;
  }

  .np-image{
    min-height:420px;
    background-size:cover;
    background-position:center;
  }

  .np-content{
    padding:22px 30px;
    overflow:visible;
  }
}

/* MOBILE FIX */
@media (max-width: 768px){
  .np-modal{
    width:92vw;
    max-width:420px;
    height:auto !important;
    max-height:98vh;
    display:flex;
    flex-direction:column;
    overflow-y:auto;
  }

  .np-image{
    height:220px !important;
    min-height:220px;
    background-size:cover;
    background-position:center 20%;
  }

  .np-content{
    padding:16px 20px 18px;
    overflow:visible;
  }

  .np-logo{
    max-width:80px;
    margin-bottom:8px;
  }

  .np-title{
    font-size:22px;
    margin-bottom:4px;
  }

  .np-subtitle{
    font-size:15px;
    margin-bottom:4px;
  }

  .np-description{
    font-size:12px;
    line-height:1.35;
    margin-bottom:10px;
  }

  .np-field{
    margin-bottom:7px;
  }

  .np-input{
    height:38px;
    font-size:13px;
  }

  .np-checkbox{
    font-size:10.5px;
    line-height:1.25;
    margin:5px 0 7px;
  }

  .np-button{
    height:38px;
    font-size:13px;
    width:100%;
  }
}

.np-discount-success{
  text-align:center;
  direction:rtl;
}

.np-success-title{
  font-size:24px;
  font-weight:700;
  margin-bottom:12px;
}

.np-success-text{
  font-size:15px;
  margin-bottom:12px;
}

.np-discount-code{
  width:100%;
  height:54px;
  border:1px dashed #111;
  background:#f7f7f7;
  color:#111;
  border-radius:12px;
  font-size:24px;
  font-weight:700;
  letter-spacing:2px;
  cursor:pointer;
  margin-bottom:10px;
}

.np-copy-message{
  font-size:13px;
  color:#1d7f3f;
  margin-bottom:12px;
}

.np-shop-button{
  width:100%;
  height:46px;
  background:#111;
  color:#fff;
  border:none;
  border-radius:12px;
  cursor:pointer;
}

.np-error{
  color:#b00020;
  font-size:13px;
  margin-top:10px;
}