.ajax-loading {
	position: relative;
	overflow: hidden;

	.penci-loader-effect {
		display: block;
	}

	&:before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom:0;
		z-index: 200;
		background: $color__white;
		opacity: 0.65;
	}
}

.penci-loader-effect {
	width: 40px;
	height: 40px;
	margin: 0 auto;
	margin-top: -26px;
	margin-left: -26px;
	display: none;
	position: absolute;
	top:50%;
	left: 50%;
	z-index: 300;
}

@media ( max-width: 767px ) {
	.penci-loader-effect {
		top: 135px;
	}
}

.penci-loading-animation:before,
.penci-loading-animation:after {
    content: "";
    position: absolute
}
.penci-loading-animation-1 .penci-loading-animation,
.penci-loading-animation-1 .penci-loading-animation:before,
.penci-loading-animation-1 .penci-loading-animation:after,
.penci-loading-animation-5 .penci-loading-animation,
.penci-loading-animation-6 .penci-loading-animation:before,
.penci-loading-animation-7 .penci-loading-animation,
.penci-loading-animation-8 .penci-loading-animation,
.penci-loading-animation-9 .penci-loading-circle-inner:before {
    background-color: $color__blue;
}

.penci-load-thecube {
	transform: rotateZ(45deg);
	-webkit-transform: rotateZ(45deg);
	-moz-transform: rotateZ(45deg);
	

	.penci-load-cube {
		position: relative;
		transform: rotateZ(45deg);
		-webkit-transform: rotateZ(45deg);
		-moz-transform: rotateZ(45deg);
	}

	.penci-load-cube {
		float: left;
		width: 50%;
		height: 50%;
		position: relative;
		transform: scale(1.1);
		-webkit-transform: scale(1.1);
		-moz-transform: scale(1.1);

		&:before {
			content: "";
			position: absolute;
			top: 0;
			left: 0;
			width: 100%;
			height: 100%;
			animation: penci-load-fold-thecube 1.44s infinite linear both;
			-webkit-animation: penci-load-fold-thecube 1.44s infinite linear both;
			-moz-animation: penci-load-fold-thecube 1.44s infinite linear both;
			transform-origin: 100% 100%;
			-webkit-transform-origin: 100% 100%;
			-moz-transform-origin: 100% 100%;
		}
	}

	.penci-load-c2 {
		transform: scale(1.1) rotateZ(90deg);
		-webkit-transform: scale(1.1) rotateZ(90deg);
		-moz-transform: scale(1.1) rotateZ(90deg);
	}
	.penci-load-c3 {
		transform: scale(1.1) rotateZ(180deg);
		-ms-transform: scale(1.1) rotateZ(180deg);
		-webkit-transform: scale(1.1) rotateZ(180deg);
		-moz-transform: scale(1.1) rotateZ(180deg);
	}
	.penci-load-c4 {
		transform: scale(1.1) rotateZ(270deg);
		-webkit-transform: scale(1.1) rotateZ(270deg);
		-moz-transform: scale(1.1) rotateZ(270deg);
	}
	.penci-load-c2:before {
		animation-delay: 0.175s;
		-webkit-animation-delay: 0.175s;
		-moz-animation-delay: 0.175s;
	}
	.penci-load-c3:before {
		animation-delay: 0.36s;
		-webkit-animation-delay: 0.36s;
		-moz-animation-delay: 0.36s;
	}
	.penci-load-c4:before {
		animation-delay: 0.535s;
		-webkit-animation-delay: 0.535s;
		-moz-animation-delay: 0.535s;
	}
}


@keyframes penci-load-fold-thecube {
	0%, 10% {
		transform: perspective(77px) rotateX(-180deg);
		opacity: 0;
	}
	25%,
	75% {
		transform: perspective(77px) rotateX(0deg);
		opacity: 1;
	}
	90%,
	100% {
		transform: perspective(77px) rotateY(180deg);
		opacity: 0;
	}
}

@-webkit-keyframes penci-load-fold-thecube {
	0%, 10% {
		-webkit-transform: perspective(77px) rotateX(-180deg);
		opacity: 0;
	}
	25%,
	75% {
		-webkit-transform: perspective(77px) rotateX(0deg);
		opacity: 1;
	}
	90%,
	100% {
		-webkit-transform: perspective(77px) rotateY(180deg);
		opacity: 0;
	}
}


.penci-three-bounce {
	text-align: center;
	position: relative;

	.one,
	.two,
	.three {
		display: inline-block;
		width: 15px;
		height: 15px;
		border-radius: 100%;
		background-color: $color__blue;
		-webkit-animation: pencibouncedelay 1s infinite ease-in-out both;
		animation: pencibouncedelay 1s infinite ease-in-out both;
	}

	.one {
		-webkit-animation-delay: -0.32s;
		animation-delay: -0.32s;
	}

	.two {
		-webkit-animation-delay: -0.16s;
		animation-delay: -0.16s;
		margin: 0 5px;
	}
}

@-webkit-keyframes pencibouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0)
	}

	40% {
		-webkit-transform: scale(1)
	}
}

@keyframes pencibouncedelay {
	0%, 80%, 100% {
		-webkit-transform: scale(0);
		transform: scale(0)
	}

	40% {
		transform: scale(1);
		-webkit-transform: scale(1)
	}
}

.penci-loading-animation-1 {
	width: 50px;
	height: 40px;
	text-align: center;
	font-size: 10px;
}

.penci-loading-animation-1 > div {
	background-color: $color__blue;
	height: 100%;
	width: 6px;
	margin: 0 1px;
	display: inline-block;
	-webkit-animation: pencistretchdelay 1s infinite ease-in-out;
	animation: pencistretchdelay 1s infinite ease-in-out;
}

.penci-loading-animation-1 .rect2 {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s;
}

.penci-loading-animation-1 .rect3 {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s;
}

.penci-loading-animation-1 .rect4 {
	-webkit-animation-delay: -0.7s;
	animation-delay: -0.7s;
}


@-webkit-keyframes pencistretchdelay {
	0%, 40%, 100% { -webkit-transform: scaleY(0.4) }
	20% { -webkit-transform: scaleY(1.0) }
}

@keyframes pencistretchdelay {
	0%, 40%, 100% {
		transform: scaleY(0.4);
		-webkit-transform: scaleY(0.4);
	}  20% {
		   transform: scaleY(1.0);
		   -webkit-transform: scaleY(1.0);
	   }
}



.penci-loading-animation-2 {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5)
}

.penci-loading-animation-2 .penci-loading-animation {
    margin: 26px auto;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    -webkit-animation: loader-2 0.85s infinite linear;
    animation: loader-2 0.85s infinite linear
}

@-webkit-keyframes loader-2 {
    0%,100% {  box-shadow: 0 -3em 0 .2em $color__blue,2em -2em 0 0 $color__blue,3em 0 0 -1em $color__blue,2em 2em 0 -1em $color__blue,0 3em 0 -1em $color__blue,-2em 2em 0 -1em $color__blue,-3em 0 0 -1em $color__blue,-2em -2em 0 0 $color__blue
    }

    12.5% {
        box-shadow: 0 -3em 0 0 $color__blue,2em -2em 0 .2em $color__blue,3em 0 0 0 $color__blue,2em 2em 0 -1em $color__blue,0 3em 0 -1em $color__blue,-2em 2em 0 -1em $color__blue,-3em 0 0 -1em $color__blue,-2em -2em 0 -1em $color__blue
    }

    25% {
        box-shadow: 0 -3em 0 -0.5em $color__blue,2em -2em 0 0 $color__blue,3em 0 0 .2em $color__blue,2em 2em 0 0 $color__blue,0 3em 0 -1em $color__blue,-2em 2em 0 -1em $color__blue,-3em 0 0 -1em $color__blue,-2em -2em 0 -1em $color__blue
    }

    37.5% {
        box-shadow: 0 -3em 0 -1em $color__blue,2em -2em 0 -1em $color__blue,3em 0 0 0 $color__blue,2em 2em 0 .2em $color__blue,0 3em 0 0 $color__blue,-2em 2em 0 -1em $color__blue,-3em 0 0 -1em $color__blue,-2em -2em 0 -1em $color__blue
    }

    50% {
        box-shadow: 0 -3em 0 -1em $color__blue,2em -2em 0 -1em $color__blue,3em 0 0 -1em $color__blue,2em 2em 0 0 $color__blue,0 3em 0 .2em $color__blue,-2em 2em 0 0 $color__blue,-3em 0 0 -1em $color__blue,-2em -2em 0 -1em $color__blue
    }

    62.5% {
        box-shadow: 0 -3em 0 -1em $color__blue,2em -2em 0 -1em $color__blue,3em 0 0 -1em $color__blue,2em 2em 0 -1em $color__blue,0 3em 0 0 $color__blue,-2em 2em 0 .2em $color__blue,-3em 0 0 0 $color__blue,-2em -2em 0 -1em $color__blue
    }

    75% {
        box-shadow: 0 -3em 0 -1em $color__blue,2em -2em 0 -1em $color__blue,3em 0 0 -1em $color__blue,2em 2em 0 -1em $color__blue,0 3em 0 -1em $color__blue,-2em 2em 0 0 $color__blue,-3em 0 0 .2em $color__blue,-2em -2em 0 0 $color__blue
    }

    87.5% {
        box-shadow: 0 -3em 0 0 $color__blue,2em -2em 0 -1em $color__blue,3em 0 0 -1em $color__blue,2em 2em 0 -1em $color__blue,0 3em 0 -1em $color__blue,-2em 2em 0 0 $color__blue,-3em 0 0 0 $color__blue,-2em -2em 0 .2em $color__blue
    }
}

@keyframes loader-2 {
    0%,100% {
        box-shadow: 0 -3em 0 .2em $color__blue,2em -2em 0 0 $color__blue,3em 0 0 -1em $color__blue,2em 2em 0 -1em $color__blue,0 3em 0 -1em $color__blue,-2em 2em 0 -1em $color__blue,-3em 0 0 -1em $color__blue,-2em -2em 0 0 $color__blue
    }

    12.5% {
        box-shadow: 0 -3em 0 0 $color__blue,2em -2em 0 .2em $color__blue,3em 0 0 0 $color__blue,2em 2em 0 -1em $color__blue,0 3em 0 -1em $color__blue,-2em 2em 0 -1em $color__blue,-3em 0 0 -1em $color__blue,-2em -2em 0 -1em $color__blue
    }

    25% {
        box-shadow: 0 -3em 0 -0.5em $color__blue,2em -2em 0 0 $color__blue,3em 0 0 .2em $color__blue,2em 2em 0 0 $color__blue,0 3em 0 -1em $color__blue,-2em 2em 0 -1em $color__blue,-3em 0 0 -1em $color__blue,-2em -2em 0 -1em $color__blue
    }

    37.5% {
        box-shadow: 0 -3em 0 -1em $color__blue,2em -2em 0 -1em $color__blue,3em 0 0 0 $color__blue,2em 2em 0 .2em $color__blue,0 3em 0 0 $color__blue,-2em 2em 0 -1em $color__blue,-3em 0 0 -1em $color__blue,-2em -2em 0 -1em $color__blue
    }

    50% {
        box-shadow: 0 -3em 0 -1em $color__blue,2em -2em 0 -1em $color__blue,3em 0 0 -1em $color__blue,2em 2em 0 0 $color__blue,0 3em 0 .2em $color__blue,-2em 2em 0 0 $color__blue,-3em 0 0 -1em $color__blue,-2em -2em 0 -1em $color__blue
    }

    62.5% {
        box-shadow: 0 -3em 0 -1em $color__blue,2em -2em 0 -1em $color__blue,3em 0 0 -1em $color__blue,2em 2em 0 -1em $color__blue,0 3em 0 0 $color__blue,-2em 2em 0 .2em $color__blue,-3em 0 0 0 $color__blue,-2em -2em 0 -1em $color__blue
    }

    75% {
        box-shadow: 0 -3em 0 -1em $color__blue,2em -2em 0 -1em $color__blue,3em 0 0 -1em $color__blue,2em 2em 0 -1em $color__blue,0 3em 0 -1em $color__blue,-2em 2em 0 0 $color__blue,-3em 0 0 .2em $color__blue,-2em -2em 0 0 $color__blue
    }

    87.5% {
        box-shadow: 0 -3em 0 0 $color__blue,2em -2em 0 -1em $color__blue,3em 0 0 -1em $color__blue,2em 2em 0 -1em $color__blue,0 3em 0 -1em $color__blue,-2em 2em 0 0 $color__blue,-3em 0 0 0 $color__blue,-2em -2em 0 .2em $color__blue
    }
}

.penci-loading-animation-3 {
    -webkit-transform: scale(0.55);
    -ms-transform: scale(0.55);
    transform: scale(0.55)
}

.penci-loading-animation-3 .penci-loading-animation {
	margin: 26px auto;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	position: relative;
	-webkit-animation: loader-3 0.7s infinite ease;
	animation: loader-3 0.7s infinite ease;
}

@-webkit-keyframes loader-3 {
    0%,100% {
        box-shadow: 0 -2.6em 0 0 #3f51b5,1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2),2.5em 0 0 0 rgba(63, 81, 181, 0.2),1.75em 1.75em 0 0 rgba(63, 81, 181, 0.2),0 2.5em 0 0 rgba(63, 81, 181, 0.2),-1.8em 1.8em 0 0 rgba(63, 81, 181, 0.2),-2.6em 0 0 0 rgba(63, 81, 181, 0.5),-1.8em -1.8em 0 0 rgba(63, 81, 181, 0.7)
    }

    12.5% {
        box-shadow: 0 -2.6em 0 0 rgba(63, 81, 181, 0.7),1.8em -1.8em 0 0 #3f51b5,2.5em 0 0 0 rgba(63, 81, 181, 0.2),1.75em 1.75em 0 0 rgba(63, 81, 181, 0.2),0 2.5em 0 0 rgba(63, 81, 181, 0.2),-1.8em 1.8em 0 0 rgba(63, 81, 181, 0.2),-2.6em 0 0 0 rgba(63, 81, 181, 0.2),-1.8em -1.8em 0 0 rgba(63, 81, 181, 0.5)
    }

    25% {
        box-shadow: 0 -2.6em 0 0 rgba(63, 81, 181, 0.5),1.8em -1.8em 0 0 rgba(63, 81, 181, 0.7),2.5em 0 0 0 #3f51b5,1.75em 1.75em 0 0 rgba(63, 81, 181, 0.2),0 2.5em 0 0 rgba(63, 81, 181, 0.2),-1.8em 1.8em 0 0 rgba(63, 81, 181, 0.2),-2.6em 0 0 0 rgba(63, 81, 181, 0.2),-1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2)
    }

    37.5% {
        box-shadow: 0 -2.6em 0 0 rgba(63, 81, 181, 0.2),1.8em -1.8em 0 0 rgba(63, 81, 181, 0.5),2.5em 0 0 0 rgba(63, 81, 181, 0.7),1.75em 1.75em 0 0 rgba(63, 81, 181, 0.2),0 2.5em 0 0 rgba(63, 81, 181, 0.2),-1.8em 1.8em 0 0 rgba(63, 81, 181, 0.2),-2.6em 0 0 0 rgba(63, 81, 181, 0.2),-1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2)
    }

    50% {
        box-shadow: 0 -2.6em 0 0 rgba(63, 81, 181, 0.2),1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2),2.5em 0 0 0 rgba(63, 81, 181, 0.5),1.75em 1.75em 0 0 rgba(63, 81, 181, 0.7),0 2.5em 0 0 #3f51b5,-1.8em 1.8em 0 0 rgba(63, 81, 181, 0.2),-2.6em 0 0 0 rgba(63, 81, 181, 0.2),-1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2)
    }

    62.5% {
        box-shadow: 0 -2.6em 0 0 rgba(63, 81, 181, 0.2),1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2),2.5em 0 0 0 rgba(63, 81, 181, 0.2),1.75em 1.75em 0 0 rgba(63, 81, 181, 0.5),0 2.5em 0 0 rgba(63, 81, 181, 0.7),-1.8em 1.8em 0 0 #3f51b5,-2.6em 0 0 0 rgba(63, 81, 181, 0.2),-1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2)
    }

    75% {
        box-shadow: 0 -2.6em 0 0 rgba(63, 81, 181, 0.2),1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2),2.5em 0 0 0 rgba(63, 81, 181, 0.2),1.75em 1.75em 0 0 rgba(63, 81, 181, 0.2),0 2.5em 0 0 rgba(63, 81, 181, 0.5),-1.8em 1.8em 0 0 rgba(63, 81, 181, 0.7),-2.6em 0 0 0 #3f51b5,-1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2)
    }

    87.5% {
        box-shadow: 0 -2.6em 0 0 rgba(63, 81, 181, 0.2),1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2),2.5em 0 0 0 rgba(63, 81, 181, 0.2),1.75em 1.75em 0 0 rgba(63, 81, 181, 0.2),0 2.5em 0 0 rgba(63, 81, 181, 0.2),-1.8em 1.8em 0 0 rgba(63, 81, 181, 0.5),-2.6em 0 0 0 rgba(63, 81, 181, 0.7),-1.8em -1.8em 0 0 #3f51b5
    }
}

@keyframes loader-3 {
    0%,100% {
        box-shadow: 0 -2.6em 0 0 #3f51b5,1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2),2.5em 0 0 0 rgba(63, 81, 181, 0.2),1.75em 1.75em 0 0 rgba(63, 81, 181, 0.2),0 2.5em 0 0 rgba(63, 81, 181, 0.2),-1.8em 1.8em 0 0 rgba(63, 81, 181, 0.2),-2.6em 0 0 0 rgba(63, 81, 181, 0.5),-1.8em -1.8em 0 0 rgba(63, 81, 181, 0.7)
    }

    12.5% {
        box-shadow: 0 -2.6em 0 0 rgba(63, 81, 181, 0.7),1.8em -1.8em 0 0 #3f51b5,2.5em 0 0 0 rgba(63, 81, 181, 0.2),1.75em 1.75em 0 0 rgba(63, 81, 181, 0.2),0 2.5em 0 0 rgba(63, 81, 181, 0.2),-1.8em 1.8em 0 0 rgba(63, 81, 181, 0.2),-2.6em 0 0 0 rgba(63, 81, 181, 0.2),-1.8em -1.8em 0 0 rgba(63, 81, 181, 0.5)
    }

    25% {
        box-shadow: 0 -2.6em 0 0 rgba(63, 81, 181, 0.5),1.8em -1.8em 0 0 rgba(63, 81, 181, 0.7),2.5em 0 0 0 #3f51b5,1.75em 1.75em 0 0 rgba(63, 81, 181, 0.2),0 2.5em 0 0 rgba(63, 81, 181, 0.2),-1.8em 1.8em 0 0 rgba(63, 81, 181, 0.2),-2.6em 0 0 0 rgba(63, 81, 181, 0.2),-1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2)
    }

    37.5% {
        box-shadow: 0 -2.6em 0 0 rgba(63, 81, 181, 0.2),1.8em -1.8em 0 0 rgba(63, 81, 181, 0.5),2.5em 0 0 0 rgba(63, 81, 181, 0.7),1.75em 1.75em 0 0 rgba(63, 81, 181, 0.2),0 2.5em 0 0 rgba(63, 81, 181, 0.2),-1.8em 1.8em 0 0 rgba(63, 81, 181, 0.2),-2.6em 0 0 0 rgba(63, 81, 181, 0.2),-1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2)
    }

    50% {
        box-shadow: 0 -2.6em 0 0 rgba(63, 81, 181, 0.2),1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2),2.5em 0 0 0 rgba(63, 81, 181, 0.5),1.75em 1.75em 0 0 rgba(63, 81, 181, 0.7),0 2.5em 0 0 #3f51b5,-1.8em 1.8em 0 0 rgba(63, 81, 181, 0.2),-2.6em 0 0 0 rgba(63, 81, 181, 0.2),-1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2)
    }

    62.5% {
        box-shadow: 0 -2.6em 0 0 rgba(63, 81, 181, 0.2),1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2),2.5em 0 0 0 rgba(63, 81, 181, 0.2),1.75em 1.75em 0 0 rgba(63, 81, 181, 0.5),0 2.5em 0 0 rgba(63, 81, 181, 0.7),-1.8em 1.8em 0 0 #3f51b5,-2.6em 0 0 0 rgba(63, 81, 181, 0.2),-1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2)
    }

    75% {
        box-shadow: 0 -2.6em 0 0 rgba(63, 81, 181, 0.2),1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2),2.5em 0 0 0 rgba(63, 81, 181, 0.2),1.75em 1.75em 0 0 rgba(63, 81, 181, 0.2),0 2.5em 0 0 rgba(63, 81, 181, 0.5),-1.8em 1.8em 0 0 rgba(63, 81, 181, 0.7),-2.6em 0 0 0 #3f51b5,-1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2)
    }

    87.5% {
        box-shadow: 0 -2.6em 0 0 rgba(63, 81, 181, 0.2),1.8em -1.8em 0 0 rgba(63, 81, 181, 0.2),2.5em 0 0 0 rgba(63, 81, 181, 0.2),1.75em 1.75em 0 0 rgba(63, 81, 181, 0.2),0 2.5em 0 0 rgba(63, 81, 181, 0.2),-1.8em 1.8em 0 0 rgba(63, 81, 181, 0.5),-2.6em 0 0 0 rgba(63, 81, 181, 0.7),-1.8em -1.8em 0 0 #3f51b5
    }
}

.penci-loading-animation-4 {
    -webkit-transform: scale(0.35);
    -ms-transform: scale(0.35);
    transform: scale(0.35)
}

.penci-loading-animation-4 .penci-loading-animation {
    font-size: 80px;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    margin: 0 auto;
	margin-top: -0.5em;
	margin-left: -0.5em;
    position: relative;
    -webkit-animation: loader-4 1s infinite ease;
    animation: loader-4 1s infinite ease
}

@-webkit-keyframes loader-4 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        box-shadow: 0 -0.83em 0 -0.4em $color__blue,0 -0.83em 0 -0.42em $color__blue,0 -0.83em 0 -0.44em $color__blue,0 -0.83em 0 -0.46em $color__blue,0 -0.83em 0 -0.477em $color__blue;
    }

    5%,95% {
        box-shadow: 0 -0.83em 0 -0.4em $color__blue,0 -0.83em 0 -0.42em $color__blue,0 -0.83em 0 -0.44em $color__blue,0 -0.83em 0 -0.46em $color__blue,0 -0.83em 0 -0.477em $color__blue;
    }

    10%,59% {
        box-shadow: 0 -0.83em 0 -0.4em $color__blue,-0.087em -0.825em 0 -0.42em $color__blue,-0.173em -0.812em 0 -0.44em $color__blue,-0.256em -0.789em 0 -0.46em $color__blue,-0.297em -0.775em 0 -0.477em $color__blue;
    }

    20% {
        box-shadow: 0 -0.83em 0 -0.4em $color__blue,-0.338em -0.758em 0 -0.42em $color__blue,-0.555em -0.617em 0 -0.44em $color__blue,-0.671em -0.488em 0 -0.46em $color__blue,-0.749em -0.34em 0 -0.477em $color__blue;
    }

    48% {
        box-shadow: 0 -0.83em 0 -0.4em $color__blue,-0.377em -0.74em 0 -0.42em $color__blue,-0.645em -0.522em 0 -0.44em $color__blue,-0.775em -0.297em 0 -0.46em $color__blue,-0.82em -0.09em 0 -0.477em $color__blue;
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        box-shadow: 0 -0.83em 0 -0.4em $color__blue,0 -0.83em 0 -0.42em $color__blue,0 -0.83em 0 -0.44em $color__blue,0 -0.83em 0 -0.46em $color__blue,0 -0.83em 0 -0.477em $color__blue;
    }
}

@keyframes loader-4 {
	0% {
		-webkit-transform: rotate(0);
		transform: rotate(0);
		box-shadow: 0 -0.83em 0 -0.4em $color__blue,0 -0.83em 0 -0.42em $color__blue,0 -0.83em 0 -0.44em $color__blue,0 -0.83em 0 -0.46em $color__blue,0 -0.83em 0 -0.477em $color__blue;
	}

	5%,95% {
		box-shadow: 0 -0.83em 0 -0.4em $color__blue,0 -0.83em 0 -0.42em $color__blue,0 -0.83em 0 -0.44em $color__blue,0 -0.83em 0 -0.46em $color__blue,0 -0.83em 0 -0.477em $color__blue;
	}

	10%,59% {
		box-shadow: 0 -0.83em 0 -0.4em $color__blue,-0.087em -0.825em 0 -0.42em $color__blue,-0.173em -0.812em 0 -0.44em $color__blue,-0.256em -0.789em 0 -0.46em $color__blue,-0.297em -0.775em 0 -0.477em $color__blue;
	}

	20% {
		box-shadow: 0 -0.83em 0 -0.4em $color__blue,-0.338em -0.758em 0 -0.42em $color__blue,-0.555em -0.617em 0 -0.44em $color__blue,-0.671em -0.488em 0 -0.46em $color__blue,-0.749em -0.34em 0 -0.477em $color__blue;
	}

	48% {
		box-shadow: 0 -0.83em 0 -0.4em $color__blue,-0.377em -0.74em 0 -0.42em $color__blue,-0.645em -0.522em 0 -0.44em $color__blue,-0.775em -0.297em 0 -0.46em $color__blue,-0.82em -0.09em 0 -0.477em $color__blue;
	}

	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
		box-shadow: 0 -0.83em 0 -0.4em $color__blue,0 -0.83em 0 -0.42em $color__blue,0 -0.83em 0 -0.44em $color__blue,0 -0.83em 0 -0.46em $color__blue,0 -0.83em 0 -0.477em $color__blue;
	}
}


.penci-loading-animation-5 {
    width: 58px;
    height: 20px;
	position: absolute;
	margin-top: -10px;
	margin-left: -29px;
}

.penci-loading-animation-7 .penci-loading-animation {
    width: 33%;
    height: 33%;
    float: left;
    -webkit-animation: loader-7 1.1s infinite ease-in-out;
    animation: loader-7 1.1s infinite ease-in-out
}

.penci-loading-animation-7 .penci-loading-animation-inner-1 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.penci-loading-animation-7 .penci-loading-animation-inner-2 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.penci-loading-animation-7 .penci-loading-animation-inner-3 {
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

.penci-loading-animation-7 .penci-loading-animation-inner-4 {
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

.penci-loading-animation-7 .penci-loading-animation-inner-5 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

.penci-loading-animation-7 .penci-loading-animation-inner-6 {
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

.penci-loading-animation-7 .penci-loading-animation-inner-7 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.penci-loading-animation-7 .penci-loading-animation-inner-8 {
    -webkit-animation-delay: .1s;
    animation-delay: .1s
}

.penci-loading-animation-7 .penci-loading-animation-inner-9 {
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

@-webkit-keyframes loader-7 {
    0%,70%,100% {
        -webkit-transform: scale3D(1,1,1);
        transform: scale3D(1,1,1)
    }

    35% {
        -webkit-transform: scale3D(0,0,1);
        transform: scale3D(0,0,1)
    }
}

@keyframes loader-7 {
    0%,70%,100% {
        -webkit-transform: scale3D(1,1,1);
        transform: scale3D(1,1,1)
    }

    35% {
        -webkit-transform: scale3D(0,0,1);
        transform: scale3D(0,0,1)
    }
}

.penci-loading-animation-8 .penci-loading-animation {
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: loader-8 1.6s ease-in-out -1.8s infinite both;
    animation: loader-8 1.6s ease-in-out -1.8s infinite both
}

.penci-loading-animation-8 .penci-loading-animation-inner-2 {
    -webkit-animation-delay: -0.9s;
    animation-delay: -0.9s
}

@-webkit-keyframes loader-8 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    25% {
        -webkit-transform: translateX(30px) rotate(-90deg) scale(0.5);
        transform: translateX(30px) rotate(-90deg) scale(0.5)
    }

    50% {
        -webkit-transform: translateX(30px) translateY(30px) rotate(-179deg);
        transform: translateX(30px) translateY(30px) rotate(-179deg)
    }

    50.1% {
        -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg);
        transform: translateX(30px) translateY(30px) rotate(-180deg)
    }

    75% {
        -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
        transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

@keyframes loader-8 {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    25% {
        -webkit-transform: translateX(30px) rotate(-90deg) scale(0.5);
        transform: translateX(30px) rotate(-90deg) scale(0.5)
    }

    50% {
        -webkit-transform: translateX(30px) translateY(30px) rotate(-179deg);
        transform: translateX(30px) translateY(30px) rotate(-179deg)
    }

    50.1% {
        -webkit-transform: translateX(30px) translateY(30px) rotate(-180deg);
        transform: translateX(30px) translateY(30px) rotate(-180deg)
    }

    75% {
        -webkit-transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5);
        transform: translateX(0) translateY(30px) rotate(-270deg) scale(0.5)
    }

    100% {
        -webkit-transform: rotate(-360deg);
        transform: rotate(-360deg)
    }
}

.penci-loading-circle {
	margin: 15px auto;
	width: 40px;
	height: 40px;
	position: relative
}

.penci-loading-circle .penci-loading-circle-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0
}

.penci-loading-circle .penci-loading-circle-inner:before {
	content: '';
	display: block;
	margin: 0 auto;
	width: 15%;
	height: 15%;
	border-radius: 100%;
	-webkit-animation: penciLoadingCircleBounceDelay 0.7s infinite ease-in-out both;
	animation: penciLoadingCircleBounceDelay 0.7s infinite ease-in-out both
}

.penci-loading-circle .penci-loading-circle2 {
	-webkit-transform: rotate(30deg);
	-ms-transform: rotate(30deg);
	transform: rotate(30deg)
}

.penci-loading-circle .penci-loading-circle3 {
	-webkit-transform: rotate(60deg);
	-ms-transform: rotate(60deg);
	transform: rotate(60deg)
}

.penci-loading-circle .penci-loading-circle4 {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg)
}

.penci-loading-circle .penci-loading-circle5 {
	-webkit-transform: rotate(120deg);
	-ms-transform: rotate(120deg);
	transform: rotate(120deg)
}

.penci-loading-circle .penci-loading-circle6 {
	-webkit-transform: rotate(150deg);
	-ms-transform: rotate(150deg);
	transform: rotate(150deg)
}

.penci-loading-circle .penci-loading-circle7 {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg)
}

.penci-loading-circle .penci-loading-circle8 {
	-webkit-transform: rotate(210deg);
	-ms-transform: rotate(210deg);
	transform: rotate(210deg)
}

.penci-loading-circle .penci-loading-circle9 {
	-webkit-transform: rotate(240deg);
	-ms-transform: rotate(240deg);
	transform: rotate(240deg)
}

.penci-loading-circle .penci-loading-circle10 {
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg)
}

.penci-loading-circle .penci-loading-circle11 {
	-webkit-transform: rotate(300deg);
	-ms-transform: rotate(300deg);
	transform: rotate(300deg)
}

.penci-loading-circle .penci-loading-circle12 {
	-webkit-transform: rotate(330deg);
	-ms-transform: rotate(330deg);
	transform: rotate(330deg)
}

.penci-loading-circle .penci-loading-circle2:before {
	-webkit-animation-delay: -1.1s;
	animation-delay: -1.1s
}

.penci-loading-circle .penci-loading-circle3:before {
	-webkit-animation-delay: -1s;
	animation-delay: -1s
}

.penci-loading-circle .penci-loading-circle4:before {
	-webkit-animation-delay: -0.9s;
	animation-delay: -0.9s
}

.penci-loading-circle .penci-loading-circle5:before {
	-webkit-animation-delay: -0.8s;
	animation-delay: -0.8s
}

.penci-loading-circle .penci-loading-circle6:before {
	-webkit-animation-delay: -0.7s;
	animation-delay: -0.7s
}

.penci-loading-circle .penci-loading-circle7:before {
	-webkit-animation-delay: -0.6s;
	animation-delay: -0.6s
}

.penci-loading-circle .penci-loading-circle8:before {
	-webkit-animation-delay: -0.5s;
	animation-delay: -0.5s
}

.penci-loading-circle .penci-loading-circle9:before {
	-webkit-animation-delay: -0.4s;
	animation-delay: -0.4s
}

.penci-loading-circle .penci-loading-circle10:before {
	-webkit-animation-delay: -0.3s;
	animation-delay: -0.3s
}

.penci-loading-circle .penci-loading-circle11:before {
	-webkit-animation-delay: -0.2s;
	animation-delay: -0.2s
}

.penci-loading-circle .penci-loading-circle12:before {
	-webkit-animation-delay: -0.1s;
	animation-delay: -0.1s
}

@-webkit-keyframes penciLoadingCircleBounceDelay {
	0%,80%,100% {
		-webkit-transform: scale(0);
		transform: scale(0)
	}

	40% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}

@keyframes penciLoadingCircleBounceDelay {
	0%,80%,100% {
		-webkit-transform: scale(0);
		transform: scale(0)
	}

	40% {
		-webkit-transform: scale(1);
		transform: scale(1)
	}
}
