[data-speed] {
  transition: all 0.2s;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  -o-transition: all 0.2s;
}
.enter-y {
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
  -moz-transform: translateY(50px);
  -ms-transform: translateY(50px);
  -o-transform: translateY(50px);
  opacity: 0;
  transition: opacity 0s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-transition: opacity 0s,transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: opacity 0s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: opacity 0s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: opacity 0s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.enter-y-r {
  transform: translateY(-50px);
  opacity: 0;
  transition: opacity 1s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.enter-x {
  transform: translateX(50px);
  opacity: 0;
  transition: opacity 1s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.enter-x-r {
  transform: translateX(-50px);
  opacity: 0;
  transition: opacity 1s, transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.show .delay-1
 {
  transition-delay: 0s !important;
}
.show .delay-2 {
  transition-delay: 0.4s !important;
}
 .show .delay-3 {
 transition-delay: 0.5s !important;
}
.show .delay-4 {
  transition-delay: 0.8s !important;
}
.show .delay-5 {
  transition-delay: 1s !important;
}
.show .delay-6 {
  transition-delay: 1.2s !important;
}
.show .delay-7 {
  transition-delay: 1.4s !important;
}
.show .delay-8 {
  transition-delay: 1.6s !important;
}
.show .delay-9 {
  transition-delay: 1.8s !important;
}
.show .delay-10 {
  transition-delay: 2s !important;
}
.show .delay-11 {
  transition-delay: 2.2s !important;
}
.show .delay-12 {
  transition-delay: 2.4s !important;
}
.show .delay-13 {
  transition-delay: 2.6s !important;
}
.show .delay-14 {
  transition-delay: 2.8s !important;
}
.show .delay-15 {
  transition-delay: 3s !important;
}
.loaded .show .enter-y,
.loaded .show .enter-x,
.loaded .show .enter-y-r,
.loaded .show .enter-x-r {
  opacity: 1;
  transform: translate(0);
}
@keyframes upDown {
  to {
    transform: translatey(100px);
  }
}
@keyframes translate {
  to {
    transform: translatex(120vw);
  }
}
@keyframes translateR {
  to {
    transform: translatex(calc(100% + 100px));
  }
}
@keyframes hover-in {
  0% {
    width: 0;
  }
  100% {
    width: calc(100% - 20px);
  }
}
@-webkit-keyframes hover-in {
  0% {
    width: 0;
  }
  100% {
    width: calc(100% - 20px);
  }
}
@keyframes hover-out {
  0% {
    width: calc(100% - 20px);
    right: 10px;
    left: auto;
  }
  100% {
    width: 0;
    padding: 0;
    right: 10px;
    left: auto;
  }
}
@-webkit-keyframes hover-out {
  0% {
    width: calc(100% - 20px);
    right: 10px;
    left: auto;
  }
  100% {
    width: 0;
    padding: 0;
    right: 10px;
    left: auto;
  }
}
@keyframes floating {
  from {
    transform: translate(0, 0);
  }
  65% {
    transform: translate(0, 6px);
  }
  to {
    transform: translate(0, 0);
  }
}


@keyframes floating-new {
  from {
    transform: rotate(45.18deg) translateY(0);

  }
  30% {
    transform: rotate(45.18deg) translateY(25px);
  }
  to {
    transform: rotate(45.18deg) translateY(0px);
  }
}


@keyframes floating-new-slower {
  from {
    transform: translate(0, 0);

  }
  60% {
    transform: translate(0, 10px);
  }
  to {
    transform: translate(0, 0);
  }
}


@keyframes floating-new-faster {
  from {
    transform: translate(0, 0);

  }
  34% {
    transform: translate(0, 25px);
  }
  to {
    transform: translate(0, 0);
  }
}
@keyframes opacity {
  from {
    opacity: 0.5;
  }
  65% {
    opacity: 1;
  }
  to {
    opacity: 0.5;
  }
}
