/* Подъём всех кнопок Tilda при наведении */
.t-btn,
.t-submit,
.tn-elem[data-elem-type="button"] .tn-atom {
  position: relative !important;
  top: 0;
  transition: top 0.22s ease !important;
}

@media (hover: hover) and (pointer: fine) {
  .t-btn:hover,
  .t-submit:hover,
  .tn-elem[data-elem-type="button"] .tn-atom:hover {
    top: -5px;
  }
}