/* r7: isolate backdrop compositing from the teleported Deposit dialog. */
.deposit-payment-overlay {
  isolation: isolate !important;
  background: transparent !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
.deposit-payment-overlay::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: rgba(2, 10, 14, .78);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  content: '';
}
.deposit-payment-overlay > .deposit-payment-modal {
  position: relative !important;
  z-index: 1 !important;
  isolation: isolate !important;
  background: #0b202b !important;
  filter: none !important;
  opacity: 1 !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
.deposit-payment-modal :is(header, .sandbox-wallet__payment, .sandbox-wallet__qr, .sandbox-wallet__amount, .sandbox-wallet__address, .sandbox-wallet__single-use, .sandbox-wallet__memo, button, img, code) {
  filter: none !important;
  opacity: 1 !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
