/**
 * @file
 * Stylesheet for the language switcher block.
 */

.block-language > .links {
  display: inline-flex;
  margin: 0;
  padding: 0;
  list-style: none;
  text-transform: uppercase;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}

.block-language > .links li + li {
  margin-left: 1rem;
}

.block-language > .links li{
  /* margin-left: 0.625rem; */
}

.language-link,
.language-link:hover,
.language-link:focus {
  text-decoration: none;
  color: inherit;
  background-color: inherit;

  display: inline-block;
  /* margin: 5px 3px;
  padding-bottom: 0.1em; */
  transition: all 0.2s;
  text-decoration: none;
  border-bottom: solid 0.1em transparent;

}
.language-link:hover,
.language-link:focus {
  /* text-decoration: underline; */
  text-decoration: none;
  color: #2196F3;
  border-bottom-color: #2196F3;
  background-color: inherit;

}
.language-link.is-active {
  font-weight: 700;
  color: #343a40!important;
}
