/* Table of contents
––––––––––––––––––––––––––––––––––––––––––––––––––
- Button hover animations
- Entrance animations

*/

/* Button hover animations
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.hover-grow {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	transition-duration: .3s;
	transition-property: transform
}

.hover-grow:active,
.hover-grow:focus,
.hover-grow:hover {
	transform: scale(1.1)
}

.hover-shrink {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	transition-duration: .3s;
	transition-property: transform
}

.hover-shrink:active,
.hover-shrink:focus,
.hover-shrink:hover {
	transform: scale(0.9)
}

@keyframes hover-pulse {
	25% {
		transform: scale(1.1)
	}

	75% {
		transform: scale(0.9)
	}
}

.hover-pulse {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
}

.hover-pulse:active,
.hover-pulse:focus,
.hover-pulse:hover {
	animation-name: hover-pulse;
	animation-duration: 1s;
	animation-timing-function: linear;
	animation-iteration-count: infinite
}

@keyframes hover-pulse-grow {
	to {
		transform: scale(1.1)
	}
}

.hover-pulse-grow {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
}

.hover-pulse-grow:active,
.hover-pulse-grow:focus,
.hover-pulse-grow:hover {
	animation-name: hover-pulse-grow;
	animation-duration: .3s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate
}

@keyframes hover-pulse-shrink {
	to {
		transform: scale(0.9)
	}
}

.hover-pulse-shrink {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
}

.hover-pulse-shrink:active,
.hover-pulse-shrink:focus,
.hover-pulse-shrink:hover {
	animation-name: hover-pulse-shrink;
	animation-duration: .3s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate
}

@keyframes hover-push {
	50% {
		transform: scale(0.8)
	}

	100% {
		transform: scale(1)
	}
}

.hover-push {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
}

.hover-push:active,
.hover-push:focus,
.hover-push:hover {
	animation-name: hover-push;
	animation-duration: .3s;
	animation-timing-function: linear;
	animation-iteration-count: 1
}

@keyframes hover-pop {
	50% {
		transform: scale(1.2)
	}
}

.hover-pop {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
}

.hover-pop:active,
.hover-pop:focus,
.hover-pop:hover {
	animation-name: hover-pop;
	animation-duration: .3s;
	animation-timing-function: linear;
	animation-iteration-count: 1
}

.hover-bounce-in {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	transition-duration: .5s
}

.hover-bounce-in:active,
.hover-bounce-in:focus,
.hover-bounce-in:hover {
	transform: scale(1.2);
	transition-timing-function: cubic-bezier(0.47, 2.02, .31, -.36)
}

.hover-bounce-out {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	transition-duration: .5s
}

.hover-bounce-out:active,
.hover-bounce-out:focus,
.hover-bounce-out:hover {
	transform: scale(0.8);
	transition-timing-function: cubic-bezier(0.47, 2.02, .31, -.36)
}

.hover-rotate {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	transition-duration: .3s;
	transition-property: transform
}

.hover-rotate:active,
.hover-rotate:focus,
.hover-rotate:hover {
	transform: rotate(4deg)
}

.hover-grow-rotate {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	transition-duration: .3s;
	transition-property: transform
}

.hover-grow-rotate:active,
.hover-grow-rotate:focus,
.hover-grow-rotate:hover {
	transform: scale(1.1) rotate(4deg)
}

.hover-float {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	transition-duration: .3s;
	transition-property: transform;
	transition-timing-function: ease-out
}

.hover-float:active,
.hover-float:focus,
.hover-float:hover {
	transform: translateY(-8px)
}

.hover-sink {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	transition-duration: .3s;
	transition-property: transform;
	transition-timing-function: ease-out
}

.hover-sink:active,
.hover-sink:focus,
.hover-sink:hover {
	transform: translateY(8px)
}

@keyframes hover-bob {
	0% {
		transform: translateY(-8px)
	}

	50% {
		transform: translateY(-4px)
	}

	100% {
		transform: translateY(-8px)
	}
}

@keyframes hover-bob-float {
	100% {
		transform: translateY(-8px)
	}
}

.hover-bob {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
}

.hover-bob:active,
.hover-bob:focus,
.hover-bob:hover {
	animation-name: hover-bob-float, hover-bob;
	animation-duration: .3s, 1.5s;
	animation-delay: 0s, .3s;
	animation-timing-function: ease-out, ease-in-out;
	animation-iteration-count: 1, infinite;
	animation-fill-mode: forwards;
	animation-direction: normal, alternate
}

@keyframes hover-hang {
	0% {
		transform: translateY(8px)
	}

	50% {
		transform: translateY(4px)
	}

	100% {
		transform: translateY(8px)
	}
}

@keyframes hover-hang-sink {
	100% {
		transform: translateY(8px)
	}
}

.hover-hang {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
}

.hover-hang:active,
.hover-hang:focus,
.hover-hang:hover {
	animation-name: hover-hang-sink, hover-hang;
	animation-duration: .3s, 1.5s;
	animation-delay: 0s, .3s;
	animation-timing-function: ease-out, ease-in-out;
	animation-iteration-count: 1, infinite;
	animation-fill-mode: forwards;
	animation-direction: normal, alternate
}

.hover-skew {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	transition-duration: .3s;
	transition-property: transform
}

.hover-skew:active,
.hover-skew:focus,
.hover-skew:hover {
	transform: skew(-10deg)
}

.hover-skew-forward {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	transition-duration: .3s;
	transition-property: transform;
	transform-origin: 0 100%
}

.hover-skew-forward:active,
.hover-skew-forward:focus,
.hover-skew-forward:hover {
	transform: skew(-10deg)
}

.hover-skew-backward {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	transition-duration: .3s;
	transition-property: transform;
	transform-origin: 0 100%
}

.hover-skew-backward:active,
.hover-skew-backward:focus,
.hover-skew-backward:hover {
	transform: skew(10deg)
}

@keyframes hover-wobble-vertical {
	16.65% {
		transform: translateY(8px)
	}

	33.3% {
		transform: translateY(-6px)
	}

	49.95% {
		transform: translateY(4px)
	}

	66.6% {
		transform: translateY(-2px)
	}

	83.25% {
		transform: translateY(1px)
	}

	100% {
		transform: translateY(0)
	}
}

.hover-wobble-vertical {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
}

.hover-wobble-vertical:active,
.hover-wobble-vertical:focus,
.hover-wobble-vertical:hover {
	animation-name: hover-wobble-vertical;
	animation-duration: 1s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1
}

@keyframes hover-wobble-horizontal {
	16.65% {
		transform: translateX(8px)
	}

	33.3% {
		transform: translateX(-6px)
	}

	49.95% {
		transform: translateX(4px)
	}

	66.6% {
		transform: translateX(-2px)
	}

	83.25% {
		transform: translateX(1px)
	}

	100% {
		transform: translateX(0)
	}
}

.hover-wobble-horizontal {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
}

.hover-wobble-horizontal:active,
.hover-wobble-horizontal:focus,
.hover-wobble-horizontal:hover {
	animation-name: hover-wobble-horizontal;
	animation-duration: 1s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1
}

@keyframes hover-wobble-to-bottom-right {
	16.65% {
		transform: translate(8px, 8px)
	}

	33.3% {
		transform: translate(-6px, -6px)
	}

	49.95% {
		transform: translate(4px, 4px)
	}

	66.6% {
		transform: translate(-2px, -2px)
	}

	83.25% {
		transform: translate(1px, 1px)
	}

	100% {
		transform: translate(0, 0)
	}
}

.hover-wobble-to-bottom-right {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
}

.hover-wobble-to-bottom-right:active,
.hover-wobble-to-bottom-right:focus,
.hover-wobble-to-bottom-right:hover {
	animation-name: hover-wobble-to-bottom-right;
	animation-duration: 1s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1
}

@keyframes hover-wobble-to-top-right {
	16.65% {
		transform: translate(8px, -8px)
	}

	33.3% {
		transform: translate(-6px, 6px)
	}

	49.95% {
		transform: translate(4px, -4px)
	}

	66.6% {
		transform: translate(-2px, 2px)
	}

	83.25% {
		transform: translate(1px, -1px)
	}

	100% {
		transform: translate(0, 0)
	}
}

.hover-wobble-to-top-right {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
}

.hover-wobble-to-top-right:active,
.hover-wobble-to-top-right:focus,
.hover-wobble-to-top-right:hover {
	animation-name: hover-wobble-to-top-right;
	animation-duration: 1s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1
}

@keyframes hover-wobble-top {
	16.65% {
		transform: skew(-12deg)
	}

	33.3% {
		transform: skew(10deg)
	}

	49.95% {
		transform: skew(-6deg)
	}

	66.6% {
		transform: skew(4deg)
	}

	83.25% {
		transform: skew(-2deg)
	}

	100% {
		transform: skew(0)
	}
}

.hover-wobble-top {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	transform-origin: 0 100%
}

.hover-wobble-top:active,
.hover-wobble-top:focus,
.hover-wobble-top:hover {
	animation-name: hover-wobble-top;
	animation-duration: 1s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1
}

@keyframes hover-wobble-bottom {
	16.65% {
		transform: skew(-12deg)
	}

	33.3% {
		transform: skew(10deg)
	}

	49.95% {
		transform: skew(-6deg)
	}

	66.6% {
		transform: skew(4deg)
	}

	83.25% {
		transform: skew(-2deg)
	}

	100% {
		transform: skew(0)
	}
}

.hover-wobble-bottom {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	transform-origin: 100% 0
}

.hover-wobble-bottom:active,
.hover-wobble-bottom:focus,
.hover-wobble-bottom:hover {
	animation-name: hover-wobble-bottom;
	animation-duration: 1s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1
}

@keyframes hover-wobble-skew {
	16.65% {
		transform: skew(-12deg)
	}

	33.3% {
		transform: skew(10deg)
	}

	49.95% {
		transform: skew(-6deg)
	}

	66.6% {
		transform: skew(4deg)
	}

	83.25% {
		transform: skew(-2deg)
	}

	100% {
		transform: skew(0)
	}
}

.hover-wobble-skew {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
}

.hover-wobble-skew:active,
.hover-wobble-skew:focus,
.hover-wobble-skew:hover {
	animation-name: hover-wobble-skew;
	animation-duration: 1s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: 1
}

@keyframes hover-buzz {
	50% {
		transform: translateX(3px) rotate(2deg)
	}

	100% {
		transform: translateX(-3px) rotate(-2deg)
	}
}

.hover-buzz {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
}

.hover-buzz:active,
.hover-buzz:focus,
.hover-buzz:hover {
	animation-name: hover-buzz;
	animation-duration: .15s;
	animation-timing-function: linear;
	animation-iteration-count: infinite
}

@keyframes hover-buzz-out {
	10% {
		transform: translateX(3px) rotate(2deg)
	}

	20% {
		transform: translateX(-3px) rotate(-2deg)
	}

	30% {
		transform: translateX(3px) rotate(2deg)
	}

	40% {
		transform: translateX(-3px) rotate(-2deg)
	}

	50% {
		transform: translateX(2px) rotate(1deg)
	}

	60% {
		transform: translateX(-2px) rotate(-1deg)
	}

	70% {
		transform: translateX(2px) rotate(1deg)
	}

	80% {
		transform: translateX(-2px) rotate(-1deg)
	}

	90% {
		transform: translateX(1px) rotate(0)
	}

	100% {
		transform: translateX(-1px) rotate(0)
	}
}

.hover-buzz-out {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
}

.hover-buzz-out:active,
.hover-buzz-out:focus,
.hover-buzz-out:hover {
	animation-name: hover-buzz-out;
	animation-duration: .75s;
	animation-timing-function: linear;
	animation-iteration-count: 1
}

.hover-forward {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	transition-duration: .3s;
	transition-property: transform
}

.hover-forward:active,
.hover-forward:focus,
.hover-forward:hover {
	transform: translateX(8px)
}

.hover-grow-shadow {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	transition-duration: .3s;
}

.hover-grow-shadow:active,
.hover-grow-shadow:focus,
.hover-grow-shadow:hover {
	transform: scale(1.1)
}

.hover-float-shadow {
	vertical-align: middle;
	transform: perspective(1px) translateZ(0);
	position: relative;
	transition-duration: .3s;
	transition-property: transform
}

.hover-float-shadow:before {
	pointer-events: none;
	position: absolute;
	z-index: -1;
	content: '';
	top: 100%;
	left: 5%;
	height: 10px;
	width: 90%;
	opacity: 0;
	background: radial-gradient(ellipse at center, rgba(0, 0, 0, .35) 0, rgba(0, 0, 0, 0) 80%);
	transition-duration: .3s;
	transition-property: transform, opacity
}

.hover-float-shadow:active,
.hover-float-shadow:focus,
.hover-float-shadow:hover {
	transform: translateY(-5px)
}

.hover-float-shadow:active:before,
.hover-float-shadow:focus:before,
.hover-float-shadow:hover:before {
	opacity: 1;
	transform: translateY(5px)
}

/* Entrance animations
–––––––––––––––––––––––––––––––––––––––––––––––––– */

.entrance-popup {
	animation-name: popUp;
}

@keyframes popUp {
	from {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
		opacity: 1;
	}
}

@keyframes bounce {

	0%,
	20%,
	53%,
	to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		transform: translateZ(0)
	}

	40%,
	43% {
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		transform: translate3d(0, -30px, 0) scaleY(1.1)
	}

	70% {
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		transform: translate3d(0, -15px, 0) scaleY(1.05)
	}

	80% {
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transform: translateZ(0) scaleY(.95)
	}

	90% {
		transform: translate3d(0, -4px, 0) scaleY(1.02)
	}
}

.entrance-bounce {
	animation-name: bounce;
	transform-origin: center bottom
}

@keyframes flash {

	0%,
	50%,
	to {
		opacity: 1
	}

	25%,
	75% {
		opacity: 0
	}
}

.entrance-flash {
	animation-name: flash
}

@keyframes pulse {
	0% {
		transform: scaleX(1)
	}

	50% {
		transform: scale3d(1.05, 1.05, 1.05)
	}

	to {
		transform: scaleX(1)
	}
}

.entrance-pulse {
	animation-name: pulse;
	animation-timing-function: ease-in-out
}

@keyframes rubberBand {
	0% {
		transform: scaleX(1)
	}

	30% {
		transform: scale3d(1.25, .75, 1)
	}

	40% {
		transform: scale3d(.75, 1.25, 1)
	}

	50% {
		transform: scale3d(1.15, .85, 1)
	}

	65% {
		transform: scale3d(.95, 1.05, 1)
	}

	75% {
		transform: scale3d(1.05, .95, 1)
	}

	to {
		transform: scaleX(1)
	}
}

.entrance-rubberBand {
	animation-name: rubberBand
}

@keyframes shakeX {

	0%,
	to {
		transform: translateZ(0)
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translate3d(-10px, 0, 0)
	}

	20%,
	40%,
	60%,
	80% {
		transform: translate3d(10px, 0, 0)
	}
}

.entrance-shakeX {
	animation-name: shakeX
}

@keyframes shakeY {

	0%,
	to {
		transform: translateZ(0)
	}

	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translate3d(0, -10px, 0)
	}

	20%,
	40%,
	60%,
	80% {
		transform: translate3d(0, 10px, 0)
	}
}

.entrance-shakeY {
	animation-name: shakeY
}

@keyframes headShake {
	0% {
		transform: translateX(0)
	}

	6.5% {
		transform: translateX(-6px) rotateY(-9deg)
	}

	18.5% {
		transform: translateX(5px) rotateY(7deg)
	}

	31.5% {
		transform: translateX(-3px) rotateY(-5deg)
	}

	43.5% {
		transform: translateX(2px) rotateY(3deg)
	}

	50% {
		transform: translateX(0)
	}
}

.entrance-headShake {
	animation-timing-function: ease-in-out;
	animation-name: headShake
}

@keyframes swing {
	20% {
		transform: rotate(15deg)
	}

	40% {
		transform: rotate(-10deg)
	}

	60% {
		transform: rotate(5deg)
	}

	80% {
		transform: rotate(-5deg)
	}

	to {
		transform: rotate(0deg)
	}
}

.entrance-swing {
	transform-origin: top center;
	animation-name: swing
}

@keyframes tada {
	0% {
		transform: scaleX(1)
	}

	10%,
	20% {
		transform: scale3d(.9, .9, .9) rotate(-3deg)
	}

	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
	}

	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
	}

	to {
		transform: scaleX(1)
	}
}

.entrance-tada {
	animation-name: tada
}

@keyframes wobble {
	0% {
		transform: translateZ(0)
	}

	15% {
		transform: translate3d(-25%, 0, 0) rotate(-5deg)
	}

	30% {
		transform: translate3d(20%, 0, 0) rotate(3deg)
	}

	45% {
		transform: translate3d(-15%, 0, 0) rotate(-3deg)
	}

	60% {
		transform: translate3d(10%, 0, 0) rotate(2deg)
	}

	75% {
		transform: translate3d(-5%, 0, 0) rotate(-1deg)
	}

	to {
		transform: translateZ(0)
	}
}

.entrance-wobble {
	animation-name: wobble
}

@keyframes jello {

	0%,
	11.1%,
	to {
		transform: translateZ(0)
	}

	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}

	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg)
	}

	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}

	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}

	66.6% {
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}

	77.7% {
		transform: skewX(.390625deg) skewY(.390625deg)
	}

	88.8% {
		transform: skewX(-.1953125deg) skewY(-.1953125deg)
	}
}

.entrance-jello {
	animation-name: jello;
	transform-origin: center
}

@keyframes heartBeat {
	0% {
		transform: scale(1)
	}

	14% {
		transform: scale(1.3)
	}

	28% {
		transform: scale(1)
	}

	42% {
		transform: scale(1.3)
	}

	70% {
		transform: scale(1)
	}
}

.entrance-heartBeat {
	animation-name: heartBeat;
	animation-duration: 1.3s;
	animation-duration: calc(var(--animate-duration)*1.3);
	animation-timing-function: ease-in-out
}

@keyframes backInDown {
	0% {
		transform: translateY(-1200px) scale(.7);
		opacity: .7
	}

	80% {
		transform: translateY(0) scale(.7);
		opacity: .7
	}

	to {
		transform: scale(1);
		opacity: 1
	}
}

.entrance-backInDown {
	animation-name: backInDown
}

@keyframes backInLeft {
	0% {
		transform: translateX(-2000px) scale(.7);
		opacity: .7
	}

	80% {
		transform: translateX(0) scale(.7);
		opacity: .7
	}

	to {
		transform: scale(1);
		opacity: 1
	}
}

.entrance-backInLeft {
	animation-name: backInLeft
}

@keyframes backInRight {
	0% {
		transform: translateX(2000px) scale(.7);
		opacity: .7
	}

	80% {
		transform: translateX(0) scale(.7);
		opacity: .7
	}

	to {
		transform: scale(1);
		opacity: 1
	}
}

.entrance-backInRight {
	animation-name: backInRight
}

@keyframes backInUp {
	0% {
		transform: translateY(1200px) scale(.7);
		opacity: .7
	}

	80% {
		transform: translateY(0) scale(.7);
		opacity: .7
	}

	to {
		transform: scale(1);
		opacity: 1
	}
}

.entrance-backInUp {
	animation-name: backInUp
}

@keyframes backOutDown {
	0% {
		transform: scale(1);
		opacity: 1
	}

	20% {
		transform: translateY(0) scale(.7);
		opacity: .7
	}

	to {
		transform: translateY(700px) scale(.7);
		opacity: .7
	}
}

.entrance-backOutDown {
	animation-name: backOutDown
}

@keyframes backOutLeft {
	0% {
		transform: scale(1);
		opacity: 1
	}

	20% {
		transform: translateX(0) scale(.7);
		opacity: .7
	}

	to {
		transform: translateX(-2000px) scale(.7);
		opacity: .7
	}
}

.entrance-backOutLeft {
	animation-name: backOutLeft
}

@keyframes backOutRight {
	0% {
		transform: scale(1);
		opacity: 1
	}

	20% {
		transform: translateX(0) scale(.7);
		opacity: .7
	}

	to {
		transform: translateX(2000px) scale(.7);
		opacity: .7
	}
}

.entrance-backOutRight {
	animation-name: backOutRight
}

@keyframes backOutUp {
	0% {
		transform: scale(1);
		opacity: 1
	}

	20% {
		transform: translateY(0) scale(.7);
		opacity: .7
	}

	to {
		transform: translateY(-700px) scale(.7);
		opacity: .7
	}
}

.entrance-backOutUp {
	animation-name: backOutUp
}

@keyframes bounceIn {

	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		transform: scale3d(.3, .3, .3)
	}

	20% {
		transform: scale3d(1.1, 1.1, 1.1)
	}

	40% {
		transform: scale3d(.9, .9, .9)
	}

	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03)
	}

	80% {
		transform: scale3d(.97, .97, .97)
	}

	to {
		opacity: 1;
		transform: scaleX(1)
	}
}

.entrance-bounceIn {
	animation-duration: .75s;
	animation-duration: calc(var(--animate-duration)*0.75);
	animation-name: bounceIn
}

@keyframes bounceInDown {

	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0) scaleY(3)
	}

	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0) scaleY(.9)
	}

	75% {
		transform: translate3d(0, -10px, 0) scaleY(.95)
	}

	90% {
		transform: translate3d(0, 5px, 0) scaleY(.985)
	}

	to {
		transform: translateZ(0)
	}
}

.entrance-bounceInDown {
	animation-name: bounceInDown
}

@keyframes bounceInLeft {

	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0) scaleX(3)
	}

	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0) scaleX(1)
	}

	75% {
		transform: translate3d(-10px, 0, 0) scaleX(.98)
	}

	90% {
		transform: translate3d(5px, 0, 0) scaleX(.995)
	}

	to {
		transform: translateZ(0)
	}
}

.entrance-bounceInLeft {
	animation-name: bounceInLeft
}

@keyframes bounceInRight {

	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		transform: translate3d(3000px, 0, 0) scaleX(3)
	}

	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0) scaleX(1)
	}

	75% {
		transform: translate3d(10px, 0, 0) scaleX(.98)
	}

	90% {
		transform: translate3d(-5px, 0, 0) scaleX(.995)
	}

	to {
		transform: translateZ(0)
	}
}

.entrance-bounceInRight {
	animation-name: bounceInRight
}

@keyframes bounceInUp {

	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}

	0% {
		opacity: 0;
		transform: translate3d(0, 3000px, 0) scaleY(5)
	}

	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0) scaleY(.9)
	}

	75% {
		transform: translate3d(0, 10px, 0) scaleY(.95)
	}

	90% {
		transform: translate3d(0, -5px, 0) scaleY(.985)
	}

	to {
		transform: translateZ(0)
	}
}

.entrance-bounceInUp {
	animation-name: bounceInUp
}

@keyframes bounceOut {
	20% {
		transform: scale3d(.9, .9, .9)
	}

	50%,
	55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1)
	}

	to {
		opacity: 0;
		transform: scale3d(.3, .3, .3)
	}
}

.entrance-bounceOut {
	animation-duration: .75s;
	animation-duration: calc(var(--animate-duration)*0.75);
	animation-name: bounceOut
}

@keyframes bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0) scaleY(.985)
	}

	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0) scaleY(.9)
	}

	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0) scaleY(3)
	}
}

.entrance-bounceOutDown {
	animation-name: bounceOutDown
}

@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px, 0, 0) scaleX(.9)
	}

	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0) scaleX(2)
	}
}

.entrance-bounceOutLeft {
	animation-name: bounceOutLeft
}

@keyframes bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px, 0, 0) scaleX(.9)
	}

	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0) scaleX(2)
	}
}

.entrance-bounceOutRight {
	animation-name: bounceOutRight
}

@keyframes bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0) scaleY(.985)
	}

	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0) scaleY(.9)
	}

	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0) scaleY(3)
	}
}

.entrance-bounceOutUp {
	animation-name: bounceOutUp
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}

	to {
		opacity: 1
	}
}

.entrance-fadeIn {
	animation-name: fadeIn
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0, -100%, 0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.entrance-fadeInDown {
	animation-name: fadeInDown
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		transform: translate3d(0, -2000px, 0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.entrance-fadeInDownBig {
	animation-name: fadeInDownBig
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.entrance-fadeInLeft {
	animation-name: fadeInLeft
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.entrance-fadeInLeftBig {
	animation-name: fadeInLeftBig
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.entrance-fadeInRight {
	animation-name: fadeInRight
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		transform: translate3d(2000px, 0, 0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.entrance-fadeInRightBig {
	animation-name: fadeInRightBig
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 100%, 0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.entrance-fadeInUp {
	animation-name: fadeInUp
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		transform: translate3d(0, 2000px, 0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.entrance-fadeInUpBig {
	animation-name: fadeInUpBig
}

@keyframes fadeInTopLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%, -100%, 0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.entrance-fadeInTopLeft {
	animation-name: fadeInTopLeft
}

@keyframes fadeInTopRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, -100%, 0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.entrance-fadeInTopRight {
	animation-name: fadeInTopRight
}

@keyframes fadeInBottomLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 100%, 0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.entrance-fadeInBottomLeft {
	animation-name: fadeInBottomLeft
}

@keyframes fadeInBottomRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, 100%, 0)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.entrance-fadeInBottomRight {
	animation-name: fadeInBottomRight
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0
	}
}

.entrance-fadeOut {
	animation-name: fadeOut
}

@keyframes fadeOutDown {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(0, 100%, 0)
	}
}

.entrance-fadeOutDown {
	animation-name: fadeOutDown
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0)
	}
}

.entrance-fadeOutDownBig {
	animation-name: fadeOutDownBig
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(-100%, 0, 0)
	}
}

.entrance-fadeOutLeft {
	animation-name: fadeOutLeft
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0)
	}
}

.entrance-fadeOutLeftBig {
	animation-name: fadeOutLeftBig
}

@keyframes fadeOutRight {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0)
	}
}

.entrance-fadeOutRight {
	animation-name: fadeOutRight
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0)
	}
}

.entrance-fadeOutRightBig {
	animation-name: fadeOutRightBig
}

@keyframes fadeOutUp {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(0, -100%, 0)
	}
}

.entrance-fadeOutUp {
	animation-name: fadeOutUp
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0)
	}
}

.entrance-fadeOutUpBig {
	animation-name: fadeOutUpBig
}

@keyframes fadeOutTopLeft {
	0% {
		opacity: 1;
		transform: translateZ(0)
	}

	to {
		opacity: 0;
		transform: translate3d(-100%, -100%, 0)
	}
}

.entrance-fadeOutTopLeft {
	animation-name: fadeOutTopLeft
}

@keyframes fadeOutTopRight {
	0% {
		opacity: 1;
		transform: translateZ(0)
	}

	to {
		opacity: 0;
		transform: translate3d(100%, -100%, 0)
	}
}

.entrance-fadeOutTopRight {
	animation-name: fadeOutTopRight
}

@keyframes fadeOutBottomRight {
	0% {
		opacity: 1;
		transform: translateZ(0)
	}

	to {
		opacity: 0;
		transform: translate3d(100%, 100%, 0)
	}
}

.entrance-fadeOutBottomRight {
	animation-name: fadeOutBottomRight
}

@keyframes fadeOutBottomLeft {
	0% {
		opacity: 1;
		transform: translateZ(0)
	}

	to {
		opacity: 0;
		transform: translate3d(-100%, 100%, 0)
	}
}

.entrance-fadeOutBottomLeft {
	animation-name: fadeOutBottomLeft
}

@keyframes flip {
	0% {
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		animation-timing-function: ease-out
	}

	40% {
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		animation-timing-function: ease-out
	}

	50% {
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		animation-timing-function: ease-in
	}

	80% {
		transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0deg);
		animation-timing-function: ease-in
	}

	to {
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		animation-timing-function: ease-in
	}
}

.button-entrance.entrance-flip {
	backface-visibility: visible;
	animation-name: flip
}

@keyframes flipInX {
	0% {
		transform: perspective(400px) rotateX(90deg);
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		transform: perspective(400px) rotateX(-20deg);
		animation-timing-function: ease-in
	}

	60% {
		transform: perspective(400px) rotateX(10deg);
		opacity: 1
	}

	80% {
		transform: perspective(400px) rotateX(-5deg)
	}

	to {
		transform: perspective(400px)
	}
}

.entrance-flipInX {
	backface-visibility: visible !important;
	animation-name: flipInX
}

@keyframes flipInY {
	0% {
		transform: perspective(400px) rotateY(90deg);
		animation-timing-function: ease-in;
		opacity: 0
	}

	40% {
		transform: perspective(400px) rotateY(-20deg);
		animation-timing-function: ease-in
	}

	60% {
		transform: perspective(400px) rotateY(10deg);
		opacity: 1
	}

	80% {
		transform: perspective(400px) rotateY(-5deg)
	}

	to {
		transform: perspective(400px)
	}
}

.entrance-flipInY {
	backface-visibility: visible !important;
	animation-name: flipInY
}

@keyframes flipOutX {
	0% {
		transform: perspective(400px)
	}

	30% {
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1
	}

	to {
		transform: perspective(400px) rotateX(90deg);
		opacity: 0
	}
}

.entrance-flipOutX {
	animation-duration: .75s;
	animation-duration: calc(var(--animate-duration)*0.75);
	animation-name: flipOutX;
	backface-visibility: visible !important
}

@keyframes flipOutY {
	0% {
		transform: perspective(400px)
	}

	30% {
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1
	}

	to {
		transform: perspective(400px) rotateY(90deg);
		opacity: 0
	}
}

.entrance-flipOutY {
	animation-duration: .75s;
	animation-duration: calc(var(--animate-duration)*0.75);
	backface-visibility: visible !important;
	animation-name: flipOutY
}

@keyframes lightSpeedInRight {
	0% {
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0
	}

	60% {
		transform: skewX(20deg);
		opacity: 1
	}

	80% {
		transform: skewX(-5deg)
	}

	to {
		transform: translateZ(0)
	}
}

.entrance-lightSpeedInRight {
	animation-name: lightSpeedInRight;
	animation-timing-function: ease-out
}

@keyframes lightSpeedInLeft {
	0% {
		transform: translate3d(-100%, 0, 0) skewX(30deg);
		opacity: 0
	}

	60% {
		transform: skewX(-20deg);
		opacity: 1
	}

	80% {
		transform: skewX(5deg)
	}

	to {
		transform: translateZ(0)
	}
}

.entrance-lightSpeedInLeft {
	animation-name: lightSpeedInLeft;
	animation-timing-function: ease-out
}

@keyframes lightSpeedOutRight {
	0% {
		opacity: 1
	}

	to {
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0
	}
}

.entrance-lightSpeedOutRight {
	animation-name: lightSpeedOutRight;
	animation-timing-function: ease-in
}

@keyframes lightSpeedOutLeft {
	0% {
		opacity: 1
	}

	to {
		transform: translate3d(-100%, 0, 0) skewX(-30deg);
		opacity: 0
	}
}

.entrance-lightSpeedOutLeft {
	animation-name: lightSpeedOutLeft;
	animation-timing-function: ease-in
}

@keyframes rotateIn {
	0% {
		transform: rotate(-200deg);
		opacity: 0
	}

	to {
		transform: translateZ(0);
		opacity: 1
	}
}

.entrance-rotateIn {
	animation-name: rotateIn;
	transform-origin: center
}

@keyframes rotateInDownLeft {
	0% {
		transform: rotate(-45deg);
		opacity: 0
	}

	to {
		transform: translateZ(0);
		opacity: 1
	}
}

.entrance-rotateInDownLeft {
	animation-name: rotateInDownLeft;
	transform-origin: left bottom
}

@keyframes rotateInDownRight {
	0% {
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		transform: translateZ(0);
		opacity: 1
	}
}

.entrance-rotateInDownRight {
	animation-name: rotateInDownRight;
	transform-origin: right bottom
}

@keyframes rotateInUpLeft {
	0% {
		transform: rotate(45deg);
		opacity: 0
	}

	to {
		transform: translateZ(0);
		opacity: 1
	}
}

.entrance-rotateInUpLeft {
	animation-name: rotateInUpLeft;
	transform-origin: left bottom
}

@keyframes rotateInUpRight {
	0% {
		transform: rotate(-90deg);
		opacity: 0
	}

	to {
		transform: translateZ(0);
		opacity: 1
	}
}

.entrance-rotateInUpRight {
	animation-name: rotateInUpRight;
	transform-origin: right bottom
}

@keyframes rotateOut {
	0% {
		opacity: 1
	}

	to {
		transform: rotate(200deg);
		opacity: 0
	}
}

.entrance-rotateOut {
	animation-name: rotateOut;
	transform-origin: center
}

@keyframes rotateOutDownLeft {
	0% {
		opacity: 1
	}

	to {
		transform: rotate(45deg);
		opacity: 0
	}
}

.entrance-rotateOutDownLeft {
	animation-name: rotateOutDownLeft;
	transform-origin: left bottom
}

@keyframes rotateOutDownRight {
	0% {
		opacity: 1
	}

	to {
		transform: rotate(-45deg);
		opacity: 0
	}
}

.entrance-rotateOutDownRight {
	animation-name: rotateOutDownRight;
	transform-origin: right bottom
}

@keyframes rotateOutUpLeft {
	0% {
		opacity: 1
	}

	to {
		transform: rotate(-45deg);
		opacity: 0
	}
}

.entrance-rotateOutUpLeft {
	animation-name: rotateOutUpLeft;
	transform-origin: left bottom
}

@keyframes rotateOutUpRight {
	0% {
		opacity: 1
	}

	to {
		transform: rotate(90deg);
		opacity: 0
	}
}

.entrance-rotateOutUpRight {
	animation-name: rotateOutUpRight;
	transform-origin: right bottom
}

@keyframes jackInTheBox {
	0% {
		opacity: 0;
		transform: scale(.1) rotate(30deg);
		transform-origin: center bottom
	}

	50% {
		transform: rotate(-10deg)
	}

	70% {
		transform: rotate(3deg)
	}

	to {
		opacity: 1;
		transform: scale(1)
	}
}

.entrance-jackInTheBox {
	animation-name: jackInTheBox
}

@keyframes rollIn {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0) rotate(-120deg)
	}

	to {
		opacity: 1;
		transform: translateZ(0)
	}
}

.entrance-rollIn {
	animation-name: rollIn
}

@keyframes rollOut {
	0% {
		opacity: 1
	}

	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate(120deg)
	}
}

.entrance-rollOut {
	animation-name: rollOut
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale3d(.3, .3, .3)
	}

	50% {
		opacity: 1
	}
}

.entrance-zoomIn {
	animation-name: zoomIn
}

@keyframes zoomInDown {
	0% {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.entrance-zoomInDown {
	animation-name: zoomInDown
}

@keyframes zoomInLeft {
	0% {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.entrance-zoomInLeft {
	animation-name: zoomInLeft
}

@keyframes zoomInRight {
	0% {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.entrance-zoomInRight {
	animation-name: zoomInRight
}

@keyframes zoomInUp {
	0% {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	60% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.entrance-zoomInUp {
	animation-name: zoomInUp
}

@keyframes zoomOut {
	0% {
		opacity: 1
	}

	50% {
		opacity: 0;
		transform: scale3d(.3, .3, .3)
	}

	to {
		opacity: 0
	}
}

.entrance-zoomOut {
	animation-name: zoomOut
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.entrance-zoomOutDown {
	animation-name: zoomOutDown;
	transform-origin: center bottom
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
	}

	to {
		opacity: 0;
		transform: scale(.1) translate3d(-2000px, 0, 0)
	}
}

.entrance-zoomOutLeft {
	animation-name: zoomOutLeft;
	transform-origin: left center
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
	}

	to {
		opacity: 0;
		transform: scale(.1) translate3d(2000px, 0, 0)
	}
}

.entrance-zoomOutRight {
	animation-name: zoomOutRight;
	transform-origin: right center
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}

	to {
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}

.entrance-zoomOutUp {
	animation-name: zoomOutUp;
	transform-origin: center bottom
}

@keyframes slideInDown {
	0% {
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}

	to {
		transform: translateZ(0)
	}
}

.entrance-slideInDown {
	animation-name: slideInDown
}

@keyframes slideInLeft {
	0% {
		transform: translate3d(-100%, 0, 0);
		visibility: visible
	}

	to {
		transform: translateZ(0)
	}
}

.entrance-slideInLeft {
	animation-name: slideInLeft
}

@keyframes slideInRight {
	0% {
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}

	to {
		transform: translateZ(0)
	}
}

.entrance-slideInRight {
	animation-name: slideInRight
}

@keyframes slideInUp {
	0% {
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}

	to {
		transform: translateZ(0)
	}
}

.entrance-slideInUp {
	animation-name: slideInUp
}

@keyframes slideOutDown {
	0% {
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		transform: translate3d(0, 100%, 0)
	}
}

.entrance-slideOutDown {
	animation-name: slideOutDown
}

@keyframes slideOutLeft {
	0% {
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		transform: translate3d(-100%, 0, 0)
	}
}

.entrance-slideOutLeft {
	animation-name: slideOutLeft
}

@keyframes slideOutRight {
	0% {
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		transform: translate3d(100%, 0, 0)
	}
}

.entrance-slideOutRight {
	animation-name: slideOutRight
}

@keyframes slideOutUp {
	0% {
		transform: translateZ(0)
	}

	to {
		visibility: hidden;
		transform: translate3d(0, -100%, 0)
	}
}

.entrance-slideOutUp {
	animation-name: slideOutUp
}