.modal {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(77, 77, 77, 0.7);
  transition: all 0.4s;
}

.modal:target {
  visibility: visible;
  opacity: 1;
}

.modal__content {
  border-radius: 4px;
  position: relative;
  width: 500px;
  max-width: 90%;
  background: #fff;
  padding: 1em 2em;
}


.modal__close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #585858;
  text-decoration: none;
}


      .form-input {
        height: 40px !important;
        background: #fff !important;
        color: #000 !important;
        font-size: 18px;
        border-radius: 0px;
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
        display: block;
        width: 100%;
        padding: 0.375rem 0.75rem;
        font-size: 1rem;
        line-height: 1.5;
        color: #495057;
        background-color: #fff;
        background-clip: padding-box;
        border: 1px solid #ced4da;
        border-radius: 0.25rem;
        -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
        transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
        -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
        transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    }

/* Center the modal */
#mdlDonationForm {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Style the modal content */
.modal-content {
  max-width: 400px;
}

/* Style the title */
.modal-title {
  font-size: 1.5rem;
}

/* Style the donation title */
.donation-title {
  text-align: center;
  margin-bottom: 10px;
}

/* Style the note text */
.title.qrcode {
  font-weight: bold;
  font-size: 1.1rem;
  color: #337ab7;
}


/* Style the labels with the "custom-label" class */
label.custom-label {
  font-weight: bold;
  margin-top: 10px;
  color: #333; /* Change the color as desired */
}



/* Style the "Donate" button */
.button-21 {
  background-color: #337ab7;
  color: white;
  border: none;
  padding: 10px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 10px 2px;
  cursor: pointer;
  border-radius: 4px;
}

/* Style the modal footer buttons */
.modal-footer button {
  margin-right: 10px;
}

/* Style the "Close" button */
.btn-secondary {
  background-color: #6c757d;
}

/* Style the "Save changes" button */
.btn-primary {
  background-color: #337ab7;
}


/*Donation Button */

.bank-details {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    /* border: 1px solid #c90a0a; */
    border-radius: 8px;
    box-shadow: 0px 0px 10px #545353;
    text-align: center;
    background: #fff;
    border-bottom: 6px solid #f66b2b;
}

.title-bank {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
}

.table th,
.table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #000 !important;
}

.table th {
    background-color: #f2f2f2;
}

