/* Popup */
.pfb-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 99999;
}
.pfb-popup-content {
  background: #fff;
  padding: 20px;
  margin: auto;
  width: 350px;
  border-radius: 8px;
  text-align: center;
  color: #666;
  font-family: 'Arvo',Georgia,"Times New Roman",serif;
  
  /* Centering magic */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.pfb-close {
  float: right;
  font-size: 24px;
  cursor: pointer;
  font-family: Arial, sans-serif;
}
.pfb-popup-content h2 {
  color: #f98900;
  margin-bottom: 20px;
  line-height: 1em;
  font-weight: bold;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  font-family: 'Dancing Script';
  font-size: xx-large;
}

/* Sticky Footer Bar */
.pfb-footer {
  display: none;
  position: fixed;
  bottom: 60px;
  left: 0;
  width: 100%;
  background: #222;
  color: #fff;
  text-align: center;
  padding: 15px;
  z-index: 9998;
  font-size: 16px;
  font-weight: 600;
}
.pfb-footer a {
  color: #ffd700;
  text-decoration: underline;
}

/* Animation effect: popup slides down */
.pfb-slide-down {
  animation: slideToFooter 1s forwards;
}

@keyframes slideToFooter {
  from {top: 50%;}
  to {top: 100%;}
}