.fading-circle .circle:before, .folding-cube .cube:before
{
	content: '';
	background-color: #333;
}

.double-bounce
{
	width: 40px;
	height: 40px;
	position: relative;
	margin: 40px auto;
}

	.double-bounce .child
	{
		width: 100%;
		height: 100%;
		border-radius: 50%;
		background-color: #333;
		opacity: .6;
		position: absolute;
		top: 0;
		left: 0;
		animation: doubleBounce 2s infinite ease-in-out;
	}

	.double-bounce .double-bounce2
	{
		animation-delay: -1s;
	}

@-webkit-keyframes doubleBounce
{
	0%,100%
	{
		transform: scale(0);
	}

	50%
	{
		transform: scale(1);
	}
}

@keyframes doubleBounce
{
	0%,100%
	{
		transform: scale(0);
	}

	50%
	{
		transform: scale(1);
	}
}

.chasing-dots
{
	width: 40px;
	height: 40px;
	position: relative;
	text-align: center;
	animation: chasingDotsRotate 2s infinite linear;
}

	.chasing-dots .child
	{
		width: 60%;
		height: 60%;
		display: inline-block;
		position: absolute;
		top: 0;
		background-color: #333;
		border-radius: 100%;
		animation: chasingDotsBounce 2s infinite ease-in-out;
	}

	.chasing-dots .dot2
	{
		top: auto;
		bottom: 0;
		animation-delay: -1s;
	}

@-webkit-keyframes chasingDotsRotate
{
	100%
	{
		transform: rotate(360deg);
	}
}

@keyframes chasingDotsRotate
{
	100%
	{
		transform: rotate(360deg);
	}
}

@-webkit-keyframes chasingDotsBounce
{
	0%,100%
	{
		transform: scale(0);
	}

	50%
	{
		transform: scale(1);
	}
}

@keyframes chasingDotsBounce
{
	0%,100%
	{
		transform: scale(0);
	}

	50%
	{
		transform: scale(1);
	}
}

.cube-grid
{
	width: 40px;
	height: 40px;
	margin: 40px auto;
}

	.cube-grid .cube
	{
		width: 33.33%;
		height: 33.33%;
		background-color: #333;
		float: left;
		animation: cubeGridScaleDelay 1.3s infinite ease-in-out;
	}

	.cube-grid .cube1
	{
		animation-delay: .2s;
	}

	.cube-grid .cube2
	{
		animation-delay: .3s;
	}

	.cube-grid .cube3
	{
		animation-delay: .4s;
	}

	.cube-grid .cube4
	{
		animation-delay: .1s;
	}

	.cube-grid .cube5
	{
		animation-delay: .2s;
	}

	.cube-grid .cube6
	{
		animation-delay: .3s;
	}

	.cube-grid .cube7
	{
		animation-delay: 0ms;
	}

	.cube-grid .cube8
	{
		animation-delay: .1s;
	}

	.cube-grid .cube9
	{
		animation-delay: .2s;
	}

@-webkit-keyframes cubeGridScaleDelay
{
	0%,100%,70%
	{
		transform: scale3D(1,1,1);
	}

	35%
	{
		transform: scale3D(0,0,1);
	}
}

@keyframes cubeGridScaleDelay
{
	0%,100%,70%
	{
		transform: scale3D(1,1,1);
	}

	35%
	{
		transform: scale3D(0,0,1);
	}
}

.fading-circle
{
	margin: 40px auto;
	width: 40px;
	height: 40px;
	position: relative;
}

	.fading-circle .circle
	{
		width: 100%;
		height: 100%;
		position: absolute;
		left: 0;
		top: 0;
	}

		.fading-circle .circle:before
		{
			display: block;
			margin: 0 auto;
			width: 15%;
			height: 15%;
			border-radius: 100%;
			animation: circleFadeDelay 1.2s infinite ease-in-out both;
		}

	.fading-circle .circle2
	{
		transform: rotate(30deg);
	}

		.fading-circle .circle2:before
		{
			animation-delay: -1.1s;
		}

	.fading-circle .circle3
	{
		transform: rotate(60deg);
	}

		.fading-circle .circle3:before
		{
			animation-delay: -1s;
		}

	.fading-circle .circle4
	{
		transform: rotate(90deg);
	}

		.fading-circle .circle4:before
		{
			animation-delay: -.9s;
		}

	.fading-circle .circle5
	{
		transform: rotate(120deg);
	}

		.fading-circle .circle5:before
		{
			animation-delay: -.8s;
		}

	.fading-circle .circle6
	{
		transform: rotate(150deg);
	}

		.fading-circle .circle6:before
		{
			animation-delay: -.7s;
		}

	.fading-circle .circle7
	{
		transform: rotate(180deg);
	}

		.fading-circle .circle7:before
		{
			animation-delay: -.6s;
		}

	.fading-circle .circle8
	{
		transform: rotate(210deg);
	}

		.fading-circle .circle8:before
		{
			animation-delay: -.5s;
		}

	.fading-circle .circle9
	{
		transform: rotate(240deg);
	}

		.fading-circle .circle9:before
		{
			animation-delay: -.4s;
		}

	.fading-circle .circle10
	{
		transform: rotate(270deg);
	}

		.fading-circle .circle10:before
		{
			animation-delay: -.3s;
		}

	.fading-circle .circle11
	{
		transform: rotate(300deg);
	}

		.fading-circle .circle11:before
		{
			animation-delay: -.2s;
		}

	.fading-circle .circle12
	{
		transform: rotate(330deg);
	}

		.fading-circle .circle12:before
		{
			animation-delay: -.1s;
		}

@-webkit-keyframes circleFadeDelay
{
	0%,100%,39%
	{
		opacity: 0;
	}

	40%
	{
		opacity: 1;
	}
}

@keyframes circleFadeDelay
{
	0%,100%,39%
	{
		opacity: 0;
	}

	40%
	{
		opacity: 1;
	}
}

.folding-cube
{
	width: 40px;
	height: 40px;
	position: relative;
	transform: rotateZ(45deg);
}

	.folding-cube .cube
	{
		float: left;
		width: 50%;
		height: 50%;
		position: relative;
		transform: scale(1.1);
	}

		.folding-cube .cube:before
		{
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			animation: foldCubeAngle 2.4s infinite linear both;
			transform-origin: 100% 100%;
		}

.ball-pulse-sync > div, .ball-pulse > div
{
	background-color: #6b6f82;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	margin: 2px;
}

.folding-cube .cube2
{
	transform: scale(1.1) rotateZ(90deg);
}

	.folding-cube .cube2:before
	{
		animation-delay: .3s;
	}

.folding-cube .cube3
{
	transform: scale(1.1) rotateZ(180deg);
}

	.folding-cube .cube3:before
	{
		animation-delay: .6s;
	}

.folding-cube .cube4
{
	transform: scale(1.1) rotateZ(270deg);
}

	.folding-cube .cube4:before
	{
		animation-delay: .9s;
	}

@-webkit-keyframes foldCubeAngle
{
	0%,10%
	{
		transform: perspective(140px) rotateX(-180deg);
		opacity: 0;
	}

	25%,75%
	{
		transform: perspective(140px) rotateX(0);
		opacity: 1;
	}

	100%,90%
	{
		transform: perspective(140px) rotateY(180deg);
		opacity: 0;
	}
}

@keyframes foldCubeAngle
{
	0%,10%
	{
		transform: perspective(140px) rotateX(-180deg);
		opacity: 0;
	}

	25%,75%
	{
		transform: perspective(140px) rotateX(0);
		opacity: 1;
	}

	100%,90%
	{
		transform: perspective(140px) rotateY(180deg);
		opacity: 0;
	}
}

@keyframes scale
{
	0%,80%
	{
		transform: scale(1);
		opacity: 1;
	}

	45%
	{
		transform: scale(.1);
		opacity: .7;
	}
}

.ball-pulse > div:nth-child(1)
{
	animation: scale .75s -.24s infinite cubic-bezier(.2,.68,.18,1.08);
}

.ball-pulse > div:nth-child(2)
{
	animation: scale .75s -.12s infinite cubic-bezier(.2,.68,.18,1.08);
}

.ball-pulse > div:nth-child(3)
{
	animation: scale .75s 0s infinite cubic-bezier(.2,.68,.18,1.08);
}

.ball-pulse > div
{
	animation-fill-mode: both;
	display: inline-block;
}

@keyframes ball-pulse-sync
{
	33%
	{
		transform: translateY(10px);
	}

	66%
	{
		transform: translateY(-10px);
	}

	100%
	{
		transform: translateY(0);
	}
}

.ball-pulse-sync > div:nth-child(1)
{
	animation: ball-pulse-sync .6s -.14s infinite ease-in-out;
}

.ball-pulse-sync > div:nth-child(2)
{
	animation: ball-pulse-sync .6s -70ms infinite ease-in-out;
}

.ball-pulse-sync > div:nth-child(3)
{
	animation: ball-pulse-sync .6s 0s infinite ease-in-out;
}

.ball-pulse-sync > div
{
	animation-fill-mode: both;
	display: inline-block;
}

.ball-scale-random > div, .ball-scale > div
{
	background-color: #6b6f82;
	border-radius: 100%;
	margin: 2px;
	animation: ball-scale 1s 0s ease-in-out infinite;
	display: inline-block;
}

@keyframes ball-scale
{
	0%
	{
		transform: scale(0);
	}

	100%
	{
		transform: scale(1);
		opacity: 0;
	}
}

.ball-scale > div
{
	height: 60px;
	width: 60px;
}

.ball-scale-random
{
	width: 37px;
	height: 40px;
}

	.ball-scale-random > div
	{
		position: absolute;
		height: 30px;
		width: 30px;
	}

.ball-rotate, .ball-rotate > div
{
	position: relative;
}

	.ball-rotate > div, .ball-rotate > div:after, .ball-rotate > div:before
	{
		background-color: #6b6f82;
		width: 15px;
		height: 15px;
		border-radius: 100%;
	}

.ball-scale-random > div:nth-child(1)
{
	margin-left: -7px;
	animation: ball-scale 1s .2s ease-in-out infinite;
}

.ball-scale-random > div:nth-child(3)
{
	margin-left: -2px;
	margin-top: 9px;
	animation: ball-scale 1s .5s ease-in-out infinite;
}

.ball-rotate > div
{
	margin: 2px;
	animation-fill-mode: both;
}

	.ball-rotate > div:first-child
	{
		animation: rotate 1s 0s cubic-bezier(.7,-.13,.22,.86) infinite;
	}

	.ball-rotate > div:after, .ball-rotate > div:before
	{
		margin: 2px;
		content: "";
		position: absolute;
		opacity: .8;
	}

	.ball-rotate > div:before
	{
		top: 0;
		left: -28px;
	}

	.ball-rotate > div:after
	{
		top: 0;
		left: 25px;
	}

.ball-clip-rotate > div
{
	border-radius: 100%;
	margin: 2px;
	border: 2px solid #6b6f82;
	border-bottom-color: transparent;
	height: 25px;
	width: 25px;
	background: 0 0!important;
	display: inline-block;
	animation: rotate .75s 0s linear infinite;
}

@keyframes rotate
{
	0%
	{
		transform: rotate(0);
	}

	50%
	{
		transform: rotate(180deg);
	}

	100%
	{
		transform: rotate(360deg);
	}
}

@keyframes scale
{
	30%
	{
		transform: scale(.3);
	}

	100%
	{
		transform: scale(1);
	}
}

.ball-clip-rotate-pulse
{
	position: relative;
	transform: translateY(-15px);
}

	.ball-clip-rotate-pulse > div
	{
		animation-fill-mode: both;
		position: absolute;
		top: 0;
		left: 0;
		border-radius: 100%;
	}

		.ball-clip-rotate-pulse > div:first-child
		{
			background: #6b6f82;
			height: 16px;
			width: 16px;
			top: 7px;
			left: -7px;
			animation: scale 1s 0s cubic-bezier(.09,.57,.49,.9) infinite;
		}

		.ball-clip-rotate-pulse > div:last-child
		{
			position: absolute;
			width: 30px;
			height: 30px;
			left: -16px;
			top: -2px;
			background: 0 0;
			border: 2px solid;
			border-color: #6b6f82 transparent;
			animation: rotate 1s 0s cubic-bezier(.09,.57,.49,.9) infinite;
			animation-duration: 1s;
		}

.ball-beat > div, .ball-scale-multiple > div
{
	background-color: #6b6f82;
	border-radius: 100%;
}

@keyframes rotate
{
	0%
	{
		transform: rotate(0) scale(1);
	}

	50%
	{
		transform: rotate(180deg) scale(.6);
	}

	100%
	{
		transform: rotate(360deg) scale(1);
	}
}

.ball-clip-rotate-multiple
{
	position: relative;
}

	.ball-clip-rotate-multiple > div
	{
		position: absolute;
		left: -20px;
		top: -20px;
		border: 2px solid #6b6f82;
		border-bottom-color: transparent;
		border-top-color: transparent;
		border-radius: 100%;
		height: 35px;
		width: 35px;
		animation: rotate 1s 0s ease-in-out infinite;
	}

		.ball-clip-rotate-multiple > div:last-child
		{
			display: inline-block;
			top: -10px;
			left: -10px;
			width: 15px;
			height: 15px;
			animation-duration: .5s;
			border-color: #6b6f82 transparent;
			animation-direction: reverse;
		}

@keyframes ball-scale-ripple
{
	0%
	{
		transform: scale(.1);
		opacity: 1;
	}

	70%
	{
		transform: scale(1);
		opacity: .7;
	}

	100%
	{
		opacity: 0;
	}
}

.ball-scale-ripple > div
{
	height: 50px;
	width: 50px;
	border-radius: 100%;
	border: 2px solid #6b6f82;
	animation: ball-scale-ripple 1s 0s infinite cubic-bezier(.21,.53,.56,.8);
}

@keyframes ball-scale-ripple-multiple
{
	0%
	{
		transform: scale(.1);
		opacity: 1;
	}

	70%
	{
		transform: scale(1);
		opacity: .7;
	}

	100%
	{
		opacity: 0;
	}
}

.ball-scale-ripple-multiple
{
	position: relative;
	transform: translateY(-25px);
}

	.ball-scale-ripple-multiple > div:nth-child(0)
	{
		animation-delay: -.8s;
	}

	.ball-scale-ripple-multiple > div:nth-child(1)
	{
		animation-delay: -.6s;
	}

	.ball-scale-ripple-multiple > div:nth-child(2)
	{
		animation-delay: -.4s;
	}

	.ball-scale-ripple-multiple > div:nth-child(3)
	{
		animation-delay: -.2s;
	}

	.ball-scale-ripple-multiple > div
	{
		position: absolute;
		top: -2px;
		left: -26px;
		width: 50px;
		height: 50px;
		border-radius: 100%;
		border: 2px solid #6b6f82;
		animation: ball-scale-ripple-multiple 1.25s 0s infinite cubic-bezier(.21,.53,.56,.8);
	}

@keyframes ball-beat
{
	50%
	{
		opacity: .2;
		transform: scale(.75);
	}

	100%
	{
		opacity: 1;
		transform: scale(1);
	}
}

.ball-beat > div
{
	width: 15px;
	height: 15px;
	margin: 2px;
	display: inline-block;
	animation: ball-beat .7s 0s infinite linear;
}

	.ball-beat > div:nth-child(2n-1)
	{
		animation-delay: -.35s!important;
	}

@keyframes ball-scale-multiple
{
	0%
	{
		transform: scale(0);
		opacity: 0;
	}

	5%
	{
		opacity: 1;
	}

	100%
	{
		transform: scale(1);
		opacity: 0;
	}
}

.ball-scale-multiple
{
	position: relative;
}

	.ball-scale-multiple > div:nth-child(2)
	{
		animation-delay: -.4s;
	}

	.ball-scale-multiple > div:nth-child(3)
	{
		animation-delay: -.2s;
	}

	.ball-scale-multiple > div
	{
		position: absolute;
		top: 0;
		opacity: 0;
		margin: 0;
		width: 60px;
		height: 60px;
		animation: ball-scale-multiple 1s 0s linear infinite;
	}

.ball-triangle-path > div:nth-child(1), .ball-triangle-path > div:nth-child(2), .ball-triangle-path > div:nth-child(3)
{
	animation-duration: 2s;
	animation-timing-function: ease-in-out;
	animation-iteration-count: infinite;
}

@keyframes ball-triangle-path-1
{
	33%
	{
		transform: translate(25px,-50px);
	}

	66%
	{
		transform: translate(50px,0);
	}

	100%
	{
		transform: translate(0,0);
	}
}

@keyframes ball-triangle-path-2
{
	33%
	{
		transform: translate(25px,50px);
	}

	66%
	{
		transform: translate(-25px,50px);
	}

	100%
	{
		transform: translate(0,0);
	}
}

@keyframes ball-triangle-path-3
{
	33%
	{
		transform: translate(-50px,0);
	}

	66%
	{
		transform: translate(-25px,-50px);
	}

	100%
	{
		transform: translate(0,0);
	}
}

.ball-triangle-path
{
	position: relative;
	transform: translate(-29.99px,-37.51px);
}

	.ball-triangle-path > div:nth-child(1)
	{
		animation-name: ball-triangle-path-1;
		animation-delay: 0;
	}

	.ball-triangle-path > div:nth-child(2)
	{
		animation-name: ball-triangle-path-2;
		animation-delay: 0;
	}

	.ball-triangle-path > div:nth-child(3)
	{
		animation-name: ball-triangle-path-3;
		animation-delay: 0;
	}

	.ball-triangle-path > div
	{
		animation-fill-mode: both;
		position: absolute;
		width: 10px;
		height: 10px;
		border-radius: 100%;
		border: 1px solid #6b6f82;
	}

.ball-grid-beat > div, .ball-pulse-rise > div
{
	height: 15px;
	border-radius: 100%;
	animation-fill-mode: both;
	display: inline-block;
	animation-iteration-count: infinite;
	background-color: #6b6f82;
	margin: 2px;
}

.ball-triangle-path > div:nth-of-type(1)
{
	top: 50px;
}

.ball-triangle-path > div:nth-of-type(2)
{
	left: 25px;
}

.ball-triangle-path > div:nth-of-type(3)
{
	top: 50px;
	left: 50px;
}

@keyframes ball-pulse-rise-even
{
	0%
	{
		transform: scale(1.1);
	}

	25%
	{
		transform: translateY(-30px);
	}

	50%
	{
		transform: scale(.4);
	}

	75%
	{
		transform: translateY(30px);
	}

	100%
	{
		transform: translateY(0);
		transform: scale(1);
	}
}

@keyframes ball-pulse-rise-odd
{
	0%
	{
		transform: scale(.4);
	}

	25%
	{
		transform: translateY(30px);
	}

	50%
	{
		transform: scale(1.1);
	}

	75%
	{
		transform: translateY(-30px);
	}

	100%
	{
		transform: translateY(0);
		transform: scale(.75);
	}
}

.ball-pulse-rise > div
{
	width: 15px;
	animation-duration: 1s;
	animation-timing-function: cubic-bezier(.15,.46,.9,.6);
	animation-delay: 0;
}

	.ball-pulse-rise > div:nth-child(2n)
	{
		animation-name: ball-pulse-rise-even;
	}

	.ball-pulse-rise > div:nth-child(2n-1)
	{
		animation-name: ball-pulse-rise-odd;
	}

@keyframes ball-grid-beat
{
	50%
	{
		opacity: .7;
	}

	100%
	{
		opacity: 1;
	}
}

.ball-grid-beat
{
	width: 57px;
}

	.ball-grid-beat > div:nth-child(1)
	{
		animation-delay: .59s;
		animation-duration: 1.29s;
	}

	.ball-grid-beat > div:nth-child(2)
	{
		animation-delay: .73s;
		animation-duration: 1.39s;
	}

	.ball-grid-beat > div:nth-child(3)
	{
		animation-delay: -.13s;
		animation-duration: 1.41s;
	}

	.ball-grid-beat > div:nth-child(4)
	{
		animation-delay: .28s;
		animation-duration: .95s;
	}

	.ball-grid-beat > div:nth-child(5)
	{
		animation-delay: -70ms;
		animation-duration: .73s;
	}

	.ball-grid-beat > div:nth-child(6)
	{
		animation-delay: .13s;
		animation-duration: 1.51s;
	}

	.ball-grid-beat > div:nth-child(7)
	{
		animation-delay: 30ms;
		animation-duration: 1.08s;
	}

	.ball-grid-beat > div:nth-child(8)
	{
		animation-delay: -90ms;
		animation-duration: .98s;
	}

	.ball-grid-beat > div:nth-child(9)
	{
		animation-delay: 10ms;
		animation-duration: .66s;
	}

	.ball-grid-beat > div
	{
		width: 15px;
		float: left;
		animation-name: ball-grid-beat;
		animation-delay: 0;
	}

@keyframes ball-grid-pulse
{
	0%
	{
		transform: scale(1);
	}

	50%
	{
		transform: scale(.5);
		opacity: .7;
	}

	100%
	{
		transform: scale(1);
		opacity: 1;
	}
}

.ball-grid-pulse
{
	width: 57px;
}

	.ball-grid-pulse > div, .ball-spin-fade-loader > div, .ball-spin-loader > div
	{
		width: 15px;
		height: 15px;
		border-radius: 100%;
	}

		.ball-grid-pulse > div:nth-child(1)
		{
			animation-delay: -.13s;
			animation-duration: .62s;
		}

		.ball-grid-pulse > div:nth-child(2)
		{
			animation-delay: .1s;
			animation-duration: 1.55s;
		}

		.ball-grid-pulse > div:nth-child(3)
		{
			animation-delay: .53s;
			animation-duration: 1.18s;
		}

		.ball-grid-pulse > div:nth-child(4)
		{
			animation-delay: .5s;
			animation-duration: .89s;
		}

		.ball-grid-pulse > div:nth-child(5)
		{
			animation-delay: .18s;
			animation-duration: 1.01s;
		}

		.ball-grid-pulse > div:nth-child(6)
		{
			animation-delay: -70ms;
			animation-duration: 1.5s;
		}

		.ball-grid-pulse > div:nth-child(7)
		{
			animation-delay: -.15s;
			animation-duration: 1.22s;
		}

		.ball-grid-pulse > div:nth-child(8)
		{
			animation-delay: .68s;
			animation-duration: 1.07s;
		}

		.ball-grid-pulse > div:nth-child(9)
		{
			animation-delay: -.17s;
			animation-duration: .91s;
		}

	.ball-grid-pulse > div
	{
		background-color: #6b6f82;
		margin: 2px;
		animation-fill-mode: both;
		display: inline-block;
		float: left;
		animation-name: ball-grid-pulse;
		animation-iteration-count: infinite;
		animation-delay: 0;
	}

@keyframes ball-spin-fade-loader
{
	50%
	{
		opacity: .3;
		transform: scale(.4);
	}

	100%
	{
		opacity: 1;
		transform: scale(1);
	}
}

.ball-spin-fade-loader
{
	position: relative;
	top: -10px;
	left: -10px;
}

	.ball-spin-fade-loader > div:nth-child(1)
	{
		top: 25px;
		left: 0;
		animation: ball-spin-fade-loader 1s -.96s infinite linear;
	}

	.ball-spin-fade-loader > div:nth-child(2)
	{
		top: 17.05px;
		left: 17.05px;
		animation: ball-spin-fade-loader 1s -.84s infinite linear;
	}

	.ball-spin-fade-loader > div:nth-child(3)
	{
		top: 0;
		left: 25px;
		animation: ball-spin-fade-loader 1s -.72s infinite linear;
	}

	.ball-spin-fade-loader > div:nth-child(4)
	{
		top: -17.05px;
		left: 17.05px;
		animation: ball-spin-fade-loader 1s -.6s infinite linear;
	}

	.ball-spin-fade-loader > div:nth-child(5)
	{
		top: -25px;
		left: 0;
		animation: ball-spin-fade-loader 1s -.48s infinite linear;
	}

	.ball-spin-fade-loader > div:nth-child(6)
	{
		top: -17.05px;
		left: -17.05px;
		animation: ball-spin-fade-loader 1s -.36s infinite linear;
	}

	.ball-spin-fade-loader > div:nth-child(7)
	{
		top: 0;
		left: -25px;
		animation: ball-spin-fade-loader 1s -.24s infinite linear;
	}

	.ball-spin-fade-loader > div:nth-child(8)
	{
		top: 17.05px;
		left: -17.05px;
		animation: ball-spin-fade-loader 1s -.12s infinite linear;
	}

	.ball-spin-fade-loader > div
	{
		background-color: #6b6f82;
		margin: 2px;
		animation-fill-mode: both;
		position: absolute;
	}

@keyframes ball-spin-loader
{
	75%
	{
		opacity: .2;
	}

	100%
	{
		opacity: 1;
	}
}

.ball-spin-loader
{
	position: relative;
}

	.ball-spin-loader > span:nth-child(1)
	{
		top: 45px;
		left: 0;
		animation: ball-spin-loader 2s .9s infinite linear;
	}

	.ball-spin-loader > span:nth-child(2)
	{
		top: 30.68px;
		left: 30.68px;
		animation: ball-spin-loader 2s 1.8s infinite linear;
	}

	.ball-spin-loader > span:nth-child(3)
	{
		top: 0;
		left: 45px;
		animation: ball-spin-loader 2s 2.7s infinite linear;
	}

	.ball-spin-loader > span:nth-child(4)
	{
		top: -30.68px;
		left: 30.68px;
		animation: ball-spin-loader 2s 3.6s infinite linear;
	}

	.ball-spin-loader > span:nth-child(5)
	{
		top: -45px;
		left: 0;
		animation: ball-spin-loader 2s 4.5s infinite linear;
	}

	.ball-spin-loader > span:nth-child(6)
	{
		top: -30.68px;
		left: -30.68px;
		animation: ball-spin-loader 2s 5.4s infinite linear;
	}

	.ball-spin-loader > span:nth-child(7)
	{
		top: 0;
		left: -45px;
		animation: ball-spin-loader 2s 6.3s infinite linear;
	}

	.ball-spin-loader > span:nth-child(8)
	{
		top: 30.68px;
		left: -30.68px;
		animation: ball-spin-loader 2s 7.2s infinite linear;
	}

	.ball-spin-loader > div
	{
		animation-fill-mode: both;
		position: absolute;
		background: green;
	}

.ball-zig-zag-deflect > div, .ball-zig-zag > div
{
	background-color: #6b6f82;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	margin: 2px 2px 2px 15px;
	top: 4px;
	left: -7px;
}

@keyframes ball-zig
{
	33%
	{
		transform: translate(-15px,-30px);
	}

	66%
	{
		transform: translate(15px,-30px);
	}

	100%
	{
		transform: translate(0,0);
	}
}

@keyframes ball-zag
{
	33%
	{
		transform: translate(15px,30px);
	}

	66%
	{
		transform: translate(-15px,30px);
	}

	100%
	{
		transform: translate(0,0);
	}
}

.ball-zig-zag
{
	position: relative;
	transform: translate(-15px,-15px);
}

	.ball-zig-zag > div
	{
		animation-fill-mode: both;
		position: absolute;
	}

		.ball-zig-zag > div:first-child
		{
			animation: ball-zig .7s 0s infinite linear;
		}

		.ball-zig-zag > div:last-child
		{
			animation: ball-zag .7s 0s infinite linear;
		}

@keyframes ball-zig-deflect
{
	17%,84%
	{
		transform: translate(-15px,-30px);
	}

	34%,67%
	{
		transform: translate(15px,-30px);
	}

	100%,50%
	{
		transform: translate(0,0);
	}
}

@keyframes ball-zag-deflect
{
	17%,84%
	{
		transform: translate(15px,30px);
	}

	34%,67%
	{
		transform: translate(-15px,30px);
	}

	100%,50%
	{
		transform: translate(0,0);
	}
}

.ball-zig-zag-deflect
{
	position: relative;
	transform: translate(-15px,-15px);
}

	.ball-zig-zag-deflect > div
	{
		animation-fill-mode: both;
		position: absolute;
	}

		.ball-zig-zag-deflect > div:first-child
		{
			animation: ball-zig-deflect 1.5s 0s infinite linear;
		}

		.ball-zig-zag-deflect > div:last-child
		{
			animation: ball-zag-deflect 1.5s 0s infinite linear;
		}

@keyframes line-scale
{
	0%,100%
	{
		transform: scaley(1);
	}

	50%
	{
		transform: scaley(.4);
	}
}

.line-scale > div:nth-child(1)
{
	animation: line-scale 1s -.4s infinite cubic-bezier(.2,.68,.18,1.08);
}

.line-scale > div:nth-child(2)
{
	animation: line-scale 1s -.3s infinite cubic-bezier(.2,.68,.18,1.08);
}

.line-scale > div:nth-child(3)
{
	animation: line-scale 1s -.2s infinite cubic-bezier(.2,.68,.18,1.08);
}

.line-scale > div:nth-child(4)
{
	animation: line-scale 1s -.1s infinite cubic-bezier(.2,.68,.18,1.08);
}

.line-scale > div:nth-child(5)
{
	animation: line-scale 1s 0s infinite cubic-bezier(.2,.68,.18,1.08);
}

.line-scale-party > div, .line-scale > div
{
	animation-fill-mode: both;
	width: 4px;
	height: 3.45rem;
	display: inline-block;
	border-radius: 2px;
	margin: 2px;
	background-color: #6b6f82;
}

@keyframes line-scale-party
{
	0%,100%
	{
		transform: scale(1);
	}

	50%
	{
		transform: scale(.5);
	}
}

.line-scale-party > div:nth-child(1)
{
	animation-delay: 90ms;
	animation-duration: .36s;
}

.line-scale-party > div:nth-child(2)
{
	animation-delay: .6s;
	animation-duration: .38s;
}

.line-scale-party > div:nth-child(3)
{
	animation-delay: -.19s;
	animation-duration: .34s;
}

.line-scale-party > div:nth-child(4)
{
	animation-delay: -70ms;
	animation-duration: .94s;
}

.line-scale-party > div
{
	animation-name: line-scale-party;
	animation-iteration-count: infinite;
	animation-delay: 0;
}

@keyframes line-scale-pulse-out
{
	0%,100%
	{
		transform: scaley(1);
	}

	50%
	{
		transform: scaley(.4);
	}
}

.line-scale-pulse-out > div
{
	background-color: #6b6f82;
	width: 4px;
	height: 3.45rem;
	border-radius: 2px;
	margin: 2px;
	display: inline-block;
	animation: line-scale-pulse-out .9s -.6s infinite cubic-bezier(.85,.25,.37,.85);
}

	.line-scale-pulse-out > div:nth-child(2), .line-scale-pulse-out > div:nth-child(4)
	{
		animation-delay: -.4s!important;
	}

	.line-scale-pulse-out > div:nth-child(1), .line-scale-pulse-out > div:nth-child(5)
	{
		animation-delay: -.2s!important;
	}

@keyframes line-scale-pulse-out-rapid
{
	0%,90%
	{
		transform: scaley(1);
	}

	80%
	{
		transform: scaley(.3);
	}
}

.line-scale-pulse-out-rapid > div
{
	background-color: #6b6f82;
	width: 4px;
	height: 3.45rem;
	border-radius: 2px;
	margin: 2px;
	display: inline-block;
	vertical-align: middle;
	animation: line-scale-pulse-out-rapid .9s -.5s infinite cubic-bezier(.11,.49,.38,.78);
}

	.line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4)
	{
		animation-delay: -.25s!important;
	}

	.line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5)
	{
		animation-delay: 0s!important;
	}

@keyframes line-spin-fade-loader
{
	50%
	{
		opacity: .3;
	}

	100%
	{
		opacity: 1;
	}
}

.line-spin-fade-loader
{
	position: relative;
	top: -10px;
	left: -4px;
}

	.line-spin-fade-loader > div:nth-child(1)
	{
		top: 20px;
		left: 0;
		animation: line-spin-fade-loader 1.2s -.84s infinite ease-in-out;
	}

	.line-spin-fade-loader > div:nth-child(2)
	{
		top: 13.64px;
		left: 13.64px;
		transform: rotate(-45deg);
		animation: line-spin-fade-loader 1.2s -.72s infinite ease-in-out;
	}

	.line-spin-fade-loader > div:nth-child(3)
	{
		top: 0;
		left: 20px;
		transform: rotate(90deg);
		animation: line-spin-fade-loader 1.2s -.6s infinite ease-in-out;
	}

	.line-spin-fade-loader > div:nth-child(4)
	{
		top: -13.64px;
		left: 13.64px;
		transform: rotate(45deg);
		animation: line-spin-fade-loader 1.2s -.48s infinite ease-in-out;
	}

	.line-spin-fade-loader > div:nth-child(5)
	{
		top: -20px;
		left: 0;
		animation: line-spin-fade-loader 1.2s -.36s infinite ease-in-out;
	}

	.line-spin-fade-loader > div:nth-child(6)
	{
		top: -13.64px;
		left: -13.64px;
		transform: rotate(-45deg);
		animation: line-spin-fade-loader 1.2s -.24s infinite ease-in-out;
	}

	.line-spin-fade-loader > div:nth-child(7)
	{
		top: 0;
		left: -20px;
		transform: rotate(90deg);
		animation: line-spin-fade-loader 1.2s -.12s infinite ease-in-out;
	}

	.line-spin-fade-loader > div:nth-child(8)
	{
		top: 13.64px;
		left: -13.64px;
		transform: rotate(45deg);
		animation: line-spin-fade-loader 1.2s 0s infinite ease-in-out;
	}

	.line-spin-fade-loader > div
	{
		background-color: #6b6f82;
		border-radius: 2px;
		margin: 2px;
		animation-fill-mode: both;
		position: absolute;
		width: 5px;
		height: 15px;
	}

@keyframes triangle-skew-spin
{
	25%
	{
		transform: perspective(100px) rotateX(180deg) rotateY(0);
	}

	50%
	{
		transform: perspective(100px) rotateX(180deg) rotateY(180deg);
	}

	75%
	{
		transform: perspective(100px) rotateX(0) rotateY(180deg);
	}

	100%
	{
		transform: perspective(100px) rotateX(0) rotateY(0);
	}
}

.triangle-skew-spin > div
{
	width: 0;
	height: 0;
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 20px solid #6b6f82;
	animation: triangle-skew-spin 3s 0s cubic-bezier(.09,.57,.49,.9) infinite;
}

@keyframes square-spin
{
	25%
	{
		transform: perspective(100px) rotateX(180deg) rotateY(0);
	}

	50%
	{
		transform: perspective(100px) rotateX(180deg) rotateY(180deg);
	}

	75%
	{
		transform: perspective(100px) rotateX(0) rotateY(180deg);
	}

	100%
	{
		transform: perspective(100px) rotateX(0) rotateY(0);
	}
}

.square-spin > div
{
	width: 50px;
	height: 50px;
	background: #6b6f82;
	animation: square-spin 3s 0s cubic-bezier(.09,.57,.49,.9) infinite;
}

.pacman > div:first-of-type, .pacman > div:nth-child(2)
{
	width: 0;
	height: 0;
	border-right: 25px solid transparent;
	border-top: 25px solid #6b6f82;
	border-left: 25px solid #6b6f82;
	border-bottom: 25px solid #6b6f82;
	border-radius: 25px;
	position: relative;
	left: -30px;
}

@keyframes rotate_pacman_half_up
{
	0%,100%
	{
		transform: rotate(270deg);
	}

	50%
	{
		transform: rotate(360deg);
	}
}

@keyframes rotate_pacman_half_down
{
	0%,100%
	{
		transform: rotate(90deg);
	}

	50%
	{
		transform: rotate(0);
	}
}

@keyframes pacman-balls
{
	75%
	{
		opacity: .7;
	}

	100%
	{
		transform: translate(-100px,-6.25px);
	}
}

.pacman
{
	position: relative;
}

	.pacman > div:nth-child(3)
	{
		animation: pacman-balls 1s -.66s infinite linear;
	}

	.pacman > div:nth-child(4)
	{
		animation: pacman-balls 1s -.33s infinite linear;
	}

	.pacman > div:nth-child(5)
	{
		animation: pacman-balls 1s 0s infinite linear;
	}

	.pacman > div:first-of-type
	{
		animation: rotate_pacman_half_up .5s 0s infinite;
	}

	.pacman > div:nth-child(2)
	{
		animation: rotate_pacman_half_down .5s 0s infinite;
		margin-top: -50px;
	}

	.pacman > div:nth-child(3), .pacman > div:nth-child(4), .pacman > div:nth-child(5), .pacman > div:nth-child(6)
	{
		background-color: #6b6f82;
		border-radius: 100%;
		margin: 2px;
		width: 10px;
		height: 10px;
		position: absolute;
		transform: translate(0,-6.25px);
		top: 25px;
		left: 70px;
	}

@keyframes cube-transition
{
	25%
	{
		transform: translateX(50px) scale(.5) rotate(-90deg);
	}

	50%
	{
		transform: translate(50px,50px) rotate(-180deg);
	}

	75%
	{
		transform: translateY(50px) scale(.5) rotate(-270deg);
	}

	100%
	{
		transform: rotate(-360deg);
	}
}

.cube-transition
{
	position: relative;
	transform: translate(-25px,-25px);
}

	.cube-transition > div
	{
		width: 10px;
		height: 10px;
		position: absolute;
		top: -5px;
		left: -5px;
		background-color: #6b6f82;
		animation: cube-transition 1.6s 0s infinite ease-in-out;
	}

#loader, .loader-container
{
	left: 50%;
	transform: translate(-50%,-50%);
}

.cube-transition > div:last-child
{
	animation-delay: -.8s;
}

@keyframes spin-rotate
{
	0%
	{
		transform: rotate(0);
	}

	50%
	{
		transform: rotate(180deg);
	}

	100%
	{
		transform: rotate(360deg);
	}
}

.semi-circle-spin
{
	position: relative;
	width: 35px;
	height: 35px;
	overflow: hidden;
}

	.semi-circle-spin > div
	{
		position: absolute;
		border-width: 0;
		border-radius: 100%;
		animation: spin-rotate .6s 0s infinite linear;
		background-image: linear-gradient(transparent 0,transparent 70%,#6b6f82 30%,#6b6f82 100%);
		width: 100%;
		height: 100%;
	}

.loader-wrapper
{
	position: relative;
}

.loader-container
{
	margin: 0 -50% 0 0;
	position: absolute;
	top: 50%;
}

#preloader-wrapper
{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1050;
}

	#preloader-wrapper .loader-section
	{
		position: fixed;
		width: 100%;
		height: 51%;
		background: #222;
		z-index: 1050;
	}

		#preloader-wrapper .loader-section.section-top
		{
			top: 0;
		}

		#preloader-wrapper .loader-section.section-bottom
		{
			bottom: 0;
		}

#loader
{
	display: block;
	position: absolute;
	top: 50%;
	width: 60px;
	height: 60px;
	margin-right: -50%;
	z-index: 1051;
}

.loaded #preloader-wrapper .loader-section.section-top
{
	-webkit-transform: translateY(-100%);
	-ms-transform: translateY(-100%);
	transform: translateY(-100%);
}

.loaded #preloader-wrapper .loader-section.section-bottom
{
	-webkit-transform: translateY(100%);
	-ms-transform: translateY(100%);
	transform: translateY(100%);
}

.loaded #loader
{
	opacity: 0;
	-webkit-transition: all .3s ease-out;
	transition: all .3s ease-out;
}

.loaded #preloader-wrapper
{
	visibility: hidden;
}

	.loaded #preloader-wrapper .loader-section.section-bottom, .loaded #preloader-wrapper .loader-section.section-top
	{
		-webkit-transition: all .7s .3s cubic-bezier(.645,.045,.355,1);
		transition: all .7s .3s cubic-bezier(.645,.045,.355,1);
	}

.loading
{
	position: fixed;
	z-index: 999;
	height: 2em;
	width: 2em;
	overflow: visible;
	margin: auto;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
}

	/* Transparent Overlay */
	.loading:before
	{
		content: '';
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0,0,0,0.3);
	}

	/* :not(:required) hides these rules from IE9 and below */
	.loading:not(:required)
	{
		/* hide "loading..." text */
		font: 0/0 a;
		color: transparent;
		text-shadow: none;
		background-color: transparent;
		border: 0;
	}

		.loading:not(:required):after
		{
			content: '';
			display: block;
			font-size: 20px;
			width: 1em;
			height: 1em;
			margin-top: -0.5em;
			-webkit-animation: spinner 1500ms infinite linear;
			-moz-animation: spinner 1500ms infinite linear;
			-ms-animation: spinner 1500ms infinite linear;
			-o-animation: spinner 1500ms infinite linear;
			animation: spinner 1500ms infinite linear;
			border-radius: 0.5em;
			-webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
			box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
		}

/* Animation */

@-webkit-keyframes spinner
{
	0%
	{
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100%
	{
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes spinner
{
	0%
	{
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100%
	{
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-o-keyframes spinner
{
	0%
	{
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100%
	{
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@keyframes spinner
{
	0%
	{
		-webkit-transform: rotate(0deg);
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100%
	{
		-webkit-transform: rotate(360deg);
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}