.navMobile {
  position: fixed;
  bottom: -4px;
  left: 0;
  width: 100%;
  background: var(--bg-color-footer-nav);
  display: none;
  z-index: 400;
}

.listNavMobile {
  flex-direction: row;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  justify-content: space-between;
  padding: 16px;
  border-top: 1px solid var(--color-line-main);
}

 .linkNavMobile {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 10px;
  position: relative;
}

.footerNavBonus {
  position: absolute;
  top: -10px;
  right: 0px;
  border-radius: 999px;
  padding: 3px 7px;
  background: var(--burger-bonus);
  font-weight: 600;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: 0em;
  color: var(--burger-text-bonus);
}


.imgNavMobile {
  margin-bottom: 9px;
}

.textNavMobile {
  font-weight: 600;
  font-size: 10px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: var(--nav-footer-text);
}

@media (max-width: 768px) {
  .navMobile {
    display: flex;
  }
}

@media (max-width: 360px) {
  .linkNavMobile {
    padding: 0 5px;
  }

  .textNavMobile {
    font-size: 8px;
  }
}