/* Полностью отключаем анимации и переходы попапа */
.t-popup,
.t-popup__container,
.t-popup__bg {
  -webkit-transition: none !important;
  transition: none !important;
  animation: none !important;
}

/* Состояния показать/скрыть — без fade/slide */
.t-popup { opacity: 0 !important; display: none !important; }
.t-popup.t-popup_show { display: block !important; opacity: 1 !important; }
.t-popup.t-popup_show .t-popup__container { transform: none !important; }

/* Глушим любые внутренние анимации блоков внутри попапа */
.t-popup .t-animate,
.t-popup .t-animate_init,
.t-popup .t-animate_started {
  opacity: 1 !important;
  transform: none !important;
  -webkit-transition: none !important;
  transition: none !important;
  animation: none !important;
}

/* Кнопки/закрытие — убираем плавности */
.t-submit,
.t-btn,
.t-popup__close,
.t-popup__bg {
  -webkit-transition: none !important;
  transition: none !important;
}
