

.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.animated.infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.animated.hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
}

.animated.bounceIn,
.animated.bounceOut,
.animated.flipOutX,
.animated.flipOutY {
	-webkit-animation-duration: .75s;
	animation-duration: .75s;
}

@-webkit-keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}

@keyframes bounce {
	0%,
	20%,
	53%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	40%,
	43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}
	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}

@-webkit-keyframes flash {
	0%,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}

@keyframes flash {
	0%,
	50%,
	to {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}

@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

@keyframes pulse {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
}

@-webkit-keyframes rubberBand {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	30% {
		-webkit-transform: scale3d(1.25, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		-webkit-transform: scale3d(0.95, 1.05, 1);
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform: scale3d(1.05, 0.95, 1);
		transform: scale3d(1.05, 0.95, 1);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

@keyframes rubberBand {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	30% {
		-webkit-transform: scale3d(1.25, 0.75, 1);
		transform: scale3d(1.25, 0.75, 1);
	}
	40% {
		-webkit-transform: scale3d(0.75, 1.25, 1);
		transform: scale3d(0.75, 1.25, 1);
	}
	50% {
		-webkit-transform: scale3d(1.15, 0.85, 1);
		transform: scale3d(1.15, 0.85, 1);
	}
	65% {
		-webkit-transform: scale3d(0.95, 1.05, 1);
		transform: scale3d(0.95, 1.05, 1);
	}
	75% {
		-webkit-transform: scale3d(1.05, 0.95, 1);
		transform: scale3d(1.05, 0.95, 1);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand;
}

@-webkit-keyframes shake {
	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}

@keyframes shake {
	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake;
}

@-webkit-keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@keyframes headShake {
	0% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
	6.5% {
		-webkit-transform: translateX(-6px) rotateY(-9deg);
		transform: translateX(-6px) rotateY(-9deg);
	}
	18.5% {
		-webkit-transform: translateX(5px) rotateY(7deg);
		transform: translateX(5px) rotateY(7deg);
	}
	31.5% {
		-webkit-transform: translateX(-3px) rotateY(-5deg);
		transform: translateX(-3px) rotateY(-5deg);
	}
	43.5% {
		-webkit-transform: translateX(2px) rotateY(3deg);
		transform: translateX(2px) rotateY(3deg);
	}
	50% {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

.headShake {
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
	-webkit-animation-name: headShake;
	animation-name: headShake;
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}
	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
	to {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate(15deg);
		transform: rotate(15deg);
	}
	40% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	60% {
		-webkit-transform: rotate(5deg);
		transform: rotate(5deg);
	}
	80% {
		-webkit-transform: rotate(-5deg);
		transform: rotate(-5deg);
	}
	to {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
}

.swing {
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing;
}

@-webkit-keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	10%,
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

@keyframes tada {
	0% {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
	10%,
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
	}
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
	}
	40%,
	60%,
	80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
	}
	to {
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

@-webkit-keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none;
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
		transform: translate3d(-25%, 0, 0) rotate(-5deg);
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
		transform: translate3d(20%, 0, 0) rotate(3deg);
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
		transform: translate3d(-15%, 0, 0) rotate(-3deg);
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
		transform: translate3d(10%, 0, 0) rotate(2deg);
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
		transform: translate3d(-5%, 0, 0) rotate(-1deg);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes wobble {
	0% {
		-webkit-transform: none;
		transform: none;
	}
	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
		transform: translate3d(-25%, 0, 0) rotate(-5deg);
	}
	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
		transform: translate3d(20%, 0, 0) rotate(3deg);
	}
	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
		transform: translate3d(-15%, 0, 0) rotate(-3deg);
	}
	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
		transform: translate3d(10%, 0, 0) rotate(2deg);
	}
	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
		transform: translate3d(-5%, 0, 0) rotate(-1deg);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble;
}

@-webkit-keyframes jello {
	0%,
	11.1%,
	to {
		-webkit-transform: none;
		transform: none;
	}
	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
		transform: skewX(0.39063deg) skewY(0.39063deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
		transform: skewX(-0.19531deg) skewY(-0.19531deg);
	}
}

@keyframes jello {
	0%,
	11.1%,
	to {
		-webkit-transform: none;
		transform: none;
	}
	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}
	77.7% {
		-webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
		transform: skewX(0.39063deg) skewY(0.39063deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
		transform: skewX(-0.19531deg) skewY(-0.19531deg);
	}
}

.jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	-webkit-transform-origin: center;
	transform-origin: center;
}

@-webkit-keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

@keyframes bounceIn {
	0%,
	20%,
	40%,
	60%,
	80%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	20% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	40% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(1.03, 1.03, 1.03);
		transform: scale3d(1.03, 1.03, 1.03);
	}
	80% {
		-webkit-transform: scale3d(0.97, 0.97, 0.97);
		transform: scale3d(0.97, 0.97, 0.97);
	}
	to {
		opacity: 1;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInDown {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInLeft {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInRight {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}
	to {
		-webkit-transform: none;
		transform: none;
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes bounceInUp {
	0%,
	60%,
	75%,
	90%,
	to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
}

@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}
	50%,
	55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

@keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

@keyframes fadeOutDown {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

@keyframes fadeOutDownBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes fadeOutLeft {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

@keyframes fadeOutLeftBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

@keyframes fadeOutRightBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

@keyframes fadeOutUpBig {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotateY(-1turn);
		transform: perspective(400px) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	80% {
		-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) rotateY(-1turn);
		transform: perspective(400px) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		transform: perspective(400px) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	50% {
		-webkit-transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		transform: perspective(400px) translateZ(150px) rotateY(-170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	80% {
		-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip;
}

@-webkit-keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

@keyframes flipInX {
	0% {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotateX(10deg);
		transform: perspective(400px) rotateX(10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotateX(-5deg);
		transform: perspective(400px) rotateX(-5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
}

@-webkit-keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

@keyframes flipInY {
	0% {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}
	40% {
		-webkit-transform: perspective(400px) rotateY(-20deg);
		transform: perspective(400px) rotateY(-20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	60% {
		-webkit-transform: perspective(400px) rotateY(10deg);
		transform: perspective(400px) rotateY(10deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: perspective(400px) rotateY(-5deg);
		transform: perspective(400px) rotateY(-5deg);
	}
	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}

@keyframes flipOutX {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotateX(-20deg);
		transform: perspective(400px) rotateX(-20deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotateX(90deg);
		transform: perspective(400px) rotateX(90deg);
		opacity: 0;
	}
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotateY(-15deg);
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}

@keyframes flipOutY {
	0% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
	30% {
		-webkit-transform: perspective(400px) rotateY(-15deg);
		transform: perspective(400px) rotateY(-15deg);
		opacity: 1;
	}
	to {
		-webkit-transform: perspective(400px) rotateY(90deg);
		transform: perspective(400px) rotateY(90deg);
		opacity: 0;
	}
}

.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1;
	}
	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes lightSpeedIn {
	0% {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1;
	}
	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1;
	}
	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}

@keyframes lightSpeedOut {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateIn {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0;
	}
}

@keyframes rotateOut {
	0% {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0;
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
}

@keyframes rotateOutUpLeft {
	0% {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

@keyframes rotateOutUpRight {
	0% {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}
	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	40%,
	80% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}

@keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	40%,
	80% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}

.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge;
}

@-webkit-keyframes jackInTheBox {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.1) rotate(30deg);
		transform: scale(0.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
	}
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes jackInTheBox {
	0% {
		opacity: 0;
		-webkit-transform: scale(0.1) rotate(30deg);
		transform: scale(0.1) rotate(30deg);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
	}
	50% {
		-webkit-transform: rotate(-10deg);
		transform: rotate(-10deg);
	}
	70% {
		-webkit-transform: rotate(3deg);
		transform: rotate(3deg);
	}
	to {
		opacity: 1;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.jackInTheBox {
	-webkit-animation-name: jackInTheBox;
	animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
		transform: translate3d(-100%, 0, 0) rotate(-120deg);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes rollIn {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
		transform: translate3d(-100%, 0, 0) rotate(-120deg);
	}
	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn;
}

@-webkit-keyframes rollOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
		transform: translate3d(100%, 0, 0) rotate(120deg);
	}
}

@keyframes rollOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
		transform: translate3d(100%, 0, 0) rotate(120deg);
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}

@keyframes zoomIn {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	50% {
		opacity: 1;
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes zoomInDown {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes zoomInLeft {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes zoomInRight {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes zoomInUp {
	0% {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}

@keyframes zoomOut {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
	to {
		opacity: 0;
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}

.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		transform: scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center;
	}
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}
	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		transform: scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center;
	}
}

.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}
	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes slideInDown {
	0% {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes slideInLeft {
	0% {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes slideInRight {
	0% {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

@keyframes slideInUp {
	0% {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

@keyframes slideOutDown {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes slideOutLeft {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

@keyframes slideOutRight {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

@keyframes slideOutUp {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}

/* Primary Style Starts Here */

#blog, #api {
	background-image: url(../images/blogs/banner.png);
	background-repeat: no-repeat;
}
#blog h1, #api h1 {
	color: #015f5f;
}
#blog span {
	color: #015f5f;
}
#blog img, #api img {
	-webkit-box-shadow: 2px 3px 8px #ceced4;
	box-shadow: 2px 3px 8px #ceced4;
}
#blog section h2, #api section h2 {
	font-size: 1rem;
	font-weight: bold;
	color: #015f5f;
}

#blog section ul li h3, #blog section ol li h3, #api section ul li h3, #api section ol li h3 {
	font-size: 1rem;
	font-weight: bold;
	color: #015f5f;
}

#blog strong, #blog a, #api strong, #api a {
	color: #015f5f;
}

#blog li a, #api li a {
	color: #000;
}
.container {
	max-width: 1530px !important;
}
#home-first {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background-image: url(../images/background/storegister-bg.png);
	background-repeat: no-repeat;
	height: 600px;
}
#home-first .all-image-position {
	position: relative;
	top: 133px;
}
#home-first .animation-container {
	position: relative;
	display: inline-block;
	margin-top: 5rem;
}
#home-first .animation-container .sub-animation-container {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
}
#home-first .img-2 {
	position: absolute;
	left: 210px;
	top: 30px;
}
#home-first .img-3 {
	position: absolute;
	left: -70px;
	top: 20px;
}
#home-first .img-4 {
	position: absolute;
	left: -80px;
	top: -135px;
}
#home-first .img-5 {
	position: absolute;
	left: 225px;
	top: -135px;
}
#home-first .home-first-btns {
	text-align: right;
}
#home-first .btn-custom {
	background-color: #02a0a0;
	color: white;
}
#home-first .btn-custom:hover {
	background-color: #fff;
	color: #02a0a0;
	border: 1px solid #02a0a0;
}
#home-first .btn-custom-1 {
	background-color: #424242;
	color: white;
}
#home-first .btn-custom-1:hover {
	background-color: #fff;
	color: #02a0a0;
	border: 1px solid #424242;
}
#home-first .padd-1 {
	padding: 100px 0px 0px 0px;
	font-size: 2rem;
	color: #015f5f;
}
#home-first .padd-2 {
	padding: 0px;
}
#home-second, #home-second-software {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background-color: #e1fcf3;
}
#home-second-software {
	background-color: white;
}
#home-second h1 {
	color: #015f5f;
	font-size: 2rem;
}
#home-second h2, #home-second-software h2 {
	color: #015f5f;
}

#home-second-software .client-info-container {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
  	align-items: center;
}

#home-second-software .client-info-container .client-info-box {
	display: flex;
	height: 10rem;
	justify-content: center;
  	align-items: center;
}

#home-second-software .client-info-container .custom-thumbnail {
	padding: .25rem;
	background-color: #fff;
	border: 1px solid #dee2e6;
	border-radius: .25rem !important;
}

#home-second-software ul {
	list-style: none;
}

#home-second-software ul li {
	margin: 1rem 0;
}

#home-second-software ul li .teal {
	color: #015f5f;
}

#home-second-software ul li span {
	margin-left: 0.5rem;
}

#home-second .btn-custom-1, #home-second-software .btn-custom-1 {
	color: #015f5f;
}

#home-second .btn-custom-1::after, #home-second-software .btn-custom-1::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	width: 100px;
	height: 100px;
	position: absolute;
	left: 100px;
}

#home-three {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(248, 248, 248, 0.6))), url(../images/home-page/bg-1.png);
	background-image: linear-gradient(rgba(248, 248, 248, 0.6)), url(../images/home-page/bg-1.png);
	background-repeat: no-repeat;
	background-position: right;
	/* height: 600px; */
}
#home-three h2,
#home-three h5 {
	color: #015f5f;
}
#home-three h3 {
	font-size: 1.25rem;
	color: #015f5f;
}
#home-three .alt-card {
height: 100%;
	padding: 20px;
	-webkit-box-shadow: 2px 3px 8px #ceced4;
	box-shadow: 2px 3px 8px #ceced4;
	-webkit-transform: scale(0.95);
	transform: scale(0.95);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
#home-three .alt-card:hover {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
#home-three a {
	color: #000;
}
#home-three a:hover {
	color: #000;
	text-decoration: none;
}
#home-three .btn-custom-1 {
	color: #015f5f;
}
#home-three .btn-custom-1::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	width: 100px;
	height: 100px;
	position: absolute;
	left: 105px;
	bottom: -58px;
}
#home-four {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
#home-four .btn-custom-1 {
	color: #015f5f;
}
#home-four .btn-custom-1::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	width: 100px;
	height: 100px;
	position: absolute;
	left: 100px;
}
#home-four .outer {
	position: relative;
	margin-bottom: 30px;
}
#home-four .outer a {
	color: #000;
}
#home-four .outer a:hover {
	color: #000;
	text-decoration: none;
}
#home-four .outer:hover:before {
	-webkit-transform: rotate(5deg);
	transform: rotate(5deg);
}
#home-four .outer:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(-20deg, #1bcdcd 0%, #86e4c5 100%);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
	z-index: -1;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	border-radius: 4px;
	transform: rotate(0deg);
}
#home-four .alt-card {
	padding: 30px;
	background: #e1fcf3;
	position: relative;
	z-index: 1;
	border-radius: 4px;
}
#home-four .alt-card-1 {
	background-color: #e1fcf3;
	padding: 15px 30px 15px 30px;
	border-radius: 10px;
}
#home-four h2 {
	color: #015f5f;
}
#home-four h5 {
	color: #015f5f;
}
#home-four h3 {
	font-size: 1.25rem;
	color: #015f5f;
}
#home-six {
	padding-top: 2rem;
	padding-bottom: 2rem;
}
#home-six .img-inner {
	position: absolute;
	top: 0;
	left: 0;
}
#home-six .partner-banner-annimation-container {
	position: relative;
	display: inline-block;
}

#home-six h2 {
	color: #015f5f;
}
#home-six .btn-custom-1 {
	color: #015f5f;
}
#home-six .btn-custom-1::after {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	width: 100px;
	height: 100px;
	position: absolute;
	left: 120px;
	bottom: -77px;
}
#home-seven {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background-color: #eaeaea;
}
#home-seven .align-self-center::after {
	position: absolute;
	content: "";
	display: block;
	width: 100px;
	height: 120px;
	color: #015f5f;
	right: 0px;
	bottom: -12px;
	border-right: 1px solid;
}
#home-seven .quote::before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	content: "\f10d";
	height: 400px;
	width: 400px;
	position: absolute;
	left: 35px;
	z-index: -1;
	color: #cecece;
	font-size: 115px;
}
#home-seven .alter {
	font-size: 2rem;
	color: #015f5f;
	font-weight: 600;
	margin-bottom: 0;
}
#home-seven .center-position {
	position: relative;
	top: 5px;
}
#body-bg .features-sd {
	display: none;
}
#body-bg .features-md {
	display: none;
}
#body-bg .features-hd {
	position: absolute;
	z-index: -1;
	max-width: 100%;
	height: 3300px;
}
#store-header {
	background-color: #fff;
	-webkit-box-shadow: 2px 3px 8px #ceced4;
	box-shadow: 2px 3px 8px #ceced4;
	color: transparent !important;
}
#store-header .dropdown-item {
	color: #fff;
	font-weight: 600;
	padding: 10px;
}
#store-header .dropdown-item.active,
#store-header .dropdown-item:active {
	color: #12d0d0;
	background-color: #015f5f;
}
#store-header .dropdown-item:focus,
#store-header .dropdown-item:hover {
	color: #12d0d0;
	background-color: #015f5f;
}
#store-header #exampleModalCenter .form-control {
	width: 100% !important;
	margin: 5px !important;
}
#store-header .btn-custom {
	background-color: #02a0a0;
	color: white;
}
#store-header .btn-custom:hover {
	background-color: #fff;
	color: #02a0a0;
	border: 1px solid #02a0a0;
}
#store-header .btn-custom-1 {
	background-color: #424242;
	color: white;
}
#store-header .btn-custom-1:hover {
	background-color: #fff;
	color: #424242;
	border: 1px solid #424242;
}
#store-header .nav-item .nav-link {
	color: #015f5f !important;
	font-weight: 600;
	padding: 20px;
}
#store-header .nav-item .nav-link.active {
	color: #12d0d0 !important;
}
#store-header .nav-item .nav-link:hover {
	color: #12d0d0 !important;
}
#store-header .dropdown .dropdown-menu {
	background-color: #015f5f;
}
#store-header .dropdown .dropdown-menu::before {
	display: block;
	content: '';
	position: absolute;
	top: -11px;
	left: 55px;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 9.5px 11px 9.5px;
	border-color: transparent transparent #015f5f transparent;
}
#store-header .dropdown:hover .dropdown-menu {
	display: block;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
#first-section {
	height: 600px;
}
#first-section h1 {
	color: #015f5f;
}
#second-section {
	height: 500px;
}
#second-section h2 {
	color: #015f5f;
}
#third-section {
	height: 500px;
}
#third-section h2 {
	color: #015f5f;
}
#fourth-section {
	height: 500px;
}
#fourth-section h2 {
	color: #015f5f;
}
#fifth-section {
	height: 500px;
}
#fifth-section h2 {
	color: #015f5f;
}
#sixth-section {
	height: 500px;
}
#sixth-section h2 {
	color: #015f5f;
}
#seventh-section {
	height: 500px;
}
#seventh-section h2 {
	color: #015f5f;
}
#features h2 {
	color: #015f5f;
}
#features h6 {
	color: #015f5f;
}
#footer {
	background-color: #1f1f1f;
}
#footer .alt-footer {
	margin-top: 35px;
	margin-bottom: 35px;
	border-radius: 5px;
	padding: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#footer .btn-custom {
	background-color: #015f5f;
	color: #fff;
	border-radius: 5px;
}
#footer h2,
#footer h3,
#footer h4 {
	color: #fff;
	font-size: 14px;
	font-weight: 700;
}
#footer address {
	font-size: 12px;
}
#footer a {
	color: white !important;
	line-height: 1rem;
	font-size: 12px;
}
#footer p {
	font-size: 12px;
}
#footer .padd {
	padding-left: 2rem;
}
#footer .padd-1 {
	padding-left: 2rem;
}
#footer .fa-facebook-f,
#footer .fa-twitter,
#footer .fa-instagram,
#footer .fa-linkedin,
#footer .fa-youtube {
	font-size: 18px;
	margin: 15px 8px 8px 8px;
}
#footer .alter {
	overflow: hidden;
	color: #1f1f1f;
	height: 1px;
	width: 1px;
}
#footer .languages a {
	padding: 10px 3px;
}
#footer .languages a.active,
#footer .languages a:hover {
	border-bottom: 0.3rem solid #05a2a2;
}
#about-1 {
	background-image: url(../images/about-us/Integration.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 350px;
}
#about-1 h2 {
	color: #015f5f;
}
#about-1 .align {
	position: relative;
	top: 175px;
}
#resources {
	background-image: url(../images/Resources.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 350px;
}
#resources h2 {
	color: #015f5f;
}
#resources .align {
	position: relative;
	top: 155px;
}
#resources-content .box-outer {
	height: 250px;
	padding: 10px;
	background-color: #fff;
	-webkit-box-shadow: 2px 3px 8px #ceced4;
	box-shadow: 2px 3px 8px #ceced4;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
#resources-content .box-outer:hover {
	background-color: #fff;
	-webkit-box-shadow: 2px 3px 8px #ceced4;
	box-shadow: 2px 3px 8px #ceced4;
	-webkit-transform: scale(1);
	transform: scale(1);
}
#resources-content .box-outer h5 {
	color: #015f5f;
}
#resources-content .box-outer p {
	color: #000;
}
#resources-content .box-outer a:hover {
	text-decoration: none;
}
#resources-content .box-outer .align {
	position: relative;
	top: 100px;
}
#management-solution {
	background-image: url(../images/management-solution/mange.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 350px;
}
#management-solution h2 {
	color: #015f5f;
}
#management-solution .align {
	position: relative;
	top: 175px;
}
#web-development {
	background-image: url(../images/web/web-developement-banner2.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 350px;
}
#web-development h2 {
	color: #015f5f;
}
#web-development .align {
	position: relative;
	top: 175px;
}
#access-control-system {
	background-image: url(../images/access-control-baner-1.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 350px;
}
#access-control-system h2 {
	color: #015f5f;
}
#access-control-system .align {
	position: relative;
	top: 175px;
}
#digi .mobile-image {
	display: none;
}
#digi .banner-container {
	position: relative;
	background-color: #a9eddd;
	min-height: 14rem;
}
#digi .digi-inner {
	position: absolute;
	top: 5rem;
	left: 25%;
	right: 25%;
}
#digi .digi-inner-1 {
	position: absolute;
	top: 5rem;
	left: 25%;
	right: 25%;
}
#digi .digi-inner-2 {
	position: absolute;
	top: 5rem;
	left: 25%;
	right: 25%;
}
#digi .digi-inner-3 {
	position: absolute;
	top: 5rem;
	left: 25%;
	right: 25%;
}
#digi .digi-inner-4 {
	position: absolute;
	top: 5rem;
	left: 25%;
	right: 25%;
}
#digi .digi-inner-5 {
	position: absolute;
	top: 5rem;
	left: 25%;
	right: 25%;
}
#digi h1 {
	color: #015f5f;
	font-size: 2rem;
}
#digi h2 {
	color: #015f5f;
}
#digital-marketing {
	background-image: url(../images/digital/Digital-Marketing-Banner.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 350px;
}
#digital-marketing h2 {
	color: #015f5f;
}
#digital-marketing .align {
	position: relative;
	top: 175px;
}
#about-12 {
	background-image: url(../images/about-us/about-us.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 350px;
}
#about-12 h2 {
	color: #015f5f;
	position: relative;
	top: 150px;
}
#faq {
	background-image: url(../images/about-us/FAQ.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 350px;
}
#faq h2 {
	color: #015f5f;
	position: relative;
	top: 150px;
}
#contact {
	background-image: url(../images/about-us/Contact-Us.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 350px;
}
#contact .center {
	color: #015f5f;
	position: relative;
	top: 150px;
}
#pricing {
	background-image: url(../images/Pricing.png);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 350px;
}
#pricing .center {
	color: #015f5f;
	position: relative;
	top: 150px;
}
#about-2 {
	background-color: #fbfbfb;
}

#about-2 h2 {
	color: #015f5f;
	font-weight: 700 !important;
}

#integration-inner {
	background-color: #f3f3f3;
}
#integration-inner h2 {
	font-size: 1.5rem;
	color: #015f5f;
}
#integration-inner section {
	padding: 20px;
}
#integration-inner ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	margin-bottom: 10px;
	-webkit-padding-start: 0px;
	padding-inline-start: 0px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
#integration-inner li {
	list-style-type: none;
	background: #454545;
	padding: 8px 20px;
	margin: 5px;
	letter-spacing: 1px;
	color: #e1fcf3;
	cursor: pointer;
	border-radius: 5px;
}
#integration-inner li.active {
	background: #015f5f;
	color: #fff;
}
#integration-inner .itemBox {
	padding: 20px;
	margin: 0px;
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
#integration-inner .itemBox:hover {
	-webkit-box-shadow: 0 2rem 5rem rgba(22, 28, 45, 0.1), 0 0.5rem 1rem -0.75rem rgba(22, 28, 45, 0.05);
	box-shadow: 0 2rem 5rem rgba(22, 28, 45, 0.1), 0 0.5rem 1rem -0.75rem rgba(22, 28, 45, 0.05);
	-webkit-transform: translate3d(0, -5px, 0);
	transform: translate3d(0, -5px, 0);
}
#integration-inner .itemBox a {
	color: #000;
}
#integration-inner .itemBox a:hover {
	color: #000;
	text-decoration: none;
}
#faqs .card {
	border: 1px solid #fff;
}
#faqs .card-header {
	background-color: #fff !important;
}
#faqs .btn-link {
	color: #015f5f;
	white-space: normal;
	text-align: left;
}
#faqs .btn-link:hover {
	text-decoration: none !important;
}
#faqs .btn-link::after {
	content: '\2212';
	width: 35px;
	font-size: 25px;
	text-align: center;
	border-radius: 25px;
	left: 0px;
	top: 11px;
	position: absolute;
	color: #015f5f;
}
#faqs .btn-link.collapsed::after {
	content: '\002B';
	width: 35px;
	font-size: 25px;
	text-align: center;
	border-radius: 25px;
	left: 0px;
	top: 1rem;
	position: absolute;
	color: #015f5f;
}
#contact-us img {
	height: 50px;
	width: 50px;
}
#contact-us h2 {
	font-size: 1rem;
	color: #454545;
}
#contact-us div {
	font-size: 1.25rem;
	color: #015f5f;
}
#form .bord {
	padding: 20px;
	margin: 0px;
	-webkit-box-shadow: 1px 2px 10px #0000003b;
	box-shadow: 1px 2px 10px #0000003b;
	border-radius: 10px;
}
#form h2 {
	color: #015f5f;
}
#form .btn-custom {
	background-color: #02a0a0;
	color: white;
}
#form .btn-custom:hover {
	background-color: #fff;
	color: #02a0a0;
	border: 1px solid #02a0a0;
}
#special-management {
	background-color: #f3f3f3;
}
#special-management .fa-check {
	color: #19827e;
	background-color: #d7fff0;
	padding: 5px;
	font-size: 20px;
	border-radius: 50%;
}
#special-management li {
	line-height: 2.5rem;
}
#special-management h3 {
	color: #015f5f;
}
#special-1 .alter {
	background-color: #015f5f;
	padding: 30px;
	border-radius: 30px;
}
#special-1 h3 {
	color: #12d0d0;
}
#special-1 .border-right {
	border-right: 1px solid #fff !important;
}
#special-1 .fa-envelope {
	color: #A0C560;
	font-size: 2rem;
}
#special-1 .fa-envelope {
	color: #A0C560;
	font-size: 35px;
}
#special-1 span {
	color: #A0C560;
	font-size: 35px;
}
#special .alter {
	background-color: #e0e0e0;
	padding: 50px;
	border-radius: 30px;
}
#special .border-right {
	border-right: 1px solid #000 !important;
}
#special h3 {
	color: #015f5f;
}
#special .fa-check {
	color: #19827e;
	background-color: #d7fff0;
	padding: 5px;
	font-size: 20px;
	border-radius: 50%;
}
#special li {
	line-height: 2.5rem;
}
#special .fa-clock {
	font-size: 28px;
}
#special .fa-dollar-sign {
	font-size: 28px;
}
#special .fa-shield-alt {
	font-size: 28px;
}
#special span {
	font-size: 28px;
}
#other-features .other-features-container-box {
	margin-top: 2rem;
}
#other-features .box-outer {
	height: 100%;
	padding: 10px;
	background-color: #fff;
	-webkit-box-shadow: 2px 3px 8px #ceced4;
	box-shadow: 2px 3px 8px #ceced4;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
	position: relative;
}
#other-features .box-outer .other-features-icon {
	position: absolute;
	left: 45%;
	right: 45%;
	top: -2rem;
}
#other-features .box-outer h4 {
	font-size: 1.25rem;
	color: #015f5f;
	margin-top: 2rem;
	font-weight: 600;
}
#other-features .box-outer:hover {
	background-color: #fff;
	-webkit-box-shadow: 2px 3px 8px #ceced4;
	box-shadow: 2px 3px 8px #ceced4;
	-webkit-transform: scale(1);
	transform: scale(1);
}
#other-features .other-features-container {
	height: 100%;
}

#other-features .other-features-container h4 {
	font-size: 1.25rem;
	color: #015f5f;
}
#other-features .other-features-container .box-outer {
	height: 100%;
	padding: 10px;
	background-color: #fff;
	-webkit-box-shadow: 2px 3px 8px #ceced4;
	box-shadow: 2px 3px 8px #ceced4;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
#other-features .other-features-container .box-outer:hover {
	background-color: #fff;
	-webkit-box-shadow: 2px 3px 8px #ceced4;
	box-shadow: 2px 3px 8px #ceced4;
	-webkit-transform: scale(1);
	transform: scale(1);
}

#other-features .card {
	border-radius: 5px;
	border: 1px solid #e9e9e9;
}
#other-features .card-header {
	background-color: #e9e9e9 !important;
	border-radius: 5px;
}
#other-features .btn-link {
	color: #015f5f;
}
#other-features .btn-link .box-outer {
	padding: 10px;
	background-color: #fff;
	-webkit-box-shadow: 2px 3px 8px #ceced4;
	box-shadow: 2px 3px 8px #ceced4;
	-webkit-transform: scale(0.9);
	transform: scale(0.9);
	-webkit-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}
#other-features .btn-link .box-outer:hover {
	background-color: #fff;
	-webkit-box-shadow: 2px 3px 8px #ceced4;
	box-shadow: 2px 3px 8px #ceced4;
	-webkit-transform: scale(1);
	transform: scale(1);
}
#other-features .btn-link:hover {
	text-decoration: none !important;
}
#other-features .btn-link::after {
	content: '\2212';
	width: 35px;
	font-size: 25px;
	text-align: center;
	border-radius: 25px;
	right: 15px;
	top: 10px;
	position: absolute;
	color: #015f5f;
}
#other-features .btn-link.collapsed::after {
	content: '\002B';
	width: 35px;
	font-size: 25px;
	text-align: center;
	border-radius: 25px;
	right: 15px;
	top: 10px;
	position: absolute;
	color: #015f5f;
}
#other-features .alter-list {
	background-color: #a6a6a652;
	margin: 10px 0px;
	-webkit-box-shadow: 1px 1px 6px #000;
	box-shadow: 1px 1px 6px #000;
}
#other-features h2,
#other-features li,
#other-features h5,
#other-features h3 {
	color: #015f5f;
}
#other-features .list-image {
	list-style-image: url(../images/tick.png);
}
#gdc h2,
#gdc h5 {
	color: #015f5f;
}
#gdc .border-box.p-2 {
	height: 250px;
	border-radius: 3px;
	-webkit-box-shadow: 1px 2px 10px #0000003b;
	box-shadow: 1px 2px 10px #0000003b;
}
#gdc .btn-custom {
	background-color: #02a0a0;
	color: white;
}
#gdc .btn-custom:hover {
	background-color: #fff;
	color: #02a0a0;
	border: 1px solid #02a0a0;
}
#terms-conditions {
	color: #015f5f;
}
#terms-conditions h2 {
	color: #015f5f;
	font-size: 1rem;
	font-weight: bold;
}
#terms-conditions a,
#terms-conditions a:active {
	text-decoration: underline;
	color: #015f5f;
}
#terms-conditions a a:hover,
#terms-conditions a:active a:hover {
	color: #004141;
}
#ss h2,
#ss h5,
#ss h4 {
	color: #015f5f;
}
#ss h3 {
	color: #015f5f;
	font-size: 1.25rem;
}
#ss .border-box.p-2 {
	height: 280px;
	border-radius: 3px;
	-webkit-box-shadow: 1px 2px 10px #0000003b;
	box-shadow: 1px 2px 10px #0000003b;
}
#ss .btn-custom {
	background-color: #02a0a0;
	color: white;
}
#ss .btn-custom:hover {
	background-color: #fff;
	color: #02a0a0;
	border: 1px solid #02a0a0;
}
#digital-section-1 h2,
#digital-section-1 h5 {
	color: #015f5f;
	font-size: 1.5rem;
}
#digital-section-1 .border-box.p-2 {
	height: 350px;
	border-radius: 3px;
	-webkit-box-shadow: 1px 2px 10px #0000003b;
	box-shadow: 1px 2px 10px #0000003b;
}
#digital-section-1 .btn-custom {
	background-color: #02a0a0;
	color: white;
}
#digital-section-1 .btn-custom:hover {
	background-color: #fff;
	color: #02a0a0;
	border: 1px solid #02a0a0;
}
#web-section-1 h2,
#web-section-1 h5 {
	color: #015f5f;
}
#web-section-1 h2 {
	color: #015f5f;
	font-size: 1.25rem;
}
#web-section-1 .col-md-4 {
	padding-bottom: 15px;
}
#web-section-1 .border-box.p-2 {
	height: 230px;
	border-radius: 3px;
	-webkit-box-shadow: 1px 2px 10px #0000003b;
	box-shadow: 1px 2px 10px #0000003b;
}
#web-section-1 .btn-custom {
	background-color: #02a0a0;
	color: white;
}
#web-section-1 .btn-custom:hover {
	background-color: #fff;
	color: #02a0a0;
	border: 1px solid #02a0a0;
}
#access h2,
#access h5 {
	color: #015f5f;
}
#access h3 {
	font-size: 2rem;
	color: #015f5f;
}
#access .col-md-4 {
	padding-bottom: 15px;
}
#access .btn-custom {
	background-color: #02a0a0;
	color: white;
}
#access .btn-custom:hover {
	background-color: #fff;
	color: #02a0a0;
	border: 1px solid #02a0a0;
}
#access .border-box {
	height: 225px;
	border-radius: 3px;
	-webkit-box-shadow: 1px 2px 10px #0000003b;
	box-shadow: 1px 2px 10px #0000003b;
}
#global-data-center h2 {
	color: #015f5f;
	font-size: 1.75rem;
}
#global-content h2 {
	font-size: 1.25rem;
	color: #015f5f;
}
#web-section-11 h2,
#web-section-11 h5 {
	color: #015f5f;
}
#web-section-11 h3 {
	color: #015f5f;
	font-size: 1.25rem;
}
#web-section-11 .col-md-4 {
	padding-bottom: 15px;
}
#web-section-11 .border-box.p-2 {
	height: 300px;
	border-radius: 3px;
	-webkit-box-shadow: 1px 2px 10px #0000003b;
	box-shadow: 1px 2px 10px #0000003b;
}
#web-section-11 .btn-custom {
	background-color: #02a0a0;
	color: white;
}
#web-section-11 .btn-custom:hover {
	background-color: #fff;
	color: #02a0a0;
	border: 1px solid #02a0a0;
}
#web-section-2 {
	background-color: #e1fcf3;
}
#web-section-2 h4 {
	color: #015f5f;
}
#web-section-2 h3 {
	font-size: 1.5rem;
	color: #015f5f;
}
#web-section-2 .btn-custom {
	background-color: #02a0a0;
	color: white;
}
#web-section-2 .btn-custom:hover {
	background-color: #fff;
	color: #02a0a0;
	border: 1px solid #02a0a0;
}
#get-ready-1 {
	height: 180px;
	background-image: -webkit-gradient(linear, left top, right top, from(#12a3a3), to(#bcfdfd));
	background-image: linear-gradient(to right, #12a3a3, #bcfdfd);
}
#get-ready-1 h3 {
	color: #015f5f;
}
#get-ready-1 .fa-envelope {
	color: #015f5f;
	font-size: 35px;
}
#get-ready-1 span {
	color: #015f5f;
	font-size: 35px;
}
#get-ready-1 .border-right {
	border-right: 1px solid #015f5f !important;
}
#get-ready {
	background-image: -webkit-gradient(linear, left top, right top, from(#12a3a3), to(#bcfdfd));
	background-image: linear-gradient(to right, #12a3a3, #bcfdfd);
	padding-top: 0px !important;
}
#get-ready .pt-4 {
	padding-top: 0px !important;
}
#get-ready .alt-footer {
	margin-top: 35px;
	margin-bottom: 35px;
	border-radius: 5px;
	padding: 20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
#get-ready .btn-custom {
	background-color: #015f5f;
	color: #fff;
	border-radius: 5px;
}
#get-ready .btn-custom:hover {
	background-color: #fff;
	color: #015f5f;
	border: 1px solid #015f5f;
}
#get-ready h2 {
	color: #424242;
}
#get-ready .alter {
	font-size: 2rem;
	color: #015f5f;
	font-weight: 600;
}
#about-3 {
	background-color: #f8f8f8;
}
#about-3 .box-outer, #about-3 .team-box-outer {
	padding: 20px;
	background-color: #fff;
	-webkit-box-shadow: 2px 3px 8px #ceced4;
	box-shadow: 2px 3px 8px #ceced4;
	height: 350px;
}
#about-3 .box-outer:hover, #about-3 .team-box-outer:hover {
	background-color: #fff;
	-webkit-box-shadow: 2px 3px 8px #ceced4;
	box-shadow: 2px 3px 8px #ceced4;
}

#about-3 .team-box-outer {
	height: inherit;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

#about-3 .team-box-outer .team-title-box  {
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: flex-end;
}

#about-3 .team-box-outer .team-title-box p {
	text-align: center;
	font-weight: bold;
	color: gray;
}

#about-3 h2,
#about-3 h5 {
	color: #015f5f;
}

#pricing-form {
	background-color: #f6f6f6;
}
#pricing-form h2 {
	color: #015f5f;
}
#pricing-form .bord {
	background-color: #fff;
	-webkit-box-shadow: 1px 2px 10px #0000003b;
	box-shadow: 1px 2px 10px #0000003b;
}
#pricing-form .btn-custom {
	background-color: #02a0a0;
	color: white;
}
#pricing-form .btn-custom:hover {
	background-color: #fff;
	color: #02a0a0;
	border: 1px solid #02a0a0;
}
#pricing-1 h2 {
	font-size: 1.25rem;
	color: #015f5f;
}
#pricing-1 .border-box {
	height: 100%;
	border-radius: 3px;
	-webkit-box-shadow: 1px 2px 10px #0000003b;
	box-shadow: 1px 2px 10px #0000003b;
}
#storage-type h2 {
	color: #015f5f;
	font-size: 1.75rem;
}
#storage-type h3 {
	color: #015f5f;
	font-size: 1.5rem;
}
#storage-type h3 a {
	text-decoration: none;
	color: #015f5f;
	font-size: 1.5rem;
}
#storage-type h3 a:hover {
	text-decoration: none;
	color: #12d0d0;
}
#storage-type p {
	color: #015f5f;
	font-size: 1rem;
}
#other-storage-type .showcase-box {
	margin: 0;
}
#other-storage-type .showcase-box .showcase-inner-box {
	display: flex;
	justify-content: center;
	margin: 0;
	margin: 1rem 0;
}
#other-storage-type .storage-container {
	width: 18rem;
	padding: 1rem;
	background: #a9eddd;
	color: #015f5f;
	border-radius: 2rem 0.5rem;
	display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#other-storage-type .storage-container p a {
	text-decoration: none;
	color: #015f5f;
	font-weight: bold;
}
#other-storage-type .storage-container p a i {
	padding-top: 0.1rem;
}
#gdpr h2 {
	color: #015f5f;
}

p sup {
	font-size: 50%;
	top: -6px;
}

h2 sup {
	font-size: 30%;
	top: -20px;
}

.modal-backdrop {
	z-index: 0;
}

.animate__pulse {
	-webkit-animation: pulse 5s infinite;
	animation: pulse 5s infinite;
}

.iti {
	width: 100%;
}

pre {
	color: #fff;
}

.h-75 {
	height: 50px !important;
}

.h-100 {
	height: 100px !important;
}

.h-50 {
	height: 50px !important;
}

ol {
	list-style-type: none;
	counter-reset: item;
	margin: 0;
	padding: 0;
}

ol>li {
	display: table;
	counter-increment: item;
	margin-bottom: 0.6em;
}

ol>li:before {
	content: counters(item, ".") ". ";
	display: table-cell;
	padding-right: 0.6em;
}

li ol>li {
	margin: 0;
}

li ol>li:before {
	content: counters(item, ".") " ";
}

span .gdrp {
	color: #A0C560;
}

#localization h3 {
	color: #015f5f;
}

.contact-container,
.im-container {
	display: flex;
}

.contact-container .contact-marker-icon {
	margin-top: 0.5rem;
	font-size: 0.8rem;
}

.contact-container .contact-address {
	margin-left: 0.75rem;
}

.contact-container .contact-address h5 {
	font-size: 0.8rem;
	border-bottom: 0.2rem solid #05a2a2;
	display: inline-block;
	font-weight: bold;
}

.im-container .im-icon {
	margin-top: 0.17rem;
	font-size: 0.8rem;
}

.im-container .im-text {
	margin-left: 0.75rem;
	font-size: 0.8rem;
	font-weight: bold;
}

.container-center {
	display: flex;
	justify-content: center;
	align-items: center;
}

.animation-parent-container {
	padding: 0 !important;
	overflow-x: hidden;
	overflow-y: clip;
}

.agree-check-box-main-container .agree-check-box-container {
	height: 100% !important;
}

.footer-storegister {
	height: 100%;
	padding-left: 0;
}

.back-link {
	display: flex;
	justify-content: flex-end;
	padding-right: 1rem;
}

.back-link a {
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: bold;
}

#pricing-form, #pricing-1, #pricing-top, #home-first, #home-second, #home-three, #home-four, #home-six, #home-seven,
#global-data-center, #gdpr, #ss, #localization, #storage-type, #web-section-11,
#second-section, #third-section, #fourth-section, #fifth-section, #sixth-section, #other-features,
#access, #special, #web-section-1, #web-section-2, #digital-section-1, #about-2, #about-3,
#integration, #integration-inner, #faqs, #contact-us, #resources-content, #blog, #api, .blog-index {
	padding-left: 1rem;
	padding-right: 1rem;
}

#footer .padd-1, #footer .padd, #footer .contact-home {
	padding-left: 2rem;
}

#notice {
	margin: 0;
}

#notice a {
	font-weight: bold;
	color: #721c24;
}

.footer-sub-list {
	margin-left: 0;
	padding-left: 1.2rem;
	color: #05a2a2;
}

.associations-item {
	display: inline-block;
	padding: 0.25rem;
	background-color: #fff;
	border: 1px solid #dee2e6;
	border-radius: 0.25rem;
	max-width: 100%;
	margin: 0 0.5rem 0.5rem 0;
}

.form-success-ack-container {
	display: flex;
    flex-direction: column;
    color: teal;
	padding: 2rem;
}

.success-tick-icon {
	font-size: 4rem;
	display: flex;
	justify-content: center;
}

.success-text-message {
	display: flex;
	justify-content: center;
	flex-direction: column;
	margin-top: 2rem;
}

.hide-container {
	display: none;
	visibility: collapse;
}

.show-container {
	display: block;
	visibility: visible;
}

.error {
	color: red;
	background-color: #fff;
}

.api-section-container {
	margin-top: 20px;
	padding-left: 12px;
	border-left: 4px solid #57C0B4;
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	box-shadow: 0 2px 4px rgba(126,127,155,0.15);
}

.api-section-container h2, .api-section-container h3 {
	font-size: 1.2rem;
	line-height: 1.1;
	display: flex;
	align-items: center;
	margin-left: -12px;
	padding: 8px 0 8px 12px;
	background-color: rgba(87,192,180,0.1);
	border-bottom: 1px solid rgba(87,192,180,0.1);
	font-weight: 600;
}

.api-section-container .api-index a {
	color: #015f5f;
	font-size: 0.9rem;
	line-height: 1.1;
	margin-bottom: 10px;
	padding: 0 0 0 10px;
}

.api-section-container .api-index {
	padding: 1rem;
}

.api-section-container .api-index a {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.blog-section-container {
	margin-top: 2rem;
}

.blog-section-container h2 {
	color: #015f5f;
	border-color: #f85d36;
	border-style: solid;
	border-width: 0 0 0 0.25rem;
	font-size: 1.7rem;
	line-height: 1.1;
	margin-bottom: 10px;
	padding: 0 0 0 10px;
}

.blog-index {
	 display: flex;
	 flex-wrap: wrap;
}

.blog-index .blog-card {
	display: block;
	position: relative;
	width: 400px;
	height: 250px;
	margin: 2rem;
	-webkit-box-shadow: 0 2px 0.7rem rgba(0, 0, 0, 0.85);
			box-shadow: 0 2px 0.7rem rgba(0, 0, 0, 0.85);
	-webkit-transition: all 450ms ease-out 0s;
	transition: all 450ms ease-out 0s;
	overflow: hidden;
}
  
  .blog-index .blog-card .blog-img {
	position: absolute;
	min-width: 100%;
	min-height: 100%;
	height: 100%;
	top: -9999px;
	left: -9999px;
	right: -9999px;
	bottom: -9999px;
	margin: auto;
	overflow: hidden;
  }
  
  .blog-index .blog-card:hover {
	-webkit-box-shadow: 0 2px 1.5rem rgba(0, 0, 0, 0.85);
			box-shadow: 0 2px 1.5rem rgba(0, 0, 0, 0.85);
  }
  
  .blog-index .blog-card:hover .text-overlay {
	background: rgba(1, 95, 95, 0.8);
	height: 50%;
	top: 50%;
	-webkit-transition: all 450ms ease-in-out 0s;
	transition: all 450ms ease-in-out 0s;
	color: white;
  }
  
  .blog-index .blog-card:hover p {
	height: 60px;
	-webkit-transition: all 350ms ease-in-out 0s;
	transition: all 350ms ease-in-out 0s;
  }
  
  .blog-index .blog-card:hover p a {
	visibility: visible;
  }
  
  .blog-index .text-overlay {
	position: relative;
	background: rgba(1, 95, 95, 0.9);
	width: 100%;
	height: 50%;
	top: 50%;
	-webkit-box-shadow: 0 -2px 12px rgba(1, 95, 95, 0.3);
			box-shadow: 0 -2px 12px rgba(1, 95, 95, 0.3);
	padding: 10px 12px;
	overflow: hidden;
	-webkit-transition: all 450ms ease-in-out 0s;
	transition: all 450ms ease-in-out 0s;
  }
  
  .blog-index .text-overlay h2 {
	color: white;
	letter-spacing: 0.0225em;
	width: auto;
	margin: 0;
  }
  
  .blog-index .text-overlay p {
	color: #555;
	width: 380px;
	height: 38px;
	margin: 8px 0;
	line-height: 1.25;
	text-overflow: ellipsis;
	overflow: hidden;
  }
  
  .blog-index .text-overlay a {
	color: white;
	text-decoration: none;
	-webkit-transition: all 350ms linear;
	transition: all 350ms linear;
	font-size: 1.5rem;
  }
  
  .blog-index .text-overlay a:hover {
	color: white;
	border-bottom: 1px dotted white;
  }

.faq-list {
    list-style: none;
    padding: 0;
}

.faq-list li {
    margin: 30px 0;
  	border: 1px solid rgb(205, 205, 205);
    padding: 27px 30px;
    margin: 0px auto 30px;
    text-align: left;
}

.faq-list .faq-heading::before {
    content: '+';
   font-size: 40px;
    display: block;
    position: absolute;
   right:0;
    top: -8px;
  color:#c2c2c2;
}

.faq-list .the-active .faq-heading::before {
    content: '-';
}

.faq-heading {
    position: relative;
    cursor: pointer;
    font-size: 1rem;
  font-weight: 400;
  margin:0;
}

.faq-heading:hover {
    color: var(--theme-color);
}

.faq-text {
    display: none;
}

.read {
    color: rgb(100, 100, 100);
    font-size: 16px;
    line-height: 1.5;
    margin-top: 25px;
}

#feature-box .divider {
	height: 1.3rem;
	display: flex;
	background-color: #e1fcf3;
	justify-content: center;
}

#feature-box .divider div {
	height: 1.3rem;
	width: 28rem;
	background-color: white;
}

#feature-box .feature-container, #feature-box .feature-reverse-container {
	display: flex;
	background-repeat: no-repeat;
}

#feature-box .feature-container .feture-description-container, #feature-box .feature-reverse-container .feture-description-container {
	flex: 1;
}

#feature-box .feature-container .feture-description-container h3, #feature-box .feature-reverse-container .feture-description-container h3 {
	color: #015f5f;
	font-size: 1.3rem;
	padding: 0 1rem;
	margin-top: 3rem;
	text-decoration: underline;
}

#feature-box .feature-container .feture-description-container p, #feature-box .feature-reverse-container .feture-description-container p {
	font-size: 1rem;
	padding: 1.2rem;
	margin-bottom: 0;
}

#feature-box .feature-container {
	background-image: url('../images/background/rounded-circle-left.png');
	background-position: right 32rem bottom -1rem;
}

#feature-box .feature-reverse-container {
	background-image: url('../images/background/rounded-circle-right.png');
	background-position: left 32rem bottom -1rem;
	flex-direction: row-reverse;
	text-align: right;
}

.feture-description-container ul {
	list-style: none;
	margin: 1rem 0;
}

.feture-description-container .right-container {
	display: flex;
	justify-content: flex-end;
	text-align: left;

}

.feture-description-container ul li {
	margin: 1rem 0;
}

.feture-description-container ul li .teal {
	color: #015f5f;
}

.feture-description-container ul li span {
	margin-left: 0.5rem;
}

#features-list-box ul {
	list-style: none;
	columns: 3;
	-webkit-columns: 3;
	-moz-columns: 3;
}

#features-list-box ul li {
	margin: 1rem 0;
}

#features-list-box ul li .teal {
	color: #015f5f;
}

#features-list-box ul li span {
	margin-left: 0.5rem;
}

#features-list-box ul li a {
	color: #015f5f;
	text-decoration: underline;
}

#features-list-box ul li a .teal {
	margin-left: 0.6rem;
}

#features-list-box ul li a:hover {
	color: teal;
	text-decoration: underline;
	font-weight: bold;
}

.storegister-feature-data-container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 1rem 0;
}

.storegister-feature-data-container .storegister-feature-data-box {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 0.5rem 1rem;
  	border: 2px solid #7de6e2;
  	border-radius: 1rem;
}

.storegister-feature-data-container .storegister-feature-data-box .storegister-feature-data-image {
	display: flex;
	width: 5rem;
	height: 5rem;
	align-items: center;
	justify-content: center;
}

.storegister-feature-data-container .storegister-feature-data-box .storegister-feature-data-image .material-symbols-outlined {
	color: #4ec5c0 !important;
  	font-size: 4rem;
}

.storegister-feature-data-container .storegister-feature-data-box .storegister-feature-data-image .material-icon-outlined {
	font-size: 1.3rem;
	font-weight: bold;
	color: #4ec5c0 !important;
	line-height: 3rem;
}

.storegister-feature-data-container .storegister-feature-data-box .storegister-feature-data {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.storegister-feature-data-container .storegister-feature-data-box .storegister-feature-data h4 {
	font-size: 1.3rem;
	color: crimson;
	font-weight: bold;
}

.request-for-demo-btn {
	background-color: #424242;
  	color: white !important;
	text-decoration: none !important;
	padding: 0.5rem 1rem;
	margin: 0;
}
/* Primary Style Ends Here */

@media screen and (max-width: 1600px) and (min-width: 1400px) {
	#body-bg .features-sd {
		display: none;
	}
	#body-bg .features-md {
		position: absolute;
		max-width: 100%;
		z-index: -1;
		display: block;
	}
	#body-bg .features-hd {
		display: none;
	}
	
}

@media screen and (max-width: 1399px) {
	#body-bg .features-sd {
		position: absolute;
		z-index: -1;
		max-width: 100%;
		display: block;
	}
	#body-bg .features-md {
		display: none;
	}
	#body-bg .features-hd {
		display: none;
	}
	.footer-storegister {
		padding-left: 3rem;
	}
}

@media screen and (max-width: 1399px) and (max-width: 1112px) {
	#body-bg .features-sd {
		height: 3200px;
	}
}

@media screen and (max-width: 1399px) and (min-width: 993px) {
	#first-section {
		height: 500px;
	}
	#sixth-section {
		margin-top: 4rem;
	}
}

@media screen and (max-width: 1112px) {
	nav .get-early-access-btn, .home-nav-link {
		display: none;
		visibility: hidden;
	}

	#digi .desktop-image {
		display: none;
	}
	#digi .mobile-image {
		display: block;
	}
	#digi .digi-inner {
		position: absolute;
		top: 4rem;
		left: 0;
		right: 0;
		width: 100%;
	}

	#store-header .dropdown .dropdown-menu::before {
		content: '';
		display: none;
		top: 0;
		left: 0;
	}

	#feature-box .feature-container, #feature-box .feature-reverse-container {
		flex-direction: column;
		background-image: none;
		justify-content: center;
		text-align: left;
	}

	#feature-box .divider {
		background-color: white;
		margin: 1rem;
	}

	#feature-box .divider div {
		display: none;
		visibility: hidden;
	}

	#feature-box .feture-img-container {
		display: flex;
		justify-content: center;
	}
}

@media screen and (max-width: 1112px) and (min-width: 993px){
	#digi .banner-container {
		display: flex;
		justify-content: flex-end;
		align-self: flex-end;
		padding: 0 1rem;
	}

	#features-list-box ul {
		columns: 2;
		-webkit-columns: 2;
		-moz-columns: 2;
	}

	#feature-box .feature-container, #feature-box .feature-reverse-container {
		flex-direction: column;
		background-image: none;
		justify-content: center;
	}

	#feature-box .feture-img-container {
		display: flex;
		justify-content: center;
	}
}

@media screen and (max-width: 992px) and (min-width: 736px) {
	#second-section, #third-section, #fourth-section,
	#fifth-section, #sixth-section {
		margin-top: 5rem !important;
	}

	#features-list-box ul {
		columns: 2;
		-webkit-columns: 2;
		-moz-columns: 2;
	}

	#feature-box .feature-container, #feature-box .feature-reverse-container {
		flex-direction: column;
		background-image: none;
		justify-content: center;
		text-align: left;
	}

	#feature-box .feture-img-container {
		display: flex;
		justify-content: center;
	}

	.feture-description-container .right-container {
		justify-content: flex-start;
	}
}

@media screen and (max-width: 992px) and (min-width: 100px) {
	nav .get-early-access-btn, .home-nav-link {
		display: none;
		visibility: hidden;
	}

	#digi .banner-container {
		height: 20rem;
		display: flex;
		justify-content: flex-end;
		padding: 0 1rem;
	}

	#digi .banner-container .mobile-image {
		align-self: flex-end;
	}

	#body-bg .features-sd {
		display: none;
	}
	#body-bg .features-md {
		display: none;
	}
	#body-bg .features-hd {
		display: none;
	}
	#first-section, #second-section, #third-section, #fourth-section,
	#fifth-section, #sixth-section {
		height: auto;
	}
	#first-section h2, #second-section h2, #third-section h2, #fourth-section h2,
	#fifth-section h2, #sixth-section h2 {
		font-size: 1.4rem;
		font-weight: bold;
		text-align: center;
	}

	.reverse-column {
		flex-direction: column-reverse;
		text-align: center;
	}

	#feature-box .feature-container .feture-description-container h3, #feature-box .feature-reverse-container .feture-description-container h3 {
		margin-top: 1rem;
		padding: 0;
	}

	#features-list-box ul {
		columns: 2;
		-webkit-columns: 2;
		-moz-columns: 2;
	}

	#feature-box .feature-container, #feature-box .feature-reverse-container {
		flex-direction: column;
		background-image: none;
		justify-content: center;
		text-align: left;
	}

	#feature-box .feture-img-container {
		display: flex;
		justify-content: center;
	}

	.feture-description-container .right-container {
		justify-content: flex-start;
	}
}

@media screen and (max-width: 736px) {
	#home-first {
		height: auto;
	}
	#home-first .padd-1 {
		padding: 0;
	}
	.footer-storegister, #footer .padd-1, #footer .padd, #footer .contact-home {
		padding-left: 1rem;
	}

	#footer .contact-home {
		padding-top: 1rem;
	}
	.blog-index {
		justify-content: center
	}
	.blog-index .blog-card {
		margin: 2rem 0;
	}

	#feature-box .feature-container .feture-description-container h3, #feature-box .feature-reverse-container .feture-description-container h3 {
		margin-top: 1rem;
		padding: 0;
	}

	#features-list-box ul {
		columns: 1;
		-webkit-columns: 1;
		-moz-columns: 1;
		padding-left: 1rem;
	}

	#feature-box .feature-container, #feature-box .feature-reverse-container {
		flex-direction: column;
		background-image: none;
		justify-content: center;
		text-align: left;
	}

	#feature-box .feture-img-container {
		display: flex;
		justify-content: center;
	}

	.feture-description-container .right-container {
		justify-content: flex-start;
	}
}