.disabled-social {
  opacity: 0.5; /* Затемнение иконки */
  position: relative;
  cursor: not-allowed; /* Запрещающий курсор */
}

.warning-text {
  font-size: 15px;
  color: #ffffff;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}




.t-animate {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
  animation-delay: 2s; /* Задержка */
}

.t-animate_started {
  opacity: 1;
  transform: translateY(0);
}