#pnp-popup {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#pnp-popup.show {
    opacity: 1;
}

.pnp-popup-content {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  box-shadow: 0 4px 10px rgb(33, 34, 33);
  width: 500px;
  text-align: center;
  border-radius: 10px;
  padding: 2%;
}

.pnp-close {
    position: absolute;
    right: 10px;
    top: 10px;
    cursor: pointer;
    font-size: 20px;
}

.pnp-close:focus, #pnp-save-phone:focus, #pnp-close-popup:focus {
    outline: 2px solid #0e7;
}

.iti.iti--allow-dropdown {
  display: initial;
}

#pnp-save-phone {
  background: #0e7;
  border: #0e7;
  border-radius: 5px;
  padding: 10px 25px 10px 25px;
  font-weight: 700;
  color: #044;
}

.pnp-popup-title {
  line-height: 1;
  font-size: 28px;
}

.pnp-popup-des {
  color: #6f6f6f !important;
}

#pnp-close-popup {
  background: #0e7;
  border: #0e7;
  border-radius: 5px;
  padding: 10px 25px 10px 25px;
  font-weight: 700;
  color: #044;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .pnp-popup-content {
    width: 90%;
    padding: 10px;
  }

  #pnp-save-phone, #pnp-close-popup {
    padding: 10px 20px;
  }

  .pnp-popup-title {
    font-size: 24px;
  }
}
