/* Custom CSS for Esklepios Site */

/* language switcher */
.language-switcher {
  margin-left: 20px;
  display: inline-block;
  vertical-align: middle;
}
.language-switcher ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}
.language-switcher li {
  margin: 0 5px;
}
.language-switcher a {
  color: white;
  text-decoration: none;
  padding: 3px 8px;
  font-size: 1.4rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.language-switcher li.active a {
  font-weight: bold;
  border-bottom: 2px solid white;
}

@media only screen and (max-width: 768px) {
  .language-switcher {
    margin-top: 20px;
    margin-left: 0;
    display: block;
    text-align: center;
  }
  .language-switcher ul {
    justify-content: center;
  }
}