.payments-template section#landing {
  background-image: url('/wp-content/themes/truemarket/assets/img/pages/kitchen-restored-optimized.jpg') !important;
  border-image: linear-gradient(to right,rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2))
    fill 1;
}

.payments-template #landing .content h1 {
  font-size: 10rem;
}

.payments-template #two-columns .right {
  background-image: url('/wp-content/themes/truemarket/assets/img/pages/rebuild-flooring-optimized.jpg') !important;
}

/* Form */
.moneris-checkout-form label {
  display: block;
  margin-block-end: 0.5rem;
}

.moneris-checkout-form__input-group {
  margin-block-end: 1rem;
  position: relative;
}

.moneris-checkout-form__input-group input {
  padding: 1rem 1rem 1rem 2rem;
  border-radius: 2rem;
  border: none;
}

.input-group__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  /* font-size: var(--text-size-lg); */
}

/* Button */
.button {
  font-size: 15px;
  display: inline-block;
  padding: 1em 4em;
  border-radius: 3em;
  overflow: hidden;
  border: 3px solid #131f6b;
  background: #131f6b;
  color: #f7f7f7;
  font-family: "Poppins-SemiBold";
  font-weight: normal;
  letter-spacing: .3px;
  position: relative;
  transition: .3s;
  z-index: 2;
  cursor: pointer;
}

.button:hover {
  background: #f7f7f7;
  color: #131f6b;
}

.button:hover::before {
  transform: translateY(100%);
}

.button::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #131f6b;
  border-radius: 30px;
  transform: translateY(0);
  transition: .3s;
}

/* Payment Modal */
.modal {
  display: block; /** <-- Required to make the animation work */
  max-width: 800px;
  width: 90%;
  height: 100%;
  opacity: 0;
  transform: translateY(15%);
  transition: transform 0.4s ease, opacity 0.2s ease;
  border: none;
  visibility: hidden;
  overflow: visible;
  padding: 0;
  border-radius: 0.3rem;
  position: fixed;
  margin: auto;
}

.modal__content {
  height: 100%;
  border-radius: 0.3rem;
  overflow: hidden;
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(2px);
}

.modal[open] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.close-modal {
  position: absolute;
  top: -1rem;
  right: -1rem;
  cursor: pointer;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  box-shadow: 0 0 40px rgb(0 0 0 / 10%);
  z-index: 999;
  background-color: #fff;
  transition: all 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.7rem;
  border: none;
}

.payment-form__message {
  display: block;
  margin-block-start: 1rem;
}

/* Footer link */
.make-a-payment-link {
  margin-block-start: 2rem;
}

.make-a-payment-link::before {
  content: url('../img/icon-payment.svg') !important;
  display: block;
  width: 20px !important;
  left: 0.25rem !important;
}   