.slide-in-right{animation:slide-in-right .5s cubic-bezier(.25,.46,.45,.94) 1s both}


.slide-in-left{animation:slide-in-left .5s cubic-bezier(.25,.46,.45,.94) 2s both}


.slide-in-right3{animation:slide-in-right .5s cubic-bezier(.25,.46,.45,.94) 3s both}

.heartbeat {animation: heartbeat 1.5s ease-in-out infinite both;}

@keyframes slide-in-right{0%{transform:translateX(1000px);opacity:0}100%{transform:translateX(0);opacity:1}}



@keyframes slide-in-left{0%{transform:translateX(-1000px);opacity:0}100%{transform:translateX(0);opacity:1}}



@keyframes slide-in-right{0%{transform:translateX(1000px);opacity:0}100%{transform:translateX(0);opacity:1}}


@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
