.desktop #header {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

#locale-dropdown {
  width: 78px;
  background: url(../../img/system/svg-www/locale.svg) no-repeat;
  cursor: pointer;
  position: relative;
  z-index: 1500;
  font-size: 14px;
  font-weight: bold;
  font-family: 'OpenSans-Semibold';
}

#locale-dropdown:hover {
  background: url(../../img/system/svg-www/locale_active.svg) no-repeat;
}

#locale-dropdown .current {
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: var(--clr--border);
}

#locale-dropdown:hover .current {
  color: var(--clr--brand--light);
}

#locale-dropdown .others {
  position: absolute;
  top: 31px;
  width: 100%;
  height: 0;
  overflow: hidden;
  background-color: var(--clr--border);
  -webkit-transition: height 1s;
  -moz-transition: height 1s;
  -ms-transition: height 1s;
  -o-transition: height 1s;
  transition: height 1s;
  z-index: 1003;
}

#locale-dropdown:hover .others {
  height: 62px;
}

#locale-dropdown .others a {
  display: block;
  height: 30px;
  line-height: 30px;
  color: white;
  text-align: center;
  border-bottom: 1px solid white;
}

#locale-dropdown .others a:hover {
  color: var(--clr--brand--light);
}
