/* Language switch (DE/EN) in the header, next to the main menu */
.lang-switch {
  float: right;
  margin: 2px 0 0 15px;
}
.navbar .lang-switch a {
  display: inline-block;
  padding: 1px 8px;
  border: 1px solid #1d1d1b;
  border-radius: 2px;
  font-weight: bold;
  color: #1d1d1b !important;
  background: #fff;
}
.navbar .lang-switch a:hover,
.navbar .lang-switch a:focus {
  background: #1d1d1b;
  color: #fff !important;
  text-decoration: none;
}
@media (max-width: 767px) {
  .lang-switch { float: left; margin: 0 0 5px 0; }
}
