.delay {
	animation-delay: 0.3s;
}
/* ======================================== */
/* ==== tuesday.less ====================== */
/* ==== A quirky CSS Animation Library ==== */
/* ======================================== */
.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -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(-30px);
            transform: translateX(-30px);
    -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;
}
/* Expand Entrances */
@-webkit-keyframes tdExpandIn {
  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 tdExpandIn {
  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 tdExpandInBounce {
  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 tdExpandInBounce {
  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;
  }
}
.tdExpandIn {
  -webkit-animation-name: tdExpandIn;
          animation-name: tdExpandIn;
}
.tdExpandInBounce {
  -webkit-animation-name: tdExpandInBounce;
          animation-name: tdExpandInBounce;
}
/* Expand Exits */
@-webkit-keyframes tdExpandOut {
  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(1.2);
            transform: scale(1.2);
  }
}
@keyframes tdExpandOut {
  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(1.2);
            transform: scale(1.2);
  }
}
@-webkit-keyframes tdExpandOutBounce {
  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(0.95);
            transform: scale(0.95);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
@keyframes tdExpandOutBounce {
  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(0.95);
            transform: scale(0.95);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.tdExpandOut {
  -webkit-animation-name: tdExpandOut;
          animation-name: tdExpandOut;
}
.tdExpandOutBounce {
  -webkit-animation-name: tdExpandOutBounce;
          animation-name: tdExpandOutBounce;
}
/* Shrink Entrances */
@-webkit-keyframes tdShrinkIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -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 tdShrinkIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -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 tdShrinkInBounce {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -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(0.95);
            transform: scale(0.95);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes tdShrinkInBounce {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    -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(0.95);
            transform: scale(0.95);
    -webkit-animation-timing-function: ease;
            animation-timing-function: ease;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.tdShrinkIn {
  -webkit-animation-name: tdShrinkIn;
          animation-name: tdShrinkIn;
}
.tdShrinkInBounce {
  -webkit-animation-name: tdShrinkInBounce;
          animation-name: tdShrinkInBounce;
}
/* Shrink Exits */
@-webkit-keyframes tdShrinkOut {
  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 tdShrinkOut {
  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 tdShrinkOutBounce {
  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 tdShrinkOutBounce {
  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;
  }
}
.tdShrinkOut {
  -webkit-animation-name: tdShrinkOut;
          animation-name: tdShrinkOut;
}
.tdShrinkOutBounce {
  -webkit-animation-name: tdShrinkOutBounce;
          animation-name: tdShrinkOutBounce;
}
/* Stamp Entrances */
@-webkit-keyframes tdStampIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    -webkit-animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
            animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 1;
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes tdStampIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    -webkit-animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
            animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 1;
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes tdStampInSwing {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.3) rotate(-10deg);
            transform: scale(1.3) rotate(-10deg);
    -webkit-animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
            animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 1;
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
}
@keyframes tdStampInSwing {
  0% {
    opacity: 0;
    -webkit-transform: scale(1.3) rotate(-10deg);
            transform: scale(1.3) rotate(-10deg);
    -webkit-animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
            animation-timing-function: cubic-bezier(0.59, 0, 1, 0.375);
  }
  50% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    opacity: 1;
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1) rotate(0);
            transform: scale(1) rotate(0);
  }
}
.tdStampIn {
  -webkit-animation-name: tdStampIn;
          animation-name: tdStampIn;
}
.tdStampInSwing {
  -webkit-animation-name: tdStampInSwing;
          animation-name: tdStampInSwing;
}
/* 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;
}
/* Plop Entrances */
@-webkit-keyframes tdPlopIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
  }
  10% {
    opacity: 1;
    -webkit-transform: scale(0.7, 1.3);
            transform: scale(0.7, 1.3);
  }
  70% {
    -webkit-transform: scale(1.1, 0.95);
            transform: scale(1.1, 0.95);
  }
  90% {
    -webkit-transform: scale(0.97, 1.05);
            transform: scale(0.97, 1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes tdPlopIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9, 0.9);
            transform: scale(0.9, 0.9);
  }
  10% {
    opacity: 1;
    -webkit-transform: scale(0.7, 1.3);
            transform: scale(0.7, 1.3);
  }
  70% {
    -webkit-transform: scale(1.1, 0.95);
            transform: scale(1.1, 0.95);
  }
  90% {
    -webkit-transform: scale(0.97, 1.05);
            transform: scale(0.97, 1.05);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@-webkit-keyframes tdPlopInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9, 0.8);
            transform: scale(0.9, 0.8);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  10% {
    opacity: 1;
    -webkit-transform: scale(0.8, 1.3);
            transform: scale(0.8, 1.3);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  70% {
    -webkit-transform: scale(1, 0.95);
            transform: scale(1, 0.95);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
}
@keyframes tdPlopInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9, 0.8);
            transform: scale(0.9, 0.8);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  10% {
    opacity: 1;
    -webkit-transform: scale(0.8, 1.3);
            transform: scale(0.8, 1.3);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  70% {
    -webkit-transform: scale(1, 0.95);
            transform: scale(1, 0.95);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center top;
            transform-origin: center top;
  }
}
@-webkit-keyframes tdPlopInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9, 0.8);
            transform: scale(0.9, 0.8);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  10% {
    opacity: 1;
    -webkit-transform: scale(0.8, 1.3);
            transform: scale(0.8, 1.3);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  70% {
    -webkit-transform: scale(1, 0.95);
            transform: scale(1, 0.95);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
}
@keyframes tdPlopInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.9, 0.8);
            transform: scale(0.9, 0.8);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  10% {
    opacity: 1;
    -webkit-transform: scale(0.8, 1.3);
            transform: scale(0.8, 1.3);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  70% {
    -webkit-transform: scale(1, 0.95);
            transform: scale(1, 0.95);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center bottom;
            transform-origin: center bottom;
  }
}
.tdPlopIn {
  -webkit-animation-name: tdPlopIn;
          animation-name: tdPlopIn;
}
.tdPlopInDown {
  -webkit-animation-name: tdPlopInDown;
          animation-name: tdPlopInDown;
}
.tdPlopInUp {
  -webkit-animation-name: tdPlopInUp;
          animation-name: tdPlopInUp;
}

