.payment-method-buttons.cp {
  display: none;
  justify-content: center;
  align-items: center;
  margin: 0 2em 2em;
  gap: 0.5em;
}
.payment-method-buttons.cp > div {
  display: flex;
}
.payment-method-buttons.cp .button {
  background: #acc8e7;
  margin: 0;
  padding-block: max(0.275em, 5.5px);
  font-size: 1.25rem;
}
.payment-method-buttons.cp .button.active {
  background-color: #00558C;
}
.payment-method-buttons.cp #payment-request-button {
  justify-content: flex-start;
}
.payment-method-buttons.cp #payment-request-button > div {
  margin: 0.2em 0.4em;
  width: 120px;
}
.use-wallet .payment-method-buttons.cp {
  display: flex;
  flex-wrap: wrap;
}
.use-wallet .payment-method-buttons.cp + div {
  display: none;
}

#paypal-button-container {
  display: none;
  max-height: 40px;
}
#paypal-button-container.active {
  display: block;
}

#submitDonation_PayPay {
  display: none;
  width: 150px;
  height: 40px;
  justify-content: center;
  align-items: center;
  border: none;
  background: #ffc439;
  border-radius: 4px;
}
#submitDonation_PayPay.active {
  display: flex;
  cursor: pointer;
}

.post-clickandpledge-customdonateform {
  padding: 0 !important;
  margin-bottom: 50px;
}
.post-clickandpledge-customdonateform .donation_options {
  position: relative;
  transition: all 0.5s ease-in-out;
}
.post-clickandpledge-customdonateform .donation_options.disabled {
  pointer-events: none;
}
.post-clickandpledge-customdonateform .donation_options.disabled .list-amount {
  opacity: 0.3;
}
.post-clickandpledge-customdonateform .donation_options.disabled::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin: -20px 0 0 -20px;
  border: 4px solid #ccc;
  border-top: 4px solid #00558C;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  z-index: 10;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.post-clickandpledge-customdonateform #tribute,
.post-clickandpledge-customdonateform #thank-you,
.post-clickandpledge-customdonateform #name-on-card-wrapper,
.post-clickandpledge-customdonateform .prev-step,
.post-clickandpledge-customdonateform button.next,
.post-clickandpledge-customdonateform .h-submit {
  display: none;
}
.post-clickandpledge-customdonateform #payment .h-submit {
  display: block;
}
.post-clickandpledge-customdonateform .flex-wrapper:has(#is-tribute) {
  display: flex;
  justify-content: center;
}
.post-clickandpledge-customdonateform .flex-wrapper:has(#is-tribute) .checks {
  padding: 5px 0 10px;
  width: auto;
}
.post-clickandpledge-customdonateform .step {
  margin-block: 2em;
}
.post-clickandpledge-customdonateform .step.processing .payment-method-buttons,
.post-clickandpledge-customdonateform .step.processing .payment-method {
  pointer-events: none;
  opacity: 0.5;
}
.post-clickandpledge-customdonateform.use-slick .slick-initialized #tribute,
.post-clickandpledge-customdonateform.use-slick .slick-initialized #thank-you,
.post-clickandpledge-customdonateform.use-slick .slick-initialized .prev-step,
.post-clickandpledge-customdonateform.use-slick .slick-initialized .h-submit {
  display: block;
}
.post-clickandpledge-customdonateform.use-slick .slick-initialized #name-on-card-wrapper {
  display: flex;
}
.post-clickandpledge-customdonateform.use-slick .slick-initialized button.next {
  display: inline-block;
}
.post-clickandpledge-customdonateform .cnp-disabled {
  pointer-events: none;
  opacity: 0.3;
  transition: all 0.5s ease-in-out;
}
.post-clickandpledge-customdonateform input[type=number]::-webkit-inner-spin-button,
.post-clickandpledge-customdonateform input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.post-clickandpledge-customdonateform input[type=number] {
  -moz-appearance: textfield;
}
.post-clickandpledge-customdonateform .other > div {
  display: flex !important;
  height: 100% !important;
}
.post-clickandpledge-customdonateform .other input {
  height: auto !important;
}
.post-clickandpledge-customdonateform .other button {
  display: none !important;
  flex: 0 1;
  letter-spacing: 0 !important;
}
.post-clickandpledge-customdonateform .other.active:has(:focus) input {
  background: transparent !important;
  color: white !important;
  caret-color: white !important;
}
.post-clickandpledge-customdonateform .other.active:has(:focus) button {
  display: block !important;
}
.post-clickandpledge-customdonateform #donation-form {
  max-width: none;
}
.post-clickandpledge-customdonateform form {
  --gap: 0.7em;
  display: flex;
  gap: var(--gap);
  flex-direction: column;
}
.post-clickandpledge-customdonateform form .f-row,
.post-clickandpledge-customdonateform form .address-city,
.post-clickandpledge-customdonateform form .state-zipcode,
.post-clickandpledge-customdonateform form .cf {
  display: flex;
  gap: var(--gap);
  flex: 1 1 auto;
}
.post-clickandpledge-customdonateform form .f-row > div,
.post-clickandpledge-customdonateform form .address-city > div,
.post-clickandpledge-customdonateform form .state-zipcode > div,
.post-clickandpledge-customdonateform form .cf > div {
  flex: 1 1 auto;
  position: relative;
}
.post-clickandpledge-customdonateform form .f-row:before, .post-clickandpledge-customdonateform form .f-row:after,
.post-clickandpledge-customdonateform form .address-city:before,
.post-clickandpledge-customdonateform form .address-city:after,
.post-clickandpledge-customdonateform form .state-zipcode:before,
.post-clickandpledge-customdonateform form .state-zipcode:after,
.post-clickandpledge-customdonateform form .cf:before,
.post-clickandpledge-customdonateform form .cf:after {
  content: none;
}
.post-clickandpledge-customdonateform form .country {
  max-width: 20ch;
}
.post-clickandpledge-customdonateform form .zipcode {
  max-width: 20ch;
}
.post-clickandpledge-customdonateform form select,
.post-clickandpledge-customdonateform form textarea,
.post-clickandpledge-customdonateform form input {
  width: 100%;
}
.post-clickandpledge-customdonateform form .h-submit {
  text-align: center;
}
.post-clickandpledge-customdonateform #tribute .radio-items,
.post-clickandpledge-customdonateform #tribute .gift-radio,
.post-clickandpledge-customdonateform #tribute .f-title {
  display: flex;
  align-items: center;
}
.post-clickandpledge-customdonateform #tribute .radio-items {
  justify-content: center;
  gap: 0.7em;
}
.post-clickandpledge-customdonateform #tribute .gift-radio {
  gap: 0.7em;
}
.post-clickandpledge-customdonateform #tribute .gift-radio label {
  display: flex;
  align-items: center;
  gap: 0.3em;
}
.post-clickandpledge-customdonateform #tribute .gift-radio input {
  width: auto !important;
  padding: 0;
}
.post-clickandpledge-customdonateform #tribute .checks {
  margin-top: 1em;
}
.post-clickandpledge-customdonateform #tribute .checks .check-row {
  text-align: center;
}
.post-clickandpledge-customdonateform #tribute .f-title {
  justify-content: center;
  margin: 1em 0 0;
  font-weight: bold;
}
.post-clickandpledge-customdonateform #tribute .f-title input {
  top: 0;
}
.post-clickandpledge-customdonateform #tribute #tribute-name {
  max-width: 25ch;
}
.post-clickandpledge-customdonateform #tribute #tribute-details {
  display: none;
  max-width: 540px;
  margin-inline: auto;
  gap: 0.7em;
  flex-direction: column;
}
.post-clickandpledge-customdonateform #tribute #tribute-details.active {
  display: flex;
}
.post-clickandpledge-customdonateform #tribute #tribute-details .city {
  flex-basis: 51.8% !important;
}
.post-clickandpledge-customdonateform #tribute #delivery-method {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2em;
  max-width: min(660px, 100%);
  margin: auto;
}
.post-clickandpledge-customdonateform #tribute #delivery-method > div {
  display: flex;
  flex-direction: column;
}
.post-clickandpledge-customdonateform #tribute #delivery-method button {
  margin: 0;
}
.post-clickandpledge-customdonateform #amount .list-amount {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(max(150px, 30%), 1fr));
  gap: 0.5em;
  margin: 0;
}
.post-clickandpledge-customdonateform #amount.manual-amt .list-amount {
  display: flex;
  flex-direction: column;
  max-width: 500px;
  margin: auto;
}
.post-clickandpledge-customdonateform #amount .item {
  float: none;
  width: 100%;
  padding: 0;
}
.post-clickandpledge-customdonateform #amount .donate-amount-message {
  grid-column: -1/1;
  padding: 0;
}
.post-clickandpledge-customdonateform #donation-confirmation-msg {
  gap: 0.3em;
  justify-content: center;
  margin-block: 1em 2em;
}
.post-clickandpledge-customdonateform #donation-confirmation-msg > div {
  display: inline;
}
.post-clickandpledge-customdonateform .addl-info + .checks {
  display: flex;
  gap: 0.3em;
  flex-direction: column;
  padding: 0 !important;
  width: fit-content;
}
@media (max-width: 640px) {
  .post-clickandpledge-customdonateform {
    /* name, last name, and email are on the same row in desktop, but we want to wrap email on mobile */
  }
  .post-clickandpledge-customdonateform .f-row.f-wrap-email {
    flex-wrap: wrap;
  }
  .post-clickandpledge-customdonateform .f-row.f-wrap-email .eaddress1 {
    flex: 1 1 100%;
  }
}/*# sourceMappingURL=post-clickandpledge-public.css.map */