  @-webkit-keyframes myScroll {
  0% {
    margin-top: -6px;
  }

  50% {
    margin-top: 6px;
  }

  100% {
    margin-top: -6px;
  }
}

@-webkit-keyframes picToLeft {
  from {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 90% 100%);
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@-webkit-keyframes picToRight {
  from {
    clip-path: polygon(0 0, 0 0, 10% 100%, 0 100%);
  }

  to {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@-webkit-keyframes myWidth {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}