/* ==========================================================================
   MrBiller v3 — early-access modal
   Every selector is prefixed `mrbea-` so nothing here can collide with
   assets19/css/main.min.css on the host page.
   ========================================================================== */

/* --------------------------------------------------------------- shell ---- */
.mrbea-root,
.mrbea-root * {
  box-sizing: border-box;
}

/* Defensive normalize. The host page (assets19/css/main.min.css) styles bare
   `button`, `input` and `select` elements, and those rules leak straight into
   this modal. Neutralise the ones that break layout — but never `padding`,
   `height` or `border`, because the component classes below own those and
   would lose the specificity fight to a rule set here. */
.mrbea-root button,
.mrbea-root input,
.mrbea-root select {
  margin: 0;
  min-width: 0;
  max-width: none;
  float: none;
  font-family: inherit;
  text-transform: none;
  text-shadow: none;
  letter-spacing: normal;
  -webkit-appearance: none;
  appearance: none;
}

.mrbea-root form {
  margin: 0;
  padding: 0;
}

/* Counters `svg { max-width: 100% }` resets and stops icons from being
   shrunk to nothing when they sit inside a flex container. */
.mrbea-root svg {
  flex: none;
  max-width: none;
}

.mrbea-root {
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility .28s ease;
}

.mrbea-root.is-open {
  opacity: 1;
  visibility: visible;
}

.mrbea-root[hidden] {
  display: none;
}

.mrbea-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 26, .74);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.mrbea-dialog {
  position: relative;
  width: 100%;
  max-width: 1080px;
  max-height: calc(100vh - 48px);
  overflow-x: hidden;
  overflow-y: auto;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(900px 520px at 8% -12%, #274ea8, transparent 58%),
    radial-gradient(760px 520px at 108% 118%, #3b5bd9, transparent 52%),
    linear-gradient(150deg, #0d1f4a, #0a1533);
  box-shadow: 0 40px 100px rgba(8, 16, 40, .55);
  transform: translateY(16px) scale(.985);
  transition: transform .32s cubic-bezier(.22, 1, .36, 1), max-width .32s ease;
  scrollbar-width: thin;
  scrollbar-color: rgba(169, 187, 255, .35) transparent;
}

.mrbea-root.is-open .mrbea-dialog {
  transform: none;
}

.mrbea-dialog::-webkit-scrollbar {
  width: 8px;
}

.mrbea-dialog::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(169, 187, 255, .3);
}

/* Steps 2 and 3 are a single narrow column. */
.mrbea-root[data-active="2"] .mrbea-dialog,
.mrbea-root[data-active="3"] .mrbea-dialog {
  max-width: 520px;
  border-radius: 24px;
}

.mrbea-x {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 10;
  width: 34px;
  height: 34px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 50%;
  background: rgba(10, 21, 51, .55);
  color: #c3ccdf;
  line-height: 1;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.mrbea-x:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .28);
  color: #fff;
}

.mrbea-step[hidden] {
  display: none;
}

/* --------------------------------------------------- step 1: the banner --- */
.mrbea-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
  align-items: center;
  overflow: hidden;
}

.mrbea-blob {
  position: absolute;
  top: -120px;
  left: 40%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74, 107, 236, .55), transparent 62%);
  filter: blur(20px);
  animation: mrbea-pulse 6s ease-in-out infinite;
  pointer-events: none;
}

.mrbea-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .1);
  pointer-events: none;
}

.mrbea-ring--lg {
  top: -90px;
  right: -70px;
  width: 280px;
  height: 280px;
}

.mrbea-ring--sm {
  top: -40px;
  right: -20px;
  width: 180px;
  height: 180px;
  border-color: rgba(255, 255, 255, .07);
}

.mrbea-left {
  position: relative;
  z-index: 2;
  padding: 46px 8px 46px 48px;
}

.mrbea-logo {
  width: 175px;
  margin-bottom: 20px;
}

.mrbea-logo svg {
  width: 100%;
  height: auto;
  display: block;
}

.mrbea-soon {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  font-size: 12.5px;
  font-weight: 700;
  color: #dbe2f2;
  box-shadow: 0 6px 16px rgba(59, 91, 217, .42);
}

.mrbea-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7ee2a8;
  box-shadow: 0 0 0 4px rgba(126, 226, 168, .2);
}

.mrbea-eyebrow {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #8aa2ff, #c9d5ff, #8aa2ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: mrbea-shimmer 4s linear infinite;
}

.mrbea-h1 {
  margin: 12px 0 0;
  font-size: 48px;
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -.035em;
}

.mrbea-lede {
  margin: 16px 0 0;
  max-width: 430px;
  font-size: 15.5px;
  line-height: 1.55;
  color: #c3ccdf;
}

.mrbea-lede em {
  font-style: normal;
  color: #e6ebf7;
  font-weight: 700;
}

.mrbea-features {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.mrbea-feature {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .09);
}

.mrbea-feature-icon {
  flex: none;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(138, 162, 255, .18);
  color: #a9bbff;
}

.mrbea-feature-icon--green {
  background: rgba(122, 226, 168, .16);
  color: #7ee2a8;
}

.mrbea-feature-icon--amber {
  background: rgba(255, 196, 120, .16);
  color: #ffc478;
}

.mrbea-feature-title {
  font-size: 13.5px;
  font-weight: 800;
  letter-spacing: -.01em;
}

.mrbea-feature-copy {
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.4;
  color: #aeb8ce;
}

/* Email capture ------------------------------------------------------------ */
.mrbea-cta {
  margin-top: 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mrbea-capture {
  display: flex;
  max-width: 400px;
  padding: 5px;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(8, 16, 40, .4);
  transition: box-shadow .2s ease;
}

.mrbea-capture.is-invalid {
  box-shadow: 0 0 0 2px #ff8a9c, 0 12px 30px rgba(8, 16, 40, .4);
}

.mrbea-capture input {
  flex: 1;
  min-width: 0;
  height: auto;
  padding: 0 14px;
  border: none;
  border-radius: 0;
  outline: none;
  box-shadow: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  line-height: normal;
  color: #101322;
}

.mrbea-btn {
  width: auto;
  height: 42px;
  padding: 0 20px;
  border: none;
  border-radius: 9px;
  background: linear-gradient(180deg, #4a6bec, #3b5bd9);
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: filter .18s ease, transform .18s ease;
}

.mrbea-btn:hover:not(:disabled) {
  filter: brightness(1.08);
}

.mrbea-btn:active:not(:disabled) {
  transform: translateY(1px);
}

.mrbea-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.mrbea-capture-error {
  display: none;
  font-size: 12.5px;
  font-weight: 600;
  color: #ff9fae;
}

.mrbea-capture-error.is-shown {
  display: block;
}

.mrbea-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mrbea-avatars {
  display: flex;
}

.mrbea-avatars span {
  width: 24px;
  height: 24px;
  margin-left: -7px;
  border-radius: 50%;
  border: 2px solid #0d1f4a;
}

.mrbea-social-copy {
  font-size: 12.5px;
  color: #9aa5bd;
}

.mrbea-social-copy strong {
  color: #e6ebf7;
}

/* Floating preview column -------------------------------------------------- */
.mrbea-right {
  position: relative;
  height: 100%;
  min-height: 520px;
}

.mrbea-card {
  position: absolute;
  border-radius: 16px;
  background: rgba(15, 31, 74, .72);
  border: 1px solid rgba(169, 187, 255, .22);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(8, 16, 40, .4);
}

.mrbea-stat {
  top: 56px;
  left: -6px;
  z-index: 3;
  padding: 14px 16px;
  animation: mrbea-floaty 5s ease-in-out infinite;
}

.mrbea-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #9aa5bd;
}

.mrbea-stat-value {
  margin-top: 4px;
  font-size: 22px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}

.mrbea-bars {
  margin-top: 8px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 26px;
}

.mrbea-bars span {
  width: 7px;
  border-radius: 2px;
  background: linear-gradient(180deg, #7ee2a8, #3bbf7a);
}

.mrbea-invoice {
  position: absolute;
  top: 78px;
  right: 26px;
  width: 290px;
  z-index: 2;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  color: #101322;
  box-shadow: 0 30px 70px rgba(8, 16, 40, .5);
  animation: mrbea-floaty2 6s ease-in-out infinite;
}

.mrbea-sweep {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 40%;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .55), transparent);
  animation: mrbea-sweep 3.6s ease-in-out infinite;
}

.mrbea-invoice-head {
  padding: 11px 0;
  text-align: center;
  border-bottom: 1px solid #e6e9f0;
  background: linear-gradient(180deg, #f3f6ff, #eaf0fe);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #3b5bd9;
}

.mrbea-invoice-body {
  padding: 20px 20px 16px;
  text-align: center;
}

.mrbea-invoice-label {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #8791a1;
}

.mrbea-invoice-amount {
  margin-top: 6px;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -.025em;
  font-variant-numeric: tabular-nums;
}

.mrbea-paid {
  margin-top: 9px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8f6ee;
  border: 1px solid #c7ecd6;
  color: #1f9d57;
  font-size: 10.5px;
  font-weight: 800;
}

.mrbea-lines {
  padding: 0 20px 8px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.mrbea-line {
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
}

.mrbea-line span:first-child {
  color: #727b8f;
}

.mrbea-line span:last-child {
  font-weight: 700;
}

.mrbea-track {
  margin: 8px 20px 0;
  height: 5px;
  border-radius: 999px;
  background: #eef0f5;
  overflow: hidden;
}

.mrbea-track div {
  height: 100%;
  width: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #4a6bec, #3b5bd9);
  animation: mrbea-bar 1.6s ease-out;
}

.mrbea-reconciled {
  padding: 14px 20px 18px;
  text-align: center;
  font-size: 10.5px;
  color: #8791a1;
}

.mrbea-reconciled strong {
  color: #3b5bd9;
}

.mrbea-toast {
  bottom: 64px;
  left: 14px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 210px;
  padding: 11px 14px;
  border-radius: 14px;
  animation: mrbea-floaty 5.6s ease-in-out .6s infinite;
}

.mrbea-toast-icon {
  flex: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  background: rgba(138, 162, 255, .2);
  color: #a9bbff;
}

.mrbea-toast-copy {
  font-size: 11.5px;
  line-height: 1.35;
  color: #dbe2f2;
}

/* ------------------------------------------------ step 2: the access form -- */
.mrbea-form-step {
  position: relative;
  padding: 34px 34px 30px;
}

.mrbea-pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(138, 162, 255, .16);
  border: 1px solid rgba(169, 187, 255, .3);
  color: #a9bbff;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.mrbea-h2 {
  margin: 14px 0 0;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -.025em;
}

.mrbea-sub {
  margin: 10px 0 0;
  font-size: 14px;
  line-height: 1.55;
  color: #aeb8ce;
}

.mrbea-rule {
  height: 1px;
  margin: 22px 0;
  border: 0;
  background: rgba(255, 255, 255, .1);
}

.mrbea-field {
  margin-bottom: 18px;
}

.mrbea-label {
  display: block;
  margin-bottom: 8px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9aa5bd;
}

.mrbea-input,
.mrbea-select {
  display: block;
  width: 100%;
  height: 46px;
  padding: 0 14px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .05);
  color: #fff;
  font-family: inherit;
  font-size: 14.5px;
  line-height: normal;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.mrbea-input::placeholder {
  color: #6f7b95;
}

.mrbea-input:focus,
.mrbea-select:focus {
  border-color: #8aa2ff;
  background: rgba(255, 255, 255, .08);
  box-shadow: 0 0 0 3px rgba(138, 162, 255, .18);
}

.mrbea-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23a9bbff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
}

/* Carried over from step 1, so it reads as "we already have this". */
.mrbea-input.is-prefilled {
  background: rgba(138, 162, 255, .13);
  border-color: rgba(169, 187, 255, .3);
}

/* Native option lists render on the OS layer, so they need explicit colours
   to stay readable against the dark field. */
.mrbea-select option {
  background: #10203f;
  color: #fff;
}

.mrbea-field.has-error .mrbea-input,
.mrbea-field.has-error .mrbea-select {
  border-color: #ff8a9c;
  box-shadow: 0 0 0 3px rgba(255, 138, 156, .16);
}

.mrbea-error {
  display: none;
  margin-top: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: #ff9fae;
}

.mrbea-field.has-error .mrbea-error {
  display: block;
}

/* Checkbox ----------------------------------------------------------------- */
.mrbea-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-bottom: 20px;
  font-size: 13.5px;
  line-height: 1.45;
  color: #dbe2f2;
  cursor: pointer;
}

.mrbea-check input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.mrbea-box {
  flex: none;
  width: 19px;
  height: 19px;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .05);
  color: transparent;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.mrbea-check input:checked + .mrbea-box {
  background: linear-gradient(180deg, #4a6bec, #3b5bd9);
  border-color: #4a6bec;
  color: #fff;
}

.mrbea-check input:focus-visible + .mrbea-box {
  box-shadow: 0 0 0 3px rgba(138, 162, 255, .3);
}

/* Quick check -------------------------------------------------------------- */
.mrbea-quick-label {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #9aa5bd;
}

.mrbea-sum {
  color: #e6ebf7;
  font-size: 13px;
  letter-spacing: .02em;
}

.mrbea-quick-input {
  width: 108px;
  text-align: center;
  font-weight: 700;
}

/* Actions ------------------------------------------------------------------ */
.mrbea-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.mrbea-btn--submit {
  height: 46px;
  padding: 0 24px;
  border-radius: 12px;
  font-size: 14.5px;
}

.mrbea-ghost {
  width: auto;
  height: auto;
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
  box-shadow: none;
  color: #9aa5bd;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: color .18s ease;
}

.mrbea-ghost:hover {
  color: #dbe2f2;
}

.mrbea-nocard {
  margin-left: auto;
  font-size: 12.5px;
  color: #7d879f;
  white-space: nowrap;
}

.mrbea-formerror {
  display: none;
  margin-top: 16px;
  padding: 11px 14px;
  border-radius: 12px;
  background: rgba(255, 138, 156, .1);
  border: 1px solid rgba(255, 138, 156, .3);
  color: #ffb3be;
  font-size: 13px;
  line-height: 1.45;
}

.mrbea-formerror.is-shown {
  display: block;
}

/* Honeypot: off-screen rather than display:none, which some bots skip. */
.mrbea-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Spinner ------------------------------------------------------------------ */
.mrbea-spinner {
  display: none;
  width: 15px;
  height: 15px;
  margin-right: 9px;
  vertical-align: -2px;
  border: 2px solid rgba(255, 255, 255, .35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: mrbea-spin .7s linear infinite;
}

.is-busy .mrbea-spinner {
  display: inline-block;
}

/* --------------------------------------------------------- step 3: done --- */
.mrbea-done {
  padding: 52px 40px 46px;
  text-align: center;
}

.mrbea-tick {
  width: 62px;
  height: 62px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(126, 226, 168, .15);
  border: 1px solid rgba(126, 226, 168, .35);
  color: #7ee2a8;
}

.mrbea-done .mrbea-h2 {
  margin-top: 0;
}

.mrbea-done .mrbea-sub {
  max-width: 360px;
  margin: 10px auto 0;
}

.mrbea-done .mrbea-btn {
  margin-top: 26px;
  height: 44px;
  border-radius: 12px;
}

/* ----------------------------------------------------------- animations --- */
@keyframes mrbea-floaty {

  0%,
  100% {
    transform: translateY(0) rotate(-3deg);
  }

  50% {
    transform: translateY(-12px) rotate(-3deg);
  }
}

@keyframes mrbea-floaty2 {

  0%,
  100% {
    transform: translateY(0) rotate(4deg);
  }

  50% {
    transform: translateY(-9px) rotate(4deg);
  }
}

@keyframes mrbea-shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

@keyframes mrbea-pulse {

  0%,
  100% {
    opacity: .5;
    transform: scale(1);
  }

  50% {
    opacity: .85;
    transform: scale(1.08);
  }
}

@keyframes mrbea-bar {
  from {
    width: 0;
  }
}

@keyframes mrbea-sweep {
  0% {
    transform: translateX(-120%);
  }

  100% {
    transform: translateX(320%);
  }
}

@keyframes mrbea-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ----------------------------------------------------------- responsive --- */
@media (max-width: 920px) {
  .mrbea-banner {
    grid-template-columns: 1fr;
  }

  .mrbea-right {
    display: none;
  }

  .mrbea-left {
    padding: 44px 30px 40px;
  }

  .mrbea-h1 {
    font-size: 38px;
  }
}

@media (max-width: 560px) {
  .mrbea-root {
    padding: 12px 10px;
  }

  .mrbea-dialog {
    border-radius: 22px;
    max-height: calc(100vh - 24px);
  }

  .mrbea-left {
    padding: 40px 22px 34px;
  }

  .mrbea-h1 {
    font-size: 31px;
  }

  .mrbea-capture {
    flex-direction: column;
    gap: 8px;
    padding: 8px;
  }

  .mrbea-capture input {
    height: 40px;
  }

  .mrbea-form-step {
    padding: 30px 22px 26px;
  }

  .mrbea-h2 {
    font-size: 23px;
  }

  .mrbea-actions {
    flex-wrap: wrap;
    gap: 14px;
  }

  .mrbea-nocard {
    margin-left: 0;
    width: 100%;
  }
}

/* Short viewports: the banner's tall preview column forces scrolling. */
@media (max-height: 760px) {
  .mrbea-right {
    min-height: 430px;
  }

  .mrbea-left {
    padding-top: 36px;
    padding-bottom: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .mrbea-root,
  .mrbea-dialog,
  .mrbea-blob,
  .mrbea-eyebrow,
  .mrbea-stat,
  .mrbea-invoice,
  .mrbea-sweep,
  .mrbea-toast,
  .mrbea-track div {
    animation: none !important;
    transition: opacity .01s linear !important;
  }

  .mrbea-dialog {
    transform: none !important;
  }
}
