/* POPUP OVERLAY */
.ignitho-popup{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:999999;
  align-items:center;
  justify-content:center;
  padding:20px;
}

/* POPUP BOX */
.ignitho-popup-box{
  background:#fff;
  width:100%;
  max-width:500px;
  border-radius:24px;
  padding:45px 35px;
  text-align:center;
  position:relative;
  animation:popupFade .35s ease;
  box-shadow:0 20px 60px rgba(0,0,0,.18);
}

/* ICON */
.ignitho-popup-icon{
  width:80px;
  height:80px;
  margin:0 auto 20px;
  border-radius:50%;
  background:#61ce70;
  color:#fff;
  font-size:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
}

/* TITLE */
.ignitho-popup-box h3{
  font-size:32px;
  margin-bottom:14px;
  color:#111;
}

/* TEXT */
.ignitho-popup-box p{
  font-size:17px;
  line-height:1.7;
  color:#555;
  margin:0;
}

/* CLOSE */
.ignitho-popup-close{
  position:absolute;
  top:15px;
  right:18px;
  font-size:32px;
  cursor:pointer;
  color:#999;
}

@keyframes popupFade{
  from{
    opacity:0;
    transform:translateY(20px) scale(.96);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

@media(max-width:767px){

  .ignitho-popup-box{
    padding:35px 24px;
    border-radius:20px;
  }

  .ignitho-popup-box h3{
    font-size:26px;
  }

  .ignitho-popup-box p{
    font-size:15px;
  }

}