
:root {
	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1;
}

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

.bricks-is-frontend .brx-animated[data-animation*=In], .bricks-is-frontend :not(.brx-animated)[data-interaction-hidden-on-load] {
	opacity: 0;
}

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

.brx-animated.brx-animate-repeat-1 {
	animation-iteration-count: var(--animate-repeat);
}

.brx-animated.brx-animate-repeat-2 {
	animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.brx-animated.brx-animate-repeat-3 {
	animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.brx-animated.brx-animate-delay-1s {
	animation-delay: var(--animate-delay);
}

.brx-animated.brx-animate-delay-2s {
	animation-delay: calc(var(--animate-delay) * 2);
}

.brx-animated.brx-animate-delay-3s {
	animation-delay: calc(var(--animate-delay) * 3);
}

.brx-animated.brx-animate-delay-4s {
	animation-delay: calc(var(--animate-delay) * 4);
}

.brx-animated.brx-animate-delay-5s {
	animation-delay: calc(var(--animate-delay) * 5);
}

.brx-animated.brx-animate-faster {
	animation-duration: calc(var(--animate-duration) / 2);
}

.brx-animated.brx-animate-fast {
	animation-duration: calc(var(--animate-duration) * .8);
}

.brx-animated.brx-animate-slow {
	animation-duration: calc(var(--animate-duration) * 2);
}

.brx-animated.brx-animate-slower {
	animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion:reduce),print {
	.brx-animated {
		animation-duration: 1ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 1ms !important;
	}
	
	.brx-animated[class*=Out] {
		opacity: 0;
	}
}

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

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

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

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

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

.brx-animate-flash {
	animation-name: flash;
}

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

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

.brx-animate-pulse {
	animation-name: pulse;
	animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand {
	0% {
		transform: scaleX(1);
	}
	
	30% {
		transform: scale3d(1.25, .75, 1);
	}
	
	40% {
		transform: scale3d(.75, 1.25, 1);
	}
	
	50% {
		transform: scale3d(1.15, .85, 1);
	}
	
	65% {
		transform: scale3d(.95, 1.05, 1);
	}
	
	75% {
		transform: scale3d(1.05, .95, 1);
	}
	
	to {
		transform: scaleX(1);
	}
}

@keyframes rubberBand {
	0% {
		transform: scaleX(1);
	}
	
	30% {
		transform: scale3d(1.25, .75, 1);
	}
	
	40% {
		transform: scale3d(.75, 1.25, 1);
	}
	
	50% {
		transform: scale3d(1.15, .85, 1);
	}
	
	65% {
		transform: scale3d(.95, 1.05, 1);
	}
	
	75% {
		transform: scale3d(1.05, .95, 1);
	}
	
	to {
		transform: scaleX(1);
	}
}

.brx-animate-rubberBand {
	animation-name: rubberBand;
}

@-webkit-keyframes shakeX {
	0%, to {
		transform: translateZ(0);
	}
	
	10%, 30%, 50%, 70%, 90% {
		transform: translate3d(-10px, 0, 0);
	}
	
	20%, 40%, 60%, 80% {
		transform: translate3d(10px, 0, 0);
	}
}

@keyframes shakeX {
	0%, to {
		transform: translateZ(0);
	}
	
	10%, 30%, 50%, 70%, 90% {
		transform: translate3d(-10px, 0, 0);
	}
	
	20%, 40%, 60%, 80% {
		transform: translate3d(10px, 0, 0);
	}
}

.brx-animate-shakeX {
	animation-name: shakeX;
}

@-webkit-keyframes shakeY {
	0%, to {
		transform: translateZ(0);
	}
	
	10%, 30%, 50%, 70%, 90% {
		transform: translate3d(0, -10px, 0);
	}
	
	20%, 40%, 60%, 80% {
		transform: translate3d(0, 10px, 0);
	}
}

@keyframes shakeY {
	0%, to {
		transform: translateZ(0);
	}
	
	10%, 30%, 50%, 70%, 90% {
		transform: translate3d(0, -10px, 0);
	}
	
	20%, 40%, 60%, 80% {
		transform: translate3d(0, 10px, 0);
	}
}

.brx-animate-shakeY {
	animation-name: shakeY;
}

@-webkit-keyframes headShake {
	0% {
		transform: translateX(0);
	}
	
	6.5% {
		transform: translateX(-6px) rotateY(-9deg);
	}
	
	18.5% {
		transform: translateX(5px) rotateY(7deg);
	}
	
	31.5% {
		transform: translateX(-3px) rotateY(-5deg);
	}
	
	43.5% {
		transform: translateX(2px) rotateY(3deg);
	}
	
	50% {
		transform: translateX(0);
	}
}

@keyframes headShake {
	0% {
		transform: translateX(0);
	}
	
	6.5% {
		transform: translateX(-6px) rotateY(-9deg);
	}
	
	18.5% {
		transform: translateX(5px) rotateY(7deg);
	}
	
	31.5% {
		transform: translateX(-3px) rotateY(-5deg);
	}
	
	43.5% {
		transform: translateX(2px) rotateY(3deg);
	}
	
	50% {
		transform: translateX(0);
	}
}

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

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

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

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

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

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

.brx-animate-tada {
	animation-name: tada;
}

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

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

.brx-animate-wobble {
	animation-name: wobble;
}

@-webkit-keyframes jello {
	0%, 11.1%, to {
		transform: translateZ(0);
	}
	
	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	
	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	
	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	
	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	
	66.6% {
		transform: skewX(-.78125deg) skewY(-.78125deg);
	}
	
	77.7% {
		transform: skewX(.390625deg) skewY(.390625deg);
	}
	
	88.8% {
		transform: skewX(-.1953125deg) skewY(-.1953125deg);
	}
}

@keyframes jello {
	0%, 11.1%, to {
		transform: translateZ(0);
	}
	
	22.2% {
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}
	
	33.3% {
		transform: skewX(6.25deg) skewY(6.25deg);
	}
	
	44.4% {
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}
	
	55.5% {
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}
	
	66.6% {
		transform: skewX(-.78125deg) skewY(-.78125deg);
	}
	
	77.7% {
		transform: skewX(.390625deg) skewY(.390625deg);
	}
	
	88.8% {
		transform: skewX(-.1953125deg) skewY(-.1953125deg);
	}
}

.brx-animate-jello {
	animation-name: jello;
	transform-origin: center;
}

@-webkit-keyframes heartBeat {
	0% {
		transform: scale(1);
	}
	
	14% {
		transform: scale(1.3);
	}
	
	28% {
		transform: scale(1);
	}
	
	42% {
		transform: scale(1.3);
	}
	
	70% {
		transform: scale(1);
	}
}

@keyframes heartBeat {
	0% {
		transform: scale(1);
	}
	
	14% {
		transform: scale(1.3);
	}
	
	28% {
		transform: scale(1);
	}
	
	42% {
		transform: scale(1.3);
	}
	
	70% {
		transform: scale(1);
	}
}

.brx-animate-heartBeat {
	animation-duration: calc(var(--animate-duration) * 1.3);
	animation-name: heartBeat;
	animation-timing-function: ease-in-out;
}

@-webkit-keyframes backInDown {
	0% {
		opacity: .7;
		transform: translateY(-1200px) scale(.7);
	}
	
	80% {
		opacity: .7;
		transform: translateY(0) scale(.7);
	}
	
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes backInDown {
	0% {
		opacity: .7;
		transform: translateY(-1200px) scale(.7);
	}
	
	80% {
		opacity: .7;
		transform: translateY(0) scale(.7);
	}
	
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.brx-animate-backInDown {
	animation-name: backInDown;
}

@-webkit-keyframes backInLeft {
	0% {
		opacity: .7;
		transform: translateX(-2000px) scale(.7);
	}
	
	80% {
		opacity: .7;
		transform: translateX(0) scale(.7);
	}
	
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes backInLeft {
	0% {
		opacity: .7;
		transform: translateX(-2000px) scale(.7);
	}
	
	80% {
		opacity: .7;
		transform: translateX(0) scale(.7);
	}
	
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.brx-animate-backInLeft {
	animation-name: backInLeft;
}

@-webkit-keyframes backInRight {
	0% {
		opacity: .7;
		transform: translateX(2000px) scale(.7);
	}
	
	80% {
		opacity: .7;
		transform: translateX(0) scale(.7);
	}
	
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes backInRight {
	0% {
		opacity: .7;
		transform: translateX(2000px) scale(.7);
	}
	
	80% {
		opacity: .7;
		transform: translateX(0) scale(.7);
	}
	
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.brx-animate-backInRight {
	animation-name: backInRight;
}

@-webkit-keyframes backInUp {
	0% {
		opacity: .7;
		transform: translateY(1200px) scale(.7);
	}
	
	80% {
		opacity: .7;
		transform: translateY(0) scale(.7);
	}
	
	to {
		opacity: 1;
		transform: scale(1);
	}
}

@keyframes backInUp {
	0% {
		opacity: .7;
		transform: translateY(1200px) scale(.7);
	}
	
	80% {
		opacity: .7;
		transform: translateY(0) scale(.7);
	}
	
	to {
		opacity: 1;
		transform: scale(1);
	}
}

.brx-animate-backInUp {
	animation-name: backInUp;
}

@-webkit-keyframes backOutDown {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	
	20% {
		opacity: .7;
		transform: translateY(0) scale(.7);
	}
	
	to {
		opacity: .7;
		transform: translateY(700px) scale(.7);
	}
}

@keyframes backOutDown {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	
	20% {
		opacity: .7;
		transform: translateY(0) scale(.7);
	}
	
	to {
		opacity: .7;
		transform: translateY(700px) scale(.7);
	}
}

.brx-animate-backOutDown {
	animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	
	20% {
		opacity: .7;
		transform: translateX(0) scale(.7);
	}
	
	to {
		opacity: .7;
		transform: translateX(-2000px) scale(.7);
	}
}

@keyframes backOutLeft {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	
	20% {
		opacity: .7;
		transform: translateX(0) scale(.7);
	}
	
	to {
		opacity: .7;
		transform: translateX(-2000px) scale(.7);
	}
}

.brx-animate-backOutLeft {
	animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	
	20% {
		opacity: .7;
		transform: translateX(0) scale(.7);
	}
	
	to {
		opacity: .7;
		transform: translateX(2000px) scale(.7);
	}
}

@keyframes backOutRight {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	
	20% {
		opacity: .7;
		transform: translateX(0) scale(.7);
	}
	
	to {
		opacity: .7;
		transform: translateX(2000px) scale(.7);
	}
}

.brx-animate-backOutRight {
	animation-name: backOutRight;
}

@-webkit-keyframes backOutUp {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	
	20% {
		opacity: .7;
		transform: translateY(0) scale(.7);
	}
	
	to {
		opacity: .7;
		transform: translateY(-700px) scale(.7);
	}
}

@keyframes backOutUp {
	0% {
		opacity: 1;
		transform: scale(1);
	}
	
	20% {
		opacity: .7;
		transform: translateY(0) scale(.7);
	}
	
	to {
		opacity: .7;
		transform: translateY(-700px) scale(.7);
	}
}

.brx-animate-backOutUp {
	animation-name: backOutUp;
}

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

@keyframes bounceIn {
	0%, 20%, 40%, 60%, 80%, to {
		animation-timing-function: cubic-bezier(.215, .61, .355, 1);
	}
	
	0% {
		opacity: 0;
		transform: scale3d(.3, .3, .3);
	}
	
	20% {
		transform: scale3d(1.1, 1.1, 1.1);
	}
	
	40% {
		transform: scale3d(.9, .9, .9);
	}
	
	60% {
		opacity: 1;
		transform: scale3d(1.03, 1.03, 1.03);
	}
	
	80% {
		transform: scale3d(.97, .97, .97);
	}
	
	to {
		opacity: 1;
		transform: scaleX(1);
	}
}

.brx-animate-bounceIn {
	animation-duration: calc(var(--animate-duration) * .75);
	animation-name: bounceIn;
}

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

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

.brx-animate-bounceInDown {
	animation-name: bounceInDown;
}

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

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

.brx-animate-bounceInLeft {
	animation-name: bounceInLeft;
}

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

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

.brx-animate-bounceInRight {
	animation-name: bounceInRight;
}

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

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

.brx-animate-bounceInUp {
	animation-name: bounceInUp;
}

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

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

.brx-animate-bounceOut {
	animation-duration: calc(var(--animate-duration) * .75);
	animation-name: bounceOut;
}

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

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

.brx-animate-bounceOutDown {
	animation-name: bounceOutDown;
}

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

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

.brx-animate-bounceOutLeft {
	animation-name: bounceOutLeft;
}

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

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

.brx-animate-bounceOutRight {
	animation-name: bounceOutRight;
}

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

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

.brx-animate-bounceOutUp {
	animation-name: bounceOutUp;
}

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

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

.brx-animate-fadeIn {
	animation-name: fadeIn;
}

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

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

.brx-animate-fadeInDown {
	animation-name: fadeInDown;
}

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

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

.brx-animate-fadeInDownBig {
	animation-name: fadeInDownBig;
}

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

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

.brx-animate-fadeInLeft {
	animation-name: fadeInLeft;
}

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

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

.brx-animate-fadeInLeftBig {
	animation-name: fadeInLeftBig;
}

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

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

.brx-animate-fadeInRight {
	animation-name: fadeInRight;
}

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

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

.brx-animate-fadeInRightBig {
	animation-name: fadeInRightBig;
}

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

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

.brx-animate-fadeInUp {
	animation-name: fadeInUp;
}

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

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

.brx-animate-fadeInUpBig {
	animation-name: fadeInUpBig;
}

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

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

.brx-animate-fadeInTopLeft {
	animation-name: fadeInTopLeft;
}

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

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

.brx-animate-fadeInTopRight {
	animation-name: fadeInTopRight;
}

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

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

.brx-animate-fadeInBottomLeft {
	animation-name: fadeInBottomLeft;
}

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

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

.brx-animate-fadeInBottomRight {
	animation-name: fadeInBottomRight;
}

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

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

.brx-animate-fadeOut {
	animation-name: fadeOut;
}

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

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

.brx-animate-fadeOutDown {
	animation-name: fadeOutDown;
}

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

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

.brx-animate-fadeOutDownBig {
	animation-name: fadeOutDownBig;
}

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

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

.brx-animate-fadeOutLeft {
	animation-name: fadeOutLeft;
}

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

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

.brx-animate-fadeOutLeftBig {
	animation-name: fadeOutLeftBig;
}

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

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

.brx-animate-fadeOutRight {
	animation-name: fadeOutRight;
}

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

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

.brx-animate-fadeOutRightBig {
	animation-name: fadeOutRightBig;
}

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

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

.brx-animate-fadeOutUp {
	animation-name: fadeOutUp;
}

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

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

.brx-animate-fadeOutUpBig {
	animation-name: fadeOutUpBig;
}

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

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

.brx-animate-fadeOutTopLeft {
	animation-name: fadeOutTopLeft;
}

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

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

.brx-animate-fadeOutTopRight {
	animation-name: fadeOutTopRight;
}

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

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

.brx-animate-fadeOutBottomRight {
	animation-name: fadeOutBottomRight;
}

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

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

.brx-animate-fadeOutBottomLeft {
	animation-name: fadeOutBottomLeft;
}

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

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

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

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

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

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

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

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

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

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

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

.brx-animate-flipOutX {
	animation-duration: calc(var(--animate-duration) * .75);
	animation-name: flipOutX;
	backface-visibility: visible !important;
}

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

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

.brx-animate-flipOutY {
	animation-duration: calc(var(--animate-duration) * .75);
	animation-name: flipOutY;
	backface-visibility: visible !important;
}

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

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

.brx-animate-lightSpeedInRight {
	animation-name: lightSpeedInRight;
	animation-timing-function: ease-out;
}

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

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

.brx-animate-lightSpeedInLeft {
	animation-name: lightSpeedInLeft;
	animation-timing-function: ease-out;
}

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

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

.brx-animate-lightSpeedOutRight {
	animation-name: lightSpeedOutRight;
	animation-timing-function: ease-in;
}

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

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

.brx-animate-lightSpeedOutLeft {
	animation-name: lightSpeedOutLeft;
	animation-timing-function: ease-in;
}

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

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

.brx-animate-rotateIn {
	animation-name: rotateIn;
	transform-origin: center;
}

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

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

.brx-animate-rotateInDownLeft {
	animation-name: rotateInDownLeft;
	transform-origin: left bottom;
}

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

@keyframes rotateInDownRight {
	0% {
		opacity: 0;
		transform: rotate(45deg);
	}
	
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}

.brx-animate-rotateInDownRight {
	animation-name: rotateInDownRight;
	transform-origin: right bottom;
}

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

@keyframes rotateInUpLeft {
	0% {
		opacity: 0;
		transform: rotate(45deg);
	}
	
	to {
		opacity: 1;
		transform: translateZ(0);
	}
}

.brx-animate-rotateInUpLeft {
	animation-name: rotateInUpLeft;
	transform-origin: left bottom;
}

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

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

.brx-animate-rotateInUpRight {
	animation-name: rotateInUpRight;
	transform-origin: right bottom;
}

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

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

.brx-animate-rotateOut {
	animation-name: rotateOut;
	transform-origin: center;
}

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

@keyframes rotateOutDownLeft {
	0% {
		opacity: 1;
	}
	
	to {
		opacity: 0;
		transform: rotate(45deg);
	}
}

.brx-animate-rotateOutDownLeft {
	animation-name: rotateOutDownLeft;
	transform-origin: left bottom;
}

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

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

.brx-animate-rotateOutDownRight {
	animation-name: rotateOutDownRight;
	transform-origin: right bottom;
}

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

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

.brx-animate-rotateOutUpLeft {
	animation-name: rotateOutUpLeft;
	transform-origin: left bottom;
}

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

@keyframes rotateOutUpRight {
	0% {
		opacity: 1;
	}
	
	to {
		opacity: 0;
		transform: rotate(90deg);
	}
}

.brx-animate-rotateOutUpRight {
	animation-name: rotateOutUpRight;
	transform-origin: right bottom;
}

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

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

.brx-animate-hinge {
	animation-duration: calc(var(--animate-duration) * 2);
	animation-name: hinge;
	transform-origin: top left;
}

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

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

.brx-animate-jackInTheBox {
	animation-name: jackInTheBox;
}

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

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

.brx-animate-rollIn {
	animation-name: rollIn;
}

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

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

.brx-animate-rollOut {
	animation-name: rollOut;
}

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

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

.brx-animate-zoomIn {
	animation-name: zoomIn;
}

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

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

.brx-animate-zoomInDown {
	animation-name: zoomInDown;
}

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

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

.brx-animate-zoomInLeft {
	animation-name: zoomInLeft;
}

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

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

.brx-animate-zoomInRight {
	animation-name: zoomInRight;
}

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

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

.brx-animate-zoomInUp {
	animation-name: zoomInUp;
}

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

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

.brx-animate-zoomOut {
	animation-name: zoomOut;
}

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

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

.brx-animate-zoomOutDown {
	animation-name: zoomOutDown;
	transform-origin: center bottom;
}

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

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

.brx-animate-zoomOutLeft {
	animation-name: zoomOutLeft;
	transform-origin: left center;
}

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

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

.brx-animate-zoomOutRight {
	animation-name: zoomOutRight;
	transform-origin: right center;
}

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

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

.brx-animate-zoomOutUp {
	animation-name: zoomOutUp;
	transform-origin: center bottom;
}

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

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

.brx-animate-slideInDown {
	animation-name: slideInDown;
}

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

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

.brx-animate-slideInLeft {
	animation-name: slideInLeft;
}

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

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

.brx-animate-slideInRight {
	animation-name: slideInRight;
}

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

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

.brx-animate-slideInUp {
	animation-name: slideInUp;
}

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

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

.brx-animate-slideOutDown {
	animation-name: slideOutDown;
}

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

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

.brx-animate-slideOutLeft {
	animation-name: slideOutLeft;
}

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

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

.brx-animate-slideOutRight {
	animation-name: slideOutRight;
}

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

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

.brx-animate-slideOutUp {
	animation-name: slideOutUp;
}
