@charset "UTF-8";
.mv {
  --mv-max-width: 1280px;
  --mv-border-radius: 0;
  --mv-color-bg: #F5F5F5;
  --mv-color-fg: #4D4D4F;
  --mv-color-separator: #E0E0E0;
  --mv-color-accent: #4D4D4F;
  --mv-color-accent-fg: #FFFFFF;
  --mv-color-menu-backdrop: #00000066;
  --mv-color-menu-bg: #FFFFFF;
  --mv-color-menu-fg: #4D4D4F;
  --mv-color-menu-separator: #F5F5F5;
  --mv-color-menu-tab-separator: #E0E0E0;
  --mv-menu-tab-img: url(world.svg);
}

/* ***********************
 Metanav Tabs
 ************************* */
/* ***********************
 Metanav Dropdown
 ************************* */
.mv-reset {
  all: unset;
  contain: size style;
  margin: 0;
  padding: 0;
  display: block;
  background: none;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  font-size: 11px;
  letter-spacing: normal;
  line-height: 1.5;
  white-space: normal;
}
.mv-reset a, .mv-reset a:active, .mv-reset a:visited, .mv-reset a:hover {
  color: inherit;
  text-decoration: none;
}
.mv-reset a:focus {
  outline: none;
}
.mv-reset a:focus-visible {
  outline: solid 2px var(--mv-color-accent);
  outline-offset: -2px;
}
.mv-reset a.mv-clickable {
  cursor: pointer;
  user-select: none;
}

.mv {
  position: absolute;
  contain: size layout style;
  top: 0;
  left: 0;
  width: 100%;
  height: 35px;
  line-height: 30px;
  background: var(--mv-color-bg);
  color: var(--mv-color-fg);
  white-space: nowrap;
  border-bottom: solid 1px var(--mv-color-separator);
}
.mv * {
  box-sizing: border-box;
}
.mv :focus-visible {
  outline: solid 1px var(--mv-color-accent);
  outline-offset: -1px;
}
.mv__spacer {
  flex: 1 1 auto;
}
.mv__nav {
  display: flex;
  align-items: flex-start;
  height: 34px;
  margin: auto;
  max-width: var(--mv-max-width);
  position: relative;
}
.mv__link {
  flex: 0 0 auto;
  padding: 2px 15px 0;
  height: 100%;
  text-transform: uppercase;
  color: inherit;
  display: inline-block;
  vertical-align: top;
  border-bottom: solid 2px transparent;
}
.mv__link__icon {
  display: inline-block;
  margin-left: 8px;
  opacity: 0.7;
  transform: rotate(90deg);
}
.mv__link:active, .mv__link:hover:not(.mv-active) {
  color: var(--mv-color-accent-fg) !important;
  background-color: var(--mv-color-accent) !important;
}
.mv__link.mv-active {
  border-bottom-color: var(--mv-color-accent);
}
.mv__link--with-border {
  border-left: solid 1px var(--mv-color-separator);
}
.mv__link svg {
  height: 30px;
  width: 24px;
}
.mv__link-wrapper {
  display: inline-block;
  position: relative;
  height: 100%;
}

.mv__backdrop {
  background-color: var(--mv-color-menu-backdrop);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  animation: mv-backdrop ease-out 0.1s;
}
.mv__open-menu {
  background-color: var(--mv-color-accent);
  color: var(--mv-color-accent-fg);
}
.mv__open-menu:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -6px;
  right: calc(50% - 10px);
  border: solid 10px transparent;
  border-top: none;
  border-bottom-color: var(--mv-color-menu-bg);
  z-index: 10000;
}
.mv__dropdown {
  display: block;
  position: absolute;
  max-height: calc(100vh - 50px);
  min-width: 200px;
  min-height: 34px;
  background: var(--mv-color-menu-bg);
  color: var(--mv-color-menu-fg);
  border-radius: var(--mv-border-radius);
  z-index: 9999;
  top: 34px;
  right: 0;
  padding: 7px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  animation: mv-menu 0.1s ease-out;
  font-size: 14px;
  line-height: 1.5;
  margin: 5px 2px;
  transform-origin: top center;
  overflow-x: hidden;
  overflow-y: auto;
}
.mv__dropdown--with-tabs {
  height: 500px;
  left: 5px;
  right: 5px;
  margin-left: auto;
  margin-right: auto;
  max-width: var(--mv-max-width);
  position: fixed;
}
.mv__dropdown__entry {
  display: block;
  page-break-inside: avoid;
  break-inside: avoid;
  border-bottom: solid 1px var(--mv-color-menu-separator);
  overflow: hidden;
  text-overflow: ellipsis;
}
.mv__dropdown__entry--selected {
  background-color: var(--mv-color-accent);
  color: var(--mv-color-accent-fg);
  border-bottom-color: currentColor;
}
.mv__dropdown__entry:not(.mv__dropdown__entry--selected):focus-within, .mv__dropdown__entry:not(.mv__dropdown__entry--selected):hover {
  background: linear-gradient(90deg, var(--mv-color-accent) -900%, transparent);
}
.mv__dropdown__entry--multiple > .mv__dropdown__link {
  display: inline-block;
}
.mv__dropdown__entry--single > .mv__dropdown__link {
  display: block;
}
.mv__dropdown__link {
  padding: 8px 10px;
}
.mv__dropdown__link.mv-clickable {
  transform: translateX(-12px);
  transition: transform 0.2s;
}
.mv__dropdown__link.mv-clickable:before {
  content: "»";
  display: inline-block;
  width: 12px;
  opacity: 0;
  transition: opacity 0.2s;
}
.mv__dropdown__link.mv-clickable:focus, .mv__dropdown__link.mv-clickable:hover {
  transform: translateX(0);
}
.mv__dropdown__link.mv-clickable:focus:before, .mv__dropdown__link.mv-clickable:hover:before {
  opacity: 1;
}
.mv__dropdown__link.mv-active {
  font-weight: bold;
}

@keyframes mv-backdrop {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mv-menu {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 800px) {
  .mv__dropdown {
    position: fixed;
    left: 5px;
    right: 5px;
    width: auto;
  }
}
.mv__tabs__header {
  white-space: nowrap;
  margin: 5px;
  border-bottom: solid 1px var(--mv-color-menu-tab-separator);
}
.mv__tabs__header__label {
  display: inline-block;
  padding: 5px 12px 3px;
  border-bottom: solid 3px transparent;
  background-clip: border-box;
  font-weight: bold;
  color: inherit;
  line-height: 1.3;
  margin-right: 15px;
  user-select: none;
  transition: border-bottom-color 0.15s;
}
.mv__tabs__header__label:not(.mv-active) {
  cursor: pointer;
}
.mv__tabs__header__label:not(.mv-active):hover {
  border-bottom-color: var(--mv-color-menu-tab-separator);
}
.mv__tabs__header__label.mv-active {
  border-bottom-color: var(--mv-color-accent);
}
.mv__tabs__content {
  display: none;
  height: calc(100% - 60px);
  padding: 5px;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--mv-menu-tab-img) center center no-repeat;
  background-size: cover;
}
.mv__tabs__content__columns {
  column-count: auto;
  column-gap: 20px;
  column-width: 290px;
}
.mv__tabs__content--active {
  display: block;
}

@media (max-width: 600px) {
  .mv__tabs__header__label {
    margin-right: 0;
    padding-left: 8px;
    padding-right: 8px;
  }
}
@media (max-width: 800px) {
  .mv-hidden-XS:not(.mv-active) {
    display: none;
  }
}
@media (min-width: 801px) {
  .mv-visible-XS:not(.mv-active) {
    display: none;
  }
}
