.header {
  display: block;
  position: relative;
}

.header__lang {
  width: 100%;
  padding: 5px 0 10px 0;
  text-align: center;
}

.header__lang-btn {
  width: 32px;
  height: 32px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  margin: 0 8px;
}

.lang-us {
  background: url("../../assets/img/us64.png") no-repeat;
  background-position: center;
  background-size: cover;
}

.lang-us:hover {
  box-shadow: 0 0 0 3px var(--color-bgbtn-b);
}

.lang-ru {
  background: url("../../assets/img/ru64.png") no-repeat;
  background-position: center;
  background-size: cover;
}

.lang-ru:hover {
  box-shadow: 0 0 0 3px var(--color-bgbtn-b);
}

.lang-he {
  background: url("../../assets/img/he64.png") no-repeat;
  background-position: center;
  background-size: cover;
}

.lang-he:hover {
  box-shadow: 0 0 0 3px var(--color-bgbtn-b);
}

.header__theme {
  text-align: center;
  background: var(--color-nav-bg);
  direction: rtl!important;
}

.theme__icon {
  padding: 6px;
  font-size: 22px;
  color: var(--color-icon-theme);
  cursor: pointer;
}

