.tc-lang {
  position: fixed;
  left: 20px;
  bottom: 0;
  z-index: 2147483000;
  font: 500 13px/1.6 Inter, sans-serif;
  color: #000;
}
.tc-lang__current,
.tc-lang__list a {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  min-width: 98px;
  padding: 9px 30px 9px 10px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.3);
  color: inherit;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
  position: relative;
}
.tc-lang__current::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-50%) rotate(-45deg);
  transition: transform 0.15s;
}
.tc-lang--open .tc-lang__current::after {
  transform: translateY(-70%) rotate(45deg);
}
.tc-lang__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 60vh;
  overflow-y: auto;
}
/* The site's CSS styles every li; reset it for ours. */
.tc-lang .tc-lang__list li {
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: inherit;
}
.tc-lang .tc-lang__list a {
  border-bottom: 0;
}
.tc-lang__list a:hover,
.tc-lang__current:hover {
  background: #f5f5f5;
}
.tc-lang__current:focus-visible,
.tc-lang__list a:focus-visible {
  outline: 2px solid #7a3cf6;
  outline-offset: -2px;
}
