/* Monthly Market Insights — rebuilt layout
   Rubik loaded for parity with original FMG styling */

@import url("https://fonts.googleapis.com/css?family=Rubik:300,400,500,700");

:root {
  --color-heading: #626a97;
  --color-subheading: #35a2b1;
  --color-body: #666;
  --color-body-dark: #4e4e4e;
  --color-quote-author: #2c7cb5;
  --gradient-header: linear-gradient(
    to right,
    #838bc5 -10%,
    #50a9dc 30%,
    #00c5d9 62%
  );
  --gradient-quote: linear-gradient(to right, #838bc5 0%, #50a9dc 30%, #34a2b1 62%);
  --max-content: 900px;
  --max-quote: 900px;
  --max-btn: 800px;
  --space-section: 48px;
  --radius-table: 50px 0 0 0;
  --radius-table-foot: 0 0 50px 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reading progress — top of viewport, same gradient as MMI table headers */
#mmi-scroll-progress.mmi-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  z-index: 99999;
  pointer-events: none;
  overflow: hidden;
}

#mmi-scroll-progress .mmi-scroll-progress__bar {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  transform: scaleX(0);
  background: var(--gradient-header);
  will-change: transform;
  transition: transform 0.12s ease-out;
}

@media (prefers-reduced-motion: reduce) {
  #mmi-scroll-progress .mmi-scroll-progress__bar {
    transition: none;
  }
}

@media (max-width: 1024px) {
  #mmi-scroll-progress.mmi-scroll-progress {
    display: none;
  }
}

.mmi-wrapper {
  margin: 0;
  font-family: Rubik, "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
  color: var(--color-body);
  background: #fff;
  line-height: 1.6;
}

.mmi-wrapper h1, .mmi-wrapper h2, .mmi-wrapper h3, .mmi-wrapper h4, .mmi-wrapper h5, .mmi-wrapper h6, .mmi-wrapper p, .mmi-wrapper span, .mmi-wrapper a, .mmi-wrapper li, .mmi-wrapper blockquote, .mmi-wrapper table, .mmi-wrapper th, .mmi-wrapper td {
  font-family: Rubik, "Source Sans Pro", "Helvetica Neue", Arial, sans-serif;
}

.mmi-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mmi-page {
  /* max-width: var(--max-content); */
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 40px 48px;
}

.mmi-lead {
  font-size: 20px;
  line-height: 1.8;
  margin: 0 0 20px;
}

.mmi-section-title {
  color: var(--color-heading);
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin: var(--space-section) 0 16px;
}

.mmi-section-title:first-of-type {
  margin-top: 32px;
}

.mmi-subtitle {
  color: var(--color-subheading);
  font-size: 26px;
  font-weight: 500;
  margin: 24px 0 6px;
}

.mmi-ref {
  font-size: 10px;
  vertical-align: super;
}

/* Video */
.mmi-video {
  margin: 0 auto 8px;
}

.mmi-video__embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  max-width: 100%;
  overflow: hidden;
}

.mmi-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Scroll reveal — progressive enhancement (hidden only when .js-mmi is set) */
html.js-mmi .mmi-reveal-y:not(.mmi-is-revealed) {
  opacity: 0;
  transform: translateY(40px);
}

.mmi-reveal-y {
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.mmi-reveal-y.mmi-is-revealed {
  opacity: 1;
  transform: translateY(0);
}

html.js-mmi .mmi-reveal-x-left:not(.mmi-is-revealed) {
  opacity: 0;
  transform: translateX(-40px);
}

html.js-mmi .mmi-reveal-x-right:not(.mmi-is-revealed) {
  opacity: 0;
  transform: translateX(40px);
}

.mmi-reveal-x-left,
.mmi-reveal-x-right {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.mmi-reveal-x-left.mmi-is-revealed,
.mmi-reveal-x-right.mmi-is-revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Quote */
.mmi-quote-section {
  text-align: center;
  margin: 36px 0;
}

.mmi-quote-card {
  display: inline-block;
  max-width: var(--max-quote);
  width: 100%;
  padding: 10px;
  border-radius: 50px 0;
  background: var(--gradient-quote);
}

.mmi-quote-inner {
  display: grid;
  grid-template-columns: minmax(56px, 15%) 1fr;
  gap: 8px;
  align-items: start;
  background: #fff;
  color: #666;
  border-radius: 40px 0;
  padding: 48px 32px;
  text-align: left;
}

.mmi-quote-mark img {
  width: min(60%, 64px);
  height: auto;
  display: block;
  margin: 8px auto 0;
}

.mmi-quote-text {
  font-size: 29px;
  font-weight: 400;
  color: #777;
  line-height: 1.6;
  margin: 0 0 12px;
}

.mmi-quote-attrib {
  font-size: 18px;
  font-weight: 500;
  color: var(--color-quote-author);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 500px) {
  .mmi-quote-inner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .mmi-quote-mark {
    justify-self: start;
  }

  .mmi-quote-mark img {
    margin: 0;
  }

  .mmi-quote-text {
    font-size: 20px;
  }

  .mmi-quote-attrib {
    font-size: 16px;
  }

  .mmi-quote-text,
  .mmi-quote-attrib {
    text-align: left;
  }
}

/* Tables wrapper — horizontal scroll only; hide scrollbars (touch/wheel still work) */
.mmi-table-wrap {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  margin: 32px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.mmi-table-wrap::-webkit-scrollbar {
  width: 0;
  height: 0;
  display: none;
}

.mmi-table {
  width: 100%;
  min-width: 320px;
  border-collapse: collapse;
  font-family: Rubik, sans-serif;
}

/* QMI: four data columns need a bit more horizontal room before scroll */

.mmi-table thead th {
  background: var(--gradient-header);
  color: #fff;
  font-size: 30px;
  font-weight: 200;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 40px 48px;
  border-radius: var(--radius-table);
}

.mmi-table .mmi-table__logo {
  float: right;
  max-height: 45px;
  width: auto;
}

.mmi-table thead th::after {
  content: "";
  display: block;
  clear: both;
}

.mmi-table .mmi-table__subhead th {
  background: #d2d2d2;
  color: var(--color-body-dark);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  text-align: center;
  padding: 20px 16px;
  /* border-right: 2px solid #fff; */
}

.mmi-table .mmi-table__subhead th:first-child {
  text-align: left;
  padding-left: 4%;
}

.mmi-table .mmi-table__subhead--world th:first-child {
  padding-left: 6%;
}

.mmi-table tbody td {
  padding: 20px 16px;
  font-size: 20px;
  font-weight: 500;
  color: var(--color-body-dark);
  vertical-align: middle;
}

.mmi-table tbody tr:nth-child(odd) td {
  background: #fafafa;
}

.mmi-table tbody tr:nth-child(even) td {
  background: #fff;
}

.mmi-table tbody tr.mmi-table__divider th,
.mmi-table tbody tr.mmi-table__divider td {
  background: #d2d2d2;
  font-weight: 500;
  text-transform: uppercase;
  text-align: left;
  padding-left: 6%;
}

.mmi-table .mmi-table__cat {
  padding-left: 4%;
}

.mmi-table .mmi-table__num {
  text-align: center;
}

.mmi-table .mmi-table__num img {
  vertical-align: middle;
  margin-right: 8px;
}

.mmi-table tbody tr.mmi-table__treasury td {
  border-top: 1px solid #d4d4d4;
}

.mmi-table tfoot th {
  background: var(--gradient-header);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  text-align: left;
  padding: 40px 48px;
  border-radius: var(--radius-table-foot);
}

/* Row hover — desktop / fine pointer only (avoids sticky highlight on touch) */
@media (hover: hover) {
  .mmi-table tr.mmi-table__hoverable:hover > td,
  .mmi-table tr.mmi-table__hoverable:hover > th {
    background: #e8ecf7 !important;
    transition: background 0.2s ease;
  }
}

/* Row animation: cells rise together */
html.js-mmi .mmi-table tr.mmi-reveal-y:not(.mmi-is-revealed) > th,
html.js-mmi .mmi-table tr.mmi-reveal-y:not(.mmi-is-revealed) > td {
  transform: translateY(24px);
  opacity: 0;
}

.mmi-table tr.mmi-reveal-y > th,
.mmi-table tr.mmi-reveal-y > td {
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.mmi-table tr.mmi-reveal-y.mmi-is-revealed > th,
.mmi-table tr.mmi-reveal-y.mmi-is-revealed > td {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 800px) {
  .mmi-table thead th {
    text-align: center;
    font-size: 26px;
  }

  .mmi-table thead th,
  .mmi-table tfoot th {
    padding: 24px 20px;
  }

  .mmi-table .mmi-table__logo {
    float: none;
    display: block;
    margin: 16px auto 0;
  }
}

@media (max-width: 640px) {
  .mmi-page {
    padding: 0px;
  }

  .mmi-lead {
    font-size: 17px;
  }

  .mmi-section-title {
    font-size: 28px;
  }

  .mmi-subtitle {
    font-size: 20px;
  }

  .mmi-table .mmi-table__subhead th {
    font-size: 14px;
  }

  .mmi-table tbody td {
    font-size: 16px;
  }

  .mmi-table tfoot th {
    font-size: 13px;
    padding: 24px 16px;
  }

  .mmi-btn__cell {
    padding: 40px 8%;
  }

  .mmi-btn__cell h3 {
    font-size: 22px;
  }

  .mmi-btn__cell p {
    font-size: 15px;
  }
}

/* By the Numbers — flex layout (matches legacy FMG btn rows) */
.mmi-by-the-nums-title {
  margin: 60px 0 20px;
}

.mmi-btn {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: var(--max-btn);
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.mmi-btn__row {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  align-items: stretch;
}

.mmi-btn__row--split .mmi-btn__cell {
  flex: 1 1 50%;
  max-width: 50%;
  width: 50%;
}

.mmi-btn__cell {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1 1 100%;
  width: 100%;
  min-width: 0;
  text-align: center;
  padding: 100px 8%;
}

.mmi-btn__cell > h3,
.mmi-btn__cell > p {
  width: 100%;
}

.mmi-btn__cell h3 {
  font-size: 32px;
  font-weight: 400;
  margin: 0 0 12px;
  line-height: 1.15;
}

.mmi-btn__cell p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
}

.mmi-btn__cell--purple {
  background: #6b71b2;
  color: #fff;
}

.mmi-btn__cell--blue {
  background: #2c7cb5;
  color: #fff;
}

.mmi-btn__cell--purple h3, .mmi-btn__cell--purple p, .mmi-btn__cell--blue h3, .mmi-btn__cell--blue p {
  color: #fff!important;
}

.mmi-btn__cell--aqua {
  background: #93d6df;
  color: #555;
}

.mmi-btn__cell--white {
  background: #fff;
  color: #555;
}

.mmi-btn__cell--white h3, .mmi-btn__cell--white p, .mmi-btn__cell--aqua h3, .mmi-btn__cell--aqua p {
  color: #555!important;
}

.mmi-btn__stack {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.mmi-btn__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.mmi-btn__stat h3 {
  margin: 0 0 12px;
}

.mmi-btn__stat p {
  margin: 0;
}

.mmi-btn__stack .mmi-btn__stat + .mmi-btn__stat {
  margin-top: 0;
}

.mmi-btn hr {
  flex: 0 0 auto;
  align-self: stretch;
  width: 100%;
  border: 0;
  border-top: 1px solid #ddd;
  margin: 32px 0;
}

.mmi-mobile-only {
  display: none!important;
}

/* By the Numbers: stack every cell on narrow viewports (must follow base .mmi-btn__ rules) */
@media (max-width: 640px) {
  
  .mmi-btn__row {
    flex-direction: column;
    flex-wrap: nowrap;
  }

  .mmi-btn__row--split .mmi-btn__cell,
  .mmi-btn__cell {
    flex: 1 1 auto;
    max-width: 100%;
    width: 100%;
    padding: 75px 8%;
  }
  

  .mmi-btn__cell h3 {
    font-size: 28px;
  }

}

/* Legal / footnotes */
.mmi-legal {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 32px;
}

.mmi-legal p {
  margin: 0 0 24px;
}

.mmi-footnotes {
  /* max-width: var(--max-btn); */
  margin: 0 auto;
  padding: 0 0 32px;
}

.mmi-footnotes p {
  font-size: 12px;
  color: #2f4447;
  margin: 0 0 6px;
}

/* QMI tables (4 columns): stack each index row as a card on small screens */
@media (max-width: 640px) {
  .mmi-table-wrap--qmi {
    overflow-x: visible;
  }

  .mmi-table.mmi-table--qmi {
    min-width: 0;
    display: block;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }

  .mmi-table.mmi-table--qmi caption {
    display: block;
  }

  .mmi-table.mmi-table--qmi thead,
  .mmi-table.mmi-table--qmi tbody,
  .mmi-table.mmi-table--qmi tfoot {
    display: block;
    width: 100%;
  }

  .mmi-table.mmi-table--qmi thead tr,
  .mmi-table.mmi-table--qmi tfoot tr {
    display: block;
    width: 100%;
  }

  .mmi-table.mmi-table--qmi thead th[colspan] {
    display: block;
    width: 100%;
    border-radius: var(--radius-table);
  }

  .mmi-table.mmi-table--qmi tfoot th[colspan] {
    display: block;
    width: 100%;
    border-radius: var(--radius-table-foot);
    margin-top: 8px;
  }

  /* Hide desktop column-header row; numeric labels come from ::before on each cell */
  .mmi-table.mmi-table--qmi tbody tr.mmi-table__subhead--qmi-columns {
    display: none !important;
  }

  /* Section banner (e.g. “Europe”) between stacked card groups */
  .mmi-table.mmi-table--qmi tbody tr.mmi-table__subhead--qmi-section {
    display: block;
    margin: 20px 0 8px;
  }

  .mmi-table.mmi-table--qmi tbody tr.mmi-table__subhead--qmi-section th {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 10px 16px;
    /* border-radius: 6px; */
    font-size: 16px;
  }

  .mmi-table.mmi-table--qmi tbody tr:not(.mmi-table__subhead) {
    display: block;
    width: 100%;
    margin: 0;
    border: 0px solid #ddd;
    border-radius: 0;
    overflow: hidden;
    background: #fafafa;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  }

  .mmi-table.mmi-table--qmi tbody tr:not(.mmi-table__subhead) td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
    padding: 10px 16px !important;
    font-size: 16px !important;
    border: none !important;
    background: transparent !important;
  }

  .mmi-table.mmi-table--qmi tbody tr:not(.mmi-table__subhead) td.mmi-table__cat {
    text-align: center !important;
    font-weight: 700;
    font-size: 17px !important;
    padding: 14px 16px !important;
    background: #e8ecf7 !important;
    border-bottom: 1px solid #ddd;
  }

  .mmi-table.mmi-table--qmi tbody tr:not(.mmi-table__subhead) td.mmi-table__num {
    text-align: right !important;
    border-top: 1px solid #eee !important;
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
  }

  .mmi-table.mmi-table--qmi tbody tr:not(.mmi-table__subhead) td.mmi-table__num > img {
    flex-shrink: 0;
  }

  .mmi-table.mmi-table--qmi tbody tr:not(.mmi-table__subhead) td.mmi-table__num::before {
    flex: 0 1 auto;
    align-self: center;
    margin-right: auto;
    text-align: left;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-body-dark);
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    max-width: 58%;
  }

  .mmi-table.mmi-table--qmi tbody tr:not(.mmi-table__subhead) td.mmi-table__num:nth-child(2)::before {
    content: "March 2026 (%)";
  }

  .mmi-table.mmi-table--qmi tbody tr:not(.mmi-table__subhead) td.mmi-table__num:nth-child(3)::before {
    content: "Q1 2026 (%)";
  }

  .mmi-table.mmi-table--qmi tbody tr:not(.mmi-table__subhead) td.mmi-table__num:nth-child(4)::before {
    content: "Year-to-Date (%)";
  }

  .mmi-table.mmi-table--qmi tbody tr.mmi-table__treasury td.mmi-table__cat {
    border-top: none;
  }

  /* Monthly MMI tables (3 columns): same card stack as QMI */
  .mmi-table .mmi-table__logo {
    max-height: 30px;
  }

  .mmi-table-wrap {
    overflow-x: visible;
  }

  .mmi-table:not(.mmi-table--qmi) {
    min-width: 0;
    display: block;
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }

  .mmi-table:not(.mmi-table--qmi) caption {
    display: block;
  }

  .mmi-table:not(.mmi-table--qmi) thead,
  .mmi-table:not(.mmi-table--qmi) tbody,
  .mmi-table:not(.mmi-table--qmi) tfoot {
    display: block;
    width: 100%;
  }

  .mmi-table:not(.mmi-table--qmi) thead tr,
  .mmi-table:not(.mmi-table--qmi) tfoot tr {
    display: block;
    width: 100%;
  }

  .mmi-table:not(.mmi-table--qmi) thead th[colspan],
  .mmi-table:not(.mmi-table--qmi) tfoot th[colspan] {
    display: block;
    width: 100%;
    border-radius: var(--radius-table);
  }

  .mmi-table:not(.mmi-table--qmi) tfoot th[colspan] {
    border-radius: var(--radius-table-foot);
    margin-top: 8px;
  }

  .mmi-table:not(.mmi-table--qmi)
    tbody
    tr.mmi-table__subhead:not(:has(th[colspan])) {
    display: none !important;
  }

  .mmi-mobile-only {
    display: block!important;
  }

  .mmi-table:not(.mmi-table--qmi)
    tbody
    tr.mmi-table__subhead:has(th[colspan]) {
    display: block;
    margin: 20px 0 8px;
  }

  .mmi-table:not(.mmi-table--qmi)
    tbody
    tr.mmi-table__subhead:has(th[colspan])
    th {
    display: block;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    padding: 10px 16px;
    /* border-radius: 6px; */
    font-size: 16px;
  }

  .mmi-table:not(.mmi-table--qmi) tbody tr:not(.mmi-table__subhead) {
    display: block;
    width: 100%;
    margin: 0;
    border: 0px solid #ddd;
    border-radius: 0;
    overflow: hidden;
    background: #fafafa;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  }

  .mmi-table:not(.mmi-table--qmi)
    tbody
    tr:not(.mmi-table__subhead)
    td {
    display: block;
    width: 100% !important;
    box-sizing: border-box;
    padding: 10px 16px !important;
    font-size: 16px !important;
    border: none !important;
    background: transparent !important;
  }

  .mmi-table:not(.mmi-table--qmi)
    tbody
    tr:not(.mmi-table__subhead)
    td.mmi-table__cat {
    text-align: center !important;
    font-weight: 700;
    font-size: 17px !important;
    padding: 14px 16px !important;
    background: #e8ecf7 !important;
    border-bottom: 1px solid #ddd;
  }

  .mmi-table:not(.mmi-table--qmi)
    tbody
    tr:not(.mmi-table__subhead)
    td.mmi-table__num {
    text-align: right !important;
    border-top: 1px solid #eee !important;
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 12px;
  }

  .mmi-table:not(.mmi-table--qmi)
    tbody
    tr:not(.mmi-table__subhead)
    td.mmi-table__num
    > img {
    flex-shrink: 0;
  }

  .mmi-table:not(.mmi-table--qmi)
    tbody
    tr:not(.mmi-table__subhead)
    td.mmi-table__num::before {
    flex: 0 1 auto;
    align-self: center;
    margin-right: auto;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--color-body-dark);
    line-height: 1.25;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    max-width: 58%;
  }

  .mmi-table:not(.mmi-table--qmi)
    tbody
    tr:not(.mmi-table__subhead)
    td.mmi-table__num:nth-child(2)::before {
    content: "April (%)";
  }

  .mmi-table:not(.mmi-table--qmi)
    tbody
    tr:not(.mmi-table__subhead)
    td.mmi-table__num:nth-child(3)::before {
    content: "Year-to-Date (%)";
  }

  .mmi-table:not(.mmi-table--qmi)
    tbody
    tr.mmi-table__treasury
    td.mmi-table__cat {
    border-top: none;
  }

  /* Stacked tables: no row highlight on tap */
  .mmi-table tr.mmi-table__hoverable:hover > td,
  .mmi-table tr.mmi-table__hoverable:hover > th {
    background: transparent !important;
    transition: none;
  }

  .mmi-table.mmi-table--qmi tbody tr:not(.mmi-table__subhead).mmi-table__hoverable:hover,
  .mmi-table:not(.mmi-table--qmi) tbody tr:not(.mmi-table__subhead).mmi-table__hoverable:hover {
    background: #fafafa !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  html.js-mmi .mmi-reveal-y:not(.mmi-is-revealed),
  html.js-mmi .mmi-reveal-x-left:not(.mmi-is-revealed),
  html.js-mmi .mmi-reveal-x-right:not(.mmi-is-revealed),
  html.js-mmi .mmi-table tr.mmi-reveal-y:not(.mmi-is-revealed) > th,
  html.js-mmi .mmi-table tr.mmi-reveal-y:not(.mmi-is-revealed) > td {
    opacity: 1 !important;
    transform: none !important;
  }

  .mmi-reveal-y,
  .mmi-reveal-x-left,
  .mmi-reveal-x-right,
  .mmi-table tr.mmi-reveal-y > th,
  .mmi-table tr.mmi-reveal-y > td {
    transition: none !important;
  }
}
/* ================= */
/* FMG SYSTEM FIXES */
/* ================= */

.email-campaign h1 {
  text-align: center;
}

/* Moonlight theme topbar duplication fix */
.moonlight .mmi-page .top-bar {display:none!important;}

/* Delmar theme */
.delmar .mmi-video {padding: 0!important;}