/* ======================================== */
/* ==== tuesday.less ====================== */
/* ==== A quirky CSS Animation Library ==== */
/* ======================================== */
.animated {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
/* Basic Fades */
@-webkit-keyframes tdFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tdFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes tdFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes tdFadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.tdFadeIn {
  -webkit-animation-name: tdFadeIn;
          animation-name: tdFadeIn;
}
.tdFadeOut {
  -webkit-animation-name: tdFadeOut;
          animation-name: tdFadeOut;
}
/* Fading Entrances */
@-webkit-keyframes tdFadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes tdFadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes tdFadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes tdFadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@-webkit-keyframes tdFadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes tdFadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes tdFadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@keyframes tdFadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.tdFadeInDown {
  -webkit-animation-name: tdFadeInDown;
          animation-name: tdFadeInDown;
}
.tdFadeInLeft {
  -webkit-animation-name: tdFadeInLeft;
          animation-name: tdFadeInLeft;
}
.tdFadeInUp {
  -webkit-animation-name: tdFadeInUp;
          animation-name: tdFadeInUp;
}
.tdFadeInRight {
  -webkit-animation-name: tdFadeInRight;
          animation-name: tdFadeInRight;
}
/* Fading Exits */
@-webkit-keyframes tdFadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@keyframes tdFadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-10px);
            transform: translateY(-10px);
  }
}
@-webkit-keyframes tdFadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
@keyframes tdFadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
}
@-webkit-keyframes tdFadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@keyframes tdFadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
}
@-webkit-keyframes tdFadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}
@keyframes tdFadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
}
.tdFadeOutUp {
  -webkit-animation-name: tdFadeOutUp;
          animation-name: tdFadeOutUp;
}
.tdFadeOutRight {
  -webkit-animation-name: tdFadeOutRight;
          animation-name: tdFadeOutRight;
}
.tdFadeOutDown {
  -webkit-animation-name: tdFadeOutDown;
          animation-name: tdFadeOutDown;
}
.tdFadeOutLeft {
  -webkit-animation-name: tdFadeOutLeft;
          animation-name: tdFadeOutLeft;
}
/* Zoom In */
@-webkit-keyframes tdZoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes tdZoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes tdZoomInBounce {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  70% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}
@keyframes tdZoomInBounce {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  70% {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}
.tdZoomIn {
  -webkit-animation-name: tdZoomIn;
          animation-name: tdZoomIn;
}
.tdZoomInBounce {
  -webkit-animation-name: tdZoomInBounce;
          animation-name: tdZoomInBounce;
}
/* Zoom Out */
@-webkit-keyframes tdZoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}
@keyframes tdZoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}
@-webkit-keyframes tdZoomOutBounce {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  30% {
    opacity: 1;
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}
@keyframes tdZoomOutBounce {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  30% {
    opacity: 1;
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.85);
            transform: scale(0.85);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}
.tdZoomOut {
  -webkit-animation-name: tdZoomOut;
          animation-name: tdZoomOut;
}
.tdZoomOutBounce {
  -webkit-animation-name: tdZoomOutBounce;
          animation-name: tdZoomOutBounce;
}
/* Swing */
@-webkit-keyframes tdSwingIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-10deg) scale(0.85);
            transform: rotate(-10deg) scale(0.85);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  70% {
    opacity: 1;
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}
@keyframes tdSwingIn {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-10deg) scale(0.85);
            transform: rotate(-10deg) scale(0.85);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  70% {
    opacity: 1;
    -webkit-transform: rotate(1deg);
            transform: rotate(1deg);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}
@-webkit-keyframes tdSwingOut {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  30% {
    opacity: 1;
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(10deg) scale(0.85);
            transform: rotate(10deg) scale(0.85);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}
@keyframes tdSwingOut {
  0% {
    opacity: 1;
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  30% {
    opacity: 1;
    -webkit-transform: rotate(-1deg);
            transform: rotate(-1deg);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 0;
    -webkit-transform: rotate(10deg) scale(0.85);
            transform: rotate(10deg) scale(0.85);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
}
.tdSwingIn {
  -webkit-animation-name: tdSwingIn;
          animation-name: tdSwingIn;
}
.tdSwingOut {
  -webkit-animation-name: tdSwingOut;
          animation-name: tdSwingOut;
}
/* Hinge Flip */
@-webkit-keyframes tdHingeFlipIn {
  0% {
    opacity: 0;
    -webkit-transform: perspective(600px) rotateX(0deg);
            transform: perspective(600px) rotateX(0deg);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  50% {
    -webkit-transform: perspective(600px) rotateX(-10deg);
            transform: perspective(600px) rotateX(-10deg);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(600px) rotateX(0deg);
            transform: perspective(600px) rotateX(0deg);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes tdHingeFlipIn {
  0% {
    opacity: 0;
    -webkit-transform: perspective(600px) rotateX(0deg);
            transform: perspective(600px) rotateX(0deg);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  50% {
    -webkit-transform: perspective(600px) rotateX(-10deg);
            transform: perspective(600px) rotateX(-10deg);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    opacity: 1;
    -webkit-transform: perspective(600px) rotateX(0deg);
            transform: perspective(600px) rotateX(0deg);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
.tdHingeFlipIn {
  -webkit-animation-name: tdHingeFlipIn;
          animation-name: tdHingeFlipIn;
}
@-webkit-keyframes tdHingeFlipOut {
  0% {
    opacity: 1;
    -webkit-transform: perspective(600px) rotateX(0deg);
            transform: perspective(600px) rotateX(0deg);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  50% {
    -webkit-transform: perspective(600px) rotateX(-10deg);
            transform: perspective(600px) rotateX(-10deg);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(600px) rotateX(0deg);
            transform: perspective(600px) rotateX(0deg);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes tdHingeFlipOut {
  0% {
    opacity: 1;
    -webkit-transform: perspective(600px) rotateX(0deg);
            transform: perspective(600px) rotateX(0deg);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
  50% {
    -webkit-transform: perspective(600px) rotateX(-10deg);
            transform: perspective(600px) rotateX(-10deg);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  100% {
    opacity: 0;
    -webkit-transform: perspective(600px) rotateX(0deg);
            transform: perspective(600px) rotateX(0deg);
    -webkit-transform-origin: center top;
            transform-origin: center top;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
.tdHingeFlipOut {
  -webkit-animation-name: tdHingeFlipOut;
          animation-name: tdHingeFlipOut;
}
/* Drop In */
@-webkit-keyframes tdDropInLeft {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 1;
    -webkit-transform: rotate(2deg) translateY(-15px);
            transform: rotate(2deg) translateY(-15px);
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  50% {
    opacity: 1;
    -webkit-transform: rotate(0) translateY(0px);
            transform: rotate(0) translateY(0px);
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  75% {
    -webkit-transform: rotate(-0.5deg) translateY(0px);
            transform: rotate(-0.5deg) translateY(0px);
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
            animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0) translateY(0px);
            transform: rotate(0) translateY(0px);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
}
@keyframes tdDropInLeft {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 1;
    -webkit-transform: rotate(2deg) translateY(-15px);
            transform: rotate(2deg) translateY(-15px);
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  50% {
    opacity: 1;
    -webkit-transform: rotate(0) translateY(0px);
            transform: rotate(0) translateY(0px);
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  75% {
    -webkit-transform: rotate(-0.5deg) translateY(0px);
            transform: rotate(-0.5deg) translateY(0px);
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
            animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0) translateY(0px);
            transform: rotate(0) translateY(0px);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
}
@-webkit-keyframes tdDropInRight {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 1;
    -webkit-transform: rotate(-2deg) translateY(-15px);
            transform: rotate(-2deg) translateY(-15px);
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  50% {
    opacity: 1;
    -webkit-transform: rotate(0) translateY(0px);
            transform: rotate(0) translateY(0px);
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  75% {
    -webkit-transform: rotate(0.5deg) translateY(0px);
            transform: rotate(0.5deg) translateY(0px);
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
            animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0) translateY(0px);
            transform: rotate(0) translateY(0px);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
}
@keyframes tdDropInRight {
  0% {
    opacity: 0;
  }
  1% {
    opacity: 1;
    -webkit-transform: rotate(-2deg) translateY(-15px);
            transform: rotate(-2deg) translateY(-15px);
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  50% {
    opacity: 1;
    -webkit-transform: rotate(0) translateY(0px);
            transform: rotate(0) translateY(0px);
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  75% {
    -webkit-transform: rotate(0.5deg) translateY(0px);
            transform: rotate(0.5deg) translateY(0px);
    -webkit-transform-origin: right bottom;
            transform-origin: right bottom;
    -webkit-animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
            animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0) translateY(0px);
            transform: rotate(0) translateY(0px);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
            animation-timing-function: cubic-bezier(0, 0.59, 0.375, 1);
  }
}
.tdDropInLeft {
  -webkit-animation-name: tdDropInLeft;
          animation-name: tdDropInLeft;
}
.tdDropInRight {
  -webkit-animation-name: tdDropInRight;
          animation-name: tdDropInRight;
}
