.header {
  position: sticky;
  top: 0;
  width: 100%;
  display: flex;
  z-index: 1000;
}
.header .header__inner {
  width: 100%;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  position: relative;
  gap: 0.6rem;
  padding: 0.2rem;
}
.header .header-bar {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  position: relative;
  -webkit-backdrop-filter: blur(1.2rem);
  backdrop-filter: blur(1.2rem);
  transition: var(--furation-normal);
  background-color: rgb(var(--color-surface-rgb) / 0.9);
  border-radius: 2.4rem;
}
.header .header-bar.header-bar--main {
  height: 6rem;
  padding: 0 0.6rem 0 0rem;
  border-radius: 20rem;
}
.header.on .header-bar.header-bar--main {
  box-shadow: 0 0 2.4rem rgb(0 0 0 / 0.2);
}
.header .header-bar .header-bar__inner {
  display: flex;
  align-self: stretch;
  width: 100%;
  align-items: center;
}

/*  */

.header .nav-handle {
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
  align-self: stretch;
  padding: 0 2rem 0 2.8rem;
  transform: rotate(0deg);
  cursor: pointer;
  flex-shrink: 0;
}
.header .nav-handle .nav-handle__icon {
  position: relative;
  width: 2rem;
  height: 2rem;
}
.header .nav-handle .nav-handle__dash {
  display: block;
  position: absolute;
  height: 0.2rem;
  width: 100%;
  background: var(--color-text);
  opacity: 1;
  transform: rotate(0deg);
  transition: var(--duration-normal);
}
.header.on .nav-handle .nav-handle__dash {
}
.header .nav-handle .nav-handle__dash--top {
  top: 0.4rem;
}
.header .nav-handle .nav-handle__dash--bottom {
  bottom: 0.4rem;
}
.header .nav-handle.active .nav-handle__dash--top {
  top: 0.9rem;
  transform: rotate(45deg);
}
.header .nav-handle.active .nav-handle__dash--bottom {
  bottom: 0.9rem;
  transform: rotate(-45deg);
}

/*  */

.header .logo {
  display: flex;
  flex-shrink: 0;
  width: 4.2rem;
  align-self: stretch;
}
.header .logo__link {
  position: relative;
  align-self: stretch;
  width: 100%;
  display: flex;
}
.header .logo__svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  fill: var(--color-primary);
}

/*  */

.mdc-current-restaurant {
  display: flex;
  align-self: stretch;
  align-items: center;
  margin-left: 2.4rem;
  margin-right: 0.6rem;
}
.mdc-current-restaurant .restaurant-button {
  display: flex;
  gap: 1rem;
  height: 4.8rem;
  border-radius: 20rem;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  /* background-color: var(--color-surface-muted); */
  padding-left: 1.6rem;
  border: 0.2rem solid var(--color-surface-muted);
}
.mdc-current-restaurant .restaurant-button .restaurant-button__icon {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: var(--color-surface-muted);
}
.mdc-current-restaurant .restaurant-button .restaurant-button__icon .icon {
  width: 2rem;
  height: 2rem;
  opacity: 0.7;
}
.mdc-current-restaurant .restaurant-info {
  display: block;
}
.mdc-current-restaurant .restaurant-info .restaurant-info__title {
  display: none;
}
.mdc-current-restaurant .restaurant-info .restaurant-info__location {
  display: block;
}
.mdc-current-restaurant .restaurant-info .restaurant-info__location-content {
  display: block;
  line-height: var(--line-height-snug);
  text-align: right;
  font-size: var(--font-size-xs);
}

/*  */

.header .user-panel {
  position: relative;
}
.header .user-panel .account-link.button {
  height: 4.8rem;
  width: 4.8rem;
  flex-shrink: 0;
  background-color: var(--color-primary);
  border-radius: 20rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.6rem;
  padding: 0 1.4rem;
}
.header .user-panel .account-link.button .button__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  flex-shrink: 0;
}
.header .user-panel .account-link.button .button__icon .mdc-icon {
  width: 2rem;
  height: 2rem;
}
.header .user-panel .bonuses-number {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.4rem;

  display: none;
}
.header .user-panel .bonuses-number .bonuses-number__value {
  display: block;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-none);
}
.header .user-panel .bonuses-number .bonuses-number__icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  align-self: stretch;
}
.header .user-panel .bonuses-number .bonuses-number__icon .icon {
  width: 1rem;
  height: 1rem;
}
