app-footer.kz-nav-wrap {
  display: block;
  width: 100%;
  max-width: none;
  transform: none !important;
  left: auto !important;
  right: auto !important;
  position: static;
}

.kz-nav {
  --nav-count: 5;
  --active-index: 0;
  --kz-nav-green: #22a049;
  --kz-nav-muted: #9ca3af;
  --kz-nav-text: #1f2937;
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 -1px 0 #eef0f3, 0 -6px 20px rgba(15, 23, 42, 0.06);
  padding-bottom: env(safe-area-inset-bottom);
  font-family: Arial, Helvetica, sans-serif;
  box-sizing: border-box;
}

.kz-nav__inner {
  position: relative;
  display: flex;
  align-items: stretch;
  width: 100%;
  height: 58px;
  max-width: 500px;
  margin: 0 auto;
  box-sizing: border-box;
}

.kz-nav__bump {
  position: absolute;
  top: 0;
  left: calc((var(--active-index) + 0.5) / var(--nav-count) * 100%);
  width: 44px;
  height: 44px;
  transform: translate(-50%, -16%);
  border-radius: 50%;
  background: #fff;
  box-shadow: none;
  transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 0;
}

.kz-nav__item {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 0;
  padding: 0 1px 4px;
  border: 0;
  background: transparent;
  color: var(--kz-nav-text);
  text-decoration: none;
  cursor: pointer;
  position: relative;
  z-index: 1;
  -webkit-tap-highlight-color: transparent;
  box-sizing: border-box;
}

.kz-nav__item.is-active .kz-nav__icon-wrap {
  transform: translateY(-2px);
}

.kz-nav__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.kz-nav__icon {
  width: 24px;
  height: 24px;
  display: block;
  flex-shrink: 0;
  overflow: visible;
}

.kz-nav__icon path,
.kz-nav__icon circle,
.kz-nav__icon rect,
.kz-nav__icon line,
.kz-nav__icon polyline {
  transition: stroke 0.2s ease, fill 0.2s ease;
}

.kz-nav__item .kz-nav__icon {
  color: var(--kz-nav-muted);
}

.kz-nav__item.is-active .kz-nav__icon {
  color: var(--kz-nav-green);
}

.kz-nav__item.is-active .kz-nav__icon .kz-nav__fill {
  fill: currentColor;
}

.kz-nav__label {
  font-size: 10px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--kz-nav-text);
  white-space: nowrap;
  letter-spacing: -0.02em;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

.kz-nav__item.is-active .kz-nav__label {
  font-weight: 700;
}

@media (max-width: 360px) {
  .kz-nav__label {
    font-size: 9px;
  }

  .kz-nav__inner {
    height: 54px;
  }
}

@media (min-width: 501px) {
  .kz-nav {
    width: 500px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}
