@media screen and (min-width: 993px) {
  .language-mobile-container {
    display: none !important;
  }
}
.language-mobile-container {
  position: fixed;
  top: 78px;
  right: 15px;
  z-index: 999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px) scale(0.95);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.language-mobile-container.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.language-mobile-container.admin_panel {
  top: 120px;
}

.header-language-mobile {
  position: relative;
  display: inline-block;
  cursor: pointer;
  width: 40px;
  letter-spacing: 0.15px;
  font-size: 13px;
  font-family: "HelveticaNeueCyr-Medium", sans-serif;
  color: #fff;
}

/* Текущий язык */
.hlm__current {
  position: relative;
  background: #639ce0;
  color: #fff;
  padding: 10px 11px 16px 11px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.hlm__current::after {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='6' viewBox='0 0 25 6' fill='none'%3E%3Cpath d='M12.3776 0.0547199C12.4555 0.0199 12.5445 0.0199 12.6224 0.05472L24.6395 5.42611C24.935 5.55819 24.8407 6 24.5171 6L0.48294 6C0.159269 6 0.0650244 5.55819 0.36052 5.42611L12.3776 0.0547199Z' fill='white'/%3E%3C/svg%3E");
  width: 22px;
  height: 8px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

/* Список языков */
.hlm__list {
  position: absolute;
  top: 30px;
  left: 0;
  background: #639ce0;
  color: #fff;
  border-radius: 3px;
  display: none;
  flex-direction: column;
  width: 40px;
  z-index: 10;
  color: white;
  overflow: hidden;
}

.hlm__list .hlm__link {
  padding: 8px 10px;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: background 0.2s;
  text-transform: uppercase;
}

.hlm__list .hlm__link:hover {
  background: #f0f0f0;
  color: #151515;
}

/* Активный язык */
.hlm__list .hlm__link.active {
  font-weight: bold;
  background: #e8f2ff;
}

.language-mobile-container.open .hlm__current {
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.language-mobile-container.open {
  padding-bottom: 0;
}

.hlm__backlink {
  cursor: pointer;
  position: relative;
  width: 40px;
  height: 20px;
}

.hlm__backlink::before {
  content: "";
  position: absolute;
  left: 10px;
  bottom: 7px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='6' viewBox='0 0 25 6' fill='none'%3E%3Cpath d='M12.3776 0.0547199C12.4555 0.0199 12.5445 0.0199 12.6224 0.05472L24.6395 5.42611C24.935 5.55819 24.8407 6 24.5171 6L0.48294 6C0.159269 6 0.0650244 5.55819 0.36052 5.42611L12.3776 0.0547199Z' fill='white'/%3E%3C/svg%3E");
  width: 22px;
  height: 8px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}

/* Когда открыто */
.language-mobile-container.open .header-language-mobile .hlm__list {
  display: flex;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}

.language-mobile-container.open .hlm__current::after {
  display: none;
}
