.swop22-nav {
  color: #000;
}

.swop22-nav a,
.swop22-nav button {
  display: block;
  padding: 0;
  border: 0;
}

.swop22 .swop22-nav a,
.swop22 .swop22-nav a:hover,
.swop22 .swop22-nav button,
.swop22 .swop22-nav button:hover {
  color: inherit;
  text-decoration: none;
}

.swop22-nav ul,
.swop22-nav li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.swop22-navbar,
.swop22-menu {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
}

/*
 * .-----------------------------------------------------.
 * |                    NAVIGATION BAR                   |
 * '-----------------------------------------------------'
 */

.swop22-navbar {
  height: 52px;
  padding: 0 20px;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  line-height: 38px;
  text-transform: uppercase;
  z-index: 110;
}

/* --- Logo --- */

a.swop22-navbar-logo {
  float: left;
  /* (52 - 24) / 2 */
  padding-top: 14px;
}

a.swop22-navbar-logo img {
  float: left;
  height: 24px;
  min-width: 1px;
}

/* --- Items --- */

ul.swop22-navbar-items {
  float: right;
  padding-top: 7px;
  height: 100%;
}

li.swop22-navbar-item,
.swop22-navbar li.swop22-navbar-item-small-margin {
  float: left;
  margin-right: 24px;
}

li.swop22-navbar-item:last-child {
  margin-right: 0;
}

li.swop22-navbar-item-text,
li.swop22-navbar-item-dropdown {
  display: none;
}

li.swop22-navbar-item-icon {
  padding-top: 9px;
}

/* --- Drop Down --- */

li.swop22-navbar-item-dropdown {
  cursor: default;
  position: relative;
}

ul.swop22-navbar-subitems {
  visibility: hidden;
  pointer-events: none;
  width: 200px;
  padding: 16px 0;
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  position: absolute;
  left: -36px;
  top: 100%;
}

.swop22-navbar-item-dropdown:hover .swop22-navbar-subitems {
  visibility: visible;
  pointer-events: all;
}

.swop22-navbar-subitem a {
  padding: 12px 36px;
  line-height: 20px;
}

.swop22-navbar-subitem a:hover {
  background: #f5f5f5;
}

/* --- Home / Share / Expand --- */

a.swop22-nav-home,
button.swop22-nav-expand,
.swop22-navbar .swop22-sharelink a {
  width: 20px;
  height: 20px;
}

a.swop22-nav-home,
button.swop22-nav-expand {
  background: center center no-repeat;
  background-size: 100% auto;
  text-indent: -9999px;
  overflow: hidden;
}

a.swop22-nav-home {
  background-image: url(images/icon-home.svg);
}

button.swop22-nav-expand {
  width: 24px;
  background-image: url(images/icon-expand.svg);
}

.swop22-navbar .swop22-sharelink svg path {
  fill: #000;
}

/* --- Responsive --- */

@media all and (min-width: 1000px) {
  .swop22-navbar {
    height: 70px;
    padding: 0 36px;
    font-size: 18px;
  }

  a.swop22-navbar-logo {
    /* (70 - 30) / 2 */
    padding-top: 20px;
  }

  a.swop22-navbar-logo img {
    height: 30px;
  }

  ul.swop22-navbar-items {
    padding-top: 16px;
  }

  li.swop22-navbar-item {
    margin-right: 36px;
  }

  li.swop22-navbar-item-text,
  li.swop22-navbar-item-dropdown {
    display: block;
  }

  li.swop22-navbar-item-icon {
    padding-top: 6px;
    padding-bottom: 5px;
  }

  a.swop22-nav-home,
  button.swop22-nav-expand,
  .swop22-navbar .swop22-sharelink a {
    width: 26px;
    height: 26px;
  }

  button.swop22-nav-expand {
    width: 30px;
    height: 26px;
  }
}

@media all and (min-width: 1200px) {
  li.swop22-navbar-item {
    margin-right: 52px;
  }
}


/*
 * .-----------------------------------------------------.
 * |                   NAVIGATION MENU                   |
 * '-----------------------------------------------------'
 */

/* --- Menu Core --- */

.swop22-menu {
  height: 100%;
  pointer-events: none;
  /* This huge z-index is needed so the menu covers */
  /* the accessibility widget when it is opened. */
  z-index: 2147483648;
}

.swop22-menu-inner {
  width: 100%;
  height: 100%;
  transform: translate(100%, 0);
  transition: transform 0.8s cubic-bezier(.17,.67,.47,1);
  background: #fff;
  overflow-y: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swop22-menu-opened {
  pointer-events: all;
}

.swop22-menu-opened .swop22-menu-inner {
  transform: translate(0, 0);
}

.swop22-menu-inner-2 {
  width: 100%;
  max-width: 860px;
  position: relative;
}

@media all and (max-width: 639px) {
  .swop22-menu .swop22-side-padd {
    padding: 0 24px;
  }
}

/* --- Menu Elements --- */

.swop22-menu {
  font-size: 16px;
  line-height: 22px;
}

ul.swop22-menu-links {
  font-size: 22px;
  line-height: 26px;
}

.swop22-menu-links li {
  margin-bottom: 11px;
}

/* Title */
.swop22-menu-links li:first-child {
  margin-bottom: 21px;
}

.swop22-menu-links li:last-child {
  margin-bottom: 0;
}

.swop22-menu-links a {
  display: block;
}

.swop22-menu-links a.swop22-menu-title {
  width: calc(100% - 36px);
  font-size: 33px;
  line-height: 33px;
  text-transform: uppercase;
}

.swop22-menu-links .swop22-menu-title-faded {
  opacity: 0.4;
}

.swop22-menu-links a.swop22-menu-link-stories,
.swop22-menu-links a.swop22-menu-link-data {
  font-size: 16px;
  text-transform: uppercase;
}

.swop22-menu-links a:hover span.swop22-menu-links-hover {
  border-bottom: 1px solid #757575;
}

.swop22-menu-downloads {
  margin-top: 20px;
}

.swop22-menu-downloads p {
  margin: 0 0 7px 0;
  opacity: 0.85;
}

.swop22-menu-downloads ul {
  margin-left: -7px;
}

.swop22-menu-downloads li {
  float: left;
}

.swop22-menu-downloads li a {
  float: left;
  padding: 2px 7px;
}

ul.swop22-menu-langs {
  margin-top: 20px;
}

.swop22-menu-langs li {
  float: left;
  margin-right: 43px;
}

.swop22-menu-langs li:last-child {
  margin-right: 0;
}

.swop22-menu-langs a .lang-link-short {
  display: none;
}

.swop22-menu-close {
  width: 20px;
  height: 20px;
  background: url(images/icon-close.svg) center center no-repeat;
  background-size: 20px 20px;
  position: absolute;
  top: 5px;
  right: 0;
  text-indent: -9999px;
  overflow: hidden;
  font-size: 0;
}

@media all and (min-width: 560px) {
  .swop22-menu-inner-2 {
    display: flex;
    align-items: center;
  }

  .swop22-menu-main {
    width: calc(100% - 125px);
    padding-right: 35px;
    border-right: 1px solid #757575;
  }

  ul.swop22-menu-langs {
    margin: 0;
    width: 125px;
    padding-left: 35px;
  }

  .swop22-menu-langs li {
    margin-right: 0;
    padding: 5px 0;
  }
}

@media all and (min-width: 768px) {
  .swop22-menu {
    font-size: 22px;
    line-height: 24px;
  }

  .swop22-menu-main {
    width: calc(100% - 210px);
    padding-right: 70px;
  }

  ul.swop22-menu-links {
    font-size: 26px;
    line-height: 28px;
  }

  .swop22-menu-links li {
    margin-bottom: 14px;
  }

  .swop22-menu-links li:first-child {
    margin-bottom: 24px;
  }

  .swop22-menu-links a.swop22-menu-title {
    font-size: 39px;
    line-height: 39px;
  }

  .swop22-menu-links a.swop22-menu-link-stories,
  .swop22-menu-links a.swop22-menu-link-data {
    font-size: 20px;
  }

  .swop22-menu-downloads {
    margin-top: 28px;
  }

  ul.swop22-menu-langs {
    width: 210px;
    padding-left: 70px;
  }

  .swop22-menu-langs li {
    padding: 10px 0;
  }
}

@media all and (min-width: 1000px) {
  .swop22-menu-downloads {
    display: none;
  }

  .swop22-menu-main {
    width: calc(100% - 280px);
    padding-right: 70px;
  }

  ul.swop22-menu-links {
    margin-bottom: 0;
    font-size: 28px;
    line-height: 38px;
  }

  .swop22-menu-links li {
    margin-bottom: 30px;
  }

  .swop22-menu-links li:first-child {
    margin-bottom: 50px;
  }

  .swop22-menu-links a.swop22-menu-title {
    font-size: 42px;
    line-height: 42px;
  }

  .swop22-menu-links a.swop22-menu-link-stories {
    font-size: 22px;
  }

  .swop22-menu-links a.swop22-menu-link-data {
    display: none;
  }

  ul.swop22-menu-langs {
    width: 280px;
    padding-left: 140px;
    margin-top: 0;
    font-size: 26px;
    line-height: 28px;
  }

  .swop22-menu-langs li {
    padding: 15px 0;
  }

  .swop22-menu-close {
    width: 26px;
    height: 26px;
    background-size: 26px 26px;
  }
}
