@charset "UTF-8";
/*!
 * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css
 */

:root {
	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1
}
.animate__animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-duration: var(--animate-duration);
	animation-duration: var(--animate-duration);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both
}
.animate__animated.animate__infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}
.animate__animated.animate__repeat-1 {
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-iteration-count: var(--animate-repeat);
	animation-iteration-count: var(--animate-repeat)
}
.animate__animated.animate__repeat-2 {
	-webkit-animation-iteration-count: calc(1 * 2);
	animation-iteration-count: calc(1 * 2);
	-webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
	animation-iteration-count: calc(var(--animate-repeat) * 2)
}
.animate__animated.animate__repeat-3 {
	-webkit-animation-iteration-count: calc(1 * 3);
	animation-iteration-count: calc(1 * 3);
	-webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
	animation-iteration-count: calc(var(--animate-repeat) * 3)
}
.animate__animated.animate__delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-delay: var(--animate-delay);
	animation-delay: var(--animate-delay)
}
.animate__animated.animate__delay-2s {
	-webkit-animation-delay: calc(1s * 2);
	animation-delay: calc(1s * 2);
	-webkit-animation-delay: calc(var(--animate-delay) * 2);
	animation-delay: calc(var(--animate-delay) * 2)
}
.animate__animated.animate__delay-3s {
	-webkit-animation-delay: calc(1s * 3);
	animation-delay: calc(1s * 3);
	-webkit-animation-delay: calc(var(--animate-delay) * 3);
	animation-delay: calc(var(--animate-delay) * 3)
}
.animate__animated.animate__delay-4s {
	-webkit-animation-delay: calc(1s * 4);
	animation-delay: calc(1s * 4);
	-webkit-animation-delay: calc(var(--animate-delay) * 4);
	animation-delay: calc(var(--animate-delay) * 4)
}
.animate__animated.animate__delay-5s {
	-webkit-animation-delay: calc(1s * 5);
	animation-delay: calc(1s * 5);
	-webkit-animation-delay: calc(var(--animate-delay) * 5);
	animation-delay: calc(var(--animate-delay) * 5)
}
.animate__animated.animate__faster {
	-webkit-animation-duration: calc(1s / 2);
	animation-duration: calc(1s / 2);
	-webkit-animation-duration: calc(var(--animate-duration)/ 2);
	animation-duration: calc(var(--animate-duration)/ 2)
}
.animate__animated.animate__fast {
	-webkit-animation-duration: calc(1s * .8);
	animation-duration: calc(1s * .8);
	-webkit-animation-duration: calc(var(--animate-duration) * .8);
	animation-duration: calc(var(--animate-duration) * .8)
}
.animate__animated.animate__slow {
	-webkit-animation-duration: calc(1s * 2);
	animation-duration: calc(1s * 2);
	-webkit-animation-duration: calc(var(--animate-duration) * 2);
	animation-duration: calc(var(--animate-duration) * 2)
}
.animate__animated.animate__slower {
	-webkit-animation-duration: calc(1s * 3);
	animation-duration: calc(1s * 3);
	-webkit-animation-duration: calc(var(--animate-duration) * 3);
	animation-duration: calc(var(--animate-duration) * 3)
}
@media print, (prefers-reduced-motion:reduce) {
	.animate__animated {
		-webkit-animation-duration: 1ms!important;
		animation-duration: 1ms!important;
		-webkit-transition-duration: 1ms!important;
		transition-duration: 1ms!important;
		-webkit-animation-iteration-count: 1!important;
		animation-iteration-count: 1!important
	}
	.animate__animated[class*=Out] {
		opacity: 0
	}
}
@-webkit-keyframes bounce {
	20%, 53%, from, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	40%, 43% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
		transform: translate3d(0, -30px, 0) scaleY(1.1)
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
		transform: translate3d(0, -15px, 0) scaleY(1.05)
	}
	80% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translate3d(0, 0, 0) scaleY(.95);
		transform: translate3d(0, 0, 0) scaleY(.95)
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
		transform: translate3d(0, -4px, 0) scaleY(1.02)
	}
}
@keyframes bounce {
	20%, 53%, from, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	40%, 43% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0) scaleY(1.05);
		transform: translate3d(0, -30px, 0) scaleY(1.05)
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -15px, 0) scaleY(1.04);
		transform: translate3d(0, -15px, 0) scaleY(1.04)
	}
	80% {
		-webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		transition-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translate3d(0, 0, 0) scaleY(.95);
		transform: translate3d(0, 0, 0) scaleY(.95)
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
		transform: translate3d(0, -4px, 0) scaleY(1.02)
	}
}
.animate__bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom
}
@-webkit-keyframes flash {
	50%, from, to {
		opacity: 1
	}
	25%, 75% {
		opacity: 0
	}
}
@keyframes flash {
	50%, from, to {
		opacity: 1
	}
	25%, 75% {
		opacity: 0
	}
}
.animate__flash {
	-webkit-animation-name: flash;
	animation-name: flash
}
@-webkit-keyframes pulse {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}
@keyframes pulse {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}
.animate__pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out
}
@-webkit-keyframes rubberBand {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
	30% {
		-webkit-transform: scale3d(1.25, .75, 1);
		transform: scale3d(1.25, .75, 1)
	}
	40% {
		-webkit-transform: scale3d(.75, 1.25, 1);
		transform: scale3d(.75, 1.25, 1)
	}
	50% {
		-webkit-transform: scale3d(1.15, .85, 1);
		transform: scale3d(1.15, .85, 1)
	}
	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1)
	}
	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1)
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}
@keyframes rubberBand {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
	30% {
		-webkit-transform: scale3d(1.25, .75, 1);
		transform: scale3d(1.25, .75, 1)
	}
	40% {
		-webkit-transform: scale3d(.75, 1.25, 1);
		transform: scale3d(.75, 1.25, 1)
	}
	50% {
		-webkit-transform: scale3d(1.15, .85, 1);
		transform: scale3d(1.15, .85, 1)
	}
	65% {
		-webkit-transform: scale3d(.95, 1.05, 1);
		transform: scale3d(.95, 1.05, 1)
	}
	75% {
		-webkit-transform: scale3d(1.05, .95, 1);
		transform: scale3d(1.05, .95, 1)
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}
.animate__rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand
}
@-webkit-keyframes shakeX {
	from, to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}
	20%, 40%, 60%, 80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}
}
@keyframes shakeX {
	from, to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}
	20%, 40%, 60%, 80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}
}
.animate__shakeX {
	-webkit-animation-name: shakeX;
	animation-name: shakeX
}
@-webkit-keyframes shakeY {
	from, to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}
	20%, 40%, 60%, 80% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}
}
@keyframes shakeY {
	from, to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}
	20%, 40%, 60%, 80% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}
}
.animate__shakeY {
	-webkit-animation-name: shakeY;
	animation-name: shakeY
}
@-webkit-keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg)
	}
	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg)
	}
	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg)
	}
	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg)
	}
	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}
@keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg)
	}
	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg)
	}
	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg)
	}
	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg)
	}
	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0)
	}
}
.animate__headShake {
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: headShake;
	animation-name: headShake
}
@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg)
	}
	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg)
	}
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg)
	}
	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg)
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg)
	}
}
@keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg)
	}
	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg)
	}
	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg)
	}
	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg)
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg)
	}
}
.animate__swing {
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing
}
@-webkit-keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
	10%, 20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
	}
	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}
	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}
@keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
	10%, 20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
	}
	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
	}
	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
	}
	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}
.animate__tada {
	-webkit-animation-name: tada;
	animation-name: tada
}
@-webkit-keyframes wobble {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes wobble {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
}
@-webkit-keyframes jello {
	11.1%, from, to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg)
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}
	66.6% {
		-webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}
	77.7% {
		-webkit-transform: skewX(.390625deg) skewY(.390625deg);
		transform: skewX(.390625deg) skewY(.390625deg)
	}
	88.8% {
		-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
		transform: skewX(-.1953125deg) skewY(-.1953125deg)
	}
}
@keyframes jello {
	11.1%, from, to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg)
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg)
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg)
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg)
	}
	66.6% {
		-webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
		transform: skewX(-.78125deg) skewY(-.78125deg)
	}
	77.7% {
		-webkit-transform: skewX(.390625deg) skewY(.390625deg);
		transform: skewX(.390625deg) skewY(.390625deg)
	}
	88.8% {
		-webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
		transform: skewX(-.1953125deg) skewY(-.1953125deg)
	}
}
.animate__jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	-webkit-transform-origin: center;
	transform-origin: center
}
@-webkit-keyframes heartBeat {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	14% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3)
	}
	28% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	42% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3)
	}
	70% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}
@keyframes heartBeat {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	14% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3)
	}
	28% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
	42% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3)
	}
	70% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}
.animate__heartBeat {
	-webkit-animation-name: heartBeat;
	animation-name: heartBeat;
	-webkit-animation-duration: calc(1s * 1.3);
	animation-duration: calc(1s * 1.3);
	-webkit-animation-duration: calc(var(--animate-duration) * 1.3);
	animation-duration: calc(var(--animate-duration) * 1.3);
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out
}
@-webkit-keyframes backInDown {
	0% {
		-webkit-transform: translateY(-1200px) scale(.7);
		transform: translateY(-1200px) scale(.7);
		opacity: .7
	}
	80% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}
@keyframes backInDown {
	0% {
		-webkit-transform: translateY(-1200px) scale(.7);
		transform: translateY(-1200px) scale(.7);
		opacity: .7
	}
	80% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}
.animate__backInDown {
	-webkit-animation-name: backInDown;
	animation-name: backInDown
}
@-webkit-keyframes backInLeft {
	0% {
		-webkit-transform: translateX(-2000px) scale(.7);
		transform: translateX(-2000px) scale(.7);
		opacity: .7
	}
	80% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}
@keyframes backInLeft {
	0% {
		-webkit-transform: translateX(-2000px) scale(.7);
		transform: translateX(-2000px) scale(.7);
		opacity: .7
	}
	80% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}
.animate__backInLeft {
	-webkit-animation-name: backInLeft;
	animation-name: backInLeft
}
@-webkit-keyframes backInRight {
	0% {
		-webkit-transform: translateX(2000px) scale(.7);
		transform: translateX(2000px) scale(.7);
		opacity: .7
	}
	80% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}
@keyframes backInRight {
	0% {
		-webkit-transform: translateX(2000px) scale(.7);
		transform: translateX(2000px) scale(.7);
		opacity: .7
	}
	80% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}
.animate__backInRight {
	-webkit-animation-name: backInRight;
	animation-name: backInRight
}
@-webkit-keyframes backInUp {
	0% {
		-webkit-transform: translateY(1200px) scale(.7);
		transform: translateY(1200px) scale(.7);
		opacity: .7
	}
	80% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}
@keyframes backInUp {
	0% {
		-webkit-transform: translateY(1200px) scale(.7);
		transform: translateY(1200px) scale(.7);
		opacity: .7
	}
	80% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
}
.animate__backInUp {
	-webkit-animation-name: backInUp;
	animation-name: backInUp
}
@-webkit-keyframes backOutDown {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
	20% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: translateY(700px) scale(.7);
		transform: translateY(700px) scale(.7);
		opacity: .7
	}
}
@keyframes backOutDown {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
	20% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: translateY(700px) scale(.7);
		transform: translateY(700px) scale(.7);
		opacity: .7
	}
}
.animate__backOutDown {
	-webkit-animation-name: backOutDown;
	animation-name: backOutDown
}
@-webkit-keyframes backOutLeft {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
	20% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: translateX(-2000px) scale(.7);
		transform: translateX(-2000px) scale(.7);
		opacity: .7
	}
}
@keyframes backOutLeft {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
	20% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: translateX(-2000px) scale(.7);
		transform: translateX(-2000px) scale(.7);
		opacity: .7
	}
}
.animate__backOutLeft {
	-webkit-animation-name: backOutLeft;
	animation-name: backOutLeft
}
@-webkit-keyframes backOutRight {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
	20% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: translateX(2000px) scale(.7);
		transform: translateX(2000px) scale(.7);
		opacity: .7
	}
}
@keyframes backOutRight {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
	20% {
		-webkit-transform: translateX(0) scale(.7);
		transform: translateX(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: translateX(2000px) scale(.7);
		transform: translateX(2000px) scale(.7);
		opacity: .7
	}
}
.animate__backOutRight {
	-webkit-animation-name: backOutRight;
	animation-name: backOutRight
}
@-webkit-keyframes backOutUp {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
	20% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: translateY(-700px) scale(.7);
		transform: translateY(-700px) scale(.7);
		opacity: .7
	}
}
@keyframes backOutUp {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1
	}
	20% {
		-webkit-transform: translateY(0) scale(.7);
		transform: translateY(0) scale(.7);
		opacity: .7
	}
	100% {
		-webkit-transform: translateY(-700px) scale(.7);
		transform: translateY(-700px) scale(.7);
		opacity: .7
	}
}
.animate__backOutUp {
	-webkit-animation-name: backOutUp;
	animation-name: backOutUp
}
@-webkit-keyframes bounceIn {
	20%, 40%, 60%, 80%, from, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}
	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03)
	}
	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97)
	}
	to {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}
@keyframes bounceIn {
	20%, 40%, 60%, 80%, from, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}
	40% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03)
	}
	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97)
	}
	to {
		opacity: 1;
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1)
	}
}
.animate__bounceIn {
	-webkit-animation-duration: calc(1s * .75);
	animation-duration: calc(1s * .75);
	-webkit-animation-duration: calc(var(--animate-duration) * .75);
	animation-duration: calc(var(--animate-duration) * .75);
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn
}
@-webkit-keyframes bounceInDown {
	60%, 75%, 90%, from, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -400px, 0) scaleY(1);
		transform: translate3d(0, -400px, 0) scaleY(1)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0) scaleY(1);
		transform: translate3d(0, 25px, 0) scaleY(1)
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0) scaleY(.95);
		transform: translate3d(0, -10px, 0) scaleY(.95)
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0) scaleY(.985);
		transform: translate3d(0, 5px, 0) scaleY(.985)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes bounceInDown {
	60%, 75%, 90%, from, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -400px, 0) scaleY(1);
		transform: translate3d(0, -400px, 0) scaleY(1)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0) scaleY(1);
		transform: translate3d(0, 25px, 0) scaleY(1)
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0) scaleY(.95);
		transform: translate3d(0, -10px, 0) scaleY(.95)
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0) scaleY(.985);
		transform: translate3d(0, 5px, 0) scaleY(.985)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown
}
@-webkit-keyframes bounceInLeft {
	60%, 75%, 90%, from, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
		transform: translate3d(-3000px, 0, 0) scaleX(3)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0) scaleX(1);
		transform: translate3d(25px, 0, 0) scaleX(1)
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0) scaleX(.98);
		transform: translate3d(-10px, 0, 0) scaleX(.98)
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0) scaleX(.995);
		transform: translate3d(5px, 0, 0) scaleX(.995)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes bounceInLeft {
	60%, 75%, 90%, from, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
		transform: translate3d(-3000px, 0, 0) scaleX(3)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0) scaleX(1);
		transform: translate3d(25px, 0, 0) scaleX(1)
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0) scaleX(.98);
		transform: translate3d(-10px, 0, 0) scaleX(.98)
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0) scaleX(.995);
		transform: translate3d(5px, 0, 0) scaleX(.995)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft
}
@-webkit-keyframes bounceInRight {
	60%, 75%, 90%, from, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	from {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
		transform: translate3d(3000px, 0, 0) scaleX(3)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
		transform: translate3d(-25px, 0, 0) scaleX(1)
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0) scaleX(.98);
		transform: translate3d(10px, 0, 0) scaleX(.98)
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0) scaleX(.995);
		transform: translate3d(-5px, 0, 0) scaleX(.995)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes bounceInRight {
	60%, 75%, 90%, from, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	from {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
		transform: translate3d(3000px, 0, 0) scaleX(3)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
		transform: translate3d(-25px, 0, 0) scaleX(1)
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0) scaleX(.98);
		transform: translate3d(10px, 0, 0) scaleX(.98)
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0) scaleX(.995);
		transform: translate3d(-5px, 0, 0) scaleX(.995)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight
}
@-webkit-keyframes bounceInUp {
	60%, 75%, 90%, from, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 250px, 0) scaleY(1);
		transform: translate3d(0, 250px, 0) scaleY(1)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0) scaleY(1);
		transform: translate3d(0, -20px, 0) scaleY(1)
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0) scaleY(1);
		transform: translate3d(0, 10px, 0) scaleY(1)
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0) scaleY(1);
		transform: translate3d(0, -5px, 0) scaleY(1)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes bounceInUp {
	60%, 75%, 90%, from, to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 250px, 0) scaleY(1);
		transform: translate3d(0, 250px, 0) scaleY(1)
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0) scaleY(1);
		transform: translate3d(0, -20px, 0) scaleY(1)
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0) scaleY(1);
		transform: translate3d(0, 10px, 0) scaleY(1)
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0) scaleY(1);
		transform: translate3d(0, -5px, 0) scaleY(1)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp
}
@-webkit-keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}
	50%, 55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
}
@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}
	50%, 55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1)
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
}
.animate__bounceOut {
	-webkit-animation-duration: calc(1s * .75);
	animation-duration: calc(1s * .75);
	-webkit-animation-duration: calc(var(--animate-duration) * .75);
	animation-duration: calc(var(--animate-duration) * .75);
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut
}
@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0) scaleY(.985);
		transform: translate3d(0, 10px, 0) scaleY(.985)
	}
	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
		transform: translate3d(0, -20px, 0) scaleY(.9)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
		transform: translate3d(0, 2000px, 0) scaleY(3)
	}
}
@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0) scaleY(.985);
		transform: translate3d(0, 10px, 0) scaleY(.985)
	}
	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
		transform: translate3d(0, -20px, 0) scaleY(.9)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
		transform: translate3d(0, 2000px, 0) scaleY(3)
	}
}
.animate__bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown
}
@-webkit-keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0) scaleX(.9);
		transform: translate3d(20px, 0, 0) scaleX(.9)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
		transform: translate3d(-2000px, 0, 0) scaleX(2)
	}
}
@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0) scaleX(.9);
		transform: translate3d(20px, 0, 0) scaleX(.9)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
		transform: translate3d(-2000px, 0, 0) scaleX(2)
	}
}
.animate__bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft
}
@-webkit-keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0) scaleX(.9);
		transform: translate3d(-20px, 0, 0) scaleX(.9)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
		transform: translate3d(2000px, 0, 0) scaleX(2)
	}
}
@keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0) scaleX(.9);
		transform: translate3d(-20px, 0, 0) scaleX(.9)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
		transform: translate3d(2000px, 0, 0) scaleX(2)
	}
}
.animate__bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight
}
@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0) scaleY(.985);
		transform: translate3d(0, -10px, 0) scaleY(.985)
	}
	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0) scaleY(.9);
		transform: translate3d(0, 20px, 0) scaleY(.9)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
		transform: translate3d(0, -2000px, 0) scaleY(3)
	}
}
@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0) scaleY(.985);
		transform: translate3d(0, -10px, 0) scaleY(.985)
	}
	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0) scaleY(.9);
		transform: translate3d(0, 20px, 0) scaleY(.9)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
		transform: translate3d(0, -2000px, 0) scaleY(3)
	}
}
.animate__bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp
}
@-webkit-keyframes fadeIn {
	from {
		opacity: 0
	}
	to {
		opacity: 1
	}
}
@keyframes fadeIn {
	from {
		opacity: 0
	}
	to {
		opacity: 1
	}
}
.animate__fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}
@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}
@-webkit-keyframes fadeInDownBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes fadeInDownBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig
}
@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}
@-webkit-keyframes fadeInLeftBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes fadeInLeftBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig
}
@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}
@-webkit-keyframes fadeInRightBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes fadeInRightBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig
}
@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}
@-webkit-keyframes fadeInUpBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes fadeInUpBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig
}
@-webkit-keyframes fadeInTopLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, -100%, 0);
		transform: translate3d(-100%, -100%, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes fadeInTopLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, -100%, 0);
		transform: translate3d(-100%, -100%, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__fadeInTopLeft {
	-webkit-animation-name: fadeInTopLeft;
	animation-name: fadeInTopLeft
}
@-webkit-keyframes fadeInTopRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, -100%, 0);
		transform: translate3d(100%, -100%, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes fadeInTopRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, -100%, 0);
		transform: translate3d(100%, -100%, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__fadeInTopRight {
	-webkit-animation-name: fadeInTopRight;
	animation-name: fadeInTopRight
}
@-webkit-keyframes fadeInBottomLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 100%, 0);
		transform: translate3d(-100%, 100%, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes fadeInBottomLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 100%, 0);
		transform: translate3d(-100%, 100%, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__fadeInBottomLeft {
	-webkit-animation-name: fadeInBottomLeft;
	animation-name: fadeInBottomLeft
}
@-webkit-keyframes fadeInBottomRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes fadeInBottomRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__fadeInBottomRight {
	-webkit-animation-name: fadeInBottomRight;
	animation-name: fadeInBottomRight
}
@-webkit-keyframes fadeOut {
	from {
		opacity: 1
	}
	to {
		opacity: 0
	}
}
@keyframes fadeOut {
	from {
		opacity: 1
	}
	to {
		opacity: 0
	}
}
.animate__fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}
@-webkit-keyframes fadeOutDown {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}
@keyframes fadeOutDown {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}
.animate__fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown
}
@-webkit-keyframes fadeOutDownBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}
@keyframes fadeOutDownBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0)
	}
}
.animate__fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig
}
@-webkit-keyframes fadeOutLeft {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}
@keyframes fadeOutLeft {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}
.animate__fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft
}
@-webkit-keyframes fadeOutLeftBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}
@keyframes fadeOutLeftBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0)
	}
}
.animate__fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig
}
@-webkit-keyframes fadeOutRight {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}
@keyframes fadeOutRight {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}
.animate__fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight
}
@-webkit-keyframes fadeOutRightBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}
@keyframes fadeOutRightBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0)
	}
}
.animate__fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig
}
@-webkit-keyframes fadeOutUp {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}
@keyframes fadeOutUp {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}
.animate__fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp
}
@-webkit-keyframes fadeOutUpBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}
@keyframes fadeOutUpBig {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0)
	}
}
.animate__fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig
}
@-webkit-keyframes fadeOutTopLeft {
	from {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, -100%, 0);
		transform: translate3d(-100%, -100%, 0)
	}
}
@keyframes fadeOutTopLeft {
	from {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, -100%, 0);
		transform: translate3d(-100%, -100%, 0)
	}
}
.animate__fadeOutTopLeft {
	-webkit-animation-name: fadeOutTopLeft;
	animation-name: fadeOutTopLeft
}
@-webkit-keyframes fadeOutTopRight {
	from {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, -100%, 0);
		transform: translate3d(100%, -100%, 0)
	}
}
@keyframes fadeOutTopRight {
	from {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, -100%, 0);
		transform: translate3d(100%, -100%, 0)
	}
}
.animate__fadeOutTopRight {
	-webkit-animation-name: fadeOutTopRight;
	animation-name: fadeOutTopRight
}
@-webkit-keyframes fadeOutBottomRight {
	from {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0)
	}
}
@keyframes fadeOutBottomRight {
	from {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0)
	}
}
.animate__fadeOutBottomRight {
	-webkit-animation-name: fadeOutBottomRight;
	animation-name: fadeOutBottomRight
}
@-webkit-keyframes fadeOutBottomLeft {
	from {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 100%, 0);
		transform: translate3d(-100%, 100%, 0)
	}
}
@keyframes fadeOutBottomLeft {
	from {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 100%, 0);
		transform: translate3d(-100%, 100%, 0)
	}
}
.animate__fadeOutBottomLeft {
	-webkit-animation-name: fadeOutBottomLeft;
	animation-name: fadeOutBottomLeft
}
@-webkit-keyframes flip {
	from {
		-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	40% {
		-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	50% {
		-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
		transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	to {
		-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
		transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}
@keyframes flip {
	from {
		-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	40% {
		-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out
	}
	50% {
		-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	80% {
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
		transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	to {
		-webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
		transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
}
.animate__animated.animate__flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip
}
@-webkit-keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}
@keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}
.animate__flipInX {
	-webkit-backface-visibility: visible!important;
	backface-visibility: visible!important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX
}
@-webkit-keyframes flipInY {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}
@keyframes flipInY {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0
	}
	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in
	}
	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1
	}
	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}
.animate__flipInY {
	-webkit-backface-visibility: visible!important;
	backface-visibility: visible!important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY
}
@-webkit-keyframes flipOutX {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1
	}
	to {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0
	}
}
@keyframes flipOutX {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1
	}
	to {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0
	}
}
.animate__flipOutX {
	-webkit-animation-duration: calc(1s * .75);
	animation-duration: calc(1s * .75);
	-webkit-animation-duration: calc(var(--animate-duration) * .75);
	animation-duration: calc(var(--animate-duration) * .75);
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible!important;
	backface-visibility: visible!important
}
@-webkit-keyframes flipOutY {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1
	}
	to {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0
	}
}
@keyframes flipOutY {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
	30% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1
	}
	to {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0
	}
}
.animate__flipOutY {
	-webkit-animation-duration: calc(1s * .75);
	animation-duration: calc(1s * .75);
	-webkit-animation-duration: calc(var(--animate-duration) * .75);
	animation-duration: calc(var(--animate-duration) * .75);
	-webkit-backface-visibility: visible!important;
	backface-visibility: visible!important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY
}
@-webkit-keyframes lightSpeedInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0
	}
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes lightSpeedInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0
	}
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__lightSpeedInRight {
	-webkit-animation-name: lightSpeedInRight;
	animation-name: lightSpeedInRight;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out
}
@-webkit-keyframes lightSpeedInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
		transform: translate3d(-100%, 0, 0) skewX(30deg);
		opacity: 0
	}
	60% {
		-webkit-transform: skewX(-20deg);
		transform: skewX(-20deg);
		opacity: 1
	}
	80% {
		-webkit-transform: skewX(5deg);
		transform: skewX(5deg)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes lightSpeedInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
		transform: translate3d(-100%, 0, 0) skewX(30deg);
		opacity: 0
	}
	60% {
		-webkit-transform: skewX(-20deg);
		transform: skewX(-20deg);
		opacity: 1
	}
	80% {
		-webkit-transform: skewX(5deg);
		transform: skewX(5deg)
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__lightSpeedInLeft {
	-webkit-animation-name: lightSpeedInLeft;
	animation-name: lightSpeedInLeft;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out
}
@-webkit-keyframes lightSpeedOutRight {
	from {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0
	}
}
@keyframes lightSpeedOutRight {
	from {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0
	}
}
.animate__lightSpeedOutRight {
	-webkit-animation-name: lightSpeedOutRight;
	animation-name: lightSpeedOutRight;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in
}
@-webkit-keyframes lightSpeedOutLeft {
	from {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
		transform: translate3d(-100%, 0, 0) skewX(-30deg);
		opacity: 0
	}
}
@keyframes lightSpeedOutLeft {
	from {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
		transform: translate3d(-100%, 0, 0) skewX(-30deg);
		opacity: 0
	}
}
.animate__lightSpeedOutLeft {
	-webkit-animation-name: lightSpeedOutLeft;
	animation-name: lightSpeedOutLeft;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in
}
@-webkit-keyframes rotateIn {
	from {
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}
@keyframes rotateIn {
	from {
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}
.animate__rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn;
	-webkit-transform-origin: center;
	transform-origin: center
}
@-webkit-keyframes rotateInDownLeft {
	from {
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}
@keyframes rotateInDownLeft {
	from {
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}
.animate__rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom
}
@-webkit-keyframes rotateInDownRight {
	from {
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}
@keyframes rotateInDownRight {
	from {
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}
.animate__rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom
}
@-webkit-keyframes rotateInUpLeft {
	from {
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}
@keyframes rotateInUpLeft {
	from {
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}
.animate__rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom
}
@-webkit-keyframes rotateInUpRight {
	from {
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}
@keyframes rotateInUpRight {
	from {
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1
	}
}
.animate__rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom
}
@-webkit-keyframes rotateOut {
	from {
		opacity: 1
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0
	}
}
@keyframes rotateOut {
	from {
		opacity: 1
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0
	}
}
.animate__rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut;
	-webkit-transform-origin: center;
	transform-origin: center
}
@-webkit-keyframes rotateOutDownLeft {
	from {
		opacity: 1
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
}
@keyframes rotateOutDownLeft {
	from {
		opacity: 1
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0
	}
}
.animate__rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom
}
@-webkit-keyframes rotateOutDownRight {
	from {
		opacity: 1
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}
@keyframes rotateOutDownRight {
	from {
		opacity: 1
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}
.animate__rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom
}
@-webkit-keyframes rotateOutUpLeft {
	from {
		opacity: 1
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}
@keyframes rotateOutUpLeft {
	from {
		opacity: 1
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0
	}
}
.animate__rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom
}
@-webkit-keyframes rotateOutUpRight {
	from {
		opacity: 1
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0
	}
}
@keyframes rotateOutUpRight {
	from {
		opacity: 1
	}
	to {
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0
	}
}
.animate__rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom
}
@-webkit-keyframes hinge {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	20%, 60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	40%, 80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 60deg);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0
	}
}
@keyframes hinge {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	20%, 60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out
	}
	40%, 80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 60deg);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0
	}
}
.animate__hinge {
	-webkit-animation-duration: calc(1s * 2);
	animation-duration: calc(1s * 2);
	-webkit-animation-duration: calc(var(--animate-duration) * 2);
	animation-duration: calc(var(--animate-duration) * 2);
	-webkit-animation-name: hinge;
	animation-name: hinge;
	-webkit-transform-origin: top left;
	transform-origin: top left
}
@-webkit-keyframes jackInTheBox {
	from {
		opacity: 0;
		-webkit-transform: scale(.1) rotate(30deg);
		transform: scale(.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom
	}
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}
	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}
@keyframes jackInTheBox {
	from {
		opacity: 0;
		-webkit-transform: scale(.1) rotate(30deg);
		transform: scale(.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom
	}
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}
	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}
.animate__jackInTheBox {
	-webkit-animation-name: jackInTheBox;
	animation-name: jackInTheBox
}
@-webkit-keyframes rollIn {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes rollIn {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
	}
	to {
		opacity: 1;
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn
}
@-webkit-keyframes rollOut {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
	}
}
@keyframes rollOut {
	from {
		opacity: 1
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
	}
}
.animate__rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut
}
@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	50% {
		opacity: 1
	}
}
@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	50% {
		opacity: 1
	}
}
.animate__zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn
}
@-webkit-keyframes zoomInDown {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}
@keyframes zoomInDown {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}
.animate__zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown
}
@-webkit-keyframes zoomInLeft {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}
@keyframes zoomInLeft {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}
.animate__zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft
}
@-webkit-keyframes zoomInRight {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}
@keyframes zoomInRight {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}
.animate__zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight
}
@-webkit-keyframes zoomInUp {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}
@keyframes zoomInUp {
	from {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}
.animate__zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp
}
@-webkit-keyframes zoomOut {
	from {
		opacity: 1
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	to {
		opacity: 0
	}
}
@keyframes zoomOut {
	from {
		opacity: 1
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(.3, .3, .3);
		transform: scale3d(.3, .3, .3)
	}
	to {
		opacity: 0
	}
}
.animate__zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}
@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}
@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}
.animate__zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom
}
@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
	}
	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0)
	}
}
@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
	}
	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		transform: scale(.1) translate3d(-2000px, 0, 0)
	}
}
.animate__zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft;
	-webkit-transform-origin: left center;
	transform-origin: left center
}
@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
	}
	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0)
	}
}
@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
	}
	to {
		opacity: 0;
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		transform: scale(.1) translate3d(2000px, 0, 0)
	}
}
.animate__zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight;
	-webkit-transform-origin: right center;
	transform-origin: right center
}
@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}
@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19)
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		animation-timing-function: cubic-bezier(.175, .885, .32, 1)
	}
}
.animate__zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom
}
@-webkit-keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown
}
@-webkit-keyframes slideInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes slideInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft
}
@-webkit-keyframes slideInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes slideInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight
}
@-webkit-keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
@keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible
	}
	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
}
.animate__slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp
}
@-webkit-keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}
@keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0)
	}
}
.animate__slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown
}
@-webkit-keyframes slideOutLeft {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}
@keyframes slideOutLeft {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0)
	}
}
.animate__slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft
}
@-webkit-keyframes slideOutRight {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}
@keyframes slideOutRight {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0)
	}
}
.animate__slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight
}
@-webkit-keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}
@keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0)
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0)
	}
}
.animate__slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp
}
body .sponly {
	display: none
}
@media screen and (max-width:768px) {
	body .sponly {
		display: block
	}
}
body .pconly {
	display: block
}
@media screen and (max-width:768px) {
	body .pconly {
		display: none
	}
}
.container {
	background-color: #8cd9ff;
	height: auto;
	overflow-x: hidden;
}
.container #c01 {
	max-width: 980px;
	margin: auto;
	position: relative;
	padding-bottom: 75px
}
@media screen and (max-width:768px) {
	.container #c01[data-started=false] {
		overflow-y: hidden
	}
}
.container #c01 .lt {
	width: 210px;
	position: absolute;
	right: calc(100vw * (30 / 640));
	top: calc(100vw * (10 / 640));
}
.container #c01 .lt img {
	opacity: 0;
	transform: translate3d(0, -200px, 0) scaleY(1);
	-webkit-transform: translate3d(0, -200px, 0) scaleY(1);
	animation: .5s ease-out slideinFromTop;
	animation-fill-mode: forwards;
	animation-delay: 0s;
	animation-play-state: paused
}
.container #c01 .lt img {
	width: 100%;
	height: 100%
}
@media screen and (max-width:768px) {
	.container #c01 .lt {
		width: calc(100vw * (280 / 640))
	}
}
.container #c01 .rt {
	width: calc(100vw * (292 / 640));
	position: absolute;
	right: calc(100vw * (30 / 640));
	top: calc(100vw * (10 / 640));
}
.container #c01 .rt img {
	width: 100%;
	opacity: 0;
	transform: translate3d(0, -200px, 0) scaleY(1);
	-webkit-transform: translate3d(0, -200px, 0) scaleY(1);
	animation: .5s ease-out scaleUpIn;
	animation-fill-mode: forwards;
	animation-delay: 1s;
	animation-play-state: paused
}
.container #c01 .stage {
	width: 100%;
	height: 700px;
	overflow: visible
}
.container #c01 .stage .map {
	width: 1960px;
	position: relative;
	transform-origin: left top;
	-ms-transform-origin: left top;
	transform: translate3d(0, 0, 0) scale(.5, .5);
	-webkit-transform: translate3d(0, 0, 0) scale(.5, .5)
}
.container #c01 .stage .map>img {
	position: absolute;
	left: -145px
}
.container #c01 .bottom {
	opacity: 0;
	transform: translate3d(0, 200px, 0) scaleY(1);
	-webkit-transform: translate3d(0, 200px, 0) scaleY(1);
	animation: .5s ease-out slideinFromBottom;
	animation-fill-mode: forwards;
	animation-delay: 0s;
	animation-play-state: paused;
	width: 100%;
	max-width: 980px;
	height: 75px;
	background-color: #fef8e5;
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex
}
@media screen and (max-width:768px) {
	.container #c01 .bottom {
		height: calc(100vw * (112.5 / 640))
	}
}
.container #c01 .bottom .last {
	position: absolute;
	top: -37.5px;
	left: 0;
	width: 75px;
	height: 37.5px
}
@media screen and (max-width:768px) {
	.container #c01 .bottom .last {
		top: calc(100vw * (-37.5 / 640));
		width: calc(100vw * (75 / 640));
		height: calc(100vw * (37.5 / 640))
	}
}
.container #c01 .bottom .last img {
	width: 100%;
	height: 100%;
	vertical-align: top
}
.container #c01 .bottom .num {
	width: 175px;
	height: 75px;
	overflow-y: hidden;
	display: flex;
	position: relative
}
@media screen and (max-width:768px) {
	.container #c01 .bottom .num {
		width: calc(100vw * (150 / 640));
		height: calc(100vw * (112.5 / 640))
	}
}
.container #c01 .bottom .num .one, .container #c01 .bottom .num .ten {
	width: 75px;
	height: 75px;
	position: absolute;
	left: 0;
	transition: top .5s ease 0s
}
@media screen and (max-width:768px) {
	.container #c01 .bottom .num .one, .container #c01 .bottom .num .ten {
		width: calc(100vw * (75 / 640));
		height: calc(100vw * (75 / 640))
	}
}
.container #c01 .bottom .num .one img, .container #c01 .bottom .num .ten img {
	width: 100%;
	height: 100%;
	display: block
}
.container #c01 .bottom .num .one {
	left: 75px
}
@media screen and (max-width:768px) {
	.container #c01 .bottom .num .one {
		left: calc(100vw * (75 / 640))
	}
}
.container #c01 .bottom .num .kyoro {
	width: 25px;
	position: absolute;
	left: 150px;
	top: 0
}
@media screen and (max-width:768px) {
	.container #c01 .bottom .num .kyoro {
		width: calc(100vw * (150 / 640));
		left: 0;
		top: calc(100vw * (75 / 640))
	}
	.container #c01 .bottom .num .kyoro img {
		vertical-align: top
	}
}
.container #c01 .bottom .silhouette {
	width: calc(100% - 175px);
	display: flex;
	justify-content: center;
	align-items: center
}
@media screen and (max-width:768px) {
	.container #c01 .bottom .silhouette {
		width: calc(100vw * (492 / 640))
	}
}
.container #c01 .bottom .silhouette .silhouetteContainer {
	width: 95%;
	max-width: 744px;
	height: 40px;
	display: flex;
	flex-direction: row
}
@media screen and (max-width:768px) {
	.container #c01 .bottom .silhouette .silhouetteContainer {
		flex-direction: column
	}
}
.container #c01 .bottom .silhouette .silhouetteContainer .lane {
	width: 100%
}
@media screen and (max-width:768px) {
	.container #c01 .bottom .silhouette .silhouetteContainer .lane {
		display: flex;
		justify-content: flex-end
	}
	.container #c01 .bottom .silhouette .silhouetteContainer .lane .kyoro {
		width: 11%;
		flex-grow: 0
	}
}
.container #c01 .bottom .silhouette .silhouetteContainer .s {
	width: 80%
}
.container #c01 .bottom .silhouette .silhouetteContainer .t {
	position: absolute;
	width: 112%;
	top: -10%;
	left: -24%;
	transition: opacity 1s ease-out
}
.container #c01 .bottom .silhouette .silhouetteContainer .kyoro[data-is-correct=false] .s {
	opacity: 1
}
.container #c01 .bottom .silhouette .silhouetteContainer .kyoro[data-is-correct=false] .t {
	opacity: 0
}
.container #c01 .bottom .silhouette .silhouetteContainer .kyoro[data-is-correct=true] .s {
	opacity: 0
}
.container #c01 .bottom .silhouette .silhouetteContainer .kyoro[data-is-correct=true] .t {
	opacity: 1
}
@media screen and (max-width:768px) {
	.container #c01 .bottom .silhouette .silhouetteContainer {
		grid-template-rows: 2;
		grid-template-columns: repeat(9, calc(100% / 9));
		-ms-grid-columns: repeat(9, calc(100% / 9));
		height: calc(100vw * (97.5 / 640))
	}
}
.container #c01 .bottom .silhouette .silhouetteContainer div {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	width: 100%
}
@media screen and (max-width:768px) {
	.container #c01 .bottom .silhouette .silhouetteContainer div:first-child {
		grid-column-start: 2
	}
}
.container #c01 [data-last="0"] .num .ten {
	top: -75px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="0"] .num .ten {
		top: calc(100vw * (-75 / 640))
	}
}
.container #c01 [data-last="0"] .num .one {
	top: -675px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="0"] .num .one {
		top: calc(100vw * (-675 / 640))
	}
}
.container #c01 [data-last="1"] .num .ten {
	top: -75px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="1"] .num .ten {
		top: calc(100vw * (-75 / 640))
	}
}
.container #c01 [data-last="1"] .num .one {
	top: -600px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="1"] .num .one {
		top: calc(100vw * (-600 / 640))
	}
}
.container #c01 [data-last="2"] .num .ten {
	top: -75px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="2"] .num .ten {
		top: calc(100vw * (-75 / 640))
	}
}
.container #c01 [data-last="2"] .num .one {
	top: -525px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="2"] .num .one {
		top: calc(100vw * (-525 / 640))
	}
}
.container #c01 [data-last="3"] .num .ten {
	top: -75px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="3"] .num .ten {
		top: calc(100vw * (-75 / 640))
	}
}
.container #c01 [data-last="3"] .num .one {
	top: -450px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="3"] .num .one {
		top: calc(100vw * (-450 / 640))
	}
}
.container #c01 [data-last="4"] .num .ten {
	top: -75px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="4"] .num .ten {
		top: calc(100vw * (-75 / 640))
	}
}
.container #c01 [data-last="4"] .num .one {
	top: -375px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="4"] .num .one {
		top: calc(100vw * (-375 / 640))
	}
}
.container #c01 [data-last="5"] .num .ten {
	top: -75px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="5"] .num .ten {
		top: calc(100vw * (-75 / 640))
	}
}
.container #c01 [data-last="5"] .num .one {
	top: -300px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="5"] .num .one {
		top: calc(100vw * (-300 / 640))
	}
}
.container #c01 [data-last="6"] .num .ten {
	top: -75px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="6"] .num .ten {
		top: calc(100vw * (-75 / 640))
	}
}
.container #c01 [data-last="6"] .num .one {
	top: -225px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="6"] .num .one {
		top: calc(100vw * (-225 / 640))
	}
}
.container #c01 [data-last="7"] .num .ten {
	top: -75px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="7"] .num .ten {
		top: calc(100vw * (-75 / 640))
	}
}
.container #c01 [data-last="7"] .num .one {
	top: -150px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="7"] .num .one {
		top: calc(100vw * (-150 / 640))
	}
}
.container #c01 [data-last="8"] .num .ten {
	top: -75px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="8"] .num .ten {
		top: calc(100vw * (-75 / 640))
	}
}
.container #c01 [data-last="8"] .num .one {
	top: -75px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="8"] .num .one {
		top: calc(100vw * (-75 / 640))
	}
}
.container #c01 [data-last="9"] .num .ten {
	top: -75px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="9"] .num .ten {
		top: calc(100vw * (-75 / 640))
	}
}
.container #c01 [data-last="9"] .num .one {
	top: 0
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="9"] .num .one {
		top: calc(100vw * (0 / 640))
	}
}
.container #c01 [data-last="10"] .num .ten {
	top: 0
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="10"] .num .ten {
		top: calc(100vw * (0 / 640))
	}
}
.container #c01 [data-last="10"] .num .one {
	top: -675px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="10"] .num .one {
		top: calc(100vw * (-675 / 640))
	}
}
.container #c01 [data-last="11"] .num .ten {
	top: 0
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="11"] .num .ten {
		top: calc(100vw * (0 / 640))
	}
}
.container #c01 [data-last="11"] .num .one {
	top: -600px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="11"] .num .one {
		top: calc(100vw * (-600 / 640))
	}
}
.container #c01 [data-last="12"] .num .ten {
	top: 0
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="12"] .num .ten {
		top: calc(100vw * (0 / 640))
	}
}
.container #c01 [data-last="12"] .num .one {
	top: -525px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="12"] .num .one {
		top: calc(100vw * (-525 / 640))
	}
}
.container #c01 [data-last="13"] .num .ten {
	top: 0
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="13"] .num .ten {
		top: calc(100vw * (0 / 640))
	}
}
.container #c01 [data-last="13"] .num .one {
	top: -450px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="13"] .num .one {
		top: calc(100vw * (-450 / 640))
	}
}
.container #c01 [data-last="14"] .num .ten {
	top: 0
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="14"] .num .ten {
		top: calc(100vw * (0 / 640))
	}
}
.container #c01 [data-last="14"] .num .one {
	top: -375px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="14"] .num .one {
		top: calc(100vw * (-375 / 640))
	}
}
.container #c01 [data-last="15"] .num .ten {
	top: 0
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="15"] .num .ten {
		top: calc(100vw * (0 / 640))
	}
}
.container #c01 [data-last="15"] .num .one {
	top: -300px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="15"] .num .one {
		top: calc(100vw * (-300 / 640))
	}
}
.container #c01 [data-last="16"] .num .ten {
	top: 0
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="16"] .num .ten {
		top: calc(100vw * (0 / 640))
	}
}
.container #c01 [data-last="16"] .num .one {
	top: -225px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="16"] .num .one {
		top: calc(100vw * (-225 / 640))
	}
}
.container #c01 [data-last="17"] .num .ten {
	top: 0
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="17"] .num .ten {
		top: calc(100vw * (0 / 640))
	}
}
.container #c01 [data-last="17"] .num .one {
	top: -150px
}
@media screen and (max-width:768px) {
	.container #c01 [data-last="17"] .num .one {
		top: calc(100vw * (-150 / 640))
	}
}
.container #c01 .back {
	position: absolute;
	width: 110px;
	height: 40px;
	right: 20px;
	bottom: 100px;
	transform: translate3d(0, 200px, 0) scaleY(1);
	-webkit-transform: translate3d(0, 200px, 0) scaleY(1);
	animation: .5s ease-out slideinFromBottom;
	animation-fill-mode: forwards;
	animation-delay: 0s;
	animation-play-state: paused;
	cursor: pointer
}
@media screen and (max-width:768px) {
	.container #c01 .back {
		width: calc(100vw * (145 / 640));
		height: calc(100vw * (55 / 640));
		bottom: calc(100vw * (130 / 640))
	}
}
.container #c01 .back img {
	width: 100%;
	height: 100%
}
.container #modal {
	position: absolute;
	top: 0;
	display: none;
	width: 100%;
	height: 100%;
	z-index: 100;
	background-color: rgba(255, 255, 255, .3)
}
.container #modal.open {
	display: block
}
@media screen and (max-width:768px) {
	.container #modal {
		position: fixed;
		background-color: rgba(0, 0, 0, .5);
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		padding-top: 0
	}
}
.container #modal .bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%
}
.container #modal .sponly {
	width: 100%;
	height: 100%
}
.container #modal .sponly .sectionInner {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center
}
.container #modalresult {
	position: absolute;
	top: 0;
	display: none;
	width: 100%;
	height: 100%;
	z-index: 100;
	background-color: rgba(255, 255, 255, .3)
}
.container #modalresult.open {
	display: block
}
.container #intro {
	position: absolute;
	width: 590px;
	height: 472px;
	opacity: 0;
	top: 50%;
	left: 50%;
	margin-top: -215px;
	margin-left: -270px;
	background-image: url(../images/start/pop.svg);
	background-repeat: no-repeat
}
@media screen and (max-width:768px) {
	.container #intro {
		width: calc(100vw * (620 / 640));
		height: calc(100vw * (510 / 640));
		margin-top: calc(100vw * (-242 / 640));
		margin-left: calc(100vw * (-303 / 640));
		top: 30%
	}
}
.container #intro .title {
	width: 320px;
	margin: auto;
	margin-bottom: 22px;
	margin-top: 60px
}
@media screen and (max-width:768px) {
	.container #intro .title {
		width: calc(100vw * (400 / 640));
		margin-bottom: calc(100vw * (30 / 640));
		margin-top: calc(100vw * (75 / 640))
	}
}
.container #intro .message {
	width: 442px;
	margin: auto;
	margin-bottom: 22px
}
@media screen and (max-width:768px) {
	.container #intro .message {
		width: calc(100vw * (540 / 640));
		margin-bottom: calc(100vw * (30 / 640))
	}
}
.container #intro .ex {
	width: 280px;
	margin: auto;
	margin-bottom: 22px
}
@media screen and (max-width:768px) {
	.container #intro .ex {
		width: calc(100vw * (428 / 640))
	}
}
.container #intro .start {
	cursor: pointer;
	width: 217px;
	margin: auto;
	display: block;
	margin-bottom: 22px
}
@media screen and (max-width:768px) {
	.container #intro .start {
		width: calc(100vw * (300 / 640));
		margin-bottom: calc(100vw * (60 / 640))
	}
}
@media screen and (max-width:980px) {
	#c01[data-started=true] .stage {
		overflow-x: scroll
	}
}
@keyframes play {
	100% {
		background-position: -300%
	}
}
@keyframes slideinFromRight {
	0% {
		transform: translate3d(200px, 0, 0) scaleY(1);
		-webkit-transform: translate3d(200px, 0, 0) scaleY(1);
		opacity: 0
	}
	100% {
		transform: translate3d(0, 0, 0) scaleY(1);
		-webkit-transform: translate3d(0, 0, 0) scaleY(1);
		opacity: 1
	}
}
@keyframes scaleDown {
	100% {
		transform: translate3d(0, 0, 0) scale(1, 1);
		-webkit-transform: translate3d(0, 0, 0) scale(1, 1)
	}
}
@keyframes slideinFromTop {
	0% {
		transform: translate3d(0, -100px, 0) scaleY(1);
		-webkit-transform: translate3d(0, -100px, 0) scaleY(1);
		opacity: 0
	}
	100% {
		transform: translate3d(0, 0, 0) scaleY(1);
		-webkit-transform: translate3d(0, 0, 0) scaleY(1);
		opacity: 1
	}
}
@keyframes slideinFromBottom {
	0% {
		transform: translate3d(0, 200px, 0) scaleY(1);
		-webkit-transform: translate3d(0, 200px, 0) scaleY(1);
		opacity: 0
	}
	100% {
		transform: translate3d(0, 0, 0) scaleY(1);
		-webkit-transform: translate3d(0, 0, 0) scaleY(1);
		opacity: 1
	}
}
@keyframes riderKick {
	0% {
		transform: translate3d(-400px, 0, 0) scaleY(1);
		-webkit-transform: translate3d(-400px, 0, 0) scaleY(1);
		opacity: 0
	}
	100% {
		transform: translate3d(0, 0, 0) scaleY(1);
		-webkit-transform: translate3d(0, 0, 0) scaleY(1);
		opacity: 1
	}
}
@keyframes jumpIn {
	0% {
		transform: translate3d(0, -400px, 0) scaleY(1);
		-webkit-transform: translate3d(0, -400px, 0) scaleY(1);
		opacity: 0
	}
	100% {
		transform: translate3d(0, 0, 0) scaleY(1);
		-webkit-transform: translate3d(0, 0, 0) scaleY(1);
		opacity: 1
	}
}
@keyframes slideinUp {
	0% {
		transform: translate3d(0, 50px, 0) scaleY(1);
		-webkit-transform: translate3d(0, 50px, 0) scaleY(1);
		opacity: 0
	}
	100% {
		transform: translate3d(0, 0, 0) scaleY(1);
		-webkit-transform: translate3d(0, 0, 0) scaleY(1);
		opacity: 1
	}
}
@keyframes heighHo {
	0% {
		transform: translate3d(0, 5px, 0) scaleY(1);
		-webkit-transform: translate3d(0, 5px, 0) scaleY(1);
		opacity: 0
	}
	90% {
		transform: translate3d(0, -10px, 0) scaleY(1.1);
		-webkit-transform: translate3d(0, -10px, 0) scaleY(1.1);
		opacity: 1
	}
	100% {
		transform: translate3d(0, 0, 0) scaleY(1);
		-webkit-transform: translate3d(0, 0, 0) scaleY(1);
		opacity: 1
	}
}
@keyframes modalShow {
	0% {
		transform: translate3d(0, 0, 0) scale(.8);
		-webkit-transform: translate3d(0, 0, 0) scale(.8);
		opacity: 0
	}
	100% {
		transform: translate3d(0, 0, 0) scale(1);
		-webkit-transform: translate3d(0, 0, 0) scale(1);
		opacity: 1
	}
}
@keyframes hideModal {
	0% {
		transform: translate3d(0, 0, 0) scale(1);
		-webkit-transform: translate3d(0, 0, 0) scale(1);
		opacity: 1
	}
	100% {
		transform: translate3d(0, 0, 0) scale(.8);
		-webkit-transform: translate3d(0, 0, 0) scale(.8);
		opacity: 0;
		display: none!important
	}
}
@keyframes bright {
	0% {
		-webkit-filter: brightness(1);
		filter: brightness(1)
	}
	70% {
		-webkit-filter: brightness(1.2);
		filter: brightness(1.2)
	}
	100% {
		-webkit-filter: brightness(1);
		filter: brightness(1)
	}
}
@keyframes scale {
	0% {
		transform: scale(1)
	}
	70% {
		transform: scale(1.2)
	}
	100% {
		transform: scale(1)
	}
}
@keyframes scaleUpIn {
	0% {
		opacity: 0;
		transform: scale(.8)
	}
	70% {
		opacity: 1;
		transform: scale(1.2)
	}
	100% {
		opacity: 1;
		transform: scale(1)
	}
}
.animationStart {
	animation-play-state: running!important
}
a.quiz {
	cursor: pointer;
	display: block;
	position: absolute;
	overflow: hidden;
	width: 160px;
	height: 160px
}
a.quiz img.kyoro {
	position: absolute;
	top: 0;
	left: 0;
	width: 300%;
	height: 100%;
	animation: playkyoro 1s steps(3) infinite;
	-webkit-backface-visibility: hidden
}
a.quiz img.nokyoro {
	display: none
}
a.quiz[data-is-finish=true] img.kyoro {
	display: none
}
a.quiz[data-is-finish=true] img.nokyoro {
	display: block
}
a.quiz[data-quiz-q="1"] {
	left: 595px;
	top: 680px
}
a.quiz[data-quiz-q="2"] {
	left: 855px;
	top: 206px
}
a.quiz[data-quiz-q="3"] {
	left: 1549px;
	top: 432px
}
a.quiz[data-quiz-q="4"] {
	left: 1269px;
	top: 272px
}
a.quiz[data-quiz-q="5"] {
	left: 159px;
	top: 746px
}
a.quiz[data-quiz-q="6"] {
	left: 791px;
	top: 450px
}
a.quiz[data-quiz-q="7"] {
	left: 1423px;
	top: 396px
}
a.quiz[data-quiz-q="8"] {
	left: 1231px;
	top: 672px
}
a.quiz[data-quiz-q="9"] {
	left: 307px;
	top: 848px
}
a.quiz[data-quiz-q="10"] {
	left: 895px;
	top: 396px
}
a.quiz[data-quiz-q="11"] {
	left: 729px;
	top: 836px;
	width: 190px;
	height: 190px
}
a.quiz[data-quiz-q="11"] img.kyoro {
	animation: playkyoro190 1s steps(3) infinite
}
a.quiz[data-quiz-q="12"] {
	left: 75px;
	top: 506px
}
a.quiz[data-quiz-q="13"] {
	left: 547px;
	top: 1040px
}
a.quiz[data-quiz-q="14"] {
	left: 1289px;
	top: 1088px
}
a.quiz[data-quiz-q="15"] {
	left: 405px;
	top: 268px
}
a.quiz[data-quiz-q="16"] {
	left: 1769px;
	top: 602px
}
a.quiz[data-quiz-q="17"] {
	left: 883px;
	top: 1098px
}
#modal .quiz {
	display: none
}
#modal[data-quiz-type="1"] .quiz[data-type="1"] {
	display: block
}
#modal[data-quiz-type="1"] .quiz[data-type="1"] .quizCont {
	background-image: url(../images/q/q1.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="1"] .quiz[data-type="1"] .quizCont {
		background-image: url(../images/q/sp/q1.svg)
	}
}
#modal[data-quiz-type="1"] .quiz[data-type="1"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q1_close.svg)
}
#modal[data-quiz-type="1"] .quiz[data-type="1"] .answerCont {
	background-image: url(../images/q/q1_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="1"] .quiz[data-type="1"] .answerCont {
		background-image: url(../images/q/sp/q1_answer.svg)
	}
}
#modal[data-quiz-type="1"] .quiz[data-type="1"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 270px;
	height: 20px;
	bottom: 0;
	left: 120px
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="1"] .quiz[data-type="1"] .answerCont a.link {
		width: calc(100vw * (380 / 640));
		height: calc(100vw * (60 / 640));
		bottom: calc(100vw * (0 / 640));
		left: calc(100vw * (80 / 640))
	}
}
#modal[data-quiz-type="2"] .quiz[data-type="2"] {
	display: block
}
#modal[data-quiz-type="2"] .quiz[data-type="2"] .quizCont {
	background-image: url(../images/q/q2.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="2"] .quiz[data-type="2"] .quizCont {
		background-image: url(../images/q/sp/q2.svg)
	}
}
#modal[data-quiz-type="2"] .quiz[data-type="2"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q2_close.svg)
}
#modal[data-quiz-type="2"] .quiz[data-type="2"] .answerCont {
	background-image: url(../images/q/q2_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="2"] .quiz[data-type="2"] .answerCont {
		background-image: url(../images/q/sp/q2_answer.svg)
	}
}
#modal[data-quiz-type="2"] .quiz[data-type="2"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 370px;
	height: 36px;
	bottom: 0;
	left: 70px
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="2"] .quiz[data-type="2"] .answerCont a.link {
		width: calc(100vw * (510 / 640));
		height: calc(100vw * (100 / 640));
		bottom: calc(100vw * (0 / 640));
		left: calc(100vw * (20 / 640))
	}
}
#modal[data-quiz-type="3"] .quiz[data-type="3"] {
	display: block
}
#modal[data-quiz-type="3"] .quiz[data-type="3"] .quizCont {
	background-image: url(../images/q/q3.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="3"] .quiz[data-type="3"] .quizCont {
		background-image: url(../images/q/sp/q3.svg)
	}
}
#modal[data-quiz-type="3"] .quiz[data-type="3"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q3_close.svg)
}
#modal[data-quiz-type="3"] .quiz[data-type="3"] .answerCont {
	background-image: url(../images/q/q3_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="3"] .quiz[data-type="3"] .answerCont {
		background-image: url(../images/q/sp/q3_answer.svg)
	}
}
#modal[data-quiz-type="3"] .quiz[data-type="3"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 470px;
	height: 37px;
	bottom: 0;
	left: 20px
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="3"] .quiz[data-type="3"] .answerCont a.link {
		width: calc(100vw * (520 / 640));
		height: calc(100vw * (90 / 640));
		bottom: calc(100vw * (0 / 640));
		left: calc(100vw * (10 / 640))
	}
}
#modal[data-quiz-type="4"] .quiz[data-type="4"] {
	display: block
}
#modal[data-quiz-type="4"] .quiz[data-type="4"] .quizCont {
	background-image: url(../images/q/q4.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="4"] .quiz[data-type="4"] .quizCont {
		background-image: url(../images/q/sp/q4.svg)
	}
}
#modal[data-quiz-type="4"] .quiz[data-type="4"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q4_close.svg)
}
#modal[data-quiz-type="4"] .quiz[data-type="4"] .answerCont {
	background-image: url(../images/q/q4_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="4"] .quiz[data-type="4"] .answerCont {
		background-image: url(../images/q/sp/q4_answer.svg)
	}
}
#modal[data-quiz-type="4"] .quiz[data-type="4"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px
}
#modal[data-quiz-type="4"] .quiz[data-type="4"] .answerCont a.link.link1 {
	width: 314px;
	height: 14px;
	bottom: 25px;
	left: 90px
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="4"] .quiz[data-type="4"] .answerCont a.link.link1 {
		width: calc(100vw * (410 / 640));
		height: calc(100vw * (50 / 640));
		bottom: calc(100vw * (50 / 640));
		left: calc(100vw * (70 / 640))
	}
}
#modal[data-quiz-type="4"] .quiz[data-type="4"] .answerCont a.link.link2 {
	width: 254px;
	height: 14px;
	bottom: 11px;
	left: 219px
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="4"] .quiz[data-type="4"] .answerCont a.link.link2 {
		width: calc(100vw * (520 / 640));
		height: calc(100vw * (40 / 640));
		bottom: calc(100vw * (0 / 640));
		left: calc(100vw * (10 / 640))
	}
}
#modal[data-quiz-type="5"] .quiz[data-type="5"] {
	display: block
}
#modal[data-quiz-type="5"] .quiz[data-type="5"] .quizCont {
	background-image: url(../images/q/q5.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="5"] .quiz[data-type="5"] .quizCont {
		background-image: url(../images/q/sp/q5.svg)
	}
}
#modal[data-quiz-type="5"] .quiz[data-type="5"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q5_close.svg)
}
#modal[data-quiz-type="5"] .quiz[data-type="5"] .answerCont {
	background-image: url(../images/q/q5_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="5"] .quiz[data-type="5"] .answerCont {
		background-image: url(../images/q/sp/q5_answer.svg)
	}
}
#modal[data-quiz-type="5"] .quiz[data-type="5"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px
}
#modal[data-quiz-type="6"] .quiz[data-type="6"] {
	display: block
}
#modal[data-quiz-type="6"] .quiz[data-type="6"] .quizCont {
	background-image: url(../images/q/q6.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="6"] .quiz[data-type="6"] .quizCont {
		background-image: url(../images/q/sp/q6.svg)
	}
}
#modal[data-quiz-type="6"] .quiz[data-type="6"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q6_close.svg)
}
#modal[data-quiz-type="6"] .quiz[data-type="6"] .answerCont {
	background-image: url(../images/q/q6_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="6"] .quiz[data-type="6"] .answerCont {
		background-image: url(../images/q/sp/q6_answer.svg)
	}
}
#modal[data-quiz-type="6"] .quiz[data-type="6"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 250px;
	height: 20px;
	bottom: 0;
	left: 130px
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="6"] .quiz[data-type="6"] .answerCont a.link {
		width: calc(100vw * (480 / 640));
		height: calc(100vw * (30 / 640));
		bottom: calc(100vw * (30 / 640));
		left: calc(100vw * (30 / 640))
	}
}
#modal[data-quiz-type="7"] .quiz[data-type="7"] {
	display: block
}
#modal[data-quiz-type="7"] .quiz[data-type="7"] .quizCont {
	background-image: url(../images/q/q7.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="7"] .quiz[data-type="7"] .quizCont {
		background-image: url(../images/q/sp/q7.svg)
	}
}
#modal[data-quiz-type="7"] .quiz[data-type="7"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q7_close.svg)
}
#modal[data-quiz-type="7"] .quiz[data-type="7"] .answerCont {
	background-image: url(../images/q/q7_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="7"] .quiz[data-type="7"] .answerCont {
		background-image: url(../images/q/sp/q7_answer.svg)
	}
}
#modal[data-quiz-type="7"] .quiz[data-type="7"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 290px;
	height: 22px;
	bottom: 0;
	left: 110px
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="7"] .quiz[data-type="7"] .answerCont a.link {
		width: calc(100vw * (330 / 640));
		height: calc(100vw * (70 / 640));
		bottom: calc(100vw * (0 / 640));
		left: calc(100vw * (110 / 640))
	}
}
#modal[data-quiz-type="8"] .quiz[data-type="8"] {
	display: block
}
#modal[data-quiz-type="8"] .quiz[data-type="8"] .quizCont {
	background-image: url(../images/q/q8.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="8"] .quiz[data-type="8"] .quizCont {
		background-image: url(../images/q/sp/q8.svg)
	}
}
#modal[data-quiz-type="8"] .quiz[data-type="8"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q8_close.svg)
}
#modal[data-quiz-type="8"] .quiz[data-type="8"] .answerCont {
	background-image: url(../images/q/q8_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="8"] .quiz[data-type="8"] .answerCont {
		background-image: url(../images/q/sp/q8_answer.svg)
	}
}
#modal[data-quiz-type="8"] .quiz[data-type="8"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px
}
#modal[data-quiz-type="8"] .quiz[data-type="8"] .answerCont a.link.link1 {
	width: 250px;
	height: 12px;
	bottom: 30px;
	left: 130px
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="8"] .quiz[data-type="8"] .answerCont a.link.link1 {
		width: calc(100vw * (480 / 640));
		height: calc(100vw * (20 / 640));
		bottom: calc(100vw * (70 / 640));
		left: calc(100vw * (30 / 640))
	}
}
#modal[data-quiz-type="8"] .quiz[data-type="8"] .answerCont a.link.link2 {
	width: 310px;
	height: 12px;
	bottom: 16px;
	left: 100px
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="8"] .quiz[data-type="8"] .answerCont a.link.link2 {
		width: calc(100vw * (480 / 640));
		height: calc(100vw * (40 / 640));
		bottom: calc(100vw * (30 / 640));
		left: calc(100vw * (30 / 640))
	}
}
#modal[data-quiz-type="9"] .quiz[data-type="9"] {
	display: block
}
#modal[data-quiz-type="9"] .quiz[data-type="9"] .quizCont {
	background-image: url(../images/q/q9.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="9"] .quiz[data-type="9"] .quizCont {
		background-image: url(../images/q/sp/q9.svg)
	}
}
#modal[data-quiz-type="9"] .quiz[data-type="9"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q9_close.svg)
}
#modal[data-quiz-type="9"] .quiz[data-type="9"] .answerCont {
	background-image: url(../images/q/q9_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="9"] .quiz[data-type="9"] .answerCont {
		background-image: url(../images/q/sp/q9_answer.svg)
	}
}
#modal[data-quiz-type="9"] .quiz[data-type="9"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 310px;
	height: 20px;
	bottom: 0;
	left: 100px
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="9"] .quiz[data-type="9"] .answerCont a.link {
		width: calc(100vw * (460 / 640));
		height: calc(100vw * (60 / 640));
		bottom: calc(100vw * (0 / 640));
		left: calc(100vw * (70 / 640))
	}
}
#modal[data-quiz-type="10"] .quiz[data-type="10"] {
	display: block
}
#modal[data-quiz-type="10"] .quiz[data-type="10"] .quizCont {
	background-image: url(../images/q/q10.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="10"] .quiz[data-type="10"] .quizCont {
		background-image: url(../images/q/sp/q10.svg)
	}
}
#modal[data-quiz-type="10"] .quiz[data-type="10"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q10_close.svg)
}
#modal[data-quiz-type="10"] .quiz[data-type="10"] .answerCont {
	background-image: url(../images/q/q10_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="10"] .quiz[data-type="10"] .answerCont {
		background-image: url(../images/q/sp/q10_answer.svg)
	}
}
#modal[data-quiz-type="10"] .quiz[data-type="10"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 330px;
	height: 23px;
	bottom: 0;
	left: 90px
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="10"] .quiz[data-type="10"] .answerCont a.link {
		width: calc(100vw * (510 / 640));
		height: calc(100vw * (90 / 640));
		bottom: calc(100vw * (0 / 640));
		left: calc(100vw * (20 / 640))
	}
}
#modal[data-quiz-type="11"] .quiz[data-type="11"] {
	display: block
}
#modal[data-quiz-type="11"] .quiz[data-type="11"] .quizCont {
	background-image: url(../images/q/q11.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="11"] .quiz[data-type="11"] .quizCont {
		background-image: url(../images/q/sp/q11.svg)
	}
}
#modal[data-quiz-type="11"] .quiz[data-type="11"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q11_close.svg)
}
#modal[data-quiz-type="11"] .quiz[data-type="11"] .answerCont {
	background-image: url(../images/q/q11_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="11"] .quiz[data-type="11"] .answerCont {
		background-image: url(../images/q/sp/q11_answer.svg)
	}
}
#modal[data-quiz-type="11"] .quiz[data-type="11"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 370px;
	height: 43px;
	bottom: 0;
	left: 70px
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="11"] .quiz[data-type="11"] .answerCont a.link {
		width: calc(100vw * (480 / 640));
		height: calc(100vw * (60 / 640));
		bottom: calc(100vw * (30 / 640));
		left: calc(100vw * (30 / 640))
	}
}
#modal[data-quiz-type="12"] .quiz[data-type="12"] {
	display: block
}
#modal[data-quiz-type="12"] .quiz[data-type="12"] .quizCont {
	background-image: url(../images/q/q12.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="12"] .quiz[data-type="12"] .quizCont {
		background-image: url(../images/q/sp/q12.svg)
	}
}
#modal[data-quiz-type="12"] .quiz[data-type="12"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q12_close.svg)
}
#modal[data-quiz-type="12"] .quiz[data-type="12"] .answerCont {
	background-image: url(../images/q/q12_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="12"] .quiz[data-type="12"] .answerCont {
		background-image: url(../images/q/sp/q12_answer.svg)
	}
}
#modal[data-quiz-type="12"] .quiz[data-type="12"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px
}
#modal[data-quiz-type="13"] .quiz[data-type="13"] {
	display: block
}
#modal[data-quiz-type="13"] .quiz[data-type="13"] .quizCont {
	background-image: url(../images/q/q13.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="13"] .quiz[data-type="13"] .quizCont {
		background-image: url(../images/q/sp/q13.svg)
	}
}
#modal[data-quiz-type="13"] .quiz[data-type="13"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q13_close.svg)
}
#modal[data-quiz-type="13"] .quiz[data-type="13"] .answerCont {
	background-image: url(../images/q/q13_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="13"] .quiz[data-type="13"] .answerCont {
		background-image: url(../images/q/sp/q13_answer.svg)
	}
}
#modal[data-quiz-type="13"] .quiz[data-type="13"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 350px;
	height: 30px;
	bottom: 0;
	left: 80px
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="13"] .quiz[data-type="13"] .answerCont a.link {
		width: calc(100vw * (480 / 640));
		height: calc(100vw * (60 / 640));
		bottom: calc(100vw * (30 / 640));
		left: calc(100vw * (30 / 640))
	}
}
#modal[data-quiz-type="14"] .quiz[data-type="14"] {
	display: block
}
#modal[data-quiz-type="14"] .quiz[data-type="14"] .quizCont {
	background-image: url(../images/q/q14.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="14"] .quiz[data-type="14"] .quizCont {
		background-image: url(../images/q/sp/q14.svg)
	}
}
#modal[data-quiz-type="14"] .quiz[data-type="14"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q14_close.svg)
}
#modal[data-quiz-type="14"] .quiz[data-type="14"] .answerCont {
	background-image: url(../images/q/q14_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="14"] .quiz[data-type="14"] .answerCont {
		background-image: url(../images/q/sp/q14_answer.svg)
	}
}
#modal[data-quiz-type="14"] .quiz[data-type="14"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px
}
#modal[data-quiz-type="15"] .quiz[data-type="15"] {
	display: block
}
#modal[data-quiz-type="15"] .quiz[data-type="15"] .quizCont {
	background-image: url(../images/q/q15.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="15"] .quiz[data-type="15"] .quizCont {
		background-image: url(../images/q/sp/q15.svg)
	}
}
#modal[data-quiz-type="15"] .quiz[data-type="15"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q15_close.svg)
}
#modal[data-quiz-type="15"] .quiz[data-type="15"] .answerCont {
	background-image: url(../images/q/q15_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="15"] .quiz[data-type="15"] .answerCont {
		background-image: url(../images/q/sp/q15_answer.svg)
	}
}
#modal[data-quiz-type="15"] .quiz[data-type="15"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 310px;
	height: 30px;
	bottom: 0;
	left: 100px
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="15"] .quiz[data-type="15"] .answerCont a.link {
		width: calc(100vw * (400 / 640));
		height: calc(100vw * (60 / 640));
		bottom: calc(100vw * (0 / 640));
		left: calc(100vw * (70 / 640))
	}
}
#modal[data-quiz-type="16"] .quiz[data-type="16"] {
	display: block
}
#modal[data-quiz-type="16"] .quiz[data-type="16"] .quizCont {
	background-image: url(../images/q/q16.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="16"] .quiz[data-type="16"] .quizCont {
		background-image: url(../images/q/sp/q16.svg)
	}
}
#modal[data-quiz-type="16"] .quiz[data-type="16"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q16_close.svg)
}
#modal[data-quiz-type="16"] .quiz[data-type="16"] .answerCont {
	background-image: url(../images/q/q16_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="16"] .quiz[data-type="16"] .answerCont {
		background-image: url(../images/q/sp/q16_answer.svg)
	}
}
#modal[data-quiz-type="16"] .quiz[data-type="16"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px;
	width: 250px;
	height: 27px;
	bottom: 0;
	left: 130px
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="16"] .quiz[data-type="16"] .answerCont a.link {
		width: calc(100vw * (460 / 640));
		height: calc(100vw * (40 / 640));
		bottom: calc(100vw * (30 / 640));
		left: calc(100vw * (43 / 640))
	}
}
#modal[data-quiz-type="17"] .quiz[data-type="17"] {
	display: block
}
#modal[data-quiz-type="17"] .quiz[data-type="17"] .quizCont {
	background-image: url(../images/q/q17.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="17"] .quiz[data-type="17"] .quizCont {
		background-image: url(../images/q/sp/q17.svg)
	}
}
#modal[data-quiz-type="17"] .quiz[data-type="17"] .quizCont .close {
	cursor: pointer;
	background-image: url(../images/q/q17_close.svg)
}
#modal[data-quiz-type="17"] .quiz[data-type="17"] .answerCont {
	background-image: url(../images/q/q17_answer.svg)
}
@media screen and (max-width:768px) {
	#modal[data-quiz-type="17"] .quiz[data-type="17"] .answerCont {
		background-image: url(../images/q/sp/q17_answer.svg)
	}
}
#modal[data-quiz-type="17"] .quiz[data-type="17"] .answerCont a.link {
	display: block;
	width: 250px;
	height: 50px;
	position: absolute;
	bottom: 0;
	left: 20px
}
#modal .sectionInner {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center
}
#modal .sectionInner .quizCont {
	width: 510px;
	height: 180px;
	padding-top: 220px;
	padding-bottom: 20px;
	background-repeat: no-repeat;
	position: relative
}
@media screen and (max-width:768px) {
	#modal .sectionInner .quizCont {
		width: calc(100vw * (550 / 640));
		height: calc(100vw * (270 / 640));
		padding-top: calc(100vw * (290 / 640));
		padding-bottom: calc(100vw * (60/ 640))
	}
}
#modal .sectionInner .quizCont .answerContainer {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	align-items: center
}
#modal .sectionInner .quizCont .answerContainer a {
	cursor: pointer;
	display: block;
	width: 320px
}
@media screen and (max-width:768px) {
	#modal .sectionInner .quizCont .answerContainer a {
		width: calc(100vw * (380 / 640))
	}
}
#modal .sectionInner .quizCont .answerContainer a img {
	width: 100%
}
#modal .sectionInner .quiz[data-type="15"] .quizCont {
	height: 130px;
	padding-bottom: 70px
}
@media screen and (max-width:768px) {
	#modal .sectionInner .quiz[data-type="15"] .quizCont {
		padding-top: calc(100vw * (270 / 640));
		height: calc(100vw * (250 / 640));
		padding-bottom: calc(100vw * (100/ 640))
	}
}
#modal .sectionInner .answerCont {
	width: 510px;
	height: 420px;
	position: relative
}
@media screen and (max-width:768px) {
	#modal .sectionInner .answerCont {
		width: calc(100vw * (550 / 640));
		height: calc(100vw * (720 / 640))
	}
}
#modal .sectionInner .answerCont .close {
	cursor: pointer;
	background-image: url(../images/q/a_close.svg)
}
#modal .sectionInner .answerCont .correct, #modal .sectionInner .answerCont .incorrect {
	position: absolute;
	width: 214px;
	height: 78px;
	top: 45px;
	left: 104px
}
@media screen and (max-width:768px) {
	#modal .sectionInner .answerCont .correct, #modal .sectionInner .answerCont .incorrect {
		width: calc(100vw * (230 / 640));
		height: calc(100vw * (91 / 640));
		top: calc(100vw * (88 / 640));
		left: calc(100vw * (88 / 640))
	}
}
#modal .sectionInner .answerCont .correct img, #modal .sectionInner .answerCont .incorrect img {
	width: 100%;
	height: 100%;
	object-fit: contain
}
#modal .sectionInner .quiz[data-is-correct=true] .answerCont .correct {
	display: block
}
#modal .sectionInner .quiz[data-is-correct=true] .answerCont .incorrect {
	display: none
}
#modal .sectionInner .quiz[data-is-correct=false] .answerCont .correct {
	display: none
}
#modal .sectionInner .quiz[data-is-correct=false] .answerCont .incorrect {
	display: block
}
#modal .sectionInner .close {
	cursor: pointer;
	display: block;
	position: absolute;
	width: 40px;
	height: 40px;
	top: 25px;
	right: 25px
}
@media screen and (max-width:768px) {
	#modal .sectionInner .close {
		width: calc(100vw * (55 / 640));
		height: calc(100vw * (55 / 640));
		top: calc(100vw * (22 / 640));
		right: calc(100vw * (14 / 640))
	}
}
#modal .sectionInner .quiz .quizCont {
	display: block
}
#modal .sectionInner .quiz .answerCont {
	display: none
}
#modal .sectionInner .quiz[data-is-finish=true] .quizCont {
	display: none
}
#modal .sectionInner .quiz[data-is-finish=true] .answerCont {
	display: block
}
#modalresult .sectionInner {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center
}
#modalresult .sectionInner .resultCont {
	width: 450px;
	height: 444px;
	position: relative
}
@media screen and (max-width:768px) {
	#modalresult .sectionInner .resultCont {
		width: calc(100vw * (550 / 640));
		height: calc(100vw * (636 / 640))
	}
}
#modalresult .sectionInner .resultCont .closeResult {
	cursor: pointer;
	display: block;
	position: absolute;
	width: 40px;
	height: 40px;
	top: 90px;
	right: 25px
}
@media screen and (max-width:768px) {
	#modalresult .sectionInner .resultCont .closeResult {
		right: calc(100vw * (25 / 640));
		top: calc(100vw * (110 / 640))
	}
}
#modalresult .sectionInner .resultCont .resultTxt {
	position: absolute;
	width: 100%;
	font-weight: 700;
	top: 240px;
	text-align: center;
	font-size: 26px;
	color: #fff
}
@media screen and (max-width:768px) {
	#modalresult .sectionInner .resultCont .resultTxt {
		font-size: calc(100vw * (34 / 640));
		top: calc(100vw * (310 / 640))
	}
}
#modalresult .sectionInner .resultCont .dl {
	position: absolute;
	width: 120px;
	height: 120px;
	left: 380px;
	top: 304px;
	display: none
}
#modalresult .sectionInner .resultCont .dl img {
	width: 100%;
	height: 100%
}
@media screen and (max-width:768px) {
	#modalresult .sectionInner .resultCont .dl {
		width: calc(100vw * (160 / 640));
		height: calc(100vw * (160 / 640));
		left: inherit;
		right: calc(100vw * (-20 / 640));
		top: inherit;
		bottom: calc(100vw * (-80 / 640))
	}
}
#modalresult .sectionInner .resultCont .fb, #modalresult .sectionInner .resultCont .ln, #modalresult .sectionInner .resultCont .tw {
	cursor: pointer;
	display: block;
	position: absolute;
	width: 32px;
	height: 32px;
	top: 396px
}
#modalresult .sectionInner .resultCont .fb img, #modalresult .sectionInner .resultCont .ln img, #modalresult .sectionInner .resultCont .tw img {
	width: 100%;
	height: 100%
}
@media screen and (max-width:768px) {
	#modalresult .sectionInner .resultCont .fb, #modalresult .sectionInner .resultCont .ln, #modalresult .sectionInner .resultCont .tw {
		width: calc(100vw * (60 / 640));
		height: calc(100vw * (60 / 640));
		top: calc(100vw * (556 / 640))
	}
}
#modalresult .sectionInner .resultCont .fb {
	left: 152px
}
@media screen and (max-width:768px) {
	#modalresult .sectionInner .resultCont .fb {
		left: calc(100vw * (140 / 640))
	}
}
#modalresult .sectionInner .resultCont .tw {
	left: 209px
}
@media screen and (max-width:768px) {
	#modalresult .sectionInner .resultCont .tw {
		left: calc(100vw * (240 / 640))
	}
}
#modalresult .sectionInner .resultCont .ln {
	left: 268px
}
@media screen and (max-width:768px) {
	#modalresult .sectionInner .resultCont .ln {
		left: calc(100vw * (340 / 640))
	}
}
div.sectionInner[data-correct="0"] .resultCont, div.sectionInner[data-correct="1"] .resultCont, div.sectionInner[data-correct="2"] .resultCont, div.sectionInner[data-correct="3"] .resultCont, div.sectionInner[data-correct="4"] .resultCont, div.sectionInner[data-correct="5"] .resultCont, div.sectionInner[data-correct="6"] .resultCont, div.sectionInner[data-correct="7"] .resultCont, div.sectionInner[data-correct="8"] .resultCont {
	background-image: url(../images/result/c.svg)
}
@media screen and (max-width:768px) {
	div.sectionInner[data-correct="0"] .resultCont, div.sectionInner[data-correct="1"] .resultCont, div.sectionInner[data-correct="2"] .resultCont, div.sectionInner[data-correct="3"] .resultCont, div.sectionInner[data-correct="4"] .resultCont, div.sectionInner[data-correct="5"] .resultCont, div.sectionInner[data-correct="6"] .resultCont, div.sectionInner[data-correct="7"] .resultCont, div.sectionInner[data-correct="8"] .resultCont {
		background-image: url(../images/result/sp/c.svg)
	}
}
div.sectionInner[data-correct="0"] .resultCont .closeResult, div.sectionInner[data-correct="1"] .resultCont .closeResult, div.sectionInner[data-correct="2"] .resultCont .closeResult, div.sectionInner[data-correct="3"] .resultCont .closeResult, div.sectionInner[data-correct="4"] .resultCont .closeResult, div.sectionInner[data-correct="5"] .resultCont .closeResult, div.sectionInner[data-correct="6"] .resultCont .closeResult, div.sectionInner[data-correct="7"] .resultCont .closeResult, div.sectionInner[data-correct="8"] .resultCont .closeResult {
	background-image: url(../images/result/c_close.svg)
}
div.sectionInner[data-correct="0"] .resultCont .resultTxt, div.sectionInner[data-correct="1"] .resultCont .resultTxt, div.sectionInner[data-correct="2"] .resultCont .resultTxt, div.sectionInner[data-correct="3"] .resultCont .resultTxt, div.sectionInner[data-correct="4"] .resultCont .resultTxt, div.sectionInner[data-correct="5"] .resultCont .resultTxt, div.sectionInner[data-correct="6"] .resultCont .resultTxt, div.sectionInner[data-correct="7"] .resultCont .resultTxt, div.sectionInner[data-correct="8"] .resultCont .resultTxt {
	top: 230px!important
}
@media screen and (max-width:768px) {
	div.sectionInner[data-correct="0"] .resultCont .resultTxt, div.sectionInner[data-correct="1"] .resultCont .resultTxt, div.sectionInner[data-correct="2"] .resultCont .resultTxt, div.sectionInner[data-correct="3"] .resultCont .resultTxt, div.sectionInner[data-correct="4"] .resultCont .resultTxt, div.sectionInner[data-correct="5"] .resultCont .resultTxt, div.sectionInner[data-correct="6"] .resultCont .resultTxt, div.sectionInner[data-correct="7"] .resultCont .resultTxt, div.sectionInner[data-correct="8"] .resultCont .resultTxt {
		top: calc(100vw * (310 / 640))!important
	}
}
div.sectionInner[data-correct="10"] .resultCont, div.sectionInner[data-correct="11"] .resultCont, div.sectionInner[data-correct="12"] .resultCont, div.sectionInner[data-correct="13"] .resultCont, div.sectionInner[data-correct="14"] .resultCont, div.sectionInner[data-correct="15"] .resultCont, div.sectionInner[data-correct="16"] .resultCont, div.sectionInner[data-correct="9"] .resultCont {
	background-image: url(../images/result/b.svg)
}
@media screen and (max-width:768px) {
	div.sectionInner[data-correct="10"] .resultCont, div.sectionInner[data-correct="11"] .resultCont, div.sectionInner[data-correct="12"] .resultCont, div.sectionInner[data-correct="13"] .resultCont, div.sectionInner[data-correct="14"] .resultCont, div.sectionInner[data-correct="15"] .resultCont, div.sectionInner[data-correct="16"] .resultCont, div.sectionInner[data-correct="9"] .resultCont {
		background-image: url(../images/result/sp/b.svg)
	}
}
div.sectionInner[data-correct="10"] .resultCont .closeResult, div.sectionInner[data-correct="11"] .resultCont .closeResult, div.sectionInner[data-correct="12"] .resultCont .closeResult, div.sectionInner[data-correct="13"] .resultCont .closeResult, div.sectionInner[data-correct="14"] .resultCont .closeResult, div.sectionInner[data-correct="15"] .resultCont .closeResult, div.sectionInner[data-correct="16"] .resultCont .closeResult, div.sectionInner[data-correct="9"] .resultCont .closeResult {
	background-image: url(../images/result/b_close.svg)
}
div.sectionInner[data-correct="10"] .resultCont .resultTxt, div.sectionInner[data-correct="11"] .resultCont .resultTxt, div.sectionInner[data-correct="12"] .resultCont .resultTxt, div.sectionInner[data-correct="13"] .resultCont .resultTxt, div.sectionInner[data-correct="14"] .resultCont .resultTxt, div.sectionInner[data-correct="15"] .resultCont .resultTxt, div.sectionInner[data-correct="16"] .resultCont .resultTxt, div.sectionInner[data-correct="9"] .resultCont .resultTxt {
	color: #782e00!important
}
div.sectionInner[data-correct="17"] .resultCont {
	background-image: url(../images/result/a.svg)
}
@media screen and (max-width:768px) {
	div.sectionInner[data-correct="17"] .resultCont {
		background-image: url(../images/result/sp/a.svg)
	}
}
div.sectionInner[data-correct="17"] .resultCont .closeResult {
	background-image: url(../images/result/a_close.svg)
}
div.sectionInner[data-correct="17"] .resultCont .dl {
	display: block!important
}
.audioCont {
	display: none
}
@keyframes playkyoro {
	0% {
		left: 0
	}
	100% {
		left: -480px
	}
}
@keyframes playkyoro190 {
	0% {
		left: 0
	}
	100% {
		left: -570px
	}
}