.module_navigationV2 {
  list-style: none;
  border: none;
}
.module_navigationV2[data-type=pop] {
  visibility: hidden;
  opacity: 0;
}
.module_navigationV2[data-type=header] .background {
  display: none;
}
.module_navigationV2[data-type=header] ul,
.module_navigationV2[data-type=header] li {
  display: inline-block;
}
.module_navigationV2.show {
  -webkit-animation: fadeinout 0.25s linear forwards;
  animation: fadeinout 0.25s linear forwards;
  visibility: visible;
}
@keyframes fadeinout {
  100% {
    opacity: 1;
  }
  0% {
    opacity: 0;
  }
}
.module_navigationV2 .background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
}
.module_navigationV2 ul {
  opacity: 0.99;
  list-style: none;
  margin: 0;
  padding: 0;
}
.module_navigationV2 li > ul {
  visibility: hidden;
  opacity: 0;
}
.module_navigationV2 li {
  padding: 0.5em 1em;
}
.module_navigationV2 a {
  display: inline-block;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: inherit;
}
