.paymentModal {
  display: none;
  position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 35%;
    top: 10%;
    width: 40%; /* Full width */
    height: 50%; /* Full height */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.payment-modal-content {
  background-color: #fefefe;
  z-index: 1;
    /* margin: 15% auto; */ 
    padding: 15px;
    border: 1px solid #888;
    width: 100%; 
}

/* The Close Button */
.payment-modal-close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.payment-modal-close:hover,
.payment-modal-close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}