.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: black;
  backdrop-filter: blur(16px);
}
.site-header__inner {
  width: 100%;
  max-width: 1440px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 auto;
  padding: 10px 20px;
}
.site-header__logo {
  inline-size: 178px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  flex: 0 1 auto;
  min-width: 132px;
  text-decoration: none;
}
.site-header__logo img {
  width: auto;
  max-width: 100%;
  height: 100%;
  display: block;
}
.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 7px;
  margin-left: auto;
}
.site-header__actions .btn, .site-header__login {
  inline-size: 30px;
  block-size: 30px;
  min-width: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 0;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.46);
  color: #9f9f9f;
  line-height: 1;
  text-decoration: none;
}
.site-header__actions .btn:hover, .site-header__actions .btn:focus-visible, .site-header__login:hover, .site-header__login:focus-visible {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(0, 0, 0, 0.62);
  outline: none;
}
.site-header__actions .btn-icon, .site-header__login .btn-icon {
  font-size: 21px;
  line-height: 1;
}
@media (max-width: 640px) {
  .site-header__inner {
    min-height: 52px;
    gap: 12px;
    padding: 11px 10px;
  }
  .site-header__logo {
    inline-size: 150px;
    min-width: 112px;
    height: 20px;
  }
  .site-header__actions {
    gap: 6px;
  }
}/*# sourceMappingURL=header-v2.css.map */