#rec1239678721 {
  position: fixed;       /* фиксируем сверху */
  top: -96px;           /* уводим за границы экрана */
  left: 0;
  width: 100%;
  opacity: 0;
  transition: top 0.01s ease, opacity 1.0s ease;
  z-index: 999;          /* чтобы был поверх */
}

#rec1239678721.visible {
  top: 0;                /* выезжает вниз */
  opacity: 1;
}
