.floating-nav {
  position: fixed;
  bottom: 0.2rem;
  left: 0.2rem;
  right: 0.2rem;
  z-index: 500;
  -webkit-backdrop-filter: blur(1.2rem);
  backdrop-filter: blur(1.2rem);
  overflow: hidden;
  height: 6.4rem;
  border-radius: 20rem;
  background-color: rgb(var(--color-surface-inverse-rgb) / 0.5);
}
@media (width >= 1200px) {
  .floating-nav {
    display: none;
  }
}
.floating-nav .nav-menu {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.floating-nav .menu-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.floating-nav .menu-item:before {
  content: '';
  position: absolute;
  width: 0.1rem;
  top: 1rem;
  bottom: 1rem;
  left: 0;
  background-color: rgb(var(--color-text-inverse-rgb) / 0.2);
}
.floating-nav .menu-item.active:before {
  display: none;
}
.floating-nav .menu-item.active + .menu-item:before {
  display: none;
}
.floating-nav .menu-item .menu-item__link {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  height: 100%;
  justify-content: center;
  border-radius: 1.4rem;
}
.floating-nav .menu-item:first-child .menu-item__link {
  padding-left: 1rem;
}
.floating-nav .menu-item:last-child .menu-item__link {
  padding-right: 1rem;
}
.floating-nav .menu-item.active .menu-item__link {
  background-color: rgb(var(--color-surface-inverse-rgb) / 0.5);
}
.floating-nav .menu-item .menu-item__icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 1.8rem;
  height: 1.8rem;
}
.floating-nav .menu-item .menu-item__icon .icon {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--color-text-inverse);
}
.floating-nav .menu-item.menu-item--doctors .menu-item__icon .icon {
  width: 1.8rem;
  height: 1.8rem;
}
.floating-nav .menu-item.menu-item--services .menu-item__icon .icon {
  width: 1.6rem;
  height: 1.6rem;
}
.floating-nav .menu-item.menu-item--branches .menu-item__icon .icon {
  width: 1.6rem;
  height: 1.6rem;
}
.floating-nav .menu-item.menu-item--contacts .menu-item__icon .icon {
  width: 1.8rem;
  height: 1.8rem;
}
.floating-nav .menu-item .menu-item__label {
  display: block;
  text-align: center;
  font-size: var(--font-size-2xs);
  color: var(--color-text-inverse);
}
