/*---------------------------------
-----  dimension variables --------
----------------------------------*/
/*------  standard elements padding & margin  -------*/
/**
**  Official Font sizes
------------------------------- */
.ux-w-header {
  font-family: "Frutiger-Bold", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 20px;
  background: #285172;
  color: #fff;
  padding: 10px 30px;
  width: 100%;
  display: block;
  position: relative;
}
.ux-w-header a {
  margin-left: 10px;
  text-decoration: none;
}
.ux-w-header ux-icon {
  color: #fff;
}
.ux-w-header__menu {
  float: right;
}
.ux-w-header__menu-link {
  cursor: pointer;
}
.ux-w-header__menu-link ux-icon {
  pointer-events: none;
}
.ux-w-header__menu-link.is-open::before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 20px;
  width: 20px;
  border: 10px solid transparent;
  border-bottom: 10px solid white;
  z-index: 11;
}
.ux-w-header__menu-content {
  background-color: white;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.2);
  position: absolute;
  right: 30px;
  top: 100%;
  min-width: 200px;
  z-index: 10;
  padding: 30px;
  color: #131313;
}
.ux-w-header__menu-content.is-hidden {
  display: none;
}
.ux-w-header__menu-content .ux-select ux-icon {
  color: #131313;
}