/* mfcompat v1.1 — clean commerce tables (trodo-like pattern), theme-neutral.
   Override via CSS variables on .mfcompat in your theme custom.css:
   .mfcompat { --mfc-accent: #0077c7; }                                    */
.mfcompat {
  --mfc-border: #e2e6ea;
  --mfc-head-bg: #f6f8fa;
  --mfc-row-alt: #fbfcfd;
  --mfc-bg-hover: #f1f4f7;
  --mfc-muted: #6c757d;
  --mfc-text: #212529;
  /* NB: this LOCAL declaration shadows the html-level value set at runtime
     from the theme button — adoptThemeAccent() therefore also writes the
     adopted color inline on every .mfcompat element. Keep the fallback
     orange-ish, not dark, so no-JS still looks branded. */
  --mfc-accent: #c7711c;
  --mfc-scroll-h: 420px;
  margin: 1.5rem 0;
  color: var(--mfc-text);
}

.mfcompat__title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 1.5rem 0 0.75rem;
}

/* ------- scrollable table container ------- */
.mfcompat__tablewrap {
  overflow-x: auto;
  border: 1px solid var(--mfc-border);
  border-radius: 6px;
}
.mfcompat__tablewrap--scroll {
  max-height: var(--mfc-scroll-h);
  overflow-y: auto;
}
.mfcompat__tablewrap--scroll thead th {
  position: sticky;
  top: 0;
  z-index: 1;
}

/* ------- tables ------- */
.mfcompat__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  margin: 0;
}
.mfcompat__table thead th {
  background: var(--mfc-head-bg);
  color: var(--mfc-muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: left;
  padding: 0.55rem 0.8rem;
  border-bottom: 1px solid var(--mfc-border);
  white-space: nowrap;
}
.mfcompat__table td,
.mfcompat__table tbody th {
  padding: 0.5rem 0.8rem;
  border-bottom: 1px solid var(--mfc-border);
  text-align: left;
  vertical-align: top;
}
.mfcompat__table tr:last-child td,
.mfcompat__table tr:last-child th {
  border-bottom: 0;
}
.mfcompat__table--apps tbody tr:nth-child(even) td {
  background: var(--mfc-row-alt);
}

/* OE table */
.mfcompat__brand {
  font-weight: 700;
  white-space: nowrap;
  width: 1%;
  color: var(--mfc-accent);
}
.mfcompat__numbers {
  line-height: 1.7;
}
.mfcompat__num {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.84rem;
  white-space: nowrap;
}
.mfcompat__sep {
  color: var(--mfc-muted);
}

/* Applications: model subheader rows */
.mfcompat__modelrow th {
  background: var(--mfc-head-bg);
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--mfc-text);
}
.mfcompat__mod {
  white-space: normal;
  min-width: 12rem;
}
.mfcompat__mod small {
  display: block;
  color: var(--mfc-muted);
}
.mfcompat__years,
.mfcompat__table--apps td {
  white-space: nowrap;
}
.mfcompat__table--apps td.mfcompat__mod {
  white-space: normal;
}

/* ------- make accordions ------- */
.mfcompat__groups {
  border: 1px solid var(--mfc-border);
  border-radius: 6px;
  overflow: hidden;
}
.mfcompat__make {
  border-bottom: 1px solid var(--mfc-border);
}
.mfcompat__make:last-child {
  border-bottom: 0;
}
.mfcompat__make > .mfcompat__tablewrap {
  border: 0;
  border-top: 1px solid var(--mfc-border);
  border-radius: 0;
}

.mfcompat summary {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1rem;
  cursor: pointer;
  list-style: none;
  user-select: none;
  background: #fff;
}
.mfcompat summary::-webkit-details-marker {
  display: none;
}
.mfcompat summary:hover {
  background: var(--mfc-bg-hover);
}
.mfcompat summary::before {
  content: "";
  flex: 0 0 auto;
  width: 0.45em;
  height: 0.45em;
  border-right: 2px solid var(--mfc-muted);
  border-bottom: 2px solid var(--mfc-muted);
  transform: rotate(-45deg);
  transition: transform 0.15s ease;
}
.mfcompat details[open] > summary::before {
  transform: rotate(45deg);
}
.mfcompat__name {
  font-weight: 700;
  color: var(--mfc-accent);
}
.mfcompat__count {
  margin-left: auto;
  font-size: 0.78rem;
  color: var(--mfc-muted);
  background: var(--mfc-head-bg);
  border: 1px solid var(--mfc-border);
  border-radius: 999px;
  padding: 0 0.6em;
  line-height: 1.6;
}

@media (max-width: 575px) {
  .mfcompat {
    --mfc-scroll-h: 340px;
  }
  .mfcompat__table thead th,
  .mfcompat__table td,
  .mfcompat__table tbody th {
    padding: 0.4rem 0.5rem;
  }
}


/* ------- clickable OE numbers: primary color, never underlined -------
   !important on purpose: theme link styles (a / a:hover underline,
   border-bottom) must never win over these. */
.mfcompat__num--link {
  color: var(--mfc-accent, #c7711c) !important;
  text-decoration: none !important;
  border-bottom: 0 !important;
}
.mfcompat__num--link:hover {
  color: var(--mfc-accent, #c7711c) !important;
  text-decoration: none !important;
  border-bottom: 0 !important;
  filter: brightness(0.85);
}

/* ------- compatibility badge (product page) ------- */
.mfc-badge {
  margin: 0.75rem 0;
  font-size: 0.875rem;
}
.mfc-plate {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid;
  border-left-width: 4px;
  border-radius: 6px;
  line-height: 1.35;
}
.mfc-plate--fit {
  background: #ecf7ec;
  border-color: #bfe3bf;
  border-left-color: #2e9e44;
  color: #21662f;
}
.mfc-plate--nofit {
  background: #fdf3e3;
  border-color: #f3ddb0;
  border-left-color: #d99114;
  color: #8a5b00;
}
.mfc-plate--ask {
  background: #f6f8fa;
  border-color: #e2e6ea;
  border-left-color: #98a2ab;
  color: #495057;
}
.mfc-plate__icon {
  font-size: 1rem;
  flex: 0 0 auto;
}
.mfc-plate__text strong {
  font-weight: 700;
}
.mfc-plate__change {
  margin-left: auto;
  white-space: nowrap;
  font-size: 0.8rem;
  text-decoration: underline;
  color: inherit;
  opacity: 0.85;
}
.mfc-plate__change:hover {
  opacity: 1;
  color: inherit;
}

/* ------- vehicle selector (badge + category widget) ------- */
.mfc-selector,
.mfc-catfilter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}
.mfc-selector {
  margin-top: 0.5rem;
  padding: 0.75rem;
  border: 1px solid var(--mfc-border, #e2e6ea);
  border-radius: 6px;
  background: #fff;
}
.mfc-selector select,
.mfc-catfilter__form select {
  flex: 1 1 180px;
  min-width: 0;
  height: 2.4rem;
  padding: 0 0.6rem;
  border: 1px solid #cfd6dc;
  border-radius: 4px;
  background: #fff;
  font-size: 0.875rem;
}
.mfc-selector__actions {
  display: flex;
  gap: 0.5rem;
}

/* ------- category filter widget ------- */
.mfc-catfilter {
  margin: 0 0 1.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid #e2e6ea;
  border-radius: 6px;
  background: #f6f8fa;
}
.mfc-catfilter__head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.6rem;
}
.mfc-catfilter__title {
  font-weight: 700;
}
.mfc-catfilter__reset {
  margin-left: auto;
  font-size: 0.8rem;
  text-decoration: underline;
  color: #6c757d;
}
.mfc-catfilter__form .btn {
  flex: 0 0 auto;
}

/* ------- crossref page ------- */
.mfcompat-crossref__intro {
  margin-bottom: 1.25rem;
}
.mfcompat-crossref__brand {
  font-weight: 600;
}
/* v2.9.3: product listings reuse the theme's section#products >
   ul.product_list markup — no module-side layout, theme grid/list CSS applies */

@media (max-width: 575px) {
  .mfc-plate {
    flex-wrap: wrap;
  }
  .mfc-plate__change {
    margin-left: 1.6rem;
  }
}


/* ------- nested model accordions (v2.1) ------- */
.mfcompat__makebody {
  padding: 0.4rem 0.6rem 0.6rem;
  border-top: 1px solid var(--mfc-border);
  background: #fff;
}
.mfcompat__model {
  border: 1px solid var(--mfc-border);
  border-radius: 5px;
  margin: 0.35rem 0;
  overflow: hidden;
}
.mfcompat__model > summary {
  padding: 0.5rem 0.8rem;
  font-size: 0.9rem;
  background: #fff;
}
.mfcompat__model > .mfcompat__tablewrap {
  border: 0;
  border-top: 1px solid var(--mfc-border);
  border-radius: 0;
}

/* ------- header garage widget ------- */
.mfc-header {
  position: relative;
  display: inline-block;
  font-size: 0.875rem;
}
.mfc-header__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.6rem;
  color: inherit;
  text-decoration: none;
  white-space: nowrap;
}
.mfc-header__btn:hover {
  color: inherit;
  opacity: 0.85;
}
.mfc-header__caret {
  font-size: 0.7em;
}
.mfc-header__panel {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 1050;
  min-width: 340px;
  max-width: 92vw;
  background: #fff;
  border: 1px solid #dde2e7;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(20, 30, 40, 0.14);
  padding: 0.9rem;
  color: #212529;
  text-align: left;
}
.mfc-header__gtitle {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6c757d;
  margin-bottom: 0.4rem;
}
.mfc-header__glist {
  list-style: none;
  margin: 0 0 0.8rem;
  padding: 0;
}
.mfc-header__glist li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  border-bottom: 1px solid #eef1f4;
}
.mfc-header__glist li:last-child {
  border-bottom: 0;
}
.mfc-header__glist a.js-mfc-gselect {
  flex: 1 1 auto;
  padding: 0.45rem 0.2rem;
  color: #212529;
  text-decoration: none;
}
.mfc-header__glist li.is-active a.js-mfc-gselect {
  font-weight: 700;
}
.mfc-header__gcheck {
  color: #2e9e44;
  margin-right: 0.25rem;
}
.mfc-header__gremove {
  flex: 0 0 auto;
  padding: 0.2rem 0.45rem;
  color: #98a2ab;
  text-decoration: none;
  font-size: 1.05rem;
  line-height: 1;
}
.mfc-header__gremove:hover {
  color: #c0392b;
}
.mfc-selector--header {
  border: 0;
  padding: 0;
  margin: 0;
}
.mfc-selector--header select {
  flex: 1 1 100%;
}
@media (max-width: 575px) {
  .mfc-header__panel {
    position: fixed;
    left: 4vw;
    right: 4vw;
    min-width: 0;
  }
}


/* ------- vehicle landing pages ------- */
.mfc-vehicle__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
}
.mfc-vehicle__chips a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.7rem;
  border: 1px solid #dde2e7;
  border-radius: 999px;
  background: #fff;
  color: #212529;
  text-decoration: none;
  font-size: 0.85rem;
}
.mfc-vehicle__chips a:hover {
  border-color: #98a2ab;
}
.mfc-vehicle__count {
  font-size: 0.72rem;
  color: #6c757d;
  background: #f6f8fa;
  border-radius: 999px;
  padding: 0 0.45em;
}
.mfc-vehicle__total {
  color: #6c757d;
  font-weight: 400;
}
.mfc-vehicle__pagination {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin: 1.5rem 0;
}


/* garage icon (user-supplied SVG, inherits color) */
.mfc-icon-garage {
  display: inline-block;
  vertical-align: -0.25em;
}
.mfc-header__icon,
.mfc-catfilter__icon {
  display: inline-flex;
  align-items: center;
}


/* ------- v2.7 styling pack ------- */

/* engine code: red chip, white text — critical info, max contrast */
.mfc-ec {
  display: inline-block;
  background: #c62828;
  color: #fff;
  font-weight: 600;
  font-size: 0.78em;
  line-height: 1.5;
  padding: 0.05em 0.5em;
  border-radius: 5px;
  margin: 0 0.2em 0.1em 0;
  white-space: nowrap;
  letter-spacing: 0.02em;
}

/* active garage vehicle: white check in a green circle */
.mfc-header__gcheck {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: #2e7d32;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  line-height: 1;
  margin-right: 0.45em;
  vertical-align: -0.2em;
}
.mfc-header__glist li.is-active > .js-mfc-gselect {
  font-weight: 600;
}

/* selectors: never overflow the viewport; 16px stops iOS auto-zoom */
.mfc-selector select,
.mfc-catfilter select {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .mfc-selector select,
  .mfc-catfilter select {
    font-size: 16px;
  }

  /* header garage panel -> centered modal-style sheet on mobile */
  .mfc-header__panel {
    position: fixed !important;
    left: 50% !important;
    right: auto !important;
    top: 12vh !important;
    transform: translateX(-50%);
    width: min(92vw, 400px);
    max-height: 74vh;
    overflow-y: auto;
    z-index: 99999;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    border-radius: 10px;
  }
}


/* ------- v2.8: theme adoption ------- */

/* block spacing from product details + inherit shop typography */
.mfcompat {
  margin-top: 2.25rem;
  font-family: inherit;
}

/* section titles: theme-like underlined heading with accent bar
   (--mfc-accent is set at runtime from the shop's primary button color) */
.mfcompat__title {
  font-family: inherit;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: none;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 0.55rem;
  /* top margin separates sections (OE table -> applications heading);
     the first heading relies on the block's own margin-top instead */
  margin: 2.25rem 0 1.1rem;
  position: relative;
}
.mfcompat__title:first-child {
  margin-top: 0;
}
.mfcompat__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 56px;
  height: 2px;
  background: var(--mfc-accent, #c7711c);
}

/* OE cross links: shop primary color, no underline ever */
.mfcompat a.mfc-oe__link,
.mfc-oe a,
.mfcompat table a {
  color: var(--mfc-accent, #c7711c);
  text-decoration: none !important;
  font-weight: 500;
}
.mfcompat a.mfc-oe__link:hover,
.mfc-oe a:hover,
.mfcompat table a:hover {
  color: var(--mfc-accent, #c7711c);
  filter: brightness(0.85);
  text-decoration: none !important;
}

/* green check dot on the garage icon (visible without opening the panel) */
.mfc-header__icon {
  position: relative;
}
.mfc-header__vdot {
  position: absolute;
  top: -5px;
  right: -7px;
  width: 13px;
  height: 13px;
  background: #2e7d32;
  color: #fff;
  border-radius: 50%;
  font-size: 8px;
  line-height: 13px;
  text-align: center;
  font-weight: 700;
  box-shadow: 0 0 0 2px #fff;
}


/* ------- v2.9: styled cascading selects + garage scope note ------- */

/* make / model / engine selects: shop-styled instead of browser default;
   the accent color is --mfc-accent, adopted from the theme at runtime */
.mfc-selector select,
.mfc-catfilter__form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: 2.7rem;
  padding: 0 2.3rem 0 0.85rem;
  border: 1px solid #d5dbe1;
  border-radius: 8px;
  background-color: #fff;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' fill='none' stroke='%236c757d' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px 8px;
  color: #212529;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.mfc-selector select:hover:not(:disabled),
.mfc-catfilter__form select:hover:not(:disabled) {
  border-color: var(--mfc-accent, #98a2ab);
}
.mfc-selector select:focus,
.mfc-catfilter__form select:focus {
  outline: none;
  border-color: var(--mfc-accent, #495057);
  box-shadow: 0 0 0 3px rgba(20, 30, 40, 0.08);
}
.mfc-selector select:disabled,
.mfc-catfilter__form select:disabled {
  background-color: #f3f5f7;
  color: #98a2ab;
  cursor: not-allowed;
  opacity: 1;
}
.mfc-selector select optgroup,
.mfc-catfilter__form select optgroup {
  font-style: normal;
  font-weight: 700;
  color: #6c757d;
}
.mfc-selector select option,
.mfc-catfilter__form select option {
  font-weight: 400;
  color: #212529;
}

/* garage scope note: vehicle matching covers filters only, not the whole catalog */
.mfc-header__note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.8rem;
  padding: 0.55rem 0.7rem;
  background: #f6f8fa;
  border: 1px solid #e2e6ea;
  border-radius: 6px;
  font-size: 0.78rem;
  color: #6c757d;
  line-height: 1.45;
}
.mfc-header__note-icon {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 0.1em;
  background: #98a2ab;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
  line-height: 16px;
  text-align: center;
}


/* ------- v2.9.1: custom dropdown (mfc-dd) ------- */
/* The native <select> popup is OS-rendered: it cannot be styled and it
   truncates long modification labels. The select stays in the DOM as the
   source of truth (hidden); .mfc-dd renders the button + list UI. */

.mfc-selector .mfc-dd,
.mfc-catfilter__form .mfc-dd {
  position: relative;
  flex: 1 1 180px;
  min-width: 0;
}
.mfc-selector--header .mfc-dd {
  flex: 1 1 100%;
}
.mfc-dd select {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.mfc-dd__btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  min-height: 2.7rem;
  padding: 0 0.85rem;
  border: 1px solid #d5dbe1;
  border-radius: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 0.875rem;
  color: #212529;
  text-align: left;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.mfc-dd__btn::after {
  content: "";
  flex: 0 0 auto;
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #6c757d;
  border-bottom: 2px solid #6c757d;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.15s ease;
}
.mfc-dd.is-open .mfc-dd__btn::after {
  transform: rotate(-135deg) translateY(-2px);
}
.mfc-dd__btn:hover:not(:disabled) {
  border-color: var(--mfc-accent, #c7711c);
}
.mfc-dd.is-open .mfc-dd__btn,
.mfc-dd__btn:focus-visible {
  outline: none;
  border-color: var(--mfc-accent, #c7711c);
  box-shadow: 0 0 0 3px rgba(20, 30, 40, 0.08);
}
.mfc-dd__btn:disabled {
  background: #f3f5f7;
  color: #98a2ab;
  cursor: not-allowed;
}
.mfc-dd.is-placeholder .mfc-dd__btn {
  color: #8a939b;
}
.mfc-dd__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mfc-dd__list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  z-index: 100000;
  display: none;
  padding: 0.3rem;
  background: #fff;
  border: 1px solid #e2e6ea;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(20, 30, 40, 0.18);
  max-height: 320px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mfc-dd.is-open .mfc-dd__list {
  display: block;
}
.mfc-dd__group {
  padding: 0.55rem 0.65rem 0.25rem;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #98a2ab;
}
.mfc-dd__item {
  padding: 0.5rem 0.65rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1.35;
  color: #212529;
  /* full modification text is always visible: wrap instead of clipping */
  white-space: normal;
}
.mfc-dd__item:hover {
  background: #f1f4f7;
}
.mfc-dd__item.is-selected {
  background: var(--mfc-accent, #c7711c);
  color: #fff;
}
@media (max-width: 768px) {
  /* compact font on phones so a full engine label fits one line */
  .mfc-dd__item {
    font-size: 13px;
  }
  .mfc-dd__list {
    max-height: 46vh;
  }
}

/* ------- v2.9.1: garage scope tooltip on the header icon ------- */
.mfc-header__info {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-left: 0.15rem;
  background: #98a2ab;
  color: #fff;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  font-style: normal;
  line-height: 1;
  cursor: help;
}
.mfc-header__tip {
  position: absolute;
  top: calc(100% + 9px);
  right: -10px;
  z-index: 100001;
  display: none;
  width: 250px;
  max-width: 86vw;
  padding: 0.6rem 0.75rem;
  background: #212529;
  color: #fff;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.45;
  text-align: left;
  white-space: normal;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}
.mfc-header__tip::before {
  content: "";
  position: absolute;
  top: -5px;
  right: 13px;
  width: 10px;
  height: 10px;
  background: #212529;
  transform: rotate(45deg);
}
.mfc-header__info:hover .mfc-header__tip,
.mfc-header__info:focus .mfc-header__tip,
.mfc-header__info.is-open .mfc-header__tip {
  display: block;
}


/* ------- v2.9.2: header garage vertical alignment ------- */
/* The widget sat lower than the language/currency selectors: inline-block
   aligns to baseline and the button carried vertical padding. Center it in
   both inline (vertical-align) and flex (align-self) header layouts. */
.mfc-header {
  vertical-align: middle;
  align-self: center;
}
.mfc-header__btn {
  padding-top: 0;
  padding-bottom: 0;
  line-height: 1.3;
}
