#ny__santa {
  position: fixed;
  background: url(/local/templates/mashino/images/santa.png) 0 0 no-repeat;
  background-size: contain;
  width: 80px;
  height: 194px;
  left: -300px;
  top: 35%;
  z-index: 1000;
  animation: santa linear 20s infinite;
  animation-delay: 1s;
}

  @media (max-width: 1280px) {
    #ny__santa {
      width: 70px;
      height: 170px;
     }
  }

@keyframes santa {
  0% {
    left: -300px;
  }
  5% {
    left: 0;
  }
  50% {
    left: 0;
  }
  55% {
    left: -300px;
  }
  100% {
    left: -300px;
  }
}