<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.lang-selector {
  position: relative;
}

.lang-selector button {
  border-radius: 6px;
  border: none;
  background-color: rgba(255, 255, 255, 0.075);
  color: #ffffff;
  padding: 10px 15px;
  cursor: pointer;
  font-weight: 600;
}

.lang-selector button:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.lang-selector__list {
  position: absolute;
  top: 100%;
  margin-top: 10px;
  right: 0;
  display: none;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0px 5px 10px #33333333;
  padding: 20px;
  z-index: 1;
}

.lang-selector__list.visible {
  display: flex;
}

.lang-selector__list &gt; div {
  cursor: pointer;
  display: flex;
}

.lang-selector__list &gt; div:not(:last-child) {
  margin-bottom: 10px;
}

.lang-selector__list span {
  color: #000000;
}

.lang-selector__circle {
  position: relative;
  height: 28px;
  width: 28px;
  border-radius: 50%;
  border: 1px solid #668AA5;
  margin-right: 10px;
}

.lang-selector__circle.selected::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: #003C69;
  border-radius: 50%;
  top: 3px;
  left: 3px;
}

.lang-selector__circle:hover {
  box-shadow: 0px 0px 3px #668AA5;
}
</pre></body></html>