#menu-pointer {
  position: fixed;
  top: 11%;
  left: 20px;
  display: none; /* Скрываем по умолчанию */
  flex-direction: column;
  align-items: center;
  z-index: 1000;
}

.arrow {
  width: 0;
  height: 0;
  margin-left:-13px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 20px solid red; /* Цвет стрелки */
  animation: bounce 1s infinite; /* Анимация движения */
}

#close-pointer {
  margin-top: 10px;
  background-color: white;
  border: none;
  color: black;
  font-size: 14px;
  cursor: pointer;
  padding: 5px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, color 0.3s;
}

#close-pointer:hover {
  background-color: #f2f2f2;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Указываем стили для мобильных устройств */
@media (max-width: 600px) {
  #menu-pointer {
    display: flex; /* Показываем стрелку только на мобильных и планшетах */
  }
}
