.ivm-menu {
  position: fixed;
  top: 42%;
  z-index: 999;
  font-family: Futura, "Futura PT", "Avenir Next", Avenir, "Century Gothic", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ivm-panel-text, #141414);
}

.ivm-menu--left { left: 0; }
.ivm-menu--right { right: 0; }
.ivm-menu--primary {
  top: 18px;
  right: 22px;
  left: auto;
  z-index: 1200;
}

.ivm-menu--topbar {
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
}

.ivm-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 72px;
  padding: 0 24px;
  background: var(--ivm-panel-bg, #fff);
  border-bottom: 1px solid var(--ivm-border, #ded8cc);
  box-sizing: border-box;
}

.ivm-topbar-brand {
  color: var(--ivm-accent, #e9322d);
  font-size: clamp(38px, 5vw, var(--ivm-brand-size, 56px));
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  letter-spacing: 0;
}

.ivm-tagline {
  display: block;
  margin-top: 8px;
  color: var(--ivm-muted, #68645e);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.ivm-topbar-brand span {
  color: inherit;
}

.ivm-toggle {
  display: grid;
  gap: 4px;
  align-items: center;
  min-width: 48px;
  padding: 11px 9px;
  border: 1px solid color-mix(in srgb, var(--ivm-toggle-color, #141414) 18%, transparent);
  background: var(--ivm-toggle-bg, #141414);
  color: var(--ivm-toggle-color, #fff);
  cursor: pointer;
}

.ivm-menu--left .ivm-toggle {
  border-radius: 0 8px 8px 0;
}

.ivm-menu--right .ivm-toggle {
  border-radius: 8px 0 0 8px;
}
.ivm-menu--primary .ivm-toggle {
  width: 52px;
  min-width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(20, 20, 20, .16);
}

.ivm-menu--topbar .ivm-toggle {
  position: fixed !important;
  top: 13px;
  right: 24px;
  z-index: 1202;
  display: flex !important;
  flex: 0 0 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 46px;
  min-width: 46px;
  height: 46px;
  padding: 0;
  background: var(--ivm-toggle-bg, #fff);
  color: var(--ivm-toggle-color, #141414);
  border: 1px solid var(--ivm-toggle-color, #141414);
  box-shadow: none;
  border-radius: 4px;
}

.ivm-menu--topbar .ivm-toggle span {
  width: 24px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
}

.ivm-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
}

.ivm-toggle strong {
  writing-mode: vertical-rl;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .08em;
}
.ivm-menu--primary .ivm-toggle strong {
  display: none;
}

.ivm-panel {
  position: absolute;
  top: 0;
  width: min(var(--ivm-panel-width, 310px), calc(100vw - 24px));
  max-height: min(620px, 86vh);
  overflow: auto;
  padding: var(--ivm-panel-padding, 14px);
  background: var(--ivm-panel-bg, #fff);
  border: 1px solid var(--ivm-border, #ded8cc);
  box-shadow: 0 22px 60px rgba(20, 20, 20, .18);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-12px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  scrollbar-width: thin;
}

.ivm-menu--glass .ivm-panel {
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(22px);
  border-color: rgba(20, 20, 20, .1);
}

.ivm-menu--glass .ivm-toggle {
  background: rgba(20, 20, 20, .86);
  backdrop-filter: blur(16px);
}

.ivm-menu--contrast .ivm-panel {
  background: #141414;
  border-color: rgba(255, 255, 255, .16);
}

.ivm-menu--contrast .ivm-heading,
.ivm-menu--contrast .ivm-panel a {
  color: #fff;
}

.ivm-menu--contrast .ivm-heading button,
.ivm-menu--contrast .ivm-search input {
  background: #202020;
  color: #fff;
  border-color: rgba(255, 255, 255, .18);
}

.ivm-menu--left .ivm-panel { left: 56px; border-radius: 8px; }
.ivm-menu--right .ivm-panel { right: 56px; border-radius: 8px; transform: translateX(12px); }
.ivm-menu--primary .ivm-panel {
  top: 62px;
  right: 0;
  left: auto;
  border-radius: 10px;
  transform: translateY(-8px) scale(.98);
}

.ivm-menu--topbar .ivm-panel {
  top: 72px;
  right: 24px;
}

.ivm-menu.is-open .ivm-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.ivm-menu--primary.is-open .ivm-panel {
  transform: translateY(0) scale(1);
}

.ivm-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.ivm-heading strong {
  font-family: Futura, "Futura PT", "Avenir Next", Avenir, "Century Gothic", ui-sans-serif, system-ui, sans-serif;
  font-size: 24px;
}
.ivm-brand {
  color: var(--ivm-panel-text, #141414);
  font-size: 30px;
  font-weight: 900;
  text-decoration: none;
}

.ivm-panel-label {
  display: block;
  margin: 0 0 10px;
  color: var(--ivm-muted, #68645e);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ivm-heading button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--ivm-border, #ded8cc);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
}

.ivm-search {
  margin-bottom: 10px;
}

.ivm-search input {
  width: 100%;
  padding: 10px 11px;
  border: 1px solid var(--ivm-border, #ded8cc);
  border-radius: var(--ivm-item-radius, 6px);
}

.ivm-panel ul {
  display: grid;
  gap: var(--ivm-item-gap, 6px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.ivm-menu-block {
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid color-mix(in srgb, var(--ivm-border, #ded8cc) 88%, transparent);
}

.ivm-menu-block:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.ivm-block-title {
  margin: 0 10px 10px;
  color: var(--ivm-muted, #68645e);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ivm-separator {
  padding: 8px 10px 4px;
  color: var(--ivm-muted, #68645e);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.ivm-menu--contrast .ivm-separator {
  color: rgba(255, 255, 255, .58);
}

.ivm-panel a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  position: relative;
  min-height: 34px;
  padding: 6px 10px 6px 14px;
  color: var(--ivm-panel-text, #141414);
  font-size: 13px;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 650;
  line-height: 1.18;
}

.ivm-panel a:hover,
.ivm-panel a:focus-visible,
.ivm-panel a.is-active {
  border-color: color-mix(in srgb, var(--ivm-color, #c9182b) 40%, #ded8cc);
  background: color-mix(in srgb, var(--ivm-color, #c9182b) 10%, #fff);
  outline: none;
}

.ivm-panel a.is-active {
  box-shadow: inset 3px 0 0 var(--ivm-color, #c9182b);
}

.ivm-icon {
  display: none;
  place-items: center;
  width: 28px;
  height: 28px;
  color: var(--ivm-color, #c9182b);
  background: color-mix(in srgb, var(--ivm-color, #c9182b) 12%, #fff);
  border-radius: 50%;
  font-weight: 900;
  font-size: 14px;
}

.ivm-icon:empty {
  display: none;
}

.ivm-panel a:has(.ivm-icon:empty) {
  grid-template-columns: minmax(0, 1fr) auto;
}

.ivm-panel em {
  color: var(--ivm-muted, #68645e);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 760px) {
  .ivm-menu {
    top: auto;
    bottom: 18px;
  }
  .ivm-menu--primary {
    top: 16px;
    right: 16px;
    bottom: auto;
  }
  .ivm-menu--topbar {
    top: 0;
    right: 0;
  }
  .ivm-menu--topbar .ivm-toggle {
    top: 13px;
    right: 16px;
  }
  .ivm-topbar {
    min-height: 72px;
    padding: 0 20px;
  }
  .ivm-topbar-brand {
    font-size: 38px;
  }

  .ivm-toggle strong {
    display: none;
  }

  .ivm-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 72px;
    top: auto;
    width: auto;
    max-height: 70vh;
    transform: translateY(12px);
  }
  .ivm-menu--primary .ivm-panel {
    top: 64px;
    right: 0;
    left: auto;
    bottom: auto;
    width: min(var(--ivm-panel-width, 310px), calc(100vw - 32px));
    max-height: calc(100vh - 90px);
  }
  .ivm-menu--topbar .ivm-panel {
    top: 72px;
    right: 12px;
  }

  .ivm-menu--right .ivm-panel {
    right: 12px;
    transform: translateY(12px);
  }

  .ivm-menu.is-open .ivm-panel {
    transform: translateY(0);
  }
}

@media (min-width: 1024px) {
.ivm-menu--topbar.ivm-menu--primary {
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    width: clamp(var(--ivm-desktop-min, 250px), var(--ivm-desktop-vw, 22vw), var(--ivm-desktop-max, 340px));
    height: 100vh;
    background: var(--ivm-panel-bg, #fffdf8);
    border-right: 1px solid var(--ivm-border, #ded8cc);
    box-shadow: 8px 0 28px rgba(20, 20, 20, .035);
  }

  .ivm-menu--topbar .ivm-topbar {
    display: block;
    min-height: auto;
    padding: 30px 24px 18px;
    border-bottom: 0;
  }

  .ivm-menu--topbar .ivm-topbar-brand {
    display: block;
    font-size: clamp(38px, 4vw, var(--ivm-brand-size, 62px));
    color: var(--ivm-accent, #e9322d);
    letter-spacing: 0;
  }

  .ivm-menu--topbar .ivm-toggle {
    display: none !important;
  }

  .ivm-menu--topbar .ivm-panel {
    position: static;
    width: auto;
    max-height: none;
    height: calc(100vh - 112px);
    padding: 0 14px 28px;
    overflow: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: var(--ivm-panel-bg, #fffdf8);
  }

  .ivm-menu--topbar .ivm-heading {
    display: none;
  }

  .ivm-menu--topbar .ivm-panel-label {
    display: none;
  }

  .ivm-menu--topbar .ivm-search {
    padding: 0 10px 14px;
    border-bottom: 1px solid var(--ivm-border, #ded8cc);
  }

  .ivm-menu--topbar .ivm-panel a {
    min-height: 34px;
    padding: 6px 10px 6px 14px;
    font-size: 13px;
    font-weight: 650;
    border-radius: 4px;
  }

  .ivm-menu--topbar .ivm-icon {
    background: #fff;
    border: 1px solid rgba(20, 20, 20, .08);
    box-shadow: 0 1px 0 rgba(20, 20, 20, .04);
  }

  .ivm-menu--topbar .ivm-search input {
    min-height: 44px;
    border-radius: 8px;
    background: #fff;
  }

  .ivm-menu--topbar .ivm-separator {
    margin-top: 8px;
    border-top: 1px solid var(--ivm-border, #ded8cc);
  }
}

.ivm-menu--density-compact .ivm-panel a {
  min-height: 38px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.ivm-menu--density-compact .ivm-icon {
  width: 24px;
  height: 24px;
}

.ivm-menu--density-spacious .ivm-panel a {
  min-height: 56px;
  padding-top: 12px;
  padding-bottom: 12px;
}

.ivm-menu--density-spacious .ivm-icon {
  width: 34px;
  height: 34px;
}

/* Brut-inspired primary navigation, scoped to the Interslide menu wrapper. */
.navigation-wrapper.ivm-brut-menu,
.navigation-wrapper.ivm-brut-menu * {
  box-sizing: border-box;
  letter-spacing: 0;
}

.navigation-wrapper.ivm-brut-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: var(--ivm-panel-bg, #fffdf8);
  color: var(--ivm-panel-text, #141414);
  font-family: Futura, "Futura PT", "Avenir Next", Avenir, "Century Gothic", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.navigation-wrapper.ivm-brut-menu a {
  color: inherit;
  text-decoration: none;
}

.navigation-wrapper.ivm-brut-menu .navigation-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 18px;
  border-bottom: 1px solid var(--ivm-border, #ded8cc);
}

.navigation-wrapper.ivm-brut-menu .logo-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.navigation-wrapper.ivm-brut-menu .ivm-brut-logo {
  display: block;
  color: var(--ivm-accent, #e9322d);
  font-size: clamp(36px, 9vw, var(--ivm-brand-size, 56px));
  font-weight: 950;
  line-height: .9;
  white-space: nowrap;
}

.navigation-wrapper.ivm-brut-menu .ivm-brut-logo span {
  color: inherit;
}

.navigation-wrapper.ivm-brut-menu .navigation-buger-button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--ivm-panel-text, #141414);
  border-radius: 4px;
  background: var(--ivm-toggle-bg, #fff);
  color: var(--ivm-toggle-color, #141414);
  cursor: pointer;
}

.navigation-wrapper.ivm-brut-menu .navigation-body {
  display: none;
  flex-direction: column;
  width: 100%;
  min-height: 0;
  padding: 14px 12px 20px;
  overflow-y: auto;
  background: var(--ivm-panel-bg, #fffdf8);
}

.navigation-wrapper.ivm-brut-menu .navigation-body[omit="false"] {
  display: flex;
}

.navigation-wrapper.ivm-brut-menu .navigation-body[omit="true"] {
  display: none !important;
}

.navigation-wrapper.ivm-brut-menu .navigation-middle {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.navigation-wrapper.ivm-brut-menu .navigation-links {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 8px 0;
}

.navigation-wrapper.ivm-brut-menu .navigation-divider-wrapper {
  padding: 8px 10px;
}

.navigation-wrapper.ivm-brut-menu .navigation-divider {
  width: 100%;
  height: 1px;
  background: var(--ivm-border, #ded8cc);
}

.navigation-wrapper.ivm-brut-menu .navigation-button-link,
.navigation-wrapper.ivm-brut-menu .navigation-button-link-text {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 32px;
  width: 100%;
  gap: 0;
  padding: 6px 10px 6px 14px;
  border: 1px solid transparent;
  border-radius: 0;
  color: var(--ivm-panel-text, #141414);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.16;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
}

.navigation-wrapper.ivm-brut-menu .navigation-button-link::before,
.navigation-wrapper.ivm-brut-menu .navigation-button-link-text::before {
  content: "";
  position: absolute;
  top: 7px;
  bottom: 7px;
  left: 0;
  width: 3px;
  border-radius: 0;
  background: transparent;
}

.navigation-wrapper.ivm-brut-menu .navigation-button-link:hover,
.navigation-wrapper.ivm-brut-menu .navigation-button-link:focus-visible,
.navigation-wrapper.ivm-brut-menu .navigation-button-link-text:hover,
.navigation-wrapper.ivm-brut-menu .navigation-button-link-text:focus-visible {
  border-color: transparent;
  background: color-mix(in srgb, var(--ivm-color, var(--ivm-accent, #e9322d)) 8%, transparent);
  outline: none;
}

.navigation-wrapper.ivm-brut-menu .navigation-button-link.is-active,
.navigation-wrapper.ivm-brut-menu .navigation-button-link.w--current,
.navigation-wrapper.ivm-brut-menu .navigation-button-link-text.is-active,
.navigation-wrapper.ivm-brut-menu .navigation-button-link-text.w--current {
  border-color: transparent;
  background: transparent;
  color: var(--ivm-panel-text, #141414);
}

.navigation-wrapper.ivm-brut-menu .navigation-button-link.is-active::before,
.navigation-wrapper.ivm-brut-menu .navigation-button-link.w--current::before,
.navigation-wrapper.ivm-brut-menu .navigation-button-link-text.is-active::before,
.navigation-wrapper.ivm-brut-menu .navigation-button-link-text.w--current::before {
  background: var(--ivm-color, var(--ivm-accent, #e9322d));
}

.navigation-wrapper.ivm-brut-menu .navigation-link-icon-wrapper {
  display: none !important;
  flex: 0 0 30px;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid color-mix(in srgb, var(--ivm-color, var(--ivm-accent, #e9322d)) 25%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--ivm-color, var(--ivm-accent, #e9322d)) 9%, #fff);
  color: var(--ivm-color, var(--ivm-accent, #e9322d));
  overflow: hidden;
}

.navigation-wrapper.ivm-brut-menu .ivm-navigation-icon {
  display: none !important;
  font-size: 15px;
  line-height: 1;
}

.navigation-wrapper.ivm-brut-menu .navigation-link-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.navigation-wrapper.ivm-brut-menu .ivm-navigation-count {
  margin-left: auto;
  color: var(--ivm-muted, #68645e);
  font-size: 12px;
  font-style: normal;
  font-weight: 850;
}

.navigation-wrapper.ivm-brut-menu .ivm-brut-search {
  padding: 2px 0 10px;
}

.navigation-wrapper.ivm-brut-menu .ivm-brut-search input {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid var(--ivm-border, #ded8cc);
  border-radius: var(--ivm-item-radius, 8px);
  background: #fff;
  color: var(--ivm-panel-text, #141414);
  font: inherit;
  font-size: 14px;
  outline: none;
}

.navigation-wrapper.ivm-brut-menu .ivm-brut-search input:focus {
  border-color: var(--ivm-accent, #e9322d);
}

.navigation-wrapper.ivm-brut-menu .navigation-footer {
  position: static !important;
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--ivm-border, #ded8cc);
}

@media (min-width: 992px) {
  .navigation-wrapper.ivm-brut-menu {
    width: clamp(var(--ivm-desktop-min, 250px), var(--ivm-desktop-vw, 18vw), var(--ivm-desktop-max, 330px));
    height: 100vh;
    padding: 28px 12px 12px;
    border-right: 1px solid var(--ivm-border, #ded8cc);
    box-shadow: 8px 0 28px rgba(20, 20, 20, .035);
  }

  .navigation-wrapper.ivm-brut-menu .navigation-header {
    min-height: auto;
    padding: 0 10px 18px;
    border-bottom: 0;
  }

  .navigation-wrapper.ivm-brut-menu .ivm-brut-logo {
    font-size: clamp(36px, 3.8vw, var(--ivm-brand-size, 56px));
  }

  .navigation-wrapper.ivm-brut-menu .navigation-buger-button {
    display: none;
  }

  .navigation-wrapper.ivm-brut-menu .navigation-body,
  .navigation-wrapper.ivm-brut-menu .navigation-body[omit="true"],
  .navigation-wrapper.ivm-brut-menu .navigation-body[omit="false"] {
    display: flex !important;
    flex: 1 1 auto;
    height: auto !important;
    padding: 0 0 4px;
  }

  .navigation-wrapper.ivm-brut-menu .navigation-button-link,
  .navigation-wrapper.ivm-brut-menu .navigation-button-link-text {
    min-height: 32px;
    padding: 6px 10px 6px 14px;
  }
}

@media (max-width: 991px) {
  .navigation-wrapper.ivm-brut-menu {
    border-bottom: 1px solid var(--ivm-border, #ded8cc);
  }

  .admin-bar .navigation-wrapper.ivm-brut-menu {
    top: 46px;
  }

  .navigation-wrapper.ivm-brut-menu .navigation-body {
    height: calc(100vh - 72px);
    max-height: calc(100vh - 72px);
  }

  .navigation-wrapper.ivm-brut-menu .navigation-middle {
    flex: 0 0 auto;
  }
}
