/* Плавный скролл */
html {
  scroll-behavior: smooth;
}

/* Для Firefox и старых браузеров */
* {
  scroll-behavior: smooth;
}

/* Убираем резкие прыжки при якорных ссылках */
body {
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; /* для iOS */
}

.t-tooltip {
  position: relative !important;
  overflow: hidden !important;
}

.t-tooltip svg {
  display: none !important;
}

.t-tooltip::before {
  content: 'Жми' !important;
  position: absolute !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  letter-spacing: 0.02em !important;
  white-space: nowrap !important;
}
  padding: 0 8px !important;
  border-radius: 20px !important;
}