@charset "UTF-8";
@-webkit-keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translateZ(0);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		transform: translateZ(0)
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		transform: translate3d(0, -30px, 0)
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -15px, 0);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		transform: translate3d(0, -15px, 0)
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0)
	}
}

@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		-webkit-transform: translateZ(0);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		transform: translateZ(0)
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -30px, 0);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		transform: translate3d(0, -30px, 0)
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		-webkit-transform: translate3d(0, -15px, 0);
		animation-timing-function: cubic-bezier(.755, .05, .855, .06);
		transform: translate3d(0, -15px, 0)
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0)
	}
}

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

@-webkit-keyframes flash {
	0%,
	50%,
	to {
		opacity: 1
	}
	25%,
	75% {
		opacity: 0
	}
}

@keyframes flash {
	0%,
	50%,
	to {
		opacity: 1
	}
	25%,
	75% {
		opacity: 0
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05)
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse
}

@-webkit-keyframes rubberBand {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(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: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes rubberBand {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(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: scaleX(1);
		transform: scaleX(1)
	}
}

.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand
}

@-webkit-keyframes shake {
	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(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 shake {
	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(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)
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake
}

@-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)
	}
}

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

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}
	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}
	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}
	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}
	to {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg)
	}
	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}
	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg)
	}
	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg)
	}
	to {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
}

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

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
		transform: scale3d(.9, .9, .9) rotate(-3deg)
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
	10%,
	20% {
		-webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
		transform: scale3d(.9, .9, .9) rotate(-3deg)
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1)
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada
}

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
		transform: translate3d(-25%, 0, 0) rotate(-5deg)
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
		transform: translate3d(20%, 0, 0) rotate(3deg)
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
		transform: translate3d(-15%, 0, 0) rotate(-3deg)
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
		transform: translate3d(10%, 0, 0) rotate(2deg)
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
		transform: translate3d(-5%, 0, 0) rotate(-1deg)
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
		transform: translate3d(-25%, 0, 0) rotate(-5deg)
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
		transform: translate3d(20%, 0, 0) rotate(3deg)
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
		transform: translate3d(-15%, 0, 0) rotate(-3deg)
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
		transform: translate3d(10%, 0, 0) rotate(2deg)
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
		transform: translate3d(-5%, 0, 0) rotate(-1deg)
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble
}

@-webkit-keyframes jello {
	0%,
	11.1%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(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 {
	0%,
	11.1%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(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)
	}
}

.jello {
	-webkit-animation-name: jello;
	-webkit-transform-origin: center;
	animation-name: jello;
	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)
	}
}

.heartBeat {
	-webkit-animation-duration: 1.3s;
	-webkit-animation-name: heartBeat;
	-webkit-animation-timing-function: ease-in-out;
	animation-duration: 1.3s;
	animation-name: heartBeat;
	animation-timing-function: ease-in-out
}

@-webkit-keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		-webkit-transform: scale3d(.3, .3, .3);
		opacity: 0;
		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% {
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03)
	}
	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97)
	}
	to {
		-webkit-transform: scaleX(1);
		opacity: 1;
		transform: scaleX(1)
	}
}

@keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		-webkit-transform: scale3d(.3, .3, .3);
		opacity: 0;
		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% {
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03)
	}
	80% {
		-webkit-transform: scale3d(.97, .97, .97);
		transform: scale3d(.97, .97, .97)
	}
	to {
		-webkit-transform: scaleX(1);
		opacity: 1;
		transform: scaleX(1)
	}
}

.bounceIn {
	-webkit-animation-duration: .75s;
	-webkit-animation-name: bounceIn;
	animation-duration: .75s;
	animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		-webkit-transform: translate3d(0, -3000px, 0);
		opacity: 0;
		transform: translate3d(0, -3000px, 0)
	}
	60% {
		-webkit-transform: translate3d(0, 25px, 0);
		opacity: 1;
		transform: translate3d(0, 25px, 0)
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes bounceInDown {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		-webkit-transform: translate3d(0, -3000px, 0);
		opacity: 0;
		transform: translate3d(0, -3000px, 0)
	}
	60% {
		-webkit-transform: translate3d(0, 25px, 0);
		opacity: 1;
		transform: translate3d(0, 25px, 0)
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		-webkit-transform: translate3d(-3000px, 0, 0);
		opacity: 0;
		transform: translate3d(-3000px, 0, 0)
	}
	60% {
		-webkit-transform: translate3d(25px, 0, 0);
		opacity: 1;
		transform: translate3d(25px, 0, 0)
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes bounceInLeft {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		-webkit-transform: translate3d(-3000px, 0, 0);
		opacity: 0;
		transform: translate3d(-3000px, 0, 0)
	}
	60% {
		-webkit-transform: translate3d(25px, 0, 0);
		opacity: 1;
		transform: translate3d(25px, 0, 0)
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0)
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		-webkit-transform: translate3d(3000px, 0, 0);
		opacity: 0;
		transform: translate3d(3000px, 0, 0)
	}
	60% {
		-webkit-transform: translate3d(-25px, 0, 0);
		opacity: 1;
		transform: translate3d(-25px, 0, 0)
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes bounceInRight {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		-webkit-transform: translate3d(3000px, 0, 0);
		opacity: 0;
		transform: translate3d(3000px, 0, 0)
	}
	60% {
		-webkit-transform: translate3d(-25px, 0, 0);
		opacity: 1;
		transform: translate3d(-25px, 0, 0)
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0)
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		-webkit-transform: translate3d(0, 3000px, 0);
		opacity: 0;
		transform: translate3d(0, 3000px, 0)
	}
	60% {
		-webkit-transform: translate3d(0, -20px, 0);
		opacity: 1;
		transform: translate3d(0, -20px, 0)
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes bounceInUp {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
		animation-timing-function: cubic-bezier(.215, .61, .355, 1)
	}
	0% {
		-webkit-transform: translate3d(0, 3000px, 0);
		opacity: 0;
		transform: translate3d(0, 3000px, 0)
	}
	60% {
		-webkit-transform: translate3d(0, -20px, 0);
		opacity: 1;
		transform: translate3d(0, -20px, 0)
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.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% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1)
	}
	to {
		-webkit-transform: scale3d(.3, .3, .3);
		opacity: 0;
		transform: scale3d(.3, .3, .3)
	}
}

@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(.9, .9, .9);
		transform: scale3d(.9, .9, .9)
	}
	50%,
	55% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1)
	}
	to {
		-webkit-transform: scale3d(.3, .3, .3);
		opacity: 0;
		transform: scale3d(.3, .3, .3)
	}
}

.bounceOut {
	-webkit-animation-duration: .75s;
	-webkit-animation-name: bounceOut;
	animation-duration: .75s;
	animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}
	40%,
	45% {
		-webkit-transform: translate3d(0, -20px, 0);
		opacity: 1;
		transform: translate3d(0, -20px, 0)
	}
	to {
		-webkit-transform: translate3d(0, 2000px, 0);
		opacity: 0;
		transform: translate3d(0, 2000px, 0)
	}
}

@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0)
	}
	40%,
	45% {
		-webkit-transform: translate3d(0, -20px, 0);
		opacity: 1;
		transform: translate3d(0, -20px, 0)
	}
	to {
		-webkit-transform: translate3d(0, 2000px, 0);
		opacity: 0;
		transform: translate3d(0, 2000px, 0)
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
	20% {
		-webkit-transform: translate3d(20px, 0, 0);
		opacity: 1;
		transform: translate3d(20px, 0, 0)
	}
	to {
		-webkit-transform: translate3d(-2000px, 0, 0);
		opacity: 0;
		transform: translate3d(-2000px, 0, 0)
	}
}

@keyframes bounceOutLeft {
	20% {
		-webkit-transform: translate3d(20px, 0, 0);
		opacity: 1;
		transform: translate3d(20px, 0, 0)
	}
	to {
		-webkit-transform: translate3d(-2000px, 0, 0);
		opacity: 0;
		transform: translate3d(-2000px, 0, 0)
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
	20% {
		-webkit-transform: translate3d(-20px, 0, 0);
		opacity: 1;
		transform: translate3d(-20px, 0, 0)
	}
	to {
		-webkit-transform: translate3d(2000px, 0, 0);
		opacity: 0;
		transform: translate3d(2000px, 0, 0)
	}
}

@keyframes bounceOutRight {
	20% {
		-webkit-transform: translate3d(-20px, 0, 0);
		opacity: 1;
		transform: translate3d(-20px, 0, 0)
	}
	to {
		-webkit-transform: translate3d(2000px, 0, 0);
		opacity: 0;
		transform: translate3d(2000px, 0, 0)
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}
	40%,
	45% {
		-webkit-transform: translate3d(0, 20px, 0);
		opacity: 1;
		transform: translate3d(0, 20px, 0)
	}
	to {
		-webkit-transform: translate3d(0, -2000px, 0);
		opacity: 0;
		transform: translate3d(0, -2000px, 0)
	}
}

@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0)
	}
	40%,
	45% {
		-webkit-transform: translate3d(0, 20px, 0);
		opacity: 1;
		transform: translate3d(0, 20px, 0)
	}
	to {
		-webkit-transform: translate3d(0, -2000px, 0);
		opacity: 0;
		transform: translate3d(0, -2000px, 0)
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0
	}
	to {
		opacity: 1
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0
	}
	to {
		opacity: 1
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}

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

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

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown
}

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

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

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig
}

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

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

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft
}

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

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

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		opacity: 0;
		transform: translate3d(100%, 0, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		opacity: 1;
		transform: translateZ(0)
	}
}

@keyframes fadeInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		opacity: 0;
		transform: translate3d(100%, 0, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
	0% {
		-webkit-transform: translate3d(2000px, 0, 0);
		opacity: 0;
		transform: translate3d(2000px, 0, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		opacity: 1;
		transform: translateZ(0)
	}
}

@keyframes fadeInRightBig {
	0% {
		-webkit-transform: translate3d(2000px, 0, 0);
		opacity: 0;
		transform: translate3d(2000px, 0, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		opacity: 0;
		transform: translate3d(0, 100%, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		opacity: 1;
		transform: translateZ(0)
	}
}

@keyframes fadeInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		opacity: 0;
		transform: translate3d(0, 100%, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
	0% {
		-webkit-transform: translate3d(0, 2000px, 0);
		opacity: 0;
		transform: translate3d(0, 2000px, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		opacity: 1;
		transform: translateZ(0)
	}
}

@keyframes fadeInUpBig {
	0% {
		-webkit-transform: translate3d(0, 2000px, 0);
		opacity: 0;
		transform: translate3d(0, 2000px, 0)
	}
	to {
		-webkit-transform: translateZ(0);
		opacity: 1;
		transform: translateZ(0)
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1
	}
	to {
		opacity: 0
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1
	}
	to {
		opacity: 0
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(0, 100%, 0);
		opacity: 0;
		transform: translate3d(0, 100%, 0)
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(0, 100%, 0);
		opacity: 0;
		transform: translate3d(0, 100%, 0)
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(0, 2000px, 0);
		opacity: 0;
		transform: translate3d(0, 2000px, 0)
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(0, 2000px, 0);
		opacity: 0;
		transform: translate3d(0, 2000px, 0)
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(-100%, 0, 0);
		opacity: 0;
		transform: translate3d(-100%, 0, 0)
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(-100%, 0, 0);
		opacity: 0;
		transform: translate3d(-100%, 0, 0)
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(-2000px, 0, 0);
		opacity: 0;
		transform: translate3d(-2000px, 0, 0)
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(-2000px, 0, 0);
		opacity: 0;
		transform: translate3d(-2000px, 0, 0)
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0);
		opacity: 0;
		transform: translate3d(100%, 0, 0)
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0);
		opacity: 0;
		transform: translate3d(100%, 0, 0)
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(2000px, 0, 0);
		opacity: 0;
		transform: translate3d(2000px, 0, 0)
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(2000px, 0, 0);
		opacity: 0;
		transform: translate3d(2000px, 0, 0)
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(0, -100%, 0);
		opacity: 0;
		transform: translate3d(0, -100%, 0)
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(0, -100%, 0);
		opacity: 0;
		transform: translate3d(0, -100%, 0)
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(0, -2000px, 0);
		opacity: 0;
		transform: translate3d(0, -2000px, 0)
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(0, -2000px, 0);
		opacity: 0;
		transform: translate3d(0, -2000px, 0)
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
	0% {
		-webkit-animation-timing-function: ease-out;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		animation-timing-function: ease-out;
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)
	}
	40% {
		-webkit-animation-timing-function: ease-out;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		animation-timing-function: ease-out;
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)
	}
	50% {
		-webkit-animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		animation-timing-function: ease-in;
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)
	}
	80% {
		-webkit-animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0);
		animation-timing-function: ease-in;
		transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0)
	}
	to {
		-webkit-animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0);
		animation-timing-function: ease-in;
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0)
	}
}

@keyframes flip {
	0% {
		-webkit-animation-timing-function: ease-out;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		animation-timing-function: ease-out;
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn)
	}
	40% {
		-webkit-animation-timing-function: ease-out;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		animation-timing-function: ease-out;
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg)
	}
	50% {
		-webkit-animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		animation-timing-function: ease-in;
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg)
	}
	80% {
		-webkit-animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0);
		animation-timing-function: ease-in;
		transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0)
	}
	to {
		-webkit-animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0);
		animation-timing-function: ease-in;
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0)
	}
}

.animated.flip {
	-webkit-animation-name: flip;
	-webkit-backface-visibility: visible;
	animation-name: flip;
	backface-visibility: visible
}

@-webkit-keyframes flipInX {
	0% {
		-webkit-animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotateX(90deg);
		animation-timing-function: ease-in;
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}
	40% {
		-webkit-animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotateX(-20deg);
		animation-timing-function: ease-in;
		transform: perspective(400px) rotateX(-20deg)
	}
	60% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		opacity: 1;
		transform: perspective(400px) rotateX(10deg)
	}
	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg)
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInX {
	0% {
		-webkit-animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotateX(90deg);
		animation-timing-function: ease-in;
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}
	40% {
		-webkit-animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotateX(-20deg);
		animation-timing-function: ease-in;
		transform: perspective(400px) rotateX(-20deg)
	}
	60% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		opacity: 1;
		transform: perspective(400px) rotateX(10deg)
	}
	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg)
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

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

@-webkit-keyframes flipInY {
	0% {
		-webkit-animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotateY(90deg);
		animation-timing-function: ease-in;
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}
	40% {
		-webkit-animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotateY(-20deg);
		animation-timing-function: ease-in;
		transform: perspective(400px) rotateY(-20deg)
	}
	60% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		opacity: 1;
		transform: perspective(400px) rotateY(10deg)
	}
	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg)
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

@keyframes flipInY {
	0% {
		-webkit-animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotateY(90deg);
		animation-timing-function: ease-in;
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}
	40% {
		-webkit-animation-timing-function: ease-in;
		-webkit-transform: perspective(400px) rotateY(-20deg);
		animation-timing-function: ease-in;
		transform: perspective(400px) rotateY(-20deg)
	}
	60% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		opacity: 1;
		transform: perspective(400px) rotateY(10deg)
	}
	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg)
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
}

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

@-webkit-keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
	30% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		opacity: 1;
		transform: perspective(400px) rotateX(-20deg)
	}
	to {
		-webkit-transform: perspective(400px) rotateX(90deg);
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
	30% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		opacity: 1;
		transform: perspective(400px) rotateX(-20deg)
	}
	to {
		-webkit-transform: perspective(400px) rotateX(90deg);
		opacity: 0;
		transform: perspective(400px) rotateX(90deg)
	}
}

.flipOutX {
	-webkit-animation-duration: .75s;
	-webkit-animation-name: flipOutX;
	-webkit-backface-visibility: visible!important;
	animation-duration: .75s;
	animation-name: flipOutX;
	backface-visibility: visible!important
}

@-webkit-keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
	30% {
		-webkit-transform: perspective(400px) rotateY(-15deg);
		opacity: 1;
		transform: perspective(400px) rotateY(-15deg)
	}
	to {
		-webkit-transform: perspective(400px) rotateY(90deg);
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px)
	}
	30% {
		-webkit-transform: perspective(400px) rotateY(-15deg);
		opacity: 1;
		transform: perspective(400px) rotateY(-15deg)
	}
	to {
		-webkit-transform: perspective(400px) rotateY(90deg);
		opacity: 0;
		transform: perspective(400px) rotateY(90deg)
	}
}

.flipOutY {
	-webkit-animation-duration: .75s;
	-webkit-animation-name: flipOutY;
	-webkit-backface-visibility: visible!important;
	animation-duration: .75s;
	animation-name: flipOutY;
	backface-visibility: visible!important
}

@-webkit-keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
		transform: translate3d(100%, 0, 0) skewX(-30deg)
	}
	60% {
		-webkit-transform: skewX(20deg);
		opacity: 1;
		transform: skewX(20deg)
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg)
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
		transform: translate3d(100%, 0, 0) skewX(-30deg)
	}
	60% {
		-webkit-transform: skewX(20deg);
		opacity: 1;
		transform: skewX(20deg)
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg)
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
}

.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-name: lightSpeedIn;
	animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
		transform: translate3d(100%, 0, 0) skewX(30deg)
	}
}

@keyframes lightSpeedOut {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
		transform: translate3d(100%, 0, 0) skewX(30deg)
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-name: lightSpeedOut;
	animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
	0% {
		-webkit-transform: rotate(-200deg);
		-webkit-transform-origin: center;
		opacity: 0;
		transform: rotate(-200deg);
		transform-origin: center
	}
	to {
		-webkit-transform: translateZ(0);
		-webkit-transform-origin: center;
		opacity: 1;
		transform: translateZ(0);
		transform-origin: center
	}
}

@keyframes rotateIn {
	0% {
		-webkit-transform: rotate(-200deg);
		-webkit-transform-origin: center;
		opacity: 0;
		transform: rotate(-200deg);
		transform-origin: center
	}
	to {
		-webkit-transform: translateZ(0);
		-webkit-transform-origin: center;
		opacity: 1;
		transform: translateZ(0);
		transform-origin: center
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		-webkit-transform: rotate(-45deg);
		-webkit-transform-origin: left bottom;
		opacity: 0;
		transform: rotate(-45deg);
		transform-origin: left bottom
	}
	to {
		-webkit-transform: translateZ(0);
		-webkit-transform-origin: left bottom;
		opacity: 1;
		transform: translateZ(0);
		transform-origin: left bottom
	}
}

@keyframes rotateInDownLeft {
	0% {
		-webkit-transform: rotate(-45deg);
		-webkit-transform-origin: left bottom;
		opacity: 0;
		transform: rotate(-45deg);
		transform-origin: left bottom
	}
	to {
		-webkit-transform: translateZ(0);
		-webkit-transform-origin: left bottom;
		opacity: 1;
		transform: translateZ(0);
		transform-origin: left bottom
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
	0% {
		-webkit-transform: rotate(45deg);
		-webkit-transform-origin: right bottom;
		opacity: 0;
		transform: rotate(45deg);
		transform-origin: right bottom
	}
	to {
		-webkit-transform: translateZ(0);
		-webkit-transform-origin: right bottom;
		opacity: 1;
		transform: translateZ(0);
		transform-origin: right bottom
	}
}

@keyframes rotateInDownRight {
	0% {
		-webkit-transform: rotate(45deg);
		-webkit-transform-origin: right bottom;
		opacity: 0;
		transform: rotate(45deg);
		transform-origin: right bottom
	}
	to {
		-webkit-transform: translateZ(0);
		-webkit-transform-origin: right bottom;
		opacity: 1;
		transform: translateZ(0);
		transform-origin: right bottom
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		-webkit-transform: rotate(45deg);
		-webkit-transform-origin: left bottom;
		opacity: 0;
		transform: rotate(45deg);
		transform-origin: left bottom
	}
	to {
		-webkit-transform: translateZ(0);
		-webkit-transform-origin: left bottom;
		opacity: 1;
		transform: translateZ(0);
		transform-origin: left bottom
	}
}

@keyframes rotateInUpLeft {
	0% {
		-webkit-transform: rotate(45deg);
		-webkit-transform-origin: left bottom;
		opacity: 0;
		transform: rotate(45deg);
		transform-origin: left bottom
	}
	to {
		-webkit-transform: translateZ(0);
		-webkit-transform-origin: left bottom;
		opacity: 1;
		transform: translateZ(0);
		transform-origin: left bottom
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
	0% {
		-webkit-transform: rotate(-90deg);
		-webkit-transform-origin: right bottom;
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: right bottom
	}
	to {
		-webkit-transform: translateZ(0);
		-webkit-transform-origin: right bottom;
		opacity: 1;
		transform: translateZ(0);
		transform-origin: right bottom
	}
}

@keyframes rotateInUpRight {
	0% {
		-webkit-transform: rotate(-90deg);
		-webkit-transform-origin: right bottom;
		opacity: 0;
		transform: rotate(-90deg);
		transform-origin: right bottom
	}
	to {
		-webkit-transform: translateZ(0);
		-webkit-transform-origin: right bottom;
		opacity: 1;
		transform: translateZ(0);
		transform-origin: right bottom
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
	0% {
		-webkit-transform-origin: center;
		opacity: 1;
		transform-origin: center
	}
	to {
		-webkit-transform: rotate(200deg);
		-webkit-transform-origin: center;
		opacity: 0;
		transform: rotate(200deg);
		transform-origin: center
	}
}

@keyframes rotateOut {
	0% {
		-webkit-transform-origin: center;
		opacity: 1;
		transform-origin: center
	}
	to {
		-webkit-transform: rotate(200deg);
		-webkit-transform-origin: center;
		opacity: 0;
		transform: rotate(200deg);
		transform-origin: center
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		opacity: 1;
		transform-origin: left bottom
	}
	to {
		-webkit-transform: rotate(45deg);
		-webkit-transform-origin: left bottom;
		opacity: 0;
		transform: rotate(45deg);
		transform-origin: left bottom
	}
}

@keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		opacity: 1;
		transform-origin: left bottom
	}
	to {
		-webkit-transform: rotate(45deg);
		-webkit-transform-origin: left bottom;
		opacity: 0;
		transform: rotate(45deg);
		transform-origin: left bottom
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		opacity: 1;
		transform-origin: right bottom
	}
	to {
		-webkit-transform: rotate(-45deg);
		-webkit-transform-origin: right bottom;
		opacity: 0;
		transform: rotate(-45deg);
		transform-origin: right bottom
	}
}

@keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		opacity: 1;
		transform-origin: right bottom
	}
	to {
		-webkit-transform: rotate(-45deg);
		-webkit-transform-origin: right bottom;
		opacity: 0;
		transform: rotate(-45deg);
		transform-origin: right bottom
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		opacity: 1;
		transform-origin: left bottom
	}
	to {
		-webkit-transform: rotate(-45deg);
		-webkit-transform-origin: left bottom;
		opacity: 0;
		transform: rotate(-45deg);
		transform-origin: left bottom
	}
}

@keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		opacity: 1;
		transform-origin: left bottom
	}
	to {
		-webkit-transform: rotate(-45deg);
		-webkit-transform-origin: left bottom;
		opacity: 0;
		transform: rotate(-45deg);
		transform-origin: left bottom
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		opacity: 1;
		transform-origin: right bottom
	}
	to {
		-webkit-transform: rotate(90deg);
		-webkit-transform-origin: right bottom;
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: right bottom
	}
}

@keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		opacity: 1;
		transform-origin: right bottom
	}
	to {
		-webkit-transform: rotate(90deg);
		-webkit-transform-origin: right bottom;
		opacity: 0;
		transform: rotate(90deg);
		transform-origin: right bottom
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight
}

@-webkit-keyframes hinge {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		-webkit-transform-origin: top left;
		animation-timing-function: ease-in-out;
		transform-origin: top left
	}
	20%,
	60% {
		-webkit-animation-timing-function: ease-in-out;
		-webkit-transform: rotate(80deg);
		-webkit-transform-origin: top left;
		animation-timing-function: ease-in-out;
		transform: rotate(80deg);
		transform-origin: top left
	}
	40%,
	80% {
		-webkit-animation-timing-function: ease-in-out;
		-webkit-transform: rotate(60deg);
		-webkit-transform-origin: top left;
		animation-timing-function: ease-in-out;
		opacity: 1;
		transform: rotate(60deg);
		transform-origin: top left
	}
	to {
		-webkit-transform: translate3d(0, 700px, 0);
		opacity: 0;
		transform: translate3d(0, 700px, 0)
	}
}

@keyframes hinge {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		-webkit-transform-origin: top left;
		animation-timing-function: ease-in-out;
		transform-origin: top left
	}
	20%,
	60% {
		-webkit-animation-timing-function: ease-in-out;
		-webkit-transform: rotate(80deg);
		-webkit-transform-origin: top left;
		animation-timing-function: ease-in-out;
		transform: rotate(80deg);
		transform-origin: top left
	}
	40%,
	80% {
		-webkit-animation-timing-function: ease-in-out;
		-webkit-transform: rotate(60deg);
		-webkit-transform-origin: top left;
		animation-timing-function: ease-in-out;
		opacity: 1;
		transform: rotate(60deg);
		transform-origin: top left
	}
	to {
		-webkit-transform: translate3d(0, 700px, 0);
		opacity: 0;
		transform: translate3d(0, 700px, 0)
	}
}

.hinge {
	-webkit-animation-duration: 2s;
	-webkit-animation-name: hinge;
	animation-duration: 2s;
	animation-name: hinge
}

@-webkit-keyframes jackInTheBox {
	0% {
		-webkit-transform: scale(.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		opacity: 0;
		transform: scale(.1) rotate(30deg);
		transform-origin: center bottom
	}
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}
	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}
	to {
		-webkit-transform: scale(1);
		opacity: 1;
		transform: scale(1)
	}
}

@keyframes jackInTheBox {
	0% {
		-webkit-transform: scale(.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		opacity: 0;
		transform: scale(.1) rotate(30deg);
		transform-origin: center bottom
	}
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg)
	}
	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg)
	}
	to {
		-webkit-transform: scale(1);
		opacity: 1;
		transform: scale(1)
	}
}

.jackInTheBox {
	-webkit-animation-name: jackInTheBox;
	animation-name: jackInTheBox
}

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

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

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn
}

@-webkit-keyframes rollOut {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate(120deg)
	}
}

@keyframes rollOut {
	0% {
		opacity: 1
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate(120deg)
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut
}

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

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

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn
}

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

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

.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown
}

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

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

.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft
}

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

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

.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight
}

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

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

.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1
	}
	50% {
		-webkit-transform: scale3d(.3, .3, .3);
		opacity: 0;
		transform: scale3d(.3, .3, .3)
	}
	to {
		opacity: 0
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1
	}
	50% {
		-webkit-transform: scale3d(.3, .3, .3);
		opacity: 0;
		transform: scale3d(.3, .3, .3)
	}
	to {
		opacity: 0
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
	40% {
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
	}
	to {
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform-origin: center bottom
	}
}

@keyframes zoomOutDown {
	40% {
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0)
	}
	to {
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
		transform-origin: center bottom
	}
}

.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
	40% {
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
	}
	to {
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		opacity: 0;
		transform: scale(.1) translate3d(-2000px, 0, 0);
		transform-origin: left center
	}
}

@keyframes zoomOutLeft {
	40% {
		-webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
	}
	to {
		-webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		opacity: 0;
		transform: scale(.1) translate3d(-2000px, 0, 0);
		transform-origin: left center
	}
}

.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
	40% {
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
	}
	to {
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		opacity: 0;
		transform: scale(.1) translate3d(2000px, 0, 0);
		transform-origin: right center
	}
}

@keyframes zoomOutRight {
	40% {
		-webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
	}
	to {
		-webkit-transform: scale(.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		opacity: 0;
		transform: scale(.1) translate3d(2000px, 0, 0);
		transform-origin: right center
	}
}

.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
	40% {
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
	}
	to {
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform-origin: center bottom
	}
}

@keyframes zoomOutUp {
	40% {
		-webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		-webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(.55, .055, .675, .19);
		opacity: 1;
		transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0)
	}
	to {
		-webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		-webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		animation-timing-function: cubic-bezier(.175, .885, .32, 1);
		opacity: 0;
		transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
		transform-origin: center bottom
	}
}

.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp
}

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

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

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown
}

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

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

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft
}

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

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

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight
}

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

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

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
	to {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: hidden
	}
}

@keyframes slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
	to {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: hidden
	}
}

.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
	to {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: hidden
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
	to {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: hidden
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: hidden
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: hidden
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
	to {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: hidden
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0)
	}
	to {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: hidden
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp
}

.animated {
	-webkit-animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-duration: 1s;
	animation-fill-mode: both
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite
}

.animated.delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s
}

.animated.delay-2s {
	-webkit-animation-delay: 2s;
	animation-delay: 2s
}

.animated.delay-3s {
	-webkit-animation-delay: 3s;
	animation-delay: 3s
}

.animated.delay-4s {
	-webkit-animation-delay: 4s;
	animation-delay: 4s
}

.animated.delay-5s {
	-webkit-animation-delay: 5s;
	animation-delay: 5s
}

.animated.fast {
	-webkit-animation-duration: .8s;
	animation-duration: .8s
}

.animated.faster {
	-webkit-animation-duration: .5s;
	animation-duration: .5s
}

.animated.slow {
	-webkit-animation-duration: 2s;
	animation-duration: 2s
}

.animated.slower {
	-webkit-animation-duration: 3s;
	animation-duration: 3s
}

@media (prefers-reduced-motion) {
	.animated {
		-webkit-animation: unset!important;
		-webkit-transition: none!important;
		animation: unset!important;
		transition: none!important
	}
}

body,
html {
	height: 100%;
	font-family: Arial;
	font-family: Nunito, sans-serif
}

body {
	padding: 0;
	margin: 0;
	overflow: hidden
}

.button {
	-webkit-user-select: none;
	user-select: none;
	cursor: pointer;
	text-shadow: 0 0 3px #333, -1px 0 0 #333, 1px 0 0 #333, 0 1px 0 #333, 0 -1px 0 #333, -1px -1px 0 #444, 1px 1px 0 #333, -1px 1px 0 #444, 1px -1px 0 #444;
	display: inline-block;
	outline: 0;
	text-align: center;
	padding: 10px;
	border-radius: 8px;
	box-shadow: none;
	border: none;
	color: #fff;
	text-decoration: none;
	margin: 16px auto;
	font-weight: 700;
	font-size: 22px;
	letter-spacing: 1px;
	background-color: #3d5dff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2), 0 8px 0 #374ebf;
}

.button:hover {
	background-color: #5b76ff;
	box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .15)!important;
}

.button.back {
	background-color: #95a5a6;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2), 0 8px 0 #95a5a6
}

.button.back:hover {
	background-color: #798d8f;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2), 0 8px 0 #647071
}

.orange.button {
	background-color: #ff8a2a;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2), 0 8px 0 #c56c22
}

.orange.button:hover {
	background-color: #f59444;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2), 0 8px 0 #dc7a28
}

.red.button {
	background-color: #25b32e;
	box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .15)!important;
	font-family: nunito;
	font-weight: 799;
	text-transform: uppercase;
}

.red.button:hover {
	background-color: #30bd38;
	box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .15)!important;
}

.black.button {
	background-color: #2b2b2b;
	box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .15)!important;
}

.black.button:hover {
	background-color: #4e4e4e;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2), 0 8px 0 #333
}

.disabled.button {
	background-color: #95a5a6;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2), 0 4px 0 #95a5a6
}

@keyframes spinner {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

@-webkit-keyframes spinner {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0)
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg)
	}
}

.spinner {
	position: relative;
	width: 100%;
	height: 100%;
	-webkit-transform: translate(-100px, -100px) scale(1) translate(100px, 100px);
	transform: translate(-100px, -100px) scale(1) translate(100px, 100px)
}

.spinner div {
	width: 26px;
	height: 26px;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	border-radius: 50%;
	border: 4px solid #000;
	border-color: #fdfdfd transparent #fdfdfd transparent;
	-webkit-animation: spinner 1s linear infinite;
	animation: spinner 1s linear infinite
}

.spinner.black div {
	border-color: #000 transparent #000 transparent
}

@-webkit-keyframes pulsate {
	0% {
		transform: scale(.7, .7);
		opacity: 0
	}
	50% {
		opacity: 1
	}
	100% {
		transform: scale(1.5, 1.5);
		opacity: 0
	}
}

@keyframes pulsate {
	0% {
		transform: scale(.7, .7);
		opacity: 0
	}
	50% {
		opacity: 1
	}
	100% {
		transform: scale(1.5, 1.5);
		opacity: 0
	}
}

#homepage {
	z-index: 10;
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	text-align: center;
	overflow: auto
}

#homepage .background {
	width: 100%;
	height: 100%
}

#homepage .fade {
	width: 100%;
	height: 100%;
	background-color: rgba(45, 42, 42, 0.7);
	display: table;
	table-layout: fixed;
}

#homepage .row {
	display: table-row
}

#homepage .logo {
	position: absolute;
	left: 0;
	top: 32px;
	width: 100%
}

#homepage .logo .title {
	font-variant: small-caps;
	font-weight: 900;
	font-size: 8vh;
	line-height: 8vh;
	margin: auto auto
}

#homepage .logo .title>div {
	position: relative;
	font-family: nunito;
	display: inline-block;
	height: 116px;
	width: 398px;
	background: url(loqo3.png);
	color: #fefff8;
	text-shadow: 0 0 7px #000, 2px 3px 0 #fff, 1px 0 0 #333, 0 1px 0 #333, 0 4px 0 #000, 4px 3px 0 #333, 1px 1px 0 #000, 3px 1px 0 #000, 1px 3px 0 #000;
}

#homepage .logo .title>div #flag {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateX(-130%)
}

#homepage .logo .title>div #flag img,
#homepage .logo .title>div #flag svg {
	overflow: visible;
	height: 11vh;
	width: auto
}

#homepage .logo .subtitle {
	font-size: 2.2vh;
	margin: auto auto;
	text-transform: capitalize;
	color: #b7cc5a;
}

#homepage .logo .subtitle2 {
	font-size: 2.5vh;
	margin: auto auto;
	margin-top: 1vh
}

@media screen and (max-width:768px) {
	#homepage .logo .subtitle2 {
		font-size: 2vh
	}
}

@media screen and (max-width:700px) {
	#homepage .logo {
		top: 16px;
	 
	transform:scale(.75);
 
	}
	#homepage .logo .title {
		font-size: 8vw
	}
	#homepage .logo .subtitle {
		font-size: 3vw
	}
	#homepage .logo .subtitle2 {
		font-size: 1.5vw
	}
}

@media screen and (max-height:700px) {
	#homepage .logo {
		top: 16px
	}
	#homepage .logo .title {
		font-size: 8vh
	}
	#homepage .logo .subtitle {
		font-size: 3vh
	}
	#homepage .logo .subtitle2 {
		font-size: 1.5vh
	}
}

@media screen and (max-height:610px) {
	#homepage .logo {
		top: 8px
	}
}

#homepage .content {
	height: 100%;
	position: absolute;
	width: 100%;
	pointer-events: none
}

#homepage .content>div {
	width: 33%;
	display: inline-block;
	height: 95%;
	position: relative
}

#homepage .content>div .inside {
	margin: auto auto;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%)
}

#homepage .content .left-box {
	min-width: 300px;
	left: 0
}

#homepage .content .right-box .inside {
	width: 250px;
	pointer-events: all;
	background-color: rgba(0, 0, 0, 0.31);
	padding: 30px;
	border-radius: 16px;
	color: #fff;
	box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .15)!important;
}

#homepage .content .right-box .inside div {
	font-size: 14px;
	margin-bottom: .5vh;
	font-family: nunito;
}

#homepage .content .right-box .inside .title,
#homepage .content .right-box .inside .title2 {
	font-size: 2.5vh;
	line-height: 4vh;
	margin-bottom: 1vh;
	color: #ffba34;
	text-align: center;
	font-weight: 700;
	text-transform: uppercase;
}

#homepage .content .right-box .inside .bolder {
	font-weight: 700
}

#homepage .content .right-box .inside .title2 {
	margin-top: 2vh;
	color: #ffb31e;
}

#homepage .content .right-box .inside a {
	text-decoration: none;
	color: #d3d3d3
}

#homepage .content .right-box .inside a:visited {
	color: #d3d3d3
}

#homepage .content .right-box .inside a:hover {
	color: #fff
}

#homepage .content .right-box .inside .separator {
	margin: 16px 0 8px 0;
	padding: 0 0 8px 0;
	border-top: 1px solid #fff
}

#homepage .content .right-box .left-pub {
	width: 300px;
	height: 250px;
	text-align: center
}

#homepage .content .right-box .left-pub .adblocked {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: Arial;
	font-size: 32px;
	width: 100%
}

#homepage .content .middle-box .inside {
	width: 400px;
	pointer-events: all;
}

@media screen and (max-width:1024px) {
	#homepage .content .middle-box .inside {
		width: 90%
	}
}

#homepage .content .middle-box #homepage-loading {
	font-size: 32px
}

#homepage .content .middle-box #homepage-loading .spinner {
	width: 28px;
	height: 28px;
	display: inline-block;
	margin-right: 16px
}

#homepage .content .middle-box #homepage-loaded {
	display: none;
	padding: 16px 16px;
	border-radius: 16px
}

#homepage .content .middle-box .info {
	margin: 2vh auto;
	display: flex;
	justify-content: space-between;
	padding: 10px;
	border-radius: 5px;
	box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .15)!important;
	max-width: 300px;
	background: rgba(0, 0, 0, 0.14);
}

#homepage .content .middle-box .info .level {
	font-size: 15px;
	text-align: left;
	color: #fff;
	font-family: nunito;
}

#homepage .content .middle-box .info .level #homepage-league {
	font-size: 17px;
	font-weight: 700;
	text-transform: uppercase;
	text-shadow: 0 0 3px #333, -1px 0 0 #333, 1px 0 0 #333, 0 1px 0 #333, 0 -1px 0 #333, -1px -1px 0 #444, 1px 1px 0 #333, -1px 1px 0 #444, 1px -1px 0 #444;
	color: #f9ed04;
}

#homepage .content .middle-box .info .booty {
	font-size: 2.5vh;
	text-align: right;
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: nunito;
	font-weight: 700;
	color: #f1dd03;
}

#homepage .content .middle-box .info .booty img {
	vertical-align: middle;
	height: 4vh
}

#homepage .content .middle-box input {
	text-align: left;
	padding: 8px 16px;
	border-radius: 16px;
	box-shadow: none;
	border: none;
	font-size: 16px;
	outline: 0;
	border-radius: 4px
}

#homepage .content .middle-box #username {
	width: 100%;
	display: block;
	border-radius: 10px;
	box-sizing: border-box;
	margin-bottom: 32px;
	max-width: 300px;
	height: 48px;
	font-size: 23px;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
	font-family: nunito;
	margin-bottom: 16px;
	font-weight: 700;
	color: #444;
	border: 1px solid #bdbdbd;
}

#homepage .content .middle-box .buttons {
	max-width: 320px;
	margin: auto auto
}

#homepage .content .middle-box .button {
	margin-left: auto;
	margin-right: auto;
	margin-top: 8px
}

#homepage .content .middle-box #play-button {
	display: block;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	min-width: 200px;
	width: 90%;
	font-size: 32px
}

#homepage .content .middle-box #play-bigger-button {
	display: none;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	min-width: 200px;
	font-size: 20px
}

#homepage .content .middle-box #play-bigger-button img {
	vertical-align: middle;
	margin-right: 8px;
	height: 23px
}

#homepage .content .middle-box #play-bigger-button * {
	vertical-align: middle
}

#homepage .content .middle-box #play-spinner {
	display: none
}

#homepage .content .middle-box #play-spinner .spinner {
	width: 20px;
	height: 20px;
	padding-bottom: 4px;
	padding-right: 4px
}

#homepage .content .middle-box .skin {
	display: table;
	margin-left: auto;
	margin-right: auto
}

#homepage .content .middle-box .skin>div {
	display: table-cell
}

#homepage .content .middle-box .skin>div:last-child {
	width: auto
}

#homepage .content .middle-box .skin #skin-homepage-canvas {
	padding-right: 16px
}

#homepage .content .middle-box .skin #skin-homepage-canvas>div {
	background-color: #fff;
	border: 2px solid #d3d3d3;
	vertical-align: middle;
	border-radius: 16px;
	border-radius: 50%
}

#homepage .content .middle-box .skin .button {
	position: relative
}

#homepage .content .middle-box .skin .button .new {
	display: none;
	animation-iteration-count: infinite;
	position: absolute;
	right: -10%;
	top: -5%;
	transform: rotate(30deg);
	background-color: #a909ff;
	border-radius: 12px;
	font-size: 18px;
	padding: 4px 8px
}

#homepage .content .middle-box .skin .button .pulse-ring {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: 2px solid #fff;
	border-radius: 12px;
	animation: pulsate 1s ease-out;
	animation-iteration-count: infinite
}
 
@media screen and (max-height:500px) {
	#homepage .content .middle-box #username {
		height: 12vh;
		font-size: 4vh
	}
	#homepage .content .middle-box #play-button {
		font-size: 6vh;
		min-width: inherit
	}
	#homepage .content .middle-box #play-bigger-button {
		font-size: 5vh;
		min-width: inherit
	}
	#homepage .content .middle-box .buttons div {
		vertical-align: middle
	}
	#homepage .content .middle-box .button {
		padding: 1.5vh 6vh;
		font-size: 4vh
	}
}

#homepage .content .left-box {
	min-width: 300px;
	left: 0
}

#homepage .content .left-box .inside {
	max-width: 300px;
	pointer-events: all
}

#homepage .content .left-box .right-pub {
	text-align: center
}

#homepage .content .left-box .right-pub .adblocked {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-family: Arial;
	font-size: 32px;
	width: 100%
}

#homepage .content .left-box .right-pub .dev-only .button {
	font-size: 12px;
	padding: 4px 8px
}


@media screen and (max-height:300px),
screen and (max-width:700px) {
	#homepage .content .left-box {
		display: none
	}
	#homepage .content .middle-box {
		left: 0;
		width: 90%
	}
	#homepage .content .middle-box .inside {
		max-width: 100%
	}
	#homepage .content .left-box {
		display: none
	}
}

#homepage .content .scoreboard {
	position: absolute;
	bottom: 30px;
	left: 50%;
	transform: translate(-50%, 0);
	width: auto;
	height: auto;
	text-transform: capitalize;
	border: 1px solid #bdbdbd;
	border-radius: 8px;
	background-color: #fff;
	overflow: hidden;
	font-size: 3vh
}

@media screen and (max-width:500px) {
	#homepage .content .scoreboard {
		font-size: 2.5vw
	}
}

@media screen and (max-height:500px) {
	#homepage .content .scoreboard {
		font-size: 2.5vh;
		bottom: 1vh
	}
}

#homepage .content .scoreboard table {
	width: 100%;
	border-collapse: collapse
}

#homepage .content .scoreboard table tr:first-of-type {
	background-color: #dcdcdc;
	padding: 0
}

#homepage .content .scoreboard table tr:first-of-type td {
	padding: 0
}

#homepage .content .scoreboard table td {
	padding: 0 2vw
}

#homepage .content #no-webgl-popup {
	pointer-events: all;
	color: #fff;
	width: 100%;
	height: auto;
	display: block;
	display: none;
	padding: 16px 16px;
	position: absolute;
	top: 0;
	left: 0;
	background-color: red;
	z-index: 9999
}

#homepage .content #no-webgl-popup a {
	color: #00f;
	font-weight: 700
}

#homepage .bottom-bar {
	position: absolute;
	left: 0;
	bottom: 16px;
	width: 100%;
	vertical-align: middle;
	line-height: 0;
	display: table
}

#homepage .bottom-bar .io-games-bar {
	width: 30%;
	display: table-cell;
	line-height: normal;
	padding-left: 1vh;
	padding-right: 1vh;
	text-align: left;
	vertical-align: bottom;
	font-size: 2vh
}

#homepage .bottom-bar .io-games-bar .button {
	margin: 0 0;
	font-size: 2vh;
	padding: 1vh 2vh
}

@media screen and (max-width:500px) {
	#homepage .bottom-bar .io-games-bar .button {
		padding: 1.5vw 6vw;
		font-size: 4vw
	}
}

@media screen and (max-height:500px) {
	#homepage .bottom-bar .io-games-bar .button {
		padding: 1.5vh 6vh;
		font-size: 4vh
	}
}

#homepage .bottom-links {
	z-index: 1;
	position: absolute;
	left: 20%;
	bottom: 8px;
	width: 60%;
	text-align: center;
	vertical-align: middle;
	font-size: 12px;
	color: #000
}

@media screen and (max-width:700px),
screen and (max-height:500px) {
	#homepage .bottom-links {
		display: none
	}
}

#homepage .bottom-links a {
	color: #000;
	text-decoration: none
}

#homepage .bottom-links a:hover {
	color: #fe9300
}

#homepage .show-spil {
	display: none
}

#homepage.poki #portal-button,
#homepage.spil-games #portal-button {
	display: none
}

#homepage.poki .hide-spil,
#homepage.spil-games .hide-spil {
	display: none
}

#homepage.poki .show-spil,
#homepage.spil-games .show-spil {
	display: inline-block
}

.blurred {
	filter: blur(15px);
	pointer-events: none
}

#skin-popup {
	display: table-row;
	text-align: center;
	height: 100%;
	width: 100%;
	-webkit-user-select: none;
	user-select: none;
	display: none
}

#skin-popup .fade {
	z-index: 20;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5)
}

#skin-popup .box {
	z-index: 21;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-color: #fff;
	border-radius: 8px;
	padding: 3vh;
	height: 90%;
	max-height: 90%;
	max-width: 100%;
	box-sizing: border-box
}

#skin-popup .box #skin-popup-canvas>div {
	border-radius: 4px
}

#skin-popup .box .label {
	display: block;
	font-weight: 700;
	font-size: 4vh
}

#skin-popup .box .label .booty {
	float: left;
	left: 3vh;
	top: 3vh
}

#skin-popup .box .label .booty img {
	vertical-align: middle;
	height: 6vh
}

#skin-popup .box .label .button {
	margin: auto;
	font-size: 4vh;
	padding: 0 1vw
}

#skin-popup .box .skin-list::-webkit-scrollbar {
	width: 1vw
}

#skin-popup .box .skin-list::-webkit-scrollbar-track {
	background: #aaa;
	border-radius: .5vw
}

#skin-popup .box .skin-list::-webkit-scrollbar-thumb {
	background: #3d5dff;
	border-radius: .5vw
}

#skin-popup .box #pet-block::-webkit-scrollbar-thumb:hover {
	background: #374ebf
}

#skin-popup .box #pet-block::-webkit-scrollbar {
	width: 1vw
}

#skin-popup .box #pet-block::-webkit-scrollbar-track {
	background: #aaa;
	border-radius: .5vw
}

#skin-popup .box #pet-block::-webkit-scrollbar-thumb {
	background: #3d5dff;
	border-radius: .5vw
}

#skin-popup .box #pet-block::-webkit-scrollbar-thumb:hover {
	background: #374ebf
}

#skin-popup .box #arrow-up {
	display: none;
	margin-top: 5vh;
	height: 5vh;
	position: relative;
	cursor: pointer
}

#skin-popup .box #arrow-up>div {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 10vh solid transparent;
	border-right: 10vh solid transparent;
	border-bottom: 5vh solid #3d5dff
}

#skin-popup .box #arrow-down {
	display: none;
	margin-top: 3vh;
	height: 5vh;
	position: relative;
	cursor: pointer
}

#skin-popup .box #arrow-down>div {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 10vh solid transparent;
	border-right: 10vh solid transparent;
	border-top: 5vh solid #3d5dff
}

#skin-popup .box #arrow-down.disabled,
#skin-popup .box #arrow-up.disabled {
	opacity: 0
}

#skin-popup .box .pet-list,
#skin-popup .box .skin-list {
	margin-top: 3vh;
	border-radius: 8px;
	height: 90%;
	overflow-y: scroll
}

#skin-popup .box .pet-list .card,
#skin-popup .box .skin-list .card {
	position: relative;
	background-color: #f2f7ff;
	display: inline-block;
	margin: 8px 8px;
	padding-bottom: 8vh;
	padding-right: 4vh;
	cursor: pointer
}

#skin-popup .box .pet-list .card .button,
#skin-popup .box .skin-list .card .button {
	cursor: pointer;
	font-size: 2vh;
	position: absolute;
	left: 5%;
	bottom: 2%;
	width: 75%;
	margin: 0;
	margin-bottom: 1vh;
	padding: .5vh .25vh;
	box-sizing: border-box;
	vertical-align: middle;
	box-shadow: 0 1px 5px rgba(0, 0, 0, .2), 0 4px 0 #374ebf
}

#skin-popup .box .pet-list .card .button img,
#skin-popup .box .skin-list .card .button img {
	height: 2vh
}

#skin-popup .box .pet-list .card .button *,
#skin-popup .box .skin-list .card .button * {
	vertical-align: middle
}

#skin-popup .box .pet-list .card .button.smalltext,
#skin-popup .box .skin-list .card .button.smalltext {
	font-size: 1.25vh;
	text-transform: capitalize
}

#skin-popup .box .pet-list .card .button.disabled,
#skin-popup .box .skin-list .card .button.disabled {
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%)
}

#skin-popup .box .pet-list .card .button:hover,
#skin-popup .box .skin-list .card .button:hover {
	background-color: #5b76ff;
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2), 0 8px 0 #5064c7
}

#skin-popup .box .pet-list .card .power-barframe,
#skin-popup .box .skin-list .card .power-barframe {
	position: absolute;
	top: 5%;
	right: 2%;
	border-radius: 1vh;
	width: 2vh;
	height: 90%;
	background-color: #ccc;
	box-sizing: border-box
}

#skin-popup .box .pet-list .card .power-barframe .power-bar,
#skin-popup .box .skin-list .card .power-barframe .power-bar {
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #ff1f1f;
	height: 50%;
	width: 100%;
	box-sizing: border-box;
	border-radius: 1vh
}

#skin-popup .box .pet-list .card .power-barframe .power-bar-text,
#skin-popup .box .skin-list .card .power-barframe .power-bar-text {
	color: #fff;
	word-break: break-all;
	font-weight: 700;
	font-family: Arial;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.75vh;
	line-height: 2vh
}

#skin-popup .box .pet-list .card .lock,
#skin-popup .box .skin-list .card .lock {
	display: block;
	position: absolute;
	top: 2%;
	left: 2%;
	width: 30%;
	height: 30%;
	background: url(img/lock.svg) no-repeat;
	background-position: center
}

#skin-popup .box .pet-list .card::after,
#skin-popup .box .skin-list .card::after {
	content: " ";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border: 1px solid #aaa;
	border-radius: 1vh;
	box-sizing: border-box
}

#skin-popup .box .pet-list .card.selected::after,
#skin-popup .box .skin-list .card.selected::after {
	box-shadow: 0 2px 10px rgba(0, 0, 0, .2), 0 4px 0 #3d5dff;
	border: 2px solid #3d5dff
}

#skin-popup .box .pet-list .card.locked .power-bar,
#skin-popup .box .pet-list .card.locked>div:first-child,
#skin-popup .box .skin-list .card.locked .power-bar,
#skin-popup .box .skin-list .card.locked>div:first-child {
	opacity: .6!important;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%)
}

#skin-popup .box .pet-list card.locked-nogreyscale .power-bar,
#skin-popup .box .pet-list card.locked-nogreyscale>div:first-child,
#skin-popup .box .skin-list card.locked-nogreyscale .power-bar,
#skin-popup .box .skin-list card.locked-nogreyscale>div:first-child {
	opacity: .6!important
}

#skin-popup .box #pet-block {
	display: none;
	overflow-y: auto;
	height: 90%;
	margin-top: 3vh
}

#skin-popup .box #pet-block .upgrade {
	font-size: 3vh;
	margin-top: 32px
}

#skin-popup .box #pet-block .upgrade #pet-level {
	font-weight: 700;
	margin-left: 2vh;
	margin-right: 2vh
}

#skin-popup .box #pet-block .upgrade .button {
	vertical-align: middle;
	font-size: 2vh;
	padding: .75vh 1vh;
	margin: auto;
	margin-top: -8px
}

#skin-popup .box #pet-block .upgrade .button span {
	vertical-align: middle
}

#skin-popup .box #pet-block .upgrade .button img {
	width: 2vh;
	vertical-align: middle;
	height: auto
}

#skin-popup .box #pet-block .upgrade .button.disabled {
	pointer-events: none
}

#skin-popup .box #pet-block .pet-list {
	margin-top: 3vh;
	overflow: hidden;
	height: auto
}

#skin-popup .box #pet-block .pet-list .card {
	padding: 0;
	padding-bottom: 1vh
}

#skin-popup .box #pet-block .pet-list .card .button {
	width: 90%
}

#skin-popup .box #pet-block .pet-list .card.locked>img {
	opacity: .6!important;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%)
}

#skin-popup .close {
	position: absolute;
	top: 16px;
	right: 16px;
	text-align: center;
	column-span: all;
	cursor: pointer
}

#skin-popup .close img {
	width: 24px;
	height: 24px
}

#skin-editor {
	display: table-row;
	text-align: center;
	height: 100%;
	width: 100%;
	-webkit-user-select: none;
	user-select: none
}

#skin-editor .fade {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .5)
}

#skin-editor .box {
	background-color: #fff;
	z-index: 21;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border-radius: 8px;
	padding: 32px;
	width: 80%;
	max-width: 100%
}

@media screen and (max-width:800px) {
	#skin-editor .box {
		width: 90%
	}
}

#skin-editor .title {
	font-size: 24px;
	margin-bottom: 24px
}

#skin-editor input[type=file] {
	display: none
}

#skin-editor input[type=number] {
	width: 64px
}

#skin-editor canvas {
	width: 128px;
	height: 128px;
	border-radius: 4px
}

#skin-editor .button {
	display: inline-block;
	margin: 16px 8px
}

#skin-editor .game-sprites {
	margin: 16px auto
}

#skin-editor .game-sprites>div {
	margin: 8px auto
}

#skin-editor .game-sprites .button {
	box-sizing: border-box;
	font-size: 12px;
	padding: 4px 4px;
	margin: auto 32px
}

#ios-fs-popup {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
	font-family: Arial;
	text-align: center;
	font-size: 2vh
}

#ios-fs-popup .fade {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, .7)
}

#ios-fs-popup .box {
	background-color: #fff;
	border-radius: 4vh;
	padding: 4vh;
	font-size: 4vh;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	min-width: 70%;
	max-width: 90%
}

#ios-fs-popup .box .close {
	margin-top: -2vh;
	margin-right: -2vh;
	color: #a9a9a9;
	font-size: 3vh;
	cursor: pointer;
	text-align: right
}

#end-popup {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 20;
	font-family: Arial;
	text-align: center;
	font-size: 2vh;
	animation-duration: .5s
}

#end-popup .fade {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(29, 29, 29, 0.75);
}

#end-popup .box {
	position: absolute;
	top: 10px;
	background: rgba(0, 0, 0, 0.2);
	left: calc(50% - 400px);
	padding: 5px;
	border-radius: 20px;
	box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .15)!important;
	width: 800px;
	height: 260px;
}

@media screen and (max-width:1023px) {
	#end-popup .box {
		width: 90%
	}
}

@media screen and (max-width:768px) {
	#end-popup .box {
		width: 95%
	}
}

#end-popup .result {
	font-weight: 700;
	font-size: 22px;
	color: #fff;
	text-shadow: 0 0 3px #333, -1px 0 0 #333, 1px 0 0 #333, 0 1px 0 #333, 0 -1px 0 #333, -1px -1px 0 #444, 1px 1px 0 #333, -1px 1px 0 #444, 1px -1px 0 #444;
	font-family: nunito;
	text-transform: capitalize;
}

#end-popup .result .killer {
	font-size: 24px;
	color: #ddff5b;
	font-weight: 700;
}

#end-popup .result2 {
	margin-top: 10px;
	font-weight: 700;
	color: #26ff37;
	font-size: 24px;
	font-family: nunito;
	text-shadow: 0 0 3px #333, -1px 0 0 #333, 1px 0 0 #333, 0 1px 0 #333, 0 -1px 0 #333, -1px -1px 0 #444, 1px 1px 0 #333, -1px 1px 0 #444, 1px -1px 0 #444;
}

#end-popup .result2 .rank {
	color: #ff5400
}

#end-popup .result3 {
	margin-top: 5vh;
	font-weight: 700;
	font-size: 3.5vh;
	font-variant: small-caps
}

#end-popup .result3 .kills {
	color: #ff5400
}

#end-popup .result3 .earned-coins {
	color: #ff5400
}

#end-popup .result3 img {
	vertical-align: middle;
	height: 4vh
}

#end-popup .booty {
	font-weight: 700;
	font-size: 3.5vh;
	font-variant: small-caps
}

#end-popup .booty img {
	vertical-align: middle;
	height: 5vh;
	margin-right: 1vh
}

#end-popup .booty #end-booty-coins {
	display: inline-block
}

#end-popup .xp-line {
	margin-top: 5px !important;
	vertical-align: middle;
	width: 80%;
	margin: 0 auto;
}

@media screen and (min-height:650px) and (max-height:760px) {
	#end-popup .xp-line {
		margin-top: 3vh
	}
}

#end-popup .xp-line .league {
	font-size: 22px;
	padding-top: 0px;
	font-weight: 700;
	vertical-align: middle;
	margin: 0px 2vh;
	font-family: nunito;
	color: #ffc136;
	text-shadow: 0 0 3px #333, -1px 0 0 #333, 1px 0 0 #333, 0 1px 0 #333, 0 -1px 0 #333, -1px -1px 0 #444, 1px 1px 0 #333, -1px 1px 0 #444, 1px -1px 0 #444;
}

#end-popup .xp-line .title {
	font-size: 22px;
	font-family: nunito;
	color: #ffc136;
	font-weight: 700;
	text-shadow: 0 0 3px #333, -1px 0 0 #333, 1px 0 0 #333, 0 1px 0 #333, 0 -1px 0 #333, -1px -1px 0 #444, 1px 1px 0 #333, -1px 1px 0 #444, 1px -1px 0 #444;
}

#end-popup .xp-line .line {
	display: flex;
	justify-content: center
}

#end-popup #end-xp-bar {
	flex: 1;
	vertical-align: middle;
	position: relative;
	text-align: center;
	height: 3vh;
	border-radius: 1vh;
	overflow: hidden;
	display: inline-block;
	box-sizing: border-box
}

#end-popup #end-xp-bar .bar {
	background-color: #6b4f11;
	width: 50%;
	height: 25px;
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
	box-sizing: border-box;
}

#end-popup #end-xp-bar .border {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	border: 4px solid #ffc136;
	border-radius: 10px;
}

#end-popup .quote {
	font-size: 2.5vh;
	font-style: italic;
	font-weight: 700;
	display: none;
}

#end-popup .button {
	margin-top: 12px;
}

@media screen and (min-height:650px) and (max-height:760px) {
	#end-popup .button {
		margin-top: 4vh
	}
}

#end-popup #banner-on-end-popup {
	margin-top: 0;
	position: absolute;
	top: 290px;
	width: 970px;
	height: 260px;
	left: calc(50% - 485px);
}

@media screen and (max-height:649px),
screen and (max-width:767px) {
	#end-popup #banner-on-end-popup {
	}
}
 

#doorbell-button {
	display: none
}
ul.bestScores{list-style:none;padding:0;display:inline-block;margin:15px 0 0}
ul.bestScores li{width:100%;height:28px;float:left}
ul.bestScores li span{float:left;margin:-2px 0 0;padding:0;background:#efca17;width:20px;text-align:center;font-weight:700;border-radius:3px;font-size:13px;color:#2e2f2f;box-shadow:inset 0 -4px 0 rgba(0,0,0,.2),0 2px 4px rgba(0,0,0,.25),0 2px 4px rgba(0,0,0,.4)!important;height:20px;line-height:20px}
.onPlayers,.onPlayers2{position:fixed;z-index:2;font-family:Nunito,sans-serif;border-radius:10px;font-weight:700}
ul.bestScores li p{float:left;margin:-2px 0 0 8px;padding:0}
ul.bestScores li div{float:inherit;margin-left:8px;margin-top:0;font-size:12px;color:#9e9e9d;font-weight:700}
ul.bestScores li i{float:right;color:#6d95e4;background:rgba(10,11,12,.4);font-family:arial;font-size:11px;font-style:normal;padding:3px 6px;font-weight:700;border-radius:3px}
ul.bestScores li:hover div,ul.bestScores li:hover i{color:#4f769c}
ul.bestScores li:hover span{color:#fff;background:#22bf35}
.kapkap{z-index:18;top:0;left:0;width:100%;height:100%;background:rgba(23,22,22,.93);position:fixed}
.ekSayfa ul{list-style:none!important;padding:20px;margin:0;text-align:center}
.ekSayfa ul a{color:#776614;text-shadow:0 1px 2px #ffe258}
.ekSayfa ul a:hover{color:#4a3b0d}
.ekSayfa ul li{font-size:25px;margin:8px 20px}
.ekSayfa .partners{font-size:40px;text-align:center;text-shadow:0 1px 2px #ffdf44;margin-top:15px;color:#886516}
.ekSayfa .partners,.ekSayfa ul li,.ekSayfa2 .detaylar,.ekSayfa2 ul li,ul.footer_links,ul.skinList span{font-family:Nunito,sans-serif;font-weight:700}
.ekSayfa{width:500px;height:300px;left:50%;top:50%;border-radius:4px;z-index:19;box-shadow:inset 0 -4px 0 rgba(0,0,0,.2),0 2px 4px rgba(0,0,0,.25),0 2px 4px rgba(0,0,0,.4);background:#efca17;margin:0;transform:translate(-50%,-50%)}
.ekSayfa2{width:500px;height:220px;left:50%;top:50%;border-radius:4px;z-index:19;box-shadow:inset 0 -4px 0 rgba(0,0,0,.2),0 2px 4px rgba(0,0,0,.25),0 2px 4px rgba(0,0,0,.4);background:#333330;margin:0;transform:translate(-50%,-50%)}
.ekSayfa2 ul{list-style:none!important;padding:20px;margin:0;text-align:center}
.ekSayfa2 ul a{color:#776614;text-shadow:0 1px 2px #ffe258}
.ekSayfa2 ul a:hover{color:#4a3b0d}
.ekSayfa2 ul li{font-size:21px;margin:8px 20px;color:#f1f1f1;line-height:19px;padding:0;text-shadow:0 1px 2px #236517}
.ekSayfa2 .detaylar{font-size:34px;text-align:center;text-shadow:0 1px 2px #205f15;margin-top:15px;padding-bottom:15px;color:#eaffe6;border-bottom:2px solid #404346}
.kapat{right:-25px;top:-24px;background:#fff;width:20px;height:20px;line-height:20px;position:absolute;color:#ca1515;border-radius:100px;padding:10px;font-size:36px;border:10px solid;box-shadow:-7px 6px 0 #33387}
.kapat:hover{background:red;color:#fff}
.ekSayfa,.ekSayfa2,ul.footer_links{position:fixed;padding:0}
.ekSayfa ul li,.ekSayfa2 ul li,ul.bestScores li,ul.bestScores li p,ul.footer_links li,ul.skinList li,ul.skinList li img,ul.skinList span{display:inline-block}
.ekSayfa .partners,.ekSayfa ul li,.ekSayfa2 .detaylar,.ekSayfa2 ul li,ul.footer_links,ul.skinList span{font-family:Nunito,sans-serif;font-weight:700}
.onPlayers,.onPlayers2{position:fixed;z-index:2;font-family:Nunito,sans-serif;border-radius:10px;font-weight:700}
#online{font-size:18px;color:#3389bd}
.online{float:left}
.onPlayers{bottom:10px;font-size:14px!important;padding:5px;left:10px;text-align:center}
.onPlayers span{color:#7e827d;font-size:13px}
.onPlayers2{left:10px;color:#666;bottom:10px}
.onPlayers2 span{float:left;margin-right:6px}
.lb {
    background: url(lb.png);
    width: 174px;
    height: 85px;
    text-align: center;
    margin: -10px auto;
    transform: scale(1);
    margin-bottom: 30px !important;
}.skorlar_baslik_aciklama{height:40px;background:rgba(0,0,0,0)!important;color:#666;padding:0!important;text-align:center;text-transform:capitalize;height:40px;background:rgba(0,0,0,0)!important;color:#666;padding:0!important;text-align:center;text-transform:capitalize}
.basliktext{color:#efca17;cursor:default;display:inline-block;font-size:15px;margin-bottom:15px;text-align:center;font-weight:700}
.skor_buton{background:#fff;border-radius:3px;box-shadow:0 1px 3px #444;color:#ab3900;font-size:120%;font-weight:700;padding:4px 5px;right:-155px;text-align:center;top:0;width:150px}
.scorelist_btn{border:none!important;padding:4px 8px;border-radius:3px;font-size:15px;font-weight:700;outline:0!important;color:#fff;text-decoration:none!important;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-o-transition:all .3s ease;transition:all .3s ease}
.scorelist_btn:hover{background:#3365a2;color:#fff!important;-webkit-transition:all .3s ease;-moz-transition:all .3s ease;-o-transition:all .3s ease;text-decoration:underline;transition:all .3s ease}
.scorelist_btn:active{color:#212121!important;text-decoration:none!important;background:#fff}
.scorelist_btn:focus{color:#212121!important;text-decoration:none!important;background:#fff}
.skor_buton_secili_degil{color:#1c1d1c!important;background:#e6c318}
.skor_buton_secili{color:#212121!important;text-decoration:none!important;background:#fff}
.skor{width:300px;padding:0;-webkit-transition:all .5s ease;-moz-transition:all .5s ease;-o-transition:all .5s ease;transition:all .5s ease}
.alt_alert{background:#d2de33!important;margin-top:5px;border:none!important;font-size:11px!important;font-family:arial!important;color:#2f2f2f;border-radius:4;margin-bottom:15px}
ul.bestScores{list-style:none;padding:0;display:inline-block;margin:15px 0 0;width: 100%;}
ul.bestScores li{width: 100% !important;height:28px;float:left;}
ul.bestScores li span{float:left;margin:-2px 0 0;padding:0;background:#efca17;width:20px;text-align:center;font-weight:700;border-radius:3px;font-size:13px;color:#2e2f2f;box-shadow:inset 0 -4px 0 rgba(0,0,0,.2),0 2px 4px rgba(0,0,0,.25),0 2px 4px rgba(0,0,0,.4)!important;height:20px;line-height:20px}
.onPlayers,.onPlayers2{position:fixed;z-index:2;font-family:Nunito,sans-serif;border-radius:10px;font-weight:700}
ul.bestScores li p{float:left;margin:-2px 0 0 8px;padding:0}
ul.bestScores li div{float:inherit;margin-left:8px;margin-top:0;font-size:12px;color: #b7b74c;font-weight:700;}
ul.bestScores li i{float:right;color:#6d95e4;background:rgba(10,11,12,.4);font-family:arial;font-size:11px;font-style:normal;padding:3px 6px;font-weight:700;border-radius:3px}
ul.bestScores li:hover div,ul.bestScores li:hover i{color: #f2f7fb;}
ul.bestScores li:hover span{color:#fff;background:#22bf35}

.blue.button {
	background-color: #1b6eb5!important;
	box-shadow: inset 0 -4px 0 rgba(0, 0, 0, .15)!important;
	text-transform: uppercase;
	height: 50px !important;
	text-transform: uppercase;
	font-family: nunito;
	text-shadow: 0 0 3px #333, -1px 0 0 #333, 1px 0 0 #333, 0 1px 0 #333, 0 -1px 0 #333, -1px -1px 0 #444, 1px 1px 0 #333, -1px 1px 0 #444, 1px -1px 0 #444;
	font-size: 22px !important;
	font-weight: 799 !important;
	line-height: 20px !important;
}

.blue.button:hover {
	background-color: #2986d6!important;
}

 


@media only screen and (max-width: 960px) and (min-width: 600px) {
	#homepage .logo {
transform:scale(.75);
}
 
 #homepage .content .left-box {
    width: 40%;
    transform: scale(.75);
}

#homepage .content .left-box .inside {
    max-width: 300px;
    pointer-events: all;
}


 #homepage .content .middle-box {
    width: 50%;
}


 #homepage .content .right-box {
    display: none;
}


#homepage .logo {
    position: absolute;
    left: 0;
    top: 32px;
    width: 100%;
}


}

#end-popup .resultcoin {
	margin-top: 10px;
	font-weight: 700;
	color: #ffe30d;
	font-size: 16px;
	font-family: nunito;
	text-shadow: 0 0 3px #333, -1px 0 0 #333, 1px 0 0 #333, 0 1px 0 #333, 0 -1px 0 #333, -1px -1px 0 #444, 1px 1px 0 #333, -1px 1px 0 #444, 1px -1px 0 #444;
}
.playother{color:#dedec3;background:#282828;display:inline-block;font-size:15px;font-weight:900;border-top:0 solid #866f1c;margin-top:-5px;height:35px;width:270px;line-height:35px;border-radius:0;text-transform:uppercase}.playother:hover{color:#eac22e!important}.vidz{width:270px;border:0 solid #2a2f2f;padding:0;background:#fff;border-radius:0}
 