*,
:after,
:before {
	box-sizing: border-box;
}
.float-left {
	float: left;
}
.float-right {
	float: right;
}
.d-none {
	display: none;
}
.clearfix:after,
.clearfix:before {
	content: "";
	display: table;
}
.clearfix:after {
	clear: both;
	display: block;
}

.animated {
	animation-duration: 1s;
	animation-fill-mode: both;
}
.animated.infinite {
	animation-iteration-count: infinite;
}
.animated.delay-1s {
	animation-delay: 1s;
}
.animated.delay-2s {
	animation-delay: 2s;
}
.animated.delay-3s {
	animation-delay: 3s;
}
.animated.delay-4s {
	animation-delay: 4s;
}
.animated.delay-5s {
	animation-delay: 5s;
}
@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transform: translateZ(0);
	}
	40%,
	43% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		transform: translate3d(0, -4px, 0);
	}
}
.bounce {
	animation-name: bounce;
	transform-origin: center bottom;
}
@keyframes flash {
	0%,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}
.flash {
	animation-name: flash;
}
@keyframes pulse {
	0% {
		transform: scaleX(1);
	}
	50% {
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		transform: scaleX(1);
	}
}
.pulse {
	animation-name: pulse;
}
@keyframes rubberBand {
	0% {
		transform: scaleX(1);
	}
	30% {
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		transform: scale3d(1.05, 0.95, 1);
	}
	to {
		transform: scaleX(1);
	}
}
.rubberBand {
	animation-name: rubberBand;
}
@keyframes shake {
	0%,
	to {
		transform: translateZ(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		transform: translate3d(10px, 0, 0);
	}
}
.shake {
	animation-name: shake;
}
@keyframes headShake {
	0% {
		transform: translateX(0);
	}
	6.5% {
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		transform: translateX(0);
	}
}
.headShake {
	animation-timing-function: ease-in-out;
	animation-name: headShake;
}
@keyframes swing {
	20% {
		transform: rotate(15deg);
	}
	40% {
		transform: rotate(-10deg);
	}
	60% {
		transform: rotate(5deg);
	}
	80% {
		transform: rotate(-5deg);
	}
	to {
		transform: rotate(0deg);
	}
}
.swing {
	transform-origin: top center;
	animation-name: swing;
}
@keyframes tada {
	0% {
		transform: scaleX(1);
	}
	10%,
	20% {
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}
	30%,
	50%,
	70%,
	90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}
	40%,
	60%,
	80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}
	to {
		transform: scaleX(1);
	}
}
.tada {
	animation-name: tada;
}
@keyframes wobble {
	0% {
		transform: translateZ(0);
	}
	15% {
		transform: translate3d(-25%, 0, 0) rotate(-5deg);
	}
	30% {
		transform: translate3d(20%, 0, 0) rotate(3deg);
	}
	45% {
		transform: translate3d(-15%, 0, 0) rotate(-3deg);
	}
	60% {
		transform: translate3d(10%, 0, 0) rotate(2deg);
	}
	75% {
		transform: translate3d(-5%, 0, 0) rotate(-1deg);
	}
	to {
		transform: translateZ(0);
	}
}
.wobble {
	animation-name: wobble;
}
@keyframes jello {
	0%,
	11.1%,
	to {
		transform: translateZ(0);
	}
	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
.jello {
	animation-name: jello;
	transform-origin: center;
}
@keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		transform: scaleX(1);
	}
}
.bounceIn {
	animation-duration: 0.75s;
	animation-name: bounceIn;
}
@keyframes bounceInDown {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, 25px, 0);
	}
	75% {
		transform: translate3d(0, -10px, 0);
	}
	90% {
		transform: translate3d(0, 5px, 0);
	}
	to {
		transform: translateZ(0);
	}
}
.bounceInDown {
	animation-name: bounceInDown;
}
@keyframes bounceInLeft {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(25px, 0, 0);
	}
	75% {
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		transform: translate3d(5px, 0, 0);
	}
	to {
		transform: translateZ(0);
	}
}
.bounceInLeft {
	animation-name: bounceInLeft;
}
@keyframes bounceInRight {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		transform: translate3d(10px, 0, 0);
	}
	90% {
		transform: translate3d(-5px, 0, 0);
	}
	to {
		transform: translateZ(0);
	}
}
.bounceInRight {
	animation-name: bounceInRight;
}
@keyframes bounceInUp {
	0%,
	60%,
	75%,
	90%,
	to {
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	75% {
		transform: translate3d(0, 10px, 0);
	}
	90% {
		transform: translate3d(0, -5px, 0);
	}
	to {
		transform: translateZ(0);
	}
}
.bounceInUp {
	animation-name: bounceInUp;
}
@keyframes bounceOut {
	20% {
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
}
.bounceOut {
	animation-duration: 0.75s;
	animation-name: bounceOut;
}
@keyframes bounceOutDown {
	20% {
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}
.bounceOutDown {
	animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}
.bounceOutLeft {
	animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
	20% {
		opacity: 1;
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}
.bounceOutRight {
	animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
	20% {
		transform: translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}
.bounceOutUp {
	animation-name: bounceOutUp;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}
.fadeIn {
	animation-name: fadeIn;
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInDown {
	animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInDownBig {
	animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInLeft {
	animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInLeftBig {
	animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInRight {
	animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInRightBig {
	animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInUp {
	animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.fadeInUpBig {
	animation-name: fadeInUpBig;
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.fadeOut {
	animation-name: fadeOut;
}
@keyframes fadeOutDown {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 100%, 0);
	}
}
.fadeOutDown {
	animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, 2000px, 0);
	}
}
.fadeOutDownBig {
	animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(-100%, 0, 0);
	}
}
.fadeOutLeft {
	animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(-2000px, 0, 0);
	}
}
.fadeOutLeftBig {
	animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0);
	}
}
.fadeOutRight {
	animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(2000px, 0, 0);
	}
}
.fadeOutRightBig {
	animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, -100%, 0);
	}
}
.fadeOutUp {
	animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(0, -2000px, 0);
	}
}
.fadeOutUpBig {
	animation-name: fadeOutUpBig;
}
@keyframes flip {
	0% {
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		animation-timing-function: ease-out;
	}
	40% {
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		animation-timing-function: ease-out;
	}
	50% {
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
		animation-timing-function: ease-in;
	}
	80% {
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
		animation-timing-function: ease-in;
	}
	to {
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		animation-timing-function: ease-in;
	}
}
.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	animation-name: flip;
}
@keyframes flipInX {
	0% {
		transform: perspective(400px) rotateX(90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		transform: perspective(400px) rotateX(-20deg);
		animation-timing-function: ease-in;
	}
	60% {
		transform: perspective(400px) rotateX(10deg);
		opacity: 1;
	}
	80% {
		transform: perspective(400px) rotateX(-5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInX;
}
@keyframes flipInY {
	0% {
		transform: perspective(400px) rotateY(90deg);
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		transform: perspective(400px) rotateY(-20deg);
		animation-timing-function: ease-in;
	}
	60% {
		transform: perspective(400px) rotateY(10deg);
		opacity: 1;
	}
	80% {
		transform: perspective(400px) rotateY(-5deg);
	}
	to {
		transform: perspective(400px);
	}
}
.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipInY;
}
@keyframes flipOutX {
	0% {
		transform: perspective(400px);
	}
	30% {
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1;
	}
	to {
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}
.flipOutX {
	animation-duration: 0.75s;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}
@keyframes flipOutY {
	0% {
		transform: perspective(400px);
	}
	30% {
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1;
	}
	to {
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}
.flipOutY {
	animation-duration: 0.75s;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	animation-name: flipOutY;
}
@keyframes lightSpeedIn {
	0% {
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		transform: skewX(20deg);
		opacity: 1;
	}
	80% {
		transform: skewX(-5deg);
	}
	to {
		transform: translateZ(0);
	}
}
.lightSpeedIn {
	animation-name: lightSpeedIn;
	animation-timing-function: ease-out;
}
@keyframes lightSpeedOut {
	0% {
		opacity: 1;
	}
	to {
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}
.lightSpeedOut {
	animation-name: lightSpeedOut;
	animation-timing-function: ease-in;
}
@keyframes rotateIn {
	0% {
		transform-origin: center;
		transform: rotate(-200deg);
		opacity: 0;
	}
	to {
		transform-origin: center;
		transform: translateZ(0);
		opacity: 1;
	}
}
.rotateIn {
	animation-name: rotateIn;
}
@keyframes rotateInDownLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(-45deg);
		opacity: 0;
	}
	to {
		transform-origin: left bottom;
		transform: translateZ(0);
		opacity: 1;
	}
}
.rotateInDownLeft {
	animation-name: rotateInDownLeft;
}
@keyframes rotateInDownRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		transform-origin: right bottom;
		transform: translateZ(0);
		opacity: 1;
	}
}
.rotateInDownRight {
	animation-name: rotateInDownRight;
}
@keyframes rotateInUpLeft {
	0% {
		transform-origin: left bottom;
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		transform-origin: left bottom;
		transform: translateZ(0);
		opacity: 1;
	}
}
.rotateInUpLeft {
	animation-name: rotateInUpLeft;
}
@keyframes rotateInUpRight {
	0% {
		transform-origin: right bottom;
		transform: rotate(-90deg);
		opacity: 0;
	}
	to {
		transform-origin: right bottom;
		transform: translateZ(0);
		opacity: 1;
	}
}
.rotateInUpRight {
	animation-name: rotateInUpRight;
}
@keyframes rotateOut {
	0% {
		transform-origin: center;
		opacity: 1;
	}
	to {
		transform-origin: center;
		transform: rotate(200deg);
		opacity: 0;
	}
}
.rotateOut {
	animation-name: rotateOut;
}
@keyframes rotateOutDownLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		transform-origin: left bottom;
		transform: rotate(45deg);
		opacity: 0;
	}
}
.rotateOutDownLeft {
	animation-name: rotateOutDownLeft;
}
@keyframes rotateOutDownRight {
	0% {
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		transform-origin: right bottom;
		transform: rotate(-45deg);
		opacity: 0;
	}
}
.rotateOutDownRight {
	animation-name: rotateOutDownRight;
}
@keyframes rotateOutUpLeft {
	0% {
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		transform-origin: left bottom;
		transform: rotate(-45deg);
		opacity: 0;
	}
}
.rotateOutUpLeft {
	animation-name: rotateOutUpLeft;
}
@keyframes rotateOutUpRight {
	0% {
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		transform-origin: right bottom;
		transform: rotate(90deg);
		opacity: 0;
	}
}
.rotateOutUpRight {
	animation-name: rotateOutUpRight;
}
@keyframes hinge {
	0% {
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		transform: rotate(80deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
	}
	40%,
	80% {
		transform: rotate(60deg);
		transform-origin: top left;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	to {
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}
.hinge {
	animation-duration: 2s;
	animation-name: hinge;
}
@keyframes jackInTheBox {
	0% {
		opacity: 0;
		transform: scale(0.1) rotate(30deg);
		transform-origin: center bottom;
	}
	50% {
		transform: rotate(-10deg);
	}
	70% {
		transform: rotate(3deg);
	}
	to {
		opacity: 1;
		transform: scale(1);
	}
}
.jackInTheBox {
	animation-name: jackInTheBox;
}
@keyframes rollIn {
	0% {
		opacity: 0;
		transform: translate3d(-100%, 0, 0) rotate(-120deg);
	}
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}
.rollIn {
	animation-name: rollIn;
}
@keyframes rollOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		transform: translate3d(100%, 0, 0) rotate(120deg);
	}
}
.rollOut {
	animation-name: rollOut;
}
@keyframes zoomIn {
	0% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}
.zoomIn {
	animation-name: zoomIn;
}
@keyframes zoomInDown {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInDown {
	animation-name: zoomInDown;
}
@keyframes zoomInLeft {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInLeft {
	animation-name: zoomInLeft;
}
@keyframes zoomInRight {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInRight {
	animation-name: zoomInRight;
}
@keyframes zoomInUp {
	0% {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomInUp {
	animation-name: zoomInUp;
}
@keyframes zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}
.zoomOut {
	animation-name: zoomOut;
}
@keyframes zoomOutDown {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomOutDown {
	animation-name: zoomOutDown;
}
@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform-origin: left center;
	}
}
.zoomOutLeft {
	animation-name: zoomOutLeft;
}
@keyframes zoomOutRight {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		transform: scale(0.1) translate3d(2000px, 0, 0);
		transform-origin: right center;
	}
}
.zoomOutRight {
	animation-name: zoomOutRight;
}
@keyframes zoomOutUp {
	40% {
		opacity: 1;
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform-origin: center bottom;
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.zoomOutUp {
	animation-name: zoomOutUp;
}
@keyframes slideInDown {
	0% {
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInDown {
	animation-name: slideInDown;
}
@keyframes slideInLeft {
	0% {
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInLeft {
	animation-name: slideInLeft;
}
@keyframes slideInRight {
	0% {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInRight {
	animation-name: slideInRight;
}
@keyframes slideInUp {
	0% {
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		transform: translateZ(0);
	}
}
.slideInUp {
	animation-name: slideInUp;
}
@keyframes slideOutDown {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(0, 100%, 0);
	}
}
.slideOutDown {
	animation-name: slideOutDown;
}
@keyframes slideOutLeft {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(-100%, 0, 0);
	}
}
.slideOutLeft {
	animation-name: slideOutLeft;
}
@keyframes slideOutRight {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(100%, 0, 0);
	}
}
.slideOutRight {
	animation-name: slideOutRight;
}
@keyframes slideOutUp {
	0% {
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		transform: translate3d(0, -100%, 0);
	}
}
.slideOutUp {
	animation-name: slideOutUp;
}
.bg {
	background-image: url("./background.png");
}
.ang-a {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 450 301.39' style='enable-background:new 0 0 450 301.39;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23FED30B;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M224.17,50.15l165.85,221.24H59.69L224.17,50.15 M224.07,0L0,301.39h450L224.07,0L224.07,0z'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.ang-b {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 236.17 158.17'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fed30b;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M117.65,25.07l88.53,118.1H29.84l87.81-118.1M117.6,0,0,158.17H236.17L117.6,0Z'/%3E%3C/svg%3E");
}
.ang-c {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 109.57 52.86'%3E%3Cdefs%3E%3Cstyle%3E.cls-1%7Bfill:%23fed30b;fill-rule:evenodd;%7D%3C/style%3E%3C/defs%3E%3Cpath class='cls-1' d='M53.82,0,0,52.86H109.57Z'/%3E%3C/svg%3E");
}
.dots {
	width: 50px;
	height: 50px;
	margin-left: -25px;
	margin-top: -25px;
}
.dots i {
	top: 50%;
	left: 50%;
	position: absolute;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: gold;
	animation: shoot 5s ease-out infinite;
	animation-name: shoot, fade;
}
.dots i:nth-child(1) {
	transform: translate(-87px, -139px);
	animation-duration: 1.34s;
	animation-delay: -0.6968s;
}
.dots i:nth-child(2) {
	transform: translate(110px, 14px);
	animation-duration: 2.38s;
	animation-delay: -1.7136s;
}
.dots i:nth-child(3) {
	transform: translate(-98px, -79px);
	animation-duration: 1.17s;
	animation-delay: -0.9828s;
}
.dots i:nth-child(4) {
	transform: translate(102px, 116px);
	animation-duration: 2.49s;
	animation-delay: -1.245s;
}
.dots i:nth-child(5) {
	transform: translate(-46px, -67px);
	animation-duration: 2.09s;
	animation-delay: -2.8006s;
}
.dots i:nth-child(6) {
	transform: translate(24px, 125px);
	animation-duration: 2.46s;
	animation-delay: -1.8696s;
}
.dots i:nth-child(7) {
	transform: translate(-113px, -64px);
	animation-duration: 1.06s;
	animation-delay: -0.9328s;
}
.dots i:nth-child(8) {
	transform: translate(113px, 31px);
	animation-duration: 1.46s;
	animation-delay: -1.3724s;
}
.dots i:nth-child(9) {
	transform: translate(-85px, -33px);
	animation-duration: 1.3s;
	animation-delay: -455ms;
}
.dots i:nth-child(10) {
	transform: translate(142px, 129px);
	animation-duration: 1.3s;
	animation-delay: -1.534s;
}
.dots i:nth-child(11) {
	transform: translate(-14px, -76px);
	animation-duration: 1.07s;
	animation-delay: -1.3589s;
}
.dots i:nth-child(12) {
	transform: translate(30px, 39px);
	animation-duration: 1.83s;
	animation-delay: -0.7869s;
}
.dots i:nth-child(13) {
	transform: translate(-56px, -37px);
	animation-duration: 2.05s;
	animation-delay: -0.9635s;
}
.dots i:nth-child(14) {
	transform: translate(63px, 49px);
	animation-duration: 1.11s;
	animation-delay: -0.8325s;
}
.dots i:nth-child(15) {
	transform: translate(-104px, -138px);
	animation-duration: 1.69s;
	animation-delay: -1.7238s;
}
.dots i:nth-child(16) {
	transform: translate(83px, 80px);
	animation-duration: 1.26s;
	animation-delay: -0.5166s;
}
.dots i:nth-child(17) {
	transform: translate(-119px, -122px);
	animation-duration: 2.2s;
	animation-delay: -2.86s;
}
.dots i:nth-child(18) {
	transform: translate(135px, 135px);
	animation-duration: 2.42s;
	animation-delay: -1.089s;
}
.dots i:nth-child(19) {
	transform: translate(-141px, -70px);
	animation-duration: 2.29s;
	animation-delay: -1.9694s;
}
.dots i:nth-child(20) {
	transform: translate(63px, 106px);
	animation-duration: 1.93s;
	animation-delay: -1.9686s;
}
.dots i:nth-child(21) {
	transform: translate(-84px, -47px);
	animation-duration: 2.05s;
	animation-delay: -1.599s;
}
.dots i:nth-child(22) {
	transform: translate(57px, 40px);
	animation-duration: 1.4s;
	animation-delay: -0.91s;
}
.dots i:nth-child(23) {
	transform: translate(-74px, -99px);
	animation-duration: 1.71s;
	animation-delay: -2.2914s;
}
.dots i:nth-child(24) {
	transform: translate(43px, 116px);
	animation-duration: 1.95s;
	animation-delay: -2.886s;
}
.dots i:nth-child(25) {
	transform: translate(-26px, -8px);
	animation-duration: 1.77s;
	animation-delay: -1.0089s;
}
.dots i:nth-child(26) {
	transform: translate(97px, 37px);
	animation-duration: 1.43s;
	animation-delay: -572ms;
}
.dots i:nth-child(27) {
	transform: translate(-39px, -53px);
	animation-duration: 1.26s;
	animation-delay: -1.5246s;
}
.dots i:nth-child(28) {
	transform: translate(53px, 34px);
	animation-duration: 2.11s;
	animation-delay: -2.1311s;
}
.dots i:nth-child(29) {
	transform: translate(-3px, -50px);
	animation-duration: 1.52s;
	animation-delay: -1.3224s;
}
.dots i:nth-child(30) {
	transform: translate(144px, 78px);
	animation-duration: 2.33s;
	animation-delay: -2.796s;
}
.dots i:nth-child(31) {
	transform: translate(-95px, -83px);
	animation-duration: 2.17s;
	animation-delay: -0.1953s;
}
.dots i:nth-child(32) {
	transform: translate(52px, 58px);
	animation-duration: 2.12s;
	animation-delay: -1.3992s;
}
.dots i:nth-child(33) {
	transform: translate(-73px, -99px);
	animation-duration: 1.89s;
	animation-delay: -0.9261s;
}
.dots i:nth-child(34) {
	transform: translate(62px, 144px);
	animation-duration: 1.2s;
	animation-delay: -1.2s;
}
.dots i:nth-child(35) {
	transform: translate(-13px, -5px);
	animation-duration: 2.48s;
	animation-delay: -0.6448s;
}
.dots i:nth-child(36) {
	transform: translate(24px, 4px);
	animation-duration: 1.28s;
	animation-delay: -0.4736s;
}
.dots i:nth-child(37) {
	transform: translate(-40px, -55px);
	animation-duration: 1.95s;
	animation-delay: -97.5ms;
}
.dots i:nth-child(38) {
	transform: translate(130px, 28px);
	animation-duration: 2.44s;
	animation-delay: -2.9768s;
}
.dots i:nth-child(39) {
	transform: translate(-40px, -90px);
	animation-duration: 1.82s;
	animation-delay: -2.5116s;
}
.dots i:nth-child(40) {
	transform: translate(32px, 26px);
	animation-duration: 2.33s;
	animation-delay: -2.4931s;
}
.dots i:nth-child(41) {
	transform: translate(-21px, -3px);
	animation-duration: 1.25s;
	animation-delay: -1.15s;
}
.dots i:nth-child(42) {
	transform: translate(35px, 49px);
	animation-duration: 1.87s;
	animation-delay: -1.9635s;
}
.dots i:nth-child(43) {
	transform: translate(-31px, -145px);
	animation-duration: 1.99s;
	animation-delay: -0.8955s;
}
.dots i:nth-child(44) {
	transform: translate(105px, 19px);
	animation-duration: 1.8s;
	animation-delay: -576ms;
}
.dots i:nth-child(45) {
	transform: translate(-7px, -70px);
	animation-duration: 2.25s;
	animation-delay: -1.8s;
}
.dots i:nth-child(46) {
	transform: translate(26px, 104px);
	animation-duration: 1.52s;
	animation-delay: -2.204s;
}
.dots i:nth-child(47) {
	transform: translate(-47px, -149px);
	animation-duration: 2.12s;
	animation-delay: -2.2896s;
}
.dots i:nth-child(48) {
	transform: translate(74px, 36px);
	animation-duration: 2.28s;
	animation-delay: -2.4624s;
}
.dots i:nth-child(49) {
	transform: translate(-150px, -132px);
	animation-duration: 2.46s;
	animation-delay: -1.1316s;
}
.dots i:nth-child(50) {
	transform: translate(111px, 113px);
	animation-duration: 1.34s;
	animation-delay: -0.4422s;
}
@keyframes shoot {
	0% {
		transform: translate(0, 0);
	}
}
@keyframes fade {
	to {
		opacity: 0;
	}
}

.el {
	position: absolute;
	top: 50%;
	left: 50%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.ang-a {
	width: 300px;
	height: 200px;
	margin-top: -100px;
	margin-left: -150px;
}
.ang-b {
	width: 135px;
	height: 90px;
	margin-top: -32px;
	margin-left: -67.5px;
}
.ang-c {
	width: 50px;
	height: 22px;
	margin-top: 12px;
	margin-left: -25px;
}
.bg,
.text {
	height: 75px;
	/*
	width: 500px;
	margin-left: -250px;*/
	width: 1200px;
	margin-left: -600px;
	margin-top: -20px;
}
.bg-2 {
	height: 105px;
	width: 700px;
	margin-left: -350px;
	margin-top: -35px;
	opacity: 0.5;
}
.congrats {
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	position: fixed;
	margin-top: -50px;
	margin-left: -50px;
	z-index: 9999;
}
.text {
	font-size: 48px;
	font-family: "Roboto";
	font-style: italic;
	color: white;
	font-weight: 600;
	text-align: center;
	line-height: 72px;
	padding: 6px 0;
	text-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
}
.glow {
	height: 75px;
	width: 600px;
	margin-left: -300px;
	margin-top: -20px;
	background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(254, 197, 12, 1) 50%, rgba(0, 0, 0, 0) 100%);
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(254, 197, 12, 1) 50%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(254, 197, 12, 1) 50%, rgba(0, 0, 0, 0) 100%);
}
.shine {
	height: 75px;
	margin-top: -20px;
	width: 200px;
	margin-left: -100px;
	border-radius: 50%;
	background-color: transparent;
	filter: blur(0px);
	box-shadow: none;
}
.btn {
	margin: 0 auto;
	margin-top: 10%;
	display: block;
	width: 50px;
	text-align: center;
	position: relative;
	z-index: 10;
	text-decoration: none;
	padding: 4px 8px;
	text-transform: uppercase;
	color: white;
	border-radius: 1px;
}
.btn.btn-gold {
	color: #55260c;
	background-image: radial-gradient(#fffe01, #f9c41e);
	box-shadow: 0 0 15px #f9c41e;
}

.bg {
	animation-delay: 0.15s;
}
.bg-2 {
	animation-duration: 0.2s;
}
.ang-b {
	animation-delay: 0.2s;
}
.ang-c {
	animation-delay: 0.6s;
	animation-duration: 0.1s;
}
.text {
	animation-duration: 0.3s;
	transition: all 0.6s ease-in-out 0s;
}
.txt-ind {
	text-indent: -20px;
}
.glow {
	animation-duration: 0.4s;
}
.zoomOutIn {
	-webkit-animation-name: zoomOutIn;
	animation-name: zoomOutIn;
}
.shineIn {
	animation: shineIn 0.3s forwards;
}

@-webkit-keyframes zoomOutIn {
	from {
		-webkit-transform: scale(3);
		transform: scale(3);
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	80% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	85% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
	}
}

@keyframes zoomOutIn {
	from {
		-webkit-transform: scale(3);
		transform: scale(3);
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	80% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	85% {
		-webkit-transform: scale(1.5);
		transform: scale(1.5);
	}
}
@-webkit-keyframes shineIn {
	to {
		background-color: #fff33a;
		filter: blur(35px);
		box-shadow: 0 0 35px #fff33a;
	}
}
@keyframes shineIn {
	to {
		background-color: #fff33a;
		filter: blur(35px);
		box-shadow: 0 0 35px #fff33a;
	}
}

@media (max-width: 580px) {
	.congrats {
		transform: scale(0.55);
	}
}
