@charset "UTF-8";
/* * animate.css - https://animate.style/
 * Version - 4.1.1
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2020 Animate.css */
:root {
	--animate-duration: 1s;
	--animate-delay: 1s;
	--animate-repeat: 1;
}
.animate__animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-duration: var(--animate-duration);
	animation-duration: var(--animate-duration);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.animate__animated.animate__infinite {
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}
.animate__animated.animate__repeat-1 {
	-webkit-animation-iteration-count: 1;
	animation-iteration-count: 1;
	-webkit-animation-iteration-count: var(--animate-repeat);
	animation-iteration-count: var(--animate-repeat);
}
.animate__animated.animate__repeat-2 {
	-webkit-animation-iteration-count: 2;
	animation-iteration-count: 2;
	-webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
	animation-iteration-count: calc(var(--animate-repeat) * 2);
}
.animate__animated.animate__repeat-3 {
	-webkit-animation-iteration-count: 3;
	animation-iteration-count: 3;
	-webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
	animation-iteration-count: calc(var(--animate-repeat) * 3);
}
.animate__animated.animate__delay-1s {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
	-webkit-animation-delay: var(--animate-delay);
	animation-delay: var(--animate-delay);
}
.animate__animated.animate__delay-2s {
	-webkit-animation-delay: 2s;
	animation-delay: 2s;
	-webkit-animation-delay: calc(var(--animate-delay) * 2);
	animation-delay: calc(var(--animate-delay) * 2);
}
.animate__animated.animate__delay-3s {
	-webkit-animation-delay: 3s;
	animation-delay: 3s;
	-webkit-animation-delay: calc(var(--animate-delay) * 3);
	animation-delay: calc(var(--animate-delay) * 3);
}
.animate__animated.animate__delay-4s {
	-webkit-animation-delay: 4s;
	animation-delay: 4s;
	-webkit-animation-delay: calc(var(--animate-delay) * 4);
	animation-delay: calc(var(--animate-delay) * 4);
}
.animate__animated.animate__delay-5s {
	-webkit-animation-delay: 5s;
	animation-delay: 5s;
	-webkit-animation-delay: calc(var(--animate-delay) * 5);
	animation-delay: calc(var(--animate-delay) * 5);
}
.animate__animated.animate__faster {
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-duration: calc(var(--animate-duration) / 2);
	animation-duration: calc(var(--animate-duration) / 2);
}
.animate__animated.animate__fast {
	-webkit-animation-duration: 0.8s;
	animation-duration: 0.8s;
	-webkit-animation-duration: calc(var(--animate-duration) * 0.8);
	animation-duration: calc(var(--animate-duration) * 0.8);
}
.animate__animated.animate__slow {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-duration: calc(var(--animate-duration) * 2);
	animation-duration: calc(var(--animate-duration) * 2);
}
.animate__animated.animate__slower {
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-duration: calc(var(--animate-duration) * 3);
	animation-duration: calc(var(--animate-duration) * 3);
}
@media (prefers-reduced-motion: reduce), print {
	.animate__animated {
		-webkit-animation-duration: 1ms !important;
		animation-duration: 1ms !important;
		-webkit-transition-duration: 1ms !important;
		transition-duration: 1ms !important;
		-webkit-animation-iteration-count: 1 !important;
		animation-iteration-count: 1 !important;
	}
	.animate__animated[class*='Out'] {
		opacity: 0;
	}
}
@-webkit-keyframes bounce {
	0%,
	20%,
	53%,
	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) scaleY(1.1);
		transform: translate3d(0, -30px, 0) scaleY(1.1);
	}
	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) scaleY(1.05);
		transform: translate3d(0, -15px, 0) scaleY(1.05);
	}
	80% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translateZ(0) scaleY(0.95);
		transform: translateZ(0) scaleY(0.95);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
		transform: translate3d(0, -4px, 0) scaleY(1.02);
	}
}
@keyframes bounce {
	0%,
	20%,
	53%,
	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) scaleY(1.1);
		transform: translate3d(0, -30px, 0) scaleY(1.1);
	}
	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) scaleY(1.05);
		transform: translate3d(0, -15px, 0) scaleY(1.05);
	}
	80% {
		-webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translateZ(0) scaleY(0.95);
		transform: translateZ(0) scaleY(0.95);
	}
	90% {
		-webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
		transform: translate3d(0, -4px, 0) scaleY(1.02);
	}
}
.animate__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;
	}
}
.animate__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);
	}
}
.animate__pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}
@-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);
	}
}
.animate__rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand;
}
@-webkit-keyframes shakeX {
	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 shakeX {
	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);
	}
}
.animate__shakeX {
	-webkit-animation-name: shakeX;
	animation-name: shakeX;
}
@-webkit-keyframes shakeY {
	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
}
@keyframes shakeY {
	0%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	10%,
	30%,
	50%,
	70%,
	90% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}
	20%,
	40%,
	60%,
	80% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}
}
.animate__shakeY {
	-webkit-animation-name: shakeY;
	animation-name: shakeY;
}
@-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);
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}
@-webkit-keyframes wobble {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	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: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes wobble {
	0% {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	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: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble;
}
@-webkit-keyframes jello {
	0%,
	11.1%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	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.390625deg) skewY(0.390625deg);
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
@keyframes jello {
	0%,
	11.1%,
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	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.390625deg) skewY(0.390625deg);
		transform: skewX(0.390625deg) skewY(0.390625deg);
	}
	88.8% {
		-webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
		transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
	}
}
.animate__jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	-webkit-transform-origin: center;
	transform-origin: center;
}
@-webkit-keyframes heartBeat {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	14% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}
	28% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	42% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}
	70% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
@keyframes heartBeat {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	14% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}
	28% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	42% {
		-webkit-transform: scale(1.3);
		transform: scale(1.3);
	}
	70% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}
.animate__heartBeat {
	-webkit-animation-name: heartBeat;
	animation-name: heartBeat;
	-webkit-animation-duration: 1.3s;
	animation-duration: 1.3s;
	-webkit-animation-duration: calc(var(--animate-duration) * 1.3);
	animation-duration: calc(var(--animate-duration) * 1.3);
	-webkit-animation-timing-function: ease-in-out;
	animation-timing-function: ease-in-out;
}
@-webkit-keyframes backInDown {
	0% {
		-webkit-transform: translateY(-1200px) scale(0.7);
		transform: translateY(-1200px) scale(0.7);
		opacity: 0.7;
	}
	80% {
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes backInDown {
	0% {
		-webkit-transform: translateY(-1200px) scale(0.7);
		transform: translateY(-1200px) scale(0.7);
		opacity: 0.7;
	}
	80% {
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
.animate__backInDown {
	-webkit-animation-name: backInDown;
	animation-name: backInDown;
}
@-webkit-keyframes backInLeft {
	0% {
		-webkit-transform: translateX(-2000px) scale(0.7);
		transform: translateX(-2000px) scale(0.7);
		opacity: 0.7;
	}
	80% {
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes backInLeft {
	0% {
		-webkit-transform: translateX(-2000px) scale(0.7);
		transform: translateX(-2000px) scale(0.7);
		opacity: 0.7;
	}
	80% {
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
.animate__backInLeft {
	-webkit-animation-name: backInLeft;
	animation-name: backInLeft;
}
@-webkit-keyframes backInRight {
	0% {
		-webkit-transform: translateX(2000px) scale(0.7);
		transform: translateX(2000px) scale(0.7);
		opacity: 0.7;
	}
	80% {
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes backInRight {
	0% {
		-webkit-transform: translateX(2000px) scale(0.7);
		transform: translateX(2000px) scale(0.7);
		opacity: 0.7;
	}
	80% {
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
.animate__backInRight {
	-webkit-animation-name: backInRight;
	animation-name: backInRight;
}
@-webkit-keyframes backInUp {
	0% {
		-webkit-transform: translateY(1200px) scale(0.7);
		transform: translateY(1200px) scale(0.7);
		opacity: 0.7;
	}
	80% {
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
@keyframes backInUp {
	0% {
		-webkit-transform: translateY(1200px) scale(0.7);
		transform: translateY(1200px) scale(0.7);
		opacity: 0.7;
	}
	80% {
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}
.animate__backInUp {
	-webkit-animation-name: backInUp;
	animation-name: backInUp;
}
@-webkit-keyframes backOutDown {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	20% {
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: translateY(700px) scale(0.7);
		transform: translateY(700px) scale(0.7);
		opacity: 0.7;
	}
}
@keyframes backOutDown {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	20% {
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: translateY(700px) scale(0.7);
		transform: translateY(700px) scale(0.7);
		opacity: 0.7;
	}
}
.animate__backOutDown {
	-webkit-animation-name: backOutDown;
	animation-name: backOutDown;
}
@-webkit-keyframes backOutLeft {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	20% {
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: translateX(-2000px) scale(0.7);
		transform: translateX(-2000px) scale(0.7);
		opacity: 0.7;
	}
}
@keyframes backOutLeft {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	20% {
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: translateX(-2000px) scale(0.7);
		transform: translateX(-2000px) scale(0.7);
		opacity: 0.7;
	}
}
.animate__backOutLeft {
	-webkit-animation-name: backOutLeft;
	animation-name: backOutLeft;
}
@-webkit-keyframes backOutRight {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	20% {
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: translateX(2000px) scale(0.7);
		transform: translateX(2000px) scale(0.7);
		opacity: 0.7;
	}
}
@keyframes backOutRight {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	20% {
		-webkit-transform: translateX(0) scale(0.7);
		transform: translateX(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: translateX(2000px) scale(0.7);
		transform: translateX(2000px) scale(0.7);
		opacity: 0.7;
	}
}
.animate__backOutRight {
	-webkit-animation-name: backOutRight;
	animation-name: backOutRight;
}
@-webkit-keyframes backOutUp {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	20% {
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: translateY(-700px) scale(0.7);
		transform: translateY(-700px) scale(0.7);
		opacity: 0.7;
	}
}
@keyframes backOutUp {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
	20% {
		-webkit-transform: translateY(0) scale(0.7);
		transform: translateY(0) scale(0.7);
		opacity: 0.7;
	}
	to {
		-webkit-transform: translateY(-700px) scale(0.7);
		transform: translateY(-700px) scale(0.7);
		opacity: 0.7;
	}
}
.animate__backOutUp {
	-webkit-animation-name: backOutUp;
	animation-name: backOutUp;
}
@-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);
	}
}
.animate__bounceIn {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
	-webkit-animation-duration: calc(var(--animate-duration) * 0.75);
	animation-duration: calc(var(--animate-duration) * 0.75);
	-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) scaleY(3);
		transform: translate3d(0, -3000px, 0) scaleY(3);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
		transform: translate3d(0, 25px, 0) scaleY(0.9);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
		transform: translate3d(0, -10px, 0) scaleY(0.95);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
		transform: translate3d(0, 5px, 0) scaleY(0.985);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
@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) scaleY(3);
		transform: translate3d(0, -3000px, 0) scaleY(3);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0) scaleY(0.9);
		transform: translate3d(0, 25px, 0) scaleY(0.9);
	}
	75% {
		-webkit-transform: translate3d(0, -10px, 0) scaleY(0.95);
		transform: translate3d(0, -10px, 0) scaleY(0.95);
	}
	90% {
		-webkit-transform: translate3d(0, 5px, 0) scaleY(0.985);
		transform: translate3d(0, 5px, 0) scaleY(0.985);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__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) scaleX(3);
		transform: translate3d(-3000px, 0, 0) scaleX(3);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0) scaleX(1);
		transform: translate3d(25px, 0, 0) scaleX(1);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
		transform: translate3d(-10px, 0, 0) scaleX(0.98);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
		transform: translate3d(5px, 0, 0) scaleX(0.995);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
@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) scaleX(3);
		transform: translate3d(-3000px, 0, 0) scaleX(3);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0) scaleX(1);
		transform: translate3d(25px, 0, 0) scaleX(1);
	}
	75% {
		-webkit-transform: translate3d(-10px, 0, 0) scaleX(0.98);
		transform: translate3d(-10px, 0, 0) scaleX(0.98);
	}
	90% {
		-webkit-transform: translate3d(5px, 0, 0) scaleX(0.995);
		transform: translate3d(5px, 0, 0) scaleX(0.995);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__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) scaleX(3);
		transform: translate3d(3000px, 0, 0) scaleX(3);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
		transform: translate3d(-25px, 0, 0) scaleX(1);
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
		transform: translate3d(10px, 0, 0) scaleX(0.98);
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
		transform: translate3d(-5px, 0, 0) scaleX(0.995);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
@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) scaleX(3);
		transform: translate3d(3000px, 0, 0) scaleX(3);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
		transform: translate3d(-25px, 0, 0) scaleX(1);
	}
	75% {
		-webkit-transform: translate3d(10px, 0, 0) scaleX(0.98);
		transform: translate3d(10px, 0, 0) scaleX(0.98);
	}
	90% {
		-webkit-transform: translate3d(-5px, 0, 0) scaleX(0.995);
		transform: translate3d(-5px, 0, 0) scaleX(0.995);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__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) scaleY(5);
		transform: translate3d(0, 3000px, 0) scaleY(5);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
		transform: translate3d(0, -20px, 0) scaleY(0.9);
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
		transform: translate3d(0, 10px, 0) scaleY(0.95);
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
		transform: translate3d(0, -5px, 0) scaleY(0.985);
	}
	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) scaleY(5);
		transform: translate3d(0, 3000px, 0) scaleY(5);
	}
	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
		transform: translate3d(0, -20px, 0) scaleY(0.9);
	}
	75% {
		-webkit-transform: translate3d(0, 10px, 0) scaleY(0.95);
		transform: translate3d(0, 10px, 0) scaleY(0.95);
	}
	90% {
		-webkit-transform: translate3d(0, -5px, 0) scaleY(0.985);
		transform: translate3d(0, -5px, 0) scaleY(0.985);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__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);
	}
}
.animate__bounceOut {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
	-webkit-animation-duration: calc(var(--animate-duration) * 0.75);
	animation-duration: calc(var(--animate-duration) * 0.75);
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
		transform: translate3d(0, 10px, 0) scaleY(0.985);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
		transform: translate3d(0, -20px, 0) scaleY(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
		transform: translate3d(0, 2000px, 0) scaleY(3);
	}
}
@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0) scaleY(0.985);
		transform: translate3d(0, 10px, 0) scaleY(0.985);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0) scaleY(0.9);
		transform: translate3d(0, -20px, 0) scaleY(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
		transform: translate3d(0, 2000px, 0) scaleY(3);
	}
}
.animate__bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
		transform: translate3d(20px, 0, 0) scaleX(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
		transform: translate3d(-2000px, 0, 0) scaleX(2);
	}
}
@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0) scaleX(0.9);
		transform: translate3d(20px, 0, 0) scaleX(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
		transform: translate3d(-2000px, 0, 0) scaleX(2);
	}
}
.animate__bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
		transform: translate3d(-20px, 0, 0) scaleX(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
		transform: translate3d(2000px, 0, 0) scaleX(2);
	}
}
@keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0) scaleX(0.9);
		transform: translate3d(-20px, 0, 0) scaleX(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
		transform: translate3d(2000px, 0, 0) scaleX(2);
	}
}
.animate__bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
		transform: translate3d(0, -10px, 0) scaleY(0.985);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
		transform: translate3d(0, 20px, 0) scaleY(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
		transform: translate3d(0, -2000px, 0) scaleY(3);
	}
}
@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0) scaleY(0.985);
		transform: translate3d(0, -10px, 0) scaleY(0.985);
	}
	40%,
	45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0) scaleY(0.9);
		transform: translate3d(0, 20px, 0) scaleY(0.9);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
		transform: translate3d(0, -2000px, 0) scaleY(3);
	}
}
.animate__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;
	}
}
.animate__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: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes fadeInDown {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__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: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes fadeInDownBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__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: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__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: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes fadeInLeftBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__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: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__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: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes fadeInRightBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__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: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__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: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes fadeInUpBig {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInTopLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, -100%, 0);
		transform: translate3d(-100%, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes fadeInTopLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, -100%, 0);
		transform: translate3d(-100%, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__fadeInTopLeft {
	-webkit-animation-name: fadeInTopLeft;
	animation-name: fadeInTopLeft;
}
@-webkit-keyframes fadeInTopRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, -100%, 0);
		transform: translate3d(100%, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes fadeInTopRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, -100%, 0);
		transform: translate3d(100%, -100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__fadeInTopRight {
	-webkit-animation-name: fadeInTopRight;
	animation-name: fadeInTopRight;
}
@-webkit-keyframes fadeInBottomLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 100%, 0);
		transform: translate3d(-100%, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes fadeInBottomLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 100%, 0);
		transform: translate3d(-100%, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__fadeInBottomLeft {
	-webkit-animation-name: fadeInBottomLeft;
	animation-name: fadeInBottomLeft;
}
@-webkit-keyframes fadeInBottomRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes fadeInBottomRight {
	0% {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0);
	}
	to {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__fadeInBottomRight {
	-webkit-animation-name: fadeInBottomRight;
	animation-name: fadeInBottomRight;
}
@-webkit-keyframes fadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutTopLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, -100%, 0);
		transform: translate3d(-100%, -100%, 0);
	}
}
@keyframes fadeOutTopLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, -100%, 0);
		transform: translate3d(-100%, -100%, 0);
	}
}
.animate__fadeOutTopLeft {
	-webkit-animation-name: fadeOutTopLeft;
	animation-name: fadeOutTopLeft;
}
@-webkit-keyframes fadeOutTopRight {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, -100%, 0);
		transform: translate3d(100%, -100%, 0);
	}
}
@keyframes fadeOutTopRight {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, -100%, 0);
		transform: translate3d(100%, -100%, 0);
	}
}
.animate__fadeOutTopRight {
	-webkit-animation-name: fadeOutTopRight;
	animation-name: fadeOutTopRight;
}
@-webkit-keyframes fadeOutBottomRight {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0);
	}
}
@keyframes fadeOutBottomRight {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 100%, 0);
		transform: translate3d(100%, 100%, 0);
	}
}
.animate__fadeOutBottomRight {
	-webkit-animation-name: fadeOutBottomRight;
	animation-name: fadeOutBottomRight;
}
@-webkit-keyframes fadeOutBottomLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 100%, 0);
		transform: translate3d(-100%, 100%, 0);
	}
}
@keyframes fadeOutBottomLeft {
	0% {
		opacity: 1;
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 100%, 0);
		transform: translate3d(-100%, 100%, 0);
	}
}
.animate__fadeOutBottomLeft {
	-webkit-animation-name: fadeOutBottomLeft;
	animation-name: fadeOutBottomLeft;
}
@-webkit-keyframes flip {
	0% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0)
			rotateY(-1turn);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
			rotateY(-190deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	50% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
			rotateY(-170deg);
		transform: perspective(400px) scaleX(1) 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)
			translateZ(0) rotateY(0deg);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
			rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	to {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}
@keyframes flip {
	0% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0)
			rotateY(-1turn);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	40% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
			rotateY(-190deg);
		transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}
	50% {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(150px)
			rotateY(-170deg);
		transform: perspective(400px) scaleX(1) 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)
			translateZ(0) rotateY(0deg);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0)
			rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
	to {
		-webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}
.animate__animated.animate__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);
	}
}
.animate__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);
	}
}
.animate__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;
	}
}
.animate__flipOutX {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
	-webkit-animation-duration: calc(var(--animate-duration) * 0.75);
	animation-duration: calc(var(--animate-duration) * 0.75);
	-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;
	}
}
.animate__flipOutY {
	-webkit-animation-duration: 0.75s;
	animation-duration: 0.75s;
	-webkit-animation-duration: calc(var(--animate-duration) * 0.75);
	animation-duration: calc(var(--animate-duration) * 0.75);
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
}
@-webkit-keyframes lightSpeedInRight {
	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);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes lightSpeedInRight {
	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);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__lightSpeedInRight {
	-webkit-animation-name: lightSpeedInRight;
	animation-name: lightSpeedInRight;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedInLeft {
	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);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
@keyframes lightSpeedInLeft {
	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);
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__lightSpeedInLeft {
	-webkit-animation-name: lightSpeedInLeft;
	animation-name: lightSpeedInLeft;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOutRight {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}
@keyframes lightSpeedOutRight {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}
.animate__lightSpeedOutRight {
	-webkit-animation-name: lightSpeedOutRight;
	animation-name: lightSpeedOutRight;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}
@-webkit-keyframes lightSpeedOutLeft {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
		transform: translate3d(-100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
}
@keyframes lightSpeedOutLeft {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
		transform: translate3d(-100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}
}
.animate__lightSpeedOutLeft {
	-webkit-animation-name: lightSpeedOutLeft;
	animation-name: lightSpeedOutLeft;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}
@-webkit-keyframes rotateIn {
	0% {
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}
@keyframes rotateIn {
	0% {
		-webkit-transform: rotate(-200deg);
		transform: rotate(-200deg);
		opacity: 0;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}
.animate__rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn;
	-webkit-transform-origin: center;
	transform-origin: center;
}
@-webkit-keyframes rotateInDownLeft {
	0% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}
@keyframes rotateInDownLeft {
	0% {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}
.animate__rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
}
@-webkit-keyframes rotateInDownRight {
	0% {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}
@keyframes rotateInDownRight {
	0% {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}
.animate__rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
}
@-webkit-keyframes rotateInUpLeft {
	0% {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}
@keyframes rotateInUpLeft {
	0% {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}
.animate__rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
}
@-webkit-keyframes rotateInUpRight {
	0% {
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}
@keyframes rotateInUpRight {
	0% {
		-webkit-transform: rotate(-90deg);
		transform: rotate(-90deg);
		opacity: 0;
	}
	to {
		-webkit-transform: translateZ(0);
		transform: translateZ(0);
		opacity: 1;
	}
}
.animate__rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
}
@-webkit-keyframes rotateOut {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0;
	}
}
@keyframes rotateOut {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: rotate(200deg);
		transform: rotate(200deg);
		opacity: 0;
	}
}
.animate__rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut;
	-webkit-transform-origin: center;
	transform-origin: center;
}
@-webkit-keyframes rotateOutDownLeft {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
}
@keyframes rotateOutDownLeft {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: rotate(45deg);
		transform: rotate(45deg);
		opacity: 0;
	}
}
.animate__rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
}
@-webkit-keyframes rotateOutDownRight {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
}
@keyframes rotateOutDownRight {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
}
.animate__rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
}
@-webkit-keyframes rotateOutUpLeft {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
}
@keyframes rotateOutUpLeft {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: rotate(-45deg);
		transform: rotate(-45deg);
		opacity: 0;
	}
}
.animate__rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
	-webkit-transform-origin: left bottom;
	transform-origin: left bottom;
}
@-webkit-keyframes rotateOutUpRight {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}
@keyframes rotateOutUpRight {
	0% {
		opacity: 1;
	}
	to {
		-webkit-transform: rotate(90deg);
		transform: rotate(90deg);
		opacity: 0;
	}
}
.animate__rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
	-webkit-transform-origin: right bottom;
	transform-origin: right bottom;
}
@-webkit-keyframes hinge {
	0% {
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	40%,
	80% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-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-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	20%,
	60% {
		-webkit-transform: rotate(80deg);
		transform: rotate(80deg);
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}
	40%,
	80% {
		-webkit-transform: rotate(60deg);
		transform: rotate(60deg);
		-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;
	}
}
.animate__hinge {
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-duration: calc(var(--animate-duration) * 2);
	animation-duration: calc(var(--animate-duration) * 2);
	-webkit-animation-name: hinge;
	animation-name: hinge;
	-webkit-transform-origin: top left;
	transform-origin: top left;
}
@-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);
	}
}
.animate__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: translateZ(0);
		transform: translateZ(0);
	}
}
@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: translateZ(0);
		transform: translateZ(0);
	}
}
.animate__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);
	}
}
.animate__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;
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__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;
	}
}
.animate__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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.animate__zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}
@-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);
	}
}
@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);
	}
}
.animate__zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft;
	-webkit-transform-origin: left center;
	transform-origin: left center;
}
@-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);
	}
}
@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);
	}
}
.animate__zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight;
	-webkit-transform-origin: right center;
	transform-origin: right center;
}
@-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-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-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}
.animate__zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}
@-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);
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__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);
	}
}
.animate__slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}

@charset "UTF-8";
/**
 * Clay 3.63.0
 *
 * SPDX-FileCopyrightText: © 2020 Liferay, Inc. <https://liferay.com>
 * SPDX-FileCopyrightText: © 2020 Contributors to the project Clay <https://github.com/liferay/clay/graphs/contributors>
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */
/**
 * Bootstrap v4.4.1
 *
 * SPDX-FileCopyrightText: © 2019 Twitter, Inc. <https://twitter.com>
 * SPDX-FileCopyrightText: © 2019 The Bootstrap Authors <https://getbootstrap.com/>
 *
 * SPDX-License-Identifier: LicenseRef-MIT-Bootstrap
 */
.loadingmask-message {
	background: transparent;
	border-width: 0;
	display: block;
	height: 1em;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	text-align: left;
	width: 1em;
}
.loadingmask-message .loadingmask-message-content {
	-webkit-animation: loading-animation 1.2s infinite ease-out;
	animation: loading-animation 1.2s infinite ease-out;
	background: transparent;
	border-radius: 50%;
	border-width: 0;
	clear: both;
	color: transparent;
	height: 1em;
	margin: 0;
	overflow: hidden;
	padding: 0;
	position: relative;
	transform: translateZ(0);
	width: 1em;
}

.logo {
	display: inline-block;
	line-height: 1;
	vertical-align: middle;
}

.portal-iframe #main-content {
	width: 100%;
}

.separator {
	border-top: 1px solid #cdced9;
}

.entry-status {
	border-left: 4px solid transparent;
}

span.alert {
	display: inline-block;
}

.quick-access-nav {
	position: absolute;
	top: -1000px;
	width: 100%;
	z-index: 1000;
}
.quick-access-nav a {
	background: #333;
	background: rgba(51, 51, 51, 0.9);
	border: 1px solid #fff;
	left: 0;
	outline: none;
	padding: 8px;
	position: absolute;
	right: 0;
	text-align: center;
}
.quick-access-nav a:focus {
	color: #fff;
	top: 1000px;
}

@media (max-width: 991.98px) {
	.responsive-table-horizontal {
		display: block;
		position: relative;
		width: 100%;
	}
	.responsive-table-horizontal:after {
		clear: both;
		content: '';
		display: block;
		font-size: 0;
		height: 0;
		visibility: hidden;
	}
	.responsive-table-horizontal tbody {
		display: block;
		overflow-x: auto;
		position: relative;
		white-space: nowrap;
		width: auto;
	}
	.responsive-table-horizontal tbody tr {
		display: inline-block;
		vertical-align: top;
	}
	.responsive-table-horizontal tbody tr td {
		display: block;
		margin-bottom: 20px;
	}
	.responsive-table-horizontal tbody tr td:first-child {
		text-align: left;
	}
	.responsive-table-horizontal thead {
		display: block;
		float: left;
		margin-right: 10px;
	}
	.responsive-table-horizontal thead:after {
		clear: both;
		content: '';
		display: block;
		font-size: 0;
		height: 0;
		visibility: hidden;
	}
	.responsive-table-horizontal thead th {
		display: block;
		margin-bottom: 20px;
		text-align: right;
	}
	.responsive-table-horizontal thead th:first-child {
		text-align: right;
	}
}

.important {
	font-weight: bold;
}

.highlight {
	background: #ffc;
	font-weight: bold;
	margin: 0 1px;
}

.hide-accessible {
	clip: rect(0 0 0 0) !important;
	position: absolute !important;
}

.force-offset {
	display: block !important;
	position: absolute !important;
	visibility: hidden !important;
}

.unselectable,
.unselectable * {
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.cke_toolbar.cke_toolbar__a11yhelpbtn .cke_toolgroup,
.cke_toolbar.cke_toolbar__a11yhelpbtn .cke_toolgroup:hover {
	background: transparent;
}

.cke_toolbar.cke_toolbar__a11yhelpbtn .cke_button:hover {
	background: transparent;
}

.cke_toolbar.cke_toolbar__a11yhelpbtn .cke_button .cke_button_label:after {
	border-color: #a6a6a6;
	font-family: 'Courier New', Courier, 'Lucida Sans Typewriter',
		'Lucida Typewriter', monospace;
}

.lfr-asset-category-container .no-matches {
	color: #999;
}

.lfr-asset-category-search-container {
	background-color: #d3dadd;
	border-bottom-color: #aeb8bc;
}

.lfr-asset-category-list a.selected {
	background-color: #eee;
}

.lfr-categories-selector-search-results-path {
	color: #575757;
	font-size: 0.9em;
	text-align: right;
	width: 25%;
}

.lfr-asset-column-actions-content {
	background-color: #d7f1ff;
}

.lfr-asset-column-actions .lfr-asset-column-actions-content {
	border-color: #88c5d9;
}

.lfr-asset-column-details .lfr-asset-categories {
	color: #7d7d7d;
}
.lfr-asset-column-details .lfr-asset-categories .lfr-asset-category {
	color: #555;
}

.lfr-asset-column-details .lfr-asset-description {
	color: #444;
	font-style: italic;
	-ms-hyphens: none;
	-webkit-hyphens: none;
	hyphens: none;
}

.lfr-asset-column-details .lfr-asset-icon {
	border-right-color: #999;
	color: #999;
}

.lfr-asset-column-details .lfr-asset-tags {
	color: #7d7d7d;
}
.lfr-asset-column-details .lfr-asset-tags .tag {
	color: #555;
}

.lfr-asset-panels .lfr-panel.lfr-extended,
.lfr-asset-column-details .lfr-panel.lfr-extended {
	border-color: #ccc;
}

.lfr-form-row {
	border-bottom-color: #ccc;
}

.lfr-form-row:hover {
	border-bottom-color: #ccc;
}

.lfr-form-row .handle-sort-vertical {
	background: url(../images/application/handle_sort_vertical.png) no-repeat 0
		50%;
}

.dropdown.open > .dropdown-menu,
.overlay-content .open > .dropdown-menu {
	display: block;
}

.dropdown-menu > li > a,
.dropdown-menu .link-list > li > a {
	color: #6b6c7e;
	display: block;
	overflow: hidden;
	padding: 0.5rem 1.25rem;
}

.dropdown-menu > li.disabled > a,
.dropdown-menu .link-list > .disabled > a {
	box-shadow: none;
	color: #a7a9bc;
	cursor: not-allowed;
}

.lfr-edit-layout-panel .taglib-form-navigator .button-holder {
	background-color: #fff;
}

.form-control-inline {
	background-color: transparent;
	font-size: 1.125rem;
	font-weight: 700;
}
.form-control-inline:not(:hover) {
	border-color: transparent;
}
.form-control-inline::-webkit-input-placeholder {
	color: #a7a9bc;
	font-style: italic;
}
.form-control-inline::placeholder {
	color: #a7a9bc;
	font-style: italic;
}

.definition-of-terms dt {
	color: #333;
	font-weight: normal;
	width: 100%;
	word-break: break-word;
}
@media (min-width: 576px) {
	.definition-of-terms dt {
		width: auto;
	}
}

.lfr-code {
	background: #fff;
	border-color: #777;
	font-family: monospace;
}
.lfr-code tr td.line-numbers {
	background: #fafafa;
	color: #aaa;
	text-shadow: 1px 1px #fff;
}

.popup-alert-notice .countdown-timer {
	font-size: 1.1em;
	font-weight: bold;
}

.lfr-token {
	background-color: #b3daef;
	border-color: #5fa8ff;
	color: #444;
	text-decoration: none;
}
.lfr-token:hover {
	background-color: #d1e5ef;
}

.lfr-token-primary {
	font-weight: bold;
}
.lfr-token-primary,
.lfr-token-primary:hover {
	background-color: #b3daef;
}

.lfr-token-close:hover {
	text-decoration: none;
}

.lfr-button {
	background: no-repeat 0 50%;
}

.lfr-table > tbody > tr > th,
.lfr-table > thead > tr > th,
.lfr-table > tfoot > tr > th {
	font-weight: bold;
}

.lfr-checkbox-preselected {
	opacity: 0.5;
}

.lfr-header-row {
	border-bottom-color: #7b7b7b;
}
.lfr-header-row .lfr-search-combobox {
	border-color: #5f5f5f;
}

.openid-login input[type='text'] {
	background: url(../images/common/openid.gif) no-repeat;
	background-color: #fff;
	background-position: 0 50%;
	color: #000;
}

.page-extra-settings .lfr-panel-titlebar .lfr-panel-title {
	font-size: 1em;
}

.lfr-pagination .lfr-pagination-controls li .lfr-pagination-link {
	color: #333;
	font-weight: normal;
}

.lfr-panel.lfr-extended,
.lfr-panel-container,
.lfr-floating-container {
	border-color: #dedede #bfbfbf #bfbfbf #dedede;
}

.lfr-panel-container,
.lfr-floating-container {
	background: #fff;
}

.lfr-panel-titlebar .lfr-panel-title {
	font-size: 1.2em;
	font-weight: bold;
}

.lfr-panel-titlebar .lfr-panel-button {
	background: url(../images/application/panel_header_toggler_close.png)
		no-repeat 0 0;
}
.lfr-panel-titlebar .lfr-panel-button:hover {
	background-position: 0 100%;
}

.lfr-panel.lfr-collapsible .lfr-panel-titlebar {
	background: url(../images/arrows/05_down.png) no-repeat 2px 50%;
}

.lfr-panel.lfr-collapsed .lfr-panel-titlebar {
	background-image: url(../images/arrows/05_right.png);
}
.lfr-panel.lfr-collapsed .lfr-panel-titlebar .lfr-panel-button {
	background-image: url(../images/application/panel_header_toggler_open.png);
}

.lfr-panel.lfr-extended .lfr-panel-titlebar {
	background: #d6d6d6 url(../images/application/panel_header.png) repeat-x 0 0;
	border-bottom-color: #cdcdcd;
}

.lfr-panel-container .lfr-extended.lfr-collapsible .lfr-panel-titlebar {
	border-top-color: #cecece;
}

.js .lfr-floating-trigger {
	background-image: url(../images/arrows/05_down.png);
	background-position: 100% 50%;
	background-repeat: no-repeat;
	text-decoration: none;
}

.lfr-panel-page .panel-page-content {
	border-left-color: #ccc;
}

.lfr-panel-page .lfr-add-content h2 {
	border-color: #ccc;
}
.lfr-panel-page .lfr-add-content h2 span {
	background: #efefef;
}

.lfr-panel-page .lfr-add-content .lfr-content-category h2 {
	border-bottom-color: #ccc;
}
.lfr-panel-page .lfr-add-content .lfr-content-category h2 span {
	background: none;
}

.lfr-panel-content .paginator-container {
	background: #cfd2d5;
	border-bottom-color: #dcdee0;
	border-top-color: #dcdee0;
}

.lfr-panel-content .paginator-page-container .paginator-page-link {
	background: none;
	border-color: #cfd2d5;
}
.lfr-panel-content
	.paginator-page-container
	.paginator-page-link.paginator-current-page {
	background: #99a7b3 url(../images/application/current_page_hover_bg.png)
		repeat-x 0 0;
	border-color: #6b7785 #7c8994 #919fa9;
	color: #fff;
	font-weight: bold;
}
.lfr-panel-content
	.paginator-page-container
	.paginator-page-link.paginator-current-page:hover {
	background: #5094d7 url(../images/application/current_page_bg.png) repeat-x 0
		0;
	border-color: #31659c #396ea8 #4c8ccb;
}

#portlet-set-properties fieldset fieldset legend {
	font-size: 1.1em;
}

.lfr-preview-file-content {
	border-bottom-color: #6d6d6e;
}

.lfr-preview-file-image-current-column,
.lfr-preview-file-video-current-column {
	background: url(../images/common/checkerboard.png);
}

.lfr-preview-file-toolbar {
	background: #333;
	opacity: 0.5;
}
.lfr-preview-file-toolbar .icon-arrow-1-l {
	background: url(../images/document_library/preview_left.png) no-repeat 0 50%;
}
.lfr-preview-file-toolbar .icon-arrow-1-r {
	background: url(../images/document_library/preview_right.png) no-repeat 0 50%;
}
.lfr-preview-file-toolbar .icon-zoomin {
	background: url(../images/document_library/preview_zoom.png) no-repeat 0 50%;
}

.lfr-preview-file-image-current-column:hover .lfr-preview-file-toolbar {
	opacity: 1;
}

.lfr-preview-file-info {
	background: #333;
	color: #fff;
	opacity: 0.5;
}
.lfr-preview-file-info:hover {
	opacity: 1;
}

.lfr-preview-file-index {
	font-weight: bold;
}

.lfr-preview-file-image-current {
	background: url(../images/aui/loading_indicator.gif) no-repeat 50% 50%;
}

.lfr-preview-file-image img {
	background: url(../images/aui/loading_indicator.gif) no-repeat 50% 50%;
	border-color: #aeb8bc;
}

.lfr-preview-file-image-selected img,
.lfr-preview-file-image:hover img {
	border-color: #00a2ea;
}

.lfr-preview-file-loading-indicator {
	background: #333;
	color: #fff;
}

.lfr-preview-file-image-overlay-content {
	background: url(../images/common/checkerboard.png);
	border-color: #555;
}

textarea.lfr-editor-textarea {
	font-family: monospace;
}

.lfr-rich-editor.ace_editor {
	border-color: #a1a2a4;
}

.lfr-plain-editor textarea,
.lfr-rich-editor.ace_editor {
	font-family: 'Monaco', 'Menlo', 'Droid Sans Mono', 'Courier New', monospace;
	font-size: 12px;
}

.sidebar-sm {
	font-size: 0.875rem;
}
.sidebar-sm .sheet-subtitle {
	font-size: 0.75rem;
	margin-bottom: 1rem;
}
.sidebar-sm .form-group {
	margin-bottom: 1rem;
}
.sidebar-sm .form-control {
	border-radius: 0.1875rem;
	font-size: 0.875rem;
	height: 2rem;
	line-height: 1.5;
	min-height: auto;
	padding: 0.25rem 0.75rem;
}
.sidebar-sm .form-control.form-control-tag-group {
	height: auto;
}
.sidebar-sm .form-control.form-control-tag-group .form-control-inset {
	margin-bottom: 0;
	margin-top: 0;
}
.sidebar-sm .form-control.form-control-tag-group .label {
	margin-bottom: 0;
	margin-top: 0;
	padding: 0 0.25rem;
}
.sidebar-sm .form-control[type='file'] {
	padding: 0;
}
.sidebar-sm select.form-control {
	padding-right: 1.6rem;
}
.sidebar-sm select.form-control:not([size]) {
	height: 2rem;
}
.sidebar-sm
	.article-content-description
	.input-localized.input-localized-editor
	.input-group-item
	.wrapper
	.form-control {
	min-height: auto;
	padding: 0.285rem 0.75rem;
}
.sidebar-sm .btn:not(.btn-unstyled) {
	border-radius: 0.1875rem;
	font-size: 0.875rem;
	line-height: 1.15;
	padding: 0.4375rem 0.75rem;
}
.sidebar-sm .btn:not(.btn-unstyled).close {
	padding: 0.4375rem;
}
.sidebar-sm .btn.btn-monospaced,
.sidebar-sm .btn.btn-monospaced.btn-sm {
	height: 2rem;
	padding: 0.1875rem 0;
	width: 2rem;
}
.sidebar-sm .btn.btn-monospaced.input-localized-trigger,
.sidebar-sm .btn.btn-monospaced.btn-sm.input-localized-trigger {
	padding: 0;
}
.sidebar-sm .input-group-item .input-group-text {
	font-size: 0.875rem;
	height: 2rem;
	min-width: 2rem;
	padding-left: 0.75rem;
	padding-right: 0.75rem;
}
.sidebar-sm .input-group-item .btn .btn-section {
	font-size: 0.5625rem;
}
.sidebar-sm .list-group-item-flex {
	padding: 0.5rem 0.25rem;
}
.sidebar-sm .list-group-item-flex .autofit-col {
	padding-left: 0.25rem;
	padding-right: 0.25rem;
}

.lfr-spa-loading-bar {
	background: #2fa4f5;
}

.lfr-tag-selector-popup label {
	border-bottom-color: #eee;
}

.lfr-tag-selector-popup .no-matches {
	color: #999;
}

.lfr-toolbar {
	background-color: #e5e4e8;
}
.lfr-toolbar .lfr-button:focus {
	border-color: #000;
}
.lfr-toolbar .lfr-button:hover {
	border-color: #ccc #777 #777;
}
.lfr-toolbar .lfr-separator {
	border-left-color: #fff;
	border-right-color: #ccc;
	font-size: 12px;
}

.lfr-toolbar .lfr-button,
.lfr-emoticon-container .lfr-button {
	border-color: #e5e4e8;
}

.lfr-emoticon-container {
	background: #e5e4e8;
	border-color: #ccc;
}

.lfr-translation-manager
	.lfr-translation-manager-available-translations
	.lfr-translation-manager-available-translations-links {
	line-height: 1;
}

.lfr-translation-manager .lfr-translation-manager-translation {
	text-decoration: none;
}
.lfr-translation-manager .lfr-translation-manager-translation:hover {
	background-color: #d1e5ef;
}
.lfr-translation-manager
	.lfr-translation-manager-translation.lfr-translation-manager-translation-editing {
	background-color: #598bec;
	border-color: #224fa8;
	color: #fff;
}

.lfr-tree a {
	text-decoration: none;
}

.tree-drag-helper {
	z-index: 1035;
}

.lfr-upload-container .upload-target {
	border-color: #ddd;
}
.lfr-upload-container .upload-target h4 span {
	text-transform: lowercase;
}
.lfr-upload-container .upload-target .drop-file-text {
	font-weight: normal;
}

.lfr-upload-container a.browse-button {
	background-image: url(../images/common/add.png);
	background-repeat: no-repeat;
	color: white;
	font-size: 1.2em;
	font-weight: bold;
	text-decoration: none;
}

.lfr-upload-container a.clear-uploads {
	background-image: url(../images/common/remove.png);
	background-repeat: no-repeat;
}

.lfr-upload-container a.cancel-uploads {
	background-image: url(../images/common/close.png);
	background-repeat: no-repeat;
}

.lfr-upload-container .upload-list-info h4 {
	font-size: 1.3em;
}

.lfr-upload-container .cancel-button {
	color: #869cad;
}

.lfr-upload-container .delete-button {
	color: #869cad;
}

.lfr-upload-container .file-added .success-message {
	font-weight: normal;
}

.lfr-upload-container .upload-error {
	opacity: 1;
}

.lfr-upload-container .multiple-files .upload-error {
	background: #fdd url(../images/messages/error.png) no-repeat 5px 5px;
	border-color: #900;
	color: #900;
	font-weight: normal;
	margin-bottom: 16px;
	padding: 8px 8px 8px 24px;
}

.lfr-upload-container .upload-complete .error-message,
.lfr-upload-container .upload-complete .success-message {
	font-weight: bold;
}

.lfr-upload-container .file-uploading {
	background-color: #ffc;
}

.upload-drop-active .lfr-upload-container .upload-target {
	background-color: #ddedde;
	border-color: #7d7;
	border-style: dashed;
}

.app-view-entry:hover .entry-thumbnail {
	border-color: #7abfdd;
}

.app-view-entry.selected .entry-thumbnail {
	border-color: #057cb0;
}

.app-view-entry.selected .entry-metadata dt,
.app-view-entry.selected .entry-metadata dd,
.app-view-entry.selected .entry-metadata .entry-categories,
.app-view-entry.selected .entry-metadata .entry-tags,
.app-view-entry.selected .entry-metadata .entry-description {
	color: #f0f0f0;
}

.app-view-entry .entry-title {
	font-weight: bold;
}

.app-view-entry .entry-link {
	text-decoration: none;
}

.app-view-entry .entry-metadata dt,
.app-view-entry .entry-metadata dd,
.app-view-entry .entry-metadata .entry-categories,
.app-view-entry .entry-metadata .entry-tags,
.app-view-entry .entry-metadata .entry-description {
	color: #333;
	word-wrap: break-word;
}

.app-view-entry
	.entry-metadata
	.entry-categories
	.taglib-asset-categories-summary {
	font-weight: bold;
}
.app-view-entry
	.entry-metadata
	.entry-categories
	.taglib-asset-categories-summary
	.asset-category {
	font-weight: normal;
}

.app-view-entry.selected,
.app-view-entry.selected:hover {
	background-color: #00a2ea;
}

.app-view-entry.selected a,
.app-view-entry.selected a:focus,
.app-view-entry.selected a:hover {
	color: #fff;
}

.app-view-entry.selected a .lfr-icon-menu-arrow {
	color: #333;
}

.app-view-entry.active-area,
.app-view-entry.active-area.hover,
.app-view-entry.active-area td {
	background-color: #5ad300;
}

.app-view-entry:hover,
.app-view-entry.hover {
	background-color: #d3e8f1;
}

.app-view-entry a.entry-link:hover {
	text-decoration: none;
}
.app-view-entry
	a.entry-link:hover
	.entry-metadata
	.entry-title
	.entry-title-text {
	text-decoration: underline;
}

.app-view-entry-taglib.entry-display-style.display-icon .entry-title {
	font-weight: normal;
}

.app-view-search-entry-taglib .entry-discussion a,
.app-view-search-entry-taglib .entry-attachment a {
	text-decoration: none;
}

.app-view-search-entry-taglib .entry-discussion:hover,
.app-view-search-entry-taglib .entry-attachment:hover {
	background-color: #d3e8f1;
}

.app-view-search-entry-taglib .entry-folder {
	color: #999;
}

.app-view-search-entry-taglib .entry-link .entry-thumbnail-image {
	color: #000;
	text-decoration: none;
}

.app-view-search-entry-taglib.alt {
	background-color: #edf0f3;
}

.app-view-search-entry-taglib.search {
	background-color: #fff;
}
.app-view-search-entry-taglib.search.alt {
	background-color: #e2e5e8;
}

.app-view-taglib .display-style .icon {
	background-image: url(../images/application/layouts.png);
	background-repeat: no-repeat;
}

.app-view-taglib .icon-display-descriptive {
	background-position: -32px 0;
}

.app-view-taglib .icon-display-icon {
	background-position: -16px 0;
}

.app-view-taglib .icon-display-list {
	background-position: 0 0;
}

.app-view-taglib .state-active .icon-display-descriptive {
	background-position: -32px 100%;
}

.app-view-taglib .state-active .icon-display-icon {
	background-position: -16px 100%;
}

@media (max-width: 767.98px) {
	.navbar
		.nav-display-style-buttons
		.display-style-buttons
		> .dropdown
		> .dropdown-menu {
		background-color: transparent;
		box-shadow: none;
	}
}

.navbar
	.nav-display-style-buttons
	.display-style-buttons-container
	.dropdown-toggle
	.caret {
	border-bottom-color: #333;
	border-top-color: #333;
}

.taglib-asset-metadata .metadata-entry-label {
	font-weight: normal;
}

.taglib-asset-metadata .metadata-author {
	font-weight: bold;
}

.taglib-asset-metadata .metadata-entry {
	color: #999;
}

.taglib-asset-metadata .metadata-author .asset-user-info .user-info {
	color: #009ae5;
	font-size: 14px;
	line-height: 14px;
}

.taglib-asset-metadata .metadata-author .asset-user-info .date-info {
	color: #8c8c8c;
	font-size: 13px;
}

.taglib-calendar table {
	border-color: #999;
}

.taglib-calendar tr th,
.taglib-calendar tr td {
	border-bottom-color: #999;
}

.taglib-calendar tr.portlet-section-header th,
.taglib-calendar tr td {
	border-color: #999;
}

.taglib-calendar a:hover,
.taglib-calendar a:focus {
	background-color: #ccc;
}

.taglib-calendar .calendar-inactive {
	color: #999;
}

.taglib-calendar .has-events a span {
	background: url(../images/calendar/event_indicator.png) no-repeat 50% 95%;
}

.taglib-calendar .has-events.calendar-current-day a span {
	background-image: url(../images/calendar/event_indicator_current.png);
}

.taglib-diff-addedline,
#taglib-diff-results ins {
	background: #e6ffe6;
}

.taglib-diff-context {
	background: #eee;
}

.taglib-diff-deletedline,
#taglib-diff-results del {
	background: #ffe6e6;
}

.taglib-diff-html div.diff-removed-image {
	background: #fdc6c6 url(../images/diff/minus.png);
}

.taglib-diff-html div.diff-added-image {
	background: #cfc url(../images/diff/plus.png) no-repeat;
}

.taglib-diff-html div.diff-removed-image,
.taglib-diff-html div.diff-added-image {
	opacity: 0.55;
}

.taglib-diff-html span.diff-html-added {
	background-color: #cfc;
	font-size: 1em;
}
.taglib-diff-html span.diff-html-added img {
	border-color: #cfc;
}

.taglib-diff-html span.diff-html-changed {
	background: url(../images/diff/underline.png) bottom repeat-x;
}
.taglib-diff-html span.diff-html-changed img {
	border-color: #009;
}

.taglib-diff-html span.diff-html-removed {
	background-color: #fdc6c6;
	font-size: 1em;
	text-decoration: line-through;
}
.taglib-diff-html span.diff-html-removed img {
	border-color: #fdc6c6;
}

.diff-version-comparator .taglib-diff-html .diff-html-changed {
	background-image: none;
	border-bottom-color: #009ae5;
}
.diff-version-comparator .taglib-diff-html .diff-html-changed img {
	border-color: #009ae5;
}

.diff-version-comparator .diff-target-selector {
	border-left-color: #e5e5e5;
}

.diff-version-comparator .diff-version-filter {
	background-color: #f9f9f9;
}

.taglib-discussion
	.lfr-discussion
	.lfr-discussion-form-edit
	.alloy-editor-placeholder {
	border-left-color: #dbdde1;
}

@media (min-width: 576px) {
	.taglib-discussion .lfr-discussion-details .taglib-user-display {
		word-wrap: break-word;
	}
}

.taglib-discussion
	.lfr-discussion-details
	.taglib-user-display
	.user-details
	.user-name {
	font-weight: bold;
	text-decoration: none;
}
.taglib-discussion
	.lfr-discussion-details
	.taglib-user-display
	.user-details
	.user-name:hover {
	text-decoration: underline;
}

.taglib-discussion
	.lfr-discussion-details
	.taglib-user-display
	.user-profile-image
	.avatar {
	background-size: 50px;
}

.taglib-discussion .lfr-discussion-actions li a,
.taglib-discussion .lfr-discussion-actions li a span {
	text-decoration: none;
}

.taglib-discussion .lfr-discussion-actions li a:hover span,
.taglib-discussion .lfr-discussion-actions li a:focus span {
	text-decoration: underline;
}

.taglib-discussion .lfr-discussion-form-container .lfr-discussion-form {
	background: #ddd;
	border-radius: 4px;
}
.taglib-discussion
	.lfr-discussion-form-container
	.lfr-discussion-form
	.taglib-user-display
	.user-profile-image
	.avatar {
	background-size: 40px;
}

.lfr-discussion-reply.popover .lfr-discussion-reply-user-name {
	font-weight: bold;
}

.drop-zone.drop-enabled:not(.no-border) {
	outline-color: rgba(176, 180, 187, 0.5);
}

.drop-here-info .drop-icons span:nth-of-type(1),
.drop-here-info .drop-icons span:nth-of-type(3) {
	background: #e8e6e8;
	color: #a5a6ac;
}

.drop-here-info .drop-icons span:nth-of-type(2) {
	background: #00c2ff;
	color: #fff;
}

.drop-here-info .drop-text {
	color: #fff;
}

.drop-active .drop-here-info {
	background-color: rgba(0, 0, 0, 0.6);
	z-index: 100;
}

.lfr-ddm-field-group {
	margin-bottom: 20px;
}

.lfr-ddm-field-group-inline {
	display: inline-block;
	vertical-align: bottom;
}

.taglib-form-navigator > .form-steps > ul.form-navigator.list-group {
	background: transparent;
}
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab.active {
	background: transparent;
	opacity: 1;
}
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab.active
	.tab-label:hover,
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab.active
	.tab-label:focus {
	background: transparent;
}
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab.active
	.tab-label
	.message {
	color: #000;
	opacity: 0.7;
}
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab.active
	.tab-label
	.number {
	background: #333;
	font-size: 18px;
	opacity: 1;
}
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab.active
	.tab-label
	.tab-icon {
	color: #333;
}
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab
	.tab-label {
	background: transparent;
	outline: 0;
}
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab
	.tab-label:hover,
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab
	.tab-label:focus {
	text-decoration: none;
}
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab
	.tab-label:hover
	.number,
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab
	.tab-label:focus
	.number {
	opacity: 1;
}
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab
	.tab-label
	.number {
	background: #ccc;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	opacity: 0.6;
	text-decoration: none;
}
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab
	.tab-label
	.message {
	color: #000;
	font-size: 12px;
}

.taglib-header {
	border-bottom-color: #c8c9ca;
	color: #555;
}
.taglib-header .header-back-to a {
	font-weight: bold;
	text-decoration: none;
}

a.taglib-icon,
a.taglib-icon:focus,
a.taglib-icon:hover {
	text-decoration: none;
}

a.taglib-icon:focus .taglib-text,
a.taglib-icon:hover .taglib-text {
	text-decoration: underline;
}

a.taglib-icon.btn:focus .taglib-text,
a.taglib-icon.btn:hover .taglib-text {
	text-decoration: none;
}

.taglib-icon[lang] > img {
	vertical-align: baseline;
	width: 16px;
}

.taglib-icon-label {
	margin-left: 12px;
}

.input-localized .palette-item-inner .lfr-input-localized-flag {
	font-size: 16px;
	opacity: 0.5;
}

.input-localized.input-localized-focused
	.palette-item-inner
	.lfr-input-localized-flag {
	opacity: 1;
}

.input-localized .palette-item-inner {
	border-color: #666;
}

.input-localized .palette-item,
.input-localized .palette-item-inner,
.input-localized .palette-item-hover,
.input-localized .palette-item-hover .palette-item-inner {
	border-color: transparent;
}

.input-localized .lfr-input-localized .lfr-input-localized-state {
	background: #ddd;
}
.input-localized
	.lfr-input-localized
	.lfr-input-localized-state.lfr-input-localized-state-error {
	background: #ff0047;
}

.input-localized .palette-item-selected .lfr-input-localized-state {
	background: #27c1f2;
}

.taglib-move-boxes .choice-selector label {
	background: #ebf1f9;
	border-bottom-color: #8db2f3;
}

.taglib-move-boxes .sortable-container .move-option {
	background-color: transparent;
}
.taglib-move-boxes .sortable-container .move-option.move-option-dragging {
	background-color: #fafafa;
}
.taglib-move-boxes .sortable-container .move-option .handle {
	color: #999;
}

.taglib-image-selector .change-image-controls {
	background: #fff;
}

.taglib-image-selector .selection-status {
	background: #fff;
	opacity: 0;
	z-index: -1;
}

.taglib-image-selector .progress-wrapper .progressbar {
	background: #b0b4bb;
	opacity: 0.7;
}

.taglib-image-selector.check-active .selection-status {
	opacity: 1;
	z-index: 0;
}

.taglib-image-selector.drop-active {
	outline-width: 0;
}
.taglib-image-selector.drop-active .browse-image-controls {
	opacity: 0;
}
.taglib-image-selector.drop-active .selection-status {
	opacity: 0;
}
.taglib-image-selector.drop-active .image-wrapper {
	opacity: 0.15;
}
.taglib-image-selector.drop-active .error-wrapper {
	opacity: 0;
}

.taglib-image-selector.progress-active .image-wrapper {
	opacity: 0.15;
}

.taglib-image-selector.progress-active .browse-image-controls {
	opacity: 0;
}

.taglib-image-selector.progress-active .drop-here-info {
	opacity: 0;
}

.taglib-image-selector.progress-active .selection-status {
	opacity: 0;
}

.portal-popup {
	background-color: #fff;
}

.portlet-item-selector .management-bar {
	border-bottom-color: #e7e7ed;
}

.item-selector .card-row > .autofit-col-expand {
	padding-top: 4px;
}

.item-selector .drop-zone {
	background-color: #f1f2f5;
}

.item-selector .input-file {
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	width: 0.1px;
	z-index: -1;
}
.item-selector .input-file + label {
	position: relative;
}
.item-selector .input-file + label::before {
	border-radius: 4px;
	bottom: -2px;
	content: '';
	display: block;
	left: -2px;
	position: absolute;
	right: -2px;
	top: -2px;
	transition: box-shadow 0.15s ease-in-out;
}
.item-selector .input-file:focus + label::before {
	box-shadow: 0 0 0 2px #fff, 0 0 0 4px #80acff;
}

.lfr-tree-display-page .tree-node .tree-node-over .tree-label {
	text-decoration: none;
}

.lfr-tree-display-page .tree-label {
	cursor: default;
}
.lfr-tree-display-page .tree-label a {
	color: black;
}
.lfr-tree-display-page .tree-label .layout-page-invalid {
	color: #aaa;
	font-style: italic;
}
.lfr-tree-display-page .tree-label .layout-page-invalid:hover {
	cursor: default;
	text-decoration: none;
}

.lfr-tree-radio.lfr-tree-root-node-hidden .lfr-root-node + .tree-container {
	margin-left: 0;
}

.lfr-map {
	border-color: #ccc;
}
.lfr-map .search-controls {
	font-size: 15px;
}

.navbar .navbar-search {
	background-color: #f3f3f3;
}
@media (min-width: 576px) {
	.navbar .navbar-search {
		background-color: transparent;
	}
}

.taglib-portlet-preview.show-borders {
	border-color: #828f95;
}
.taglib-portlet-preview.show-borders .title {
	background-color: #d3dadd;
	font-size: 1.4em;
	font-weight: bold;
}

.lfr-search-container-wrapper.lfr-search-container-fixed-first-column {
	position: relative;
}
@media (min-width: 576px) {
	.lfr-search-container-wrapper.lfr-search-container-fixed-first-column
		.table-responsive {
		margin-left: 375px;
		width: auto;
	}
}
.lfr-search-container-wrapper.lfr-search-container-fixed-first-column
	.table-responsive
	.table {
	position: static;
}
.lfr-search-container-wrapper.lfr-search-container-fixed-first-column
	.table-responsive
	.table
	.lfr-search-iterator-fixed-header {
	left: 12px;
	position: fixed;
	right: 12px;
	top: -1px;
	z-index: 1020;
}
.lfr-search-container-wrapper.lfr-search-container-fixed-first-column
	.table-responsive
	.table
	.lfr-search-iterator-fixed-header
	> th {
	display: block;
	padding: 0;
}
.lfr-search-container-wrapper.lfr-search-container-fixed-first-column
	.table-responsive
	.table
	.lfr-search-iterator-fixed-header
	> th
	.lfr-search-iterator-fixed-header-inner-wrapper {
	overflow-x: hidden;
}
@media (min-width: 576px) {
	.lfr-search-container-wrapper.lfr-search-container-fixed-first-column
		.table-responsive
		.table
		.lfr-search-iterator-fixed-header
		> th
		.lfr-search-iterator-fixed-header-inner-wrapper {
		margin-left: 375px;
	}
}
.lfr-search-container-wrapper.lfr-search-container-fixed-first-column
	.table-responsive
	.table
	.lfr-search-iterator-fixed-header
	> th
	.lfr-search-iterator-fixed-header-inner-wrapper
	table {
	border-collapse: collapse;
	width: 100%;
}
.lfr-search-container-wrapper.lfr-search-container-fixed-first-column
	.table-responsive
	.table
	.lfr-search-iterator-fixed-header
	> th
	.lfr-search-iterator-fixed-header-inner-wrapper
	table
	th {
	border-radius: 0;
}
.lfr-search-container-wrapper.lfr-search-container-fixed-first-column
	.table-responsive
	.table
	td,
.lfr-search-container-wrapper.lfr-search-container-fixed-first-column
	.table-responsive
	.table
	th {
	width: auto;
}
@media (min-width: 576px) {
	.lfr-search-container-wrapper.lfr-search-container-fixed-first-column
		.table-responsive
		.table
		td:first-child,
	.lfr-search-container-wrapper.lfr-search-container-fixed-first-column
		.table-responsive
		.table
		th:first-child {
		left: 0;
		position: absolute;
		right: 15px;
	}
}
.lfr-search-container-wrapper.lfr-search-container-fixed-first-column
	.table-responsive
	.table
	th {
	height: auto;
}

.lfr-search-container-wrapper a:not(.component-action) {
	color: #272833;
}

.lfr-search-container-wrapper .lfr-icon-menu > .dropdown-toggle {
	color: #6b6c7e;
}
.lfr-search-container-wrapper .lfr-icon-menu > .dropdown-toggle:active,
.lfr-search-container-wrapper .lfr-icon-menu > .dropdown-toggle:focus,
.lfr-search-container-wrapper .lfr-icon-menu > .dropdown-toggle:hover {
	background-color: #f7f8f9;
	border-radius: 4px;
	color: #272833;
}

.lfr-search-container-wrapper .list-group {
	margin-bottom: 0;
}
.lfr-search-container-wrapper .list-group .list-group-item:nth-last-child(2) {
	border-bottom-left-radius: 0.25rem;
	border-bottom-right-radius: 0.25rem;
}
.lfr-search-container-wrapper .list-group .list-group-item h4 {
	font-size: 0.875rem;
	line-height: 1.5;
	margin-bottom: 0;
}
.lfr-search-container-wrapper .list-group .list-group-item h5,
.lfr-search-container-wrapper .list-group .list-group-item h6,
.lfr-search-container-wrapper .list-group .list-group-item .h5,
.lfr-search-container-wrapper .list-group .list-group-item .h6 {
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.5;
	margin-bottom: 0;
}
.lfr-search-container-wrapper .list-group .list-group-item span + h2.h5 {
	font-weight: 600;
}
.lfr-search-container-wrapper .list-group .list-group-item h6 + h5 {
	font-weight: 600;
}
.lfr-search-container-wrapper .list-group .list-group-item .checkbox {
	margin-top: 0;
}
.lfr-search-container-wrapper
	.list-group
	+ .taglib-search-iterator-page-iterator-bottom {
	margin-top: 20px;
}

.lfr-search-container-wrapper
	.table-list
	tbody
	tr:nth-last-child(2)
	td:first-child,
.lfr-search-container-wrapper
	.table-list
	tbody
	tr:nth-last-child(2)
	th:first-child {
	border-bottom-left-radius: 0.25rem;
}

.lfr-search-container-wrapper
	.table-list
	tbody
	tr:nth-last-child(2)
	td:last-child,
.lfr-search-container-wrapper
	.table-list
	tbody
	tr:nth-last-child(2)
	th:last-child {
	border-bottom-right-radius: 0.25rem;
}

.lfr-asset-type-column,
.lfr-author-column,
.lfr-city-column,
.lfr-country-column,
.lfr-email-address-column,
.lfr-job-title-column,
.lfr-region-column,
.lfr-removed-by-column,
.lfr-replier-column,
.lfr-scope-column,
.lfr-screen-name-column,
.lfr-type-column,
.lfr-user-column,
.lfr-users-column {
	word-wrap: break-word;
}
@media (min-width: 576px) {
	.lfr-asset-type-column,
	.lfr-author-column,
	.lfr-city-column,
	.lfr-country-column,
	.lfr-email-address-column,
	.lfr-job-title-column,
	.lfr-region-column,
	.lfr-removed-by-column,
	.lfr-replier-column,
	.lfr-scope-column,
	.lfr-screen-name-column,
	.lfr-type-column,
	.lfr-user-column,
	.lfr-users-column {
		max-width: 125px;
		min-width: 100px;
	}
}

.lfr-completion-date-column,
.lfr-create-date-column,
.lfr-date-column,
.lfr-display-date-column,
.lfr-expiration-date-column,
.lfr-last-post-date-column,
.lfr-modified-date-column,
.lfr-removed-date-column,
.lfr-reply-date-column,
.lfr-revision-column,
.lfr-size-column {
	white-space: nowrap;
}

.lfr-description-column,
.lfr-role-column {
	max-width: 375px;
	min-width: 375px;
}

.lfr-email-address-column,
.lfr-name-column,
.lfr-parent-organization-column,
.lfr-screen-name-column,
.lfr-title-column,
.lfr-url-column,
.lfr-wiki-column {
	max-width: 200px;
	min-width: 200px;
}

.lfr-email-column,
.lfr-mobile-column,
.lfr-website-column {
	min-width: 100px;
}
@media (min-width: 576px) {
	.lfr-email-column,
	.lfr-mobile-column,
	.lfr-website-column {
		min-width: 115px;
	}
}
.lfr-email-column .checkbox-container .form-group,
.lfr-mobile-column .checkbox-container .form-group,
.lfr-website-column .checkbox-container .form-group {
	margin-bottom: 0;
}

.taglib-search-toggle .toggle-advanced {
	color: inherit;
}
.taglib-search-toggle .toggle-advanced,
.taglib-search-toggle .toggle-advanced:hover,
.taglib-search-toggle .toggle-advanced:focus {
	text-decoration: none;
}

.taglib-search-toggle-advanced-wrapper .taglib-search-toggle-advanced {
	background-color: #fcfcfc;
	border-color: #ddd;
}
.taglib-search-toggle-advanced-wrapper
	.taglib-search-toggle-advanced
	.btn.close {
	margin-right: 5px;
}
.taglib-search-toggle-advanced-wrapper
	.taglib-search-toggle-advanced
	.taglib-search-toggle-advanced-content {
	position: relative;
}
.taglib-search-toggle-advanced-wrapper
	.taglib-search-toggle-advanced
	.taglib-search-toggle-advanced-content
	.match-fields {
	margin-bottom: 0;
}
.taglib-search-toggle-advanced-wrapper
	.taglib-search-toggle-advanced
	.taglib-search-toggle-advanced-content
	.match-fields-legend {
	color: #999;
	font-size: 13px;
}

.taglib-social-activities .day-separator {
	border-bottom-color: #ccc;
}

.taglib-social-bookmarks a.social-bookmark-link {
	background-repeat: no-repeat;
}

.taglib-user-display a .user-name {
	text-decoration: underline;
}

.taglib-user-display .avatar {
	background: no-repeat center;
	background-size: 60px;
}
.taglib-user-display .avatar.author:after {
	background: rgba(50, 168, 230, 0.5);
}

.taglib-user-display .user-name {
	font-size: 1.1em;
	font-weight: bold;
}

.taglib-webdav.visible {
	background: #f0f5f7;
}

.taglib-webdav table {
	border-color: #828f95;
}

.taglib-workflow-status .workflow-id,
.taglib-workflow-status .workflow-version,
.taglib-workflow-status .workflow-status {
	color: #999;
}

.aspect-ratio.aspect-ratio-8-to-3 {
	padding-bottom: 37.5%;
}

.lfr-autocomplete-input-list .yui3-aclist-list {
	margin: 0;
}

.liferay-autocomplete-input-mirror {
	left: -9999px;
	overflow-x: hidden;
	overflow-y: auto;
	position: absolute;
	top: -9999px;
	visibility: hidden;
	white-space: pre-wrap;
	word-wrap: break-word;
}

.card-tab-group .card-tab:nth-child(n + 2) {
	border-left: 4px solid #65b6f0;
	padding-left: 20px;
}
.card-tab-group .card-tab:nth-child(n + 2) .card-tab {
	border-left: 4px solid #93ccf5;
	padding-left: 20px;
}
.card-tab-group .card-tab:nth-child(n + 2) .card-tab .card-tab {
	border-left-color: #c2e2f9;
}
.card-tab-group .card-tab:nth-child(n + 2) .card-tab .card-tab .card-tab {
	border-left-width: 0;
	padding-left: 0;
}

.hsv-palette .hsv-view-container .hsv-label-value-hex .hsv-value {
	width: 95px;
}

.hsv-palette .hsv-view-container .hsv-value {
	width: 56px;
}

.yui3-color-picker-popover .palette-container {
	border-collapse: separate;
}

.portal-popup .hsv-palette-modal.modal-dialog {
	bottom: 0 !important;
	left: 0 !important;
	margin: 0;
	max-width: none;
	right: 0 !important;
	top: 0 !important;
	width: 100%;
}
@media (min-width: 768px) {
	.portal-popup .hsv-palette-modal.modal-dialog {
		bottom: auto !important;
		height: 100%;
		left: 50% !important;
		max-height: 375px;
		max-width: 650px;
		right: auto !important;
		top: 50% !important;
		transform: translate(-50%, -50%);
	}
}
.portal-popup .hsv-palette-modal.modal-dialog > .hsv-palette-modal-content {
	bottom: 0;
	left: 0;
	overflow: visible;
	position: absolute;
	right: 0;
	top: 0;
}
@media (max-width: 767.98px) {
	.portal-popup .hsv-palette-modal.modal-dialog > .hsv-palette-modal-content {
		border-radius: 0;
		border-width: 0;
	}
}
@media (max-width: 767.98px) {
	.portal-popup .hsv-palette-modal.modal-dialog .modal-body {
		padding: 1rem;
	}
}
.portal-popup .hsv-palette-modal.modal-dialog .hsv-default-size.hsv-container {
	width: 100%;
}
.portal-popup .hsv-palette-modal.modal-dialog .hsv-image-container {
	margin: 0;
}

.dialog-bd {
	min-height: 30px;
}

.dialog-content {
	border: 1px solid #c8c9ca;
	padding: 5px;
}

.portal-popup .sheet > .lfr-nav {
	margin-top: -24px;
}

.portal-popup .contacts-portlet .portlet-configuration-container .form {
	position: static;
}

.portal-popup .lfr-form-content {
	padding: 15px;
}

.portal-popup .portlet-body,
.portal-popup .portlet-boundary,
.portal-popup .portlet-column,
.portal-popup .portlet-layout {
	height: 100%;
}

.portal-popup .portlet-column {
	position: static;
}

.portal-popup .dialog-body > .container-fluid-1280,
.portal-popup .dialog-body .container-view,
.portal-popup .export-dialog-tree > .container-fluid-1280,
.portal-popup .export-dialog-tree .container-view,
.portal-popup .lfr-dynamic-uploader > .container-fluid-1280,
.portal-popup .lfr-dynamic-uploader .container-view,
.portal-popup .lfr-form-content > .container-fluid-1280,
.portal-popup .lfr-form-content .container-view,
.portal-popup .portlet-configuration-body-content > .container-fluid-1280,
.portal-popup .portlet-configuration-body-content .container-view,
.portal-popup .process-list > .container-fluid-1280,
.portal-popup .process-list .container-view,
.portal-popup .roles-selector-body > .container-fluid-1280,
.portal-popup .roles-selector-body .container-view {
	padding-top: 20px;
}
.portal-popup .dialog-body > .container-fluid-1280 > .nav-tabs-default,
.portal-popup .dialog-body > .container-fluid-1280 .nav-tabs-underline,
.portal-popup .dialog-body .container-view > .nav-tabs-default,
.portal-popup .dialog-body .container-view .nav-tabs-underline,
.portal-popup .export-dialog-tree > .container-fluid-1280 > .nav-tabs-default,
.portal-popup .export-dialog-tree > .container-fluid-1280 .nav-tabs-underline,
.portal-popup .export-dialog-tree .container-view > .nav-tabs-default,
.portal-popup .export-dialog-tree .container-view .nav-tabs-underline,
.portal-popup
	.lfr-dynamic-uploader
	> .container-fluid-1280
	> .nav-tabs-default,
.portal-popup
	.lfr-dynamic-uploader
	> .container-fluid-1280
	.nav-tabs-underline,
.portal-popup .lfr-dynamic-uploader .container-view > .nav-tabs-default,
.portal-popup .lfr-dynamic-uploader .container-view .nav-tabs-underline,
.portal-popup .lfr-form-content > .container-fluid-1280 > .nav-tabs-default,
.portal-popup .lfr-form-content > .container-fluid-1280 .nav-tabs-underline,
.portal-popup .lfr-form-content .container-view > .nav-tabs-default,
.portal-popup .lfr-form-content .container-view .nav-tabs-underline,
.portal-popup
	.portlet-configuration-body-content
	> .container-fluid-1280
	> .nav-tabs-default,
.portal-popup
	.portlet-configuration-body-content
	> .container-fluid-1280
	.nav-tabs-underline,
.portal-popup
	.portlet-configuration-body-content
	.container-view
	> .nav-tabs-default,
.portal-popup
	.portlet-configuration-body-content
	.container-view
	.nav-tabs-underline,
.portal-popup .process-list > .container-fluid-1280 > .nav-tabs-default,
.portal-popup .process-list > .container-fluid-1280 .nav-tabs-underline,
.portal-popup .process-list .container-view > .nav-tabs-default,
.portal-popup .process-list .container-view .nav-tabs-underline,
.portal-popup .roles-selector-body > .container-fluid-1280 > .nav-tabs-default,
.portal-popup .roles-selector-body > .container-fluid-1280 .nav-tabs-underline,
.portal-popup .roles-selector-body .container-view > .nav-tabs-default,
.portal-popup .roles-selector-body .container-view .nav-tabs-underline {
	margin-left: -12px;
	margin-right: -12px;
	margin-top: -20px;
}

.portal-popup .dialog-body > .lfr-nav + .container-fluid-1280,
.portal-popup .export-dialog-tree > .lfr-nav + .container-fluid-1280,
.portal-popup .lfr-dynamic-uploader > .lfr-nav + .container-fluid-1280,
.portal-popup .lfr-form-content > .lfr-nav + .container-fluid-1280,
.portal-popup
	.portlet-configuration-body-content
	> .lfr-nav
	+ .container-fluid-1280,
.portal-popup .process-list > .lfr-nav + .container-fluid-1280,
.portal-popup .roles-selector-body > .lfr-nav + .container-fluid-1280 {
	padding-top: 0;
}

.portal-popup .login-container {
	padding: 1.5rem;
}

.portal-popup .management-bar-default,
.portal-popup .navbar-default {
	border-left-width: 0;
	border-radius: 0;
	border-right-width: 0;
	border-top-width: 0;
	margin-bottom: 0;
}

.portal-popup .navbar ~ .portlet-configuration-setup,
.portal-popup .portlet-export-import-container {
	height: calc(100% - 48px);
	position: relative;
}
@media (min-width: 576px) {
	.portal-popup .navbar ~ .portlet-configuration-setup,
	.portal-popup .portlet-export-import-container {
		height: calc(100% - 48px);
	}
}

.portal-popup .panel-group .panel {
	border-left-width: 0;
	border-radius: 0;
	border-right-width: 0;
}

.portal-popup .panel-group .panel + .panel {
	border-top-width: 0;
	margin-top: 0;
}

.portal-popup .panel-heading {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.portal-popup .portlet-configuration-setup .lfr-nav {
	margin-left: auto;
	margin-right: auto;
	max-width: 1280px;
	padding-left: 3px;
	padding-right: 3px;
}
@media (min-width: 576px) {
	.portal-popup .portlet-configuration-setup .lfr-nav {
		padding-left: 8px;
		padding-right: 8px;
	}
}

.portal-popup .lfr-dynamic-uploader,
.portal-popup .process-list {
	bottom: 0;
	display: block;
	left: 0;
	overflow: auto;
	position: absolute;
	right: 0;
	top: 48px;
	-webkit-overflow-scrolling: touch;
}
@media (min-width: 576px) {
	.portal-popup .lfr-dynamic-uploader,
	.portal-popup .process-list {
		top: 48px;
	}
}

.portal-popup .portlet-export-import-publish-processes {
	top: 0;
}

.portal-popup .dialog-footer {
	background-color: #fff;
	border-top: 1px solid #e7e7ed;
	bottom: 0;
	display: flex;
	flex-direction: row-reverse;
	left: 0;
	margin: 0;
	padding: 10px 24px;
	width: 100%;
	z-index: 1020;
}
@media (min-width: 768px) {
	.portal-popup .dialog-footer {
		position: fixed;
	}
}
.portal-popup .dialog-footer .btn {
	margin-left: 1rem;
	margin-right: 0;
}

@media (min-width: 768px) {
	.portal-popup .dialog-body:not(:last-child),
	.portal-popup .lfr-dynamic-uploader:not(:last-child),
	.portal-popup .lfr-form-content:not(:last-child),
	.portal-popup .portlet-configuration-body-content:not(:last-child),
	.portal-popup .roles-selector-body:not(:last-child) {
		padding-bottom: 60px;
	}
}

.portal-popup .lfr-dynamic-uploader.hide-dialog-footer {
	bottom: 0;
}
.portal-popup .lfr-dynamic-uploader.hide-dialog-footer + .dialog-footer {
	display: none;
}

.portal-popup
	.portlet-configuration-edit-permissions
	.portlet-configuration-body-content {
	display: flex;
	flex-direction: column;
	overflow: visible;
}
.portal-popup
	.portlet-configuration-edit-permissions
	.portlet-configuration-body-content
	> form {
	flex-grow: 1;
	max-width: none;
	overflow: auto;
}

.portal-popup
	.portlet-configuration-edit-templates
	.portlet-configuration-body-content {
	bottom: 0;
}

.portlet-layout.dragging {
	border-collapse: separate;
}

.drop-area {
	background-color: #d3dadd;
}

.active-area {
	background: #ffc;
}

.portlet-boundary.yui3-dd-dragging {
	opacity: 0.6;
}
.portlet-boundary.yui3-dd-dragging .portlet {
	border: 2px dashed #ccc;
}

.sortable-layout-proxy {
	opacity: 1;
}
.sortable-layout-proxy .portlet-topper {
	background-image: none;
}

.proxy {
	cursor: move;
	opacity: 0.65;
	position: absolute;
}
.proxy.generic-portlet {
	height: 200px;
	width: 300px;
}
.proxy.generic-portlet .portlet-title {
	padding: 10px;
}
.proxy.not-intersecting .forbidden-action {
	background: url(../images/application/forbidden_action.png) no-repeat;
	display: block;
	height: 32px;
	position: absolute;
	right: -15px;
	top: -15px;
	width: 32px;
}

.resizable-proxy {
	border: 1px dashed #828f95;
	position: absolute;
	visibility: hidden;
}

.sortable-proxy {
	background: #727c81;
	margin-top: 1px;
}

.sortable-layout-drag-target-indicator {
	margin: 2px 0;
}

.yui3-dd-proxy {
	z-index: 1110 !important;
}

.lfr-editable {
	outline: 1px dashed #68bb30;
	outline-offset: 2px;
	position: relative;
}
.lfr-editable:after {
	background: #68bb30 url(../images/common/edit_white.png) no-repeat 50%;
	content: '';
	display: block;
	height: 20px;
	position: absolute;
	right: 5px;
	top: 5px;
	width: 30px;
}
.lfr-editable:focus:after {
	display: none;
}
.lfr-editable:focus:hover {
	background-color: transparent;
}
.lfr-editable:hover {
	background-color: rgba(255, 255, 255, 0.3);
	outline-color: #519226;
}
.lfr-editable:hover:after {
	background-color: #519226;
}

.lfr-editable-notice-close {
	margin-left: 1em;
}

.lfr-portlet-title-editable {
	margin-top: 0;
	z-index: 9999;
}
.lfr-portlet-title-editable .lfr-portlet-title-editable-content {
	padding: 0;
}
.lfr-portlet-title-editable .lfr-portlet-title-editable-content .field-input {
	margin-bottom: 0;
}
.lfr-portlet-title-editable
	.lfr-portlet-title-editable-content
	.textfield-label {
	display: none;
}
.lfr-portlet-title-editable
	.lfr-portlet-title-editable-content
	.btn-toolbar-content {
	display: inline-block;
	vertical-align: bottom;
}
.lfr-portlet-title-editable .lfr-portlet-title-editable-content .btn-group {
	margin-top: 0;
}
.lfr-portlet-title-editable .lfr-portlet-title-editable-content .btn {
	display: inline-block;
	float: none;
	margin-top: 0;
	width: auto;
}

.alloy-editor-container .alloy-editor {
	outline: 0;
}
.alloy-editor-container
	.alloy-editor.ae-placeholder
	~ .alloy-editor-placeholder {
	color: #2b4259;
}
.alloy-editor-container
	.alloy-editor.ae-placeholder
	~ .alloy-editor-placeholder:not(:focus) {
	border-left-color: #dbdde1;
	color: #b0b4bb;
}
.alloy-editor-container
	.alloy-editor.ae-placeholder
	~ .alloy-editor-placeholder.readonly
	~ .alloy-editor-placeholder {
	color: #ccc;
}

.alloy-editor-container .alloy-editor-icon {
	color: #869cad;
}

.has-error .alloy-editor-container .alloy-editor.ae-placeholder:not(:focus) {
	border-left-color: #c67;
}

.cke_editable_inline a {
	cursor: pointer;
}

.cke_panel.cke_combopanel {
	width: 220px;
}

.cke_panel.cke_panel,
.cke_panel.cke_combopanel {
	z-index: 100 !important;
}

.cke_panel_block .cke_panel_grouptitle {
	font-size: 20px;
	line-height: 20px;
	margin-top: 0;
}

.cke_panel_block .cke_panel_list {
	margin-left: 0;
}
.cke_panel_block .cke_panel_list .cke_panel_listItem {
	line-height: initial;
}
.cke_panel_block .cke_panel_list .cke_panel_listItem a:hover {
	text-decoration: none;
}

.cke_show_border {
	width: 500px;
}
.cke_show_border td {
	height: 15px;
}

.html-editor.portlet-message-boards {
	-ms-hyphens: none;
	-webkit-hyphens: none;
	hyphens: none;
	word-wrap: break-word;
}
.html-editor.portlet-message-boards blockquote {
	background: #eef0f2 url(../images/message_boards/quoteleft.png) no-repeat 5px
		5px;
	border: 1px solid #777;
	padding: 5px 45px;
}
.html-editor.portlet-message-boards blockquote:after {
	background: url(../images/message_boards/quoteright.png) no-repeat 50%;
	content: '';
	display: block;
	float: right;
	height: 24px;
	margin-right: -35px;
	margin-top: -25px;
	width: 31px;
	z-index: 999;
}
.html-editor.portlet-message-boards blockquote cite {
	display: block;
	font-weight: bold;
}
.html-editor.portlet-message-boards pre {
	background: #f9f9f9;
	border: 1px solid #777;
	padding: 0.5em;
}

.lfr-source-editor {
	border-color: #ccc;
}
.lfr-source-editor .lfr-source-editor-toolbar li > .btn {
	background-color: #fff;
	border: transparent;
	color: #717383;
	outline: 0;
}
.lfr-source-editor .lfr-source-editor-code {
	background-color: #fff;
	color: #2b4259;
}
.lfr-source-editor .lfr-source-editor-code .ace_gutter {
	background-color: #ededef;
	color: #868896;
	overflow: hidden;
}
.lfr-source-editor .lfr-source-editor-code .ace_gutter .ace_fold-widget {
	font-family: fontawesome-alloy;
	text-align: center;
	vertical-align: middle;
}
.lfr-source-editor
	.lfr-source-editor-code
	.ace_gutter
	.ace_fold-widget.ace_open,
.lfr-source-editor
	.lfr-source-editor-code
	.ace_gutter
	.ace_fold-widget.ace_closed {
	background-image: none;
}
.lfr-source-editor
	.lfr-source-editor-code
	.ace_gutter
	.ace_fold-widget.ace_open:before {
	content: '\25be';
}
.lfr-source-editor
	.lfr-source-editor-code
	.ace_gutter
	.ace_fold-widget.ace_closed:before {
	content: '\25b8';
}
.lfr-source-editor
	.lfr-source-editor-code
	.ace_gutter
	.ace_gutter-active-cell {
	color: #fff;
}
.lfr-source-editor
	.lfr-source-editor-code
	.ace_gutter
	.ace_gutter-active-line {
	background-color: #717383;
}
.lfr-source-editor .lfr-source-editor-code .ace_gutter .ace_gutter-layer {
	border-right: solid 1px #ccc;
}
.lfr-source-editor .lfr-source-editor-code .ace_gutter .ace_info {
	background-image: none;
}
.lfr-source-editor .lfr-source-editor-code .ace_content .ace_active-line {
	background-color: #ededef;
}
.lfr-source-editor .lfr-source-editor-code .ace_content .ace_constant {
	color: #34adab;
}
.lfr-source-editor .lfr-source-editor-code .ace_content .ace_tag {
	color: #1d5ec7;
}
.lfr-source-editor .lfr-source-editor-code .ace_content .ace_string {
	color: #ff6c58;
}
.lfr-source-editor .lfr-source-editor-code .ace_content .ace_string.ace_regex {
	color: #f00;
}
.lfr-source-editor.ace_dark .lfr-source-editor-code {
	background-color: #47474f;
	color: #fff;
}
.lfr-source-editor.ace_dark .lfr-source-editor-code .ace_gutter {
	background: #54555e;
	color: #fff;
}
.lfr-source-editor.ace_dark
	.lfr-source-editor-code
	.ace_gutter
	.ace_gutter-active-line {
	background-color: #009aed;
}
.lfr-source-editor.ace_dark
	.lfr-source-editor-code
	.ace_content
	.ace_active-line {
	background-color: #11394e;
}
.lfr-source-editor.ace_dark .lfr-source-editor-code .ace_content .ace_cursor {
	color: #fff;
}
.lfr-source-editor.ace_dark .lfr-source-editor-code .ace_content .ace_tag {
	color: #4d91ff;
}

.lfr-fullscreen-source-editor
	.lfr-fullscreen-source-editor-content
	.panel-splitter {
	border-color: #ccc;
}

.mce-content-body {
	text-align: start;
}

.file-icon-color-0 {
	background-color: #fff;
	color: #6b6c7e;
}

.file-icon-color-1 {
	background-color: #fff;
	color: #a7a9bc;
}

.file-icon-color-2 {
	background-color: #fff;
	color: #50d2a0;
}

.file-icon-color-3 {
	background-color: #fff;
	color: #af78ff;
}

.file-icon-color-4 {
	background-color: #fff;
	color: #ffb46e;
}

.file-icon-color-5 {
	background-color: #fff;
	color: #ff5f5f;
}

.file-icon-color-6 {
	background-color: #fff;
	color: #4b9bff;
}

.file-icon-color-7 {
	background-color: #fff;
	color: #272833;
}

.item-selector .item-selector-list-row:hover {
	background-color: #f0f5ff;
	cursor: pointer;
}

.lfr-item-viewer .image-viewer-base {
	outline: none;
}

.lfr-item-viewer .item-preview:hover {
	cursor: pointer;
}

.lfr-item-viewer .aspect-ratio a.item-preview {
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}

.lfr-item-viewer .search-info {
	background-color: #d3e8f1;
}
.lfr-item-viewer .search-info .keywords {
	font-size: 1.4em;
	font-weight: bold;
}
.lfr-item-viewer .search-info .change-search-folder {
	font-size: 0.8em;
	font-weight: normal;
}

.lfr-item-viewer .progress-container {
	background-color: #fff;
}

.lfr-item-viewer.uploading > div:not(.progress-container) {
	opacity: 0.3;
}

.image-viewer-caption {
	color: #777;
}

.image-viewer-footer-control,
.image-viewer-footer-control:focus,
.image-viewer-footer-control:hover {
	color: #777;
}

@media (min-width: 576px) {
	.image-viewer-sidenav-menu {
		background-color: transparent;
		border-left-width: 0;
	}
}

.image-viewer-sidenav dd {
	color: #8b8b8b;
	margin-bottom: 16px;
}
@media (min-width: 576px) {
	.image-viewer-sidenav dd {
		color: #777;
	}
}

.image-viewer-sidenav .h5 {
	color: #869cad;
	margin-bottom: 3px;
}
@media (min-width: 576px) {
	.image-viewer-sidenav .h5 {
		color: #fff;
	}
}

.image-viewer-sidenav .nav-tabs-default > li {
	padding-left: 20px;
}
.image-viewer-sidenav .nav-tabs-default > li:first-child {
	padding-left: 0;
}

.image-viewer-sidenav .nav-tabs-default > li:first-child > a {
	padding-left: 0;
}

.image-viewer-sidenav .nav-tabs-default > li > a {
	border-color: transparent;
	color: #777;
	padding-left: 0;
	padding-right: 0;
}

.image-viewer-sidenav .nav-tabs-default > li > .active {
	background-color: transparent;
}
.image-viewer-sidenav .nav-tabs-default > li > .active,
.image-viewer-sidenav .nav-tabs-default > li > .active:focus,
.image-viewer-sidenav .nav-tabs-default > li > .active:hover {
	border-color: transparent;
	color: #777;
}
@media (min-width: 576px) {
	.image-viewer-sidenav .nav-tabs-default > li > .active,
	.image-viewer-sidenav .nav-tabs-default > li > .active:focus,
	.image-viewer-sidenav .nav-tabs-default > li > .active:hover {
		color: #fff;
	}
}
.image-viewer-sidenav .nav-tabs-default > li > .active:after {
	background-color: #65b6f0;
	bottom: -10px;
	content: '';
	display: block;
	height: 2px;
	left: 0;
	position: relative;
	right: 0;
}

.image-viewer-sidenav-body {
	padding-top: 0;
}

.lfr-item-viewer .lfr-item-viewer-close {
	color: #fff;
	opacity: 1;
}
.lfr-item-viewer .lfr-item-viewer-close,
.lfr-item-viewer .lfr-item-viewer-close:focus,
.lfr-item-viewer .lfr-item-viewer-close:hover {
	color: #fff;
}
.lfr-item-viewer .lfr-item-viewer-close .icon-monospaced {
	color: #777;
}

.lfr-item-viewer-icon-info {
	color: #fff;
}

.nav.list-group li > a:focus,
.nav.list-group li > a:hover {
	background-color: #e5f5fc;
	color: #009ae5;
}

.nav.list-group > .active {
	border-width: 1px 0 0;
}
.nav.list-group > .active > a,
.nav.list-group > .active > a:focus,
.nav.list-group > .active > a:hover {
	background-color: #60bfef;
	border: 1px solid #60bfef;
	color: #fff;
}

.nav.list-group .list-group-item {
	padding: 0;
}
.nav.list-group .list-group-item.nav-header {
	background-color: #f3f3f3;
	padding-left: 10px;
	padding-right: 10px;
}

.lfr-page-templates li a {
	padding: 0;
}
.lfr-page-templates li a label {
	cursor: pointer;
	display: block;
	padding: 5px 0 5px 5px;
}

.menu {
	position: absolute;
	width: auto;
}
.menu .notice-message {
	background-image: none;
	margin: 3px;
	padding: 6px;
}

.menu-content {
	background: #fff;
	list-style: none;
	min-width: 150px;
}
.menu-content li {
	margin: 0;
	padding: 0;
}
.menu-content li .disabled {
	color: #999;
}

.menu-content {
	background: #ccc9c9 url(../images/application/menu_bg.png) repeat-x 0 0;
	border: 1px solid;
	border-color: #aeafb1 #777879 #777879 #aeafb1;
	padding: 2px 0;
}

.menugroup-content .menu-label {
	background: #d2d6de;
	color: #5b677d;
	display: block;
	padding: 5px 3px;
	text-shadow: 1px 1px #fff;
}

.menugroup-content ul {
	display: block;
	min-width: 0;
}

.menu-content li {
	border-bottom: 1px solid #bcbbbb;
	border-top: 1px solid #eee;
	display: block;
	margin: 0;
	padding: 0;
}
.menu-content li.first {
	border-top-width: 0;
}
.menu-content li.last {
	border-bottom-width: 0;
}

.menu-content li a,
.menu-content li .disabled {
	color: #2c2f34;
	display: block;
	padding: 4px 5px;
	text-decoration: none;
}

.menu-content li a.focus,
.lfr-menu-expanded li a:focus {
	background-color: #5b677d;
	color: #fff;
	text-shadow: -1px -1px #2c2f34;
}

.app-view-drop-active {
	background-color: #00a2ea;
	font-weight: bold;
}
.category-portlets .app-view-drop-active {
	background-color: #00a2ea;
	color: #fff;
}

.basecelleditor [class~='form-validator-message'] {
	clip: rect(auto auto auto auto);
	width: auto;
}

.document-library-file-entry-cell-editor-hidden {
	display: none;
}

.previous-level {
	display: inline-block;
	font-size: 21px;
	line-height: 21px;
	margin-right: 5px;
	text-decoration: none;
	vertical-align: middle;
}

.has-control-menu .lfr-asset-anchor {
	height: 74px;
	margin-top: -74px;
}

.lfr-asset-anchor {
	display: block;
	height: 10px;
	margin-top: -10px;
	position: relative;
	z-index: -1;
}

.lfr-url-error {
	display: inline-block;
	white-space: normal;
	overflow-wrap: break-all;
	word-wrap: break-all;
}

.lfr-page-layouts {
	padding: 0;
}
.lfr-page-layouts input[type='radio'] {
	opacity: 0;
	position: absolute;
}
.lfr-page-layouts input[type='radio']:checked + .card-horizontal {
	cursor: default;
}
.lfr-page-layouts input[type='radio']:checked + .card-horizontal::after {
	bottom: 0px;
	content: '';
	left: 0px;
	position: absolute;
	right: 0px;
	transition: height 0.15s ease-out;
}
@media (prefers-reduced-motion: reduce) {
	.lfr-page-layouts input[type='radio']:checked + .card-horizontal::after {
		transition: none;
	}
}
.lfr-page-layouts .card-horizontal {
	border-width: 1px;
	box-shadow: none;
	cursor: pointer;
	outline: 0;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
		border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.lfr-page-layouts .card-horizontal {
		transition: none;
	}
}
.lfr-page-layouts .card-horizontal::after {
	border-radius: 0 0 0.25rem 0.25rem;
	bottom: 0px;
	content: '';
	height: 0;
	left: 0px;
	position: absolute;
	right: 0px;
	transition: height 0.15s ease-out;
}
@media (prefers-reduced-motion: reduce) {
	.lfr-page-layouts .card-horizontal::after {
		transition: none;
	}
}

.portal-popup:not(.article-preview) #main-content,
.portal-popup:not(.article-preview) #wrapper {
	bottom: 0;
	left: 0;
	overflow: auto;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	-webkit-overflow-scrolling: touch;
}
@media print {
	.portal-popup:not(.article-preview) #main-content,
	.portal-popup:not(.article-preview) #wrapper {
		position: initial;
	}
}

.modal {
	display: block;
	margin: 0;
	overflow: hidden;
	position: fixed;
}

.modal-body {
	overflow: auto;
}
.modal-body.dialog-iframe-bd {
	overflow: hidden;
	padding: 0;
}

@media (min-width: 576px) {
	.modal-dialog {
		max-width: none;
	}
}

.modal-dialog.modal-dialog-sm {
	max-width: 600px;
}

.modal-dialog .yui3-resize-handles-wrapper {
	pointer-events: all;
}

.modal-hidden {
	display: none;
}

.portal-popup .columns-max > .portlet-layout.row {
	margin-left: 0;
	margin-right: 0;
}
.portal-popup .columns-max > .portlet-layout.row > .portlet-column {
	padding-left: 0;
	padding-right: 0;
}

html.modal-open {
	overflow: initial;
}

.modal-open .modal {
	overflow: hidden;
}

.dragging .portlet-column.customizable {
	background-color: #cffccf;
	outline: 3px solid #5eaf3d;
}

.customizable-layout-column-content {
	background-color: #c92c3c;
}
.customizable-layout-column-content.yui3-widget-content-expanded {
	margin: 0 15px;
}

.layout-customizable-controls {
	background-color: rgba(201, 44, 60, 0.8);
}

.customizable .customizable-layout-column-content {
	background-color: #5eaf3d;
}

.customizable .layout-customizable-controls {
	background-color: rgba(94, 175, 61, 0.8);
}

.layout-customizable-controls-container {
	margin: 0 15px;
	position: relative;
}

.layout-customizable-controls {
	font-size: 1.5em;
	padding: 4px 16px;
	position: absolute;
	width: 100%;
	z-index: 15;
}
.layout-customizable-controls label {
	color: #fff;
}

.paginator-link {
	background: #eee no-repeat scroll 50% 1px;
	border: 1px solid #f0f1f2;
	border-color: #f0f1f2 #b2b2b2 #949494 #f0f1f1;
	color: #1f1e1e;
	display: inline-block;
	height: 20px;
	padding: 0;
	text-indent: -9999px;
	width: 20px;
}

.paginator-page-link {
	height: auto;
	text-indent: 0;
}

.paginator-current-page {
	background: #0083bd url(../images/application/paginator_link_current_bg.png)
		0 0 repeat-x;
	border-color: #38b6ef #006d9e #006d9e #46b4e6;
	color: #fff;
	text-shadow: -1px -1px #003c57;
}

.paginator-first-link {
	background-image: url(../images/arrows/paging_first.png);
}

.paginator-prev-link {
	background-image: url(../images/arrows/paging_previous.png);
}

.paginator-last-link {
	background-image: url(../images/arrows/paging_last.png);
}

.paginator-next-link {
	background-image: url(../images/arrows/paging_next.png);
}

.paginator-current-page-report,
.paginator-total {
	color: #555;
	font-size: 0.9em;
}

.paginator-current-page-report {
	margin-left: 2em;
}

.taglib-page-iterator .search-pages .page-links {
	padding: 0;
}

.info-panel .panel-group {
	margin-left: -1rem;
	margin-right: -1rem;
}

.lfr-panel-container {
	background: #fff;
}

.lfr-panel-content {
	padding: 5px 10px;
}

.lfr-panel-basic .lfr-panel-content {
	padding-left: 15px;
}

.panel-hd {
	background: #c0c2c5 url(../images/application/panel_header_bg.png) repeat-x 0
		0;
	border: 1px solid;
	border-color: #c8c9ca #aeb2b8 #aeb2b8 #c8c9ca;
	padding-left: 10px;
	text-shadow: 1px 1px #fff;
}

.sheet > .panel-group .sheet-footer {
	margin-bottom: 0;
}

.sheet-footer .btn {
	margin-right: 1rem;
}
.sheet-footer .btn:last-child {
	margin-right: 0;
}

@media (min-width: 576px) {
	.sheet .display-style-icon .lfr-asset-item {
		width: 25%;
	}
}

.splitter {
	border-radius: 0.25rem 0.25rem 0 0;
	color: #6b6c7e;
	padding: 10px 15px;
	position: relative;
}
.splitter.splitter-spaced {
	border-radius: 0.25rem;
	margin-bottom: 20px;
}

.table > tbody > tr.splitter {
	height: auto;
}
.table > tbody > tr.splitter > td {
	padding: 0;
}

.lfr-nav.nav-tabs {
	margin-bottom: 20px;
}

.tab-active strong {
	font-weight: normal;
}

.tab-back {
	float: right;
}

.tab-back-content {
	border-width: 0;
	padding: 1px;
}

.tag-items {
	list-style: none;
	margin: 0 1em 0 0;
	padding: 0 1em 0.5em;
	white-space: normal;
}
.tag-items li {
	display: inline-block;
	margin: 0 1em 0 0;
	max-width: 100%;
}

.tag-selected {
	color: #000;
	font-weight: bold;
	text-decoration: none;
}

.tag-cloud .tag-popularity-1 {
	font-size: 1em;
}

.tag-cloud .tag-popularity-2 {
	font-size: 1.3em;
}

.tag-cloud .tag-popularity-3 {
	font-size: 1.6em;
}

.tag-cloud .tag-popularity-4 {
	font-size: 1.9em;
}

.tag-cloud .tag-popularity-5 {
	font-size: 2.2em;
}

.tag-cloud .tag-popularity-6 {
	font-size: 2.5em;
}

.tagselector-content {
	border-width: 0;
	padding: 0;
}
.tagselector-content .textboxlistentry-holder {
	border-bottom: 2px solid #869cad;
	margin-bottom: 10px;
	padding: 0;
}

.categoriesselector-content .textboxlistentry-holder {
	background-color: transparent;
	border-width: 0;
	padding: 0;
}

.lfr-portal-tooltip {
	display: inline-flex;
}
.lfr-portal-tooltip,
.lfr-portal-tooltip a {
	-webkit-touch-callout: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

.tooltip {
	max-width: 200px;
}
.tooltip .tooltip-arrow {
	background-color: #272833;
	height: 0.6rem;
	position: absolute;
	transform: rotate(45deg);
	width: 0.6rem;
}

.tooltip.top .tooltip-arrow,
.tooltip.bottom .tooltip-arrow {
	left: 50%;
	margin-left: -0.3rem;
}

.tooltip.right .tooltip-arrow,
.tooltip.left .tooltip-arrow {
	margin-top: -0.3rem;
	top: 50%;
}

.tooltip.bottom {
	padding-top: 0.3rem;
}
.tooltip.bottom .tooltip-arrow {
	top: 0;
}

.tooltip.left {
	padding-right: 0.3rem;
}
.tooltip.left .tooltip-arrow {
	right: 0;
}

.tooltip.right {
	padding-left: 0.3rem;
}
.tooltip.right .tooltip-arrow {
	left: 0;
}

.tooltip.top {
	padding-bottom: 0.3rem;
}
.tooltip.top .tooltip-arrow {
	bottom: 0;
}

.tree-node .icon-check {
	padding-right: 2px;
}

.tree-node .tree-node-checked .icon-check {
	padding-right: 0;
}

.tree-node [class^='icon-'] {
	margin-right: 5px;
}

.tree-node .tree-node-checkbox-container {
	margin-right: 0;
}

.tree-node .tree-node-selected .tree-label {
	background: none;
}

.tree-node-content .tree-hitarea {
	color: #999;
	font-size: 10px;
	padding-right: 6px;
}

.tree-node-content .tree-label {
	margin-left: 3px;
}

.tree-node-content .tree-node-hidden-hitarea {
	visibility: hidden;
}

.tree-node-selected .tree-label {
	background-color: transparent;
}

.underlay {
	clear: both;
	top: 100%;
}
.underlay .yui3-widget-hd {
	height: 38px;
}

.underlay-hidden {
	display: none;
}

.underlay-content {
	background: #f4f3f3 url(../images/common/message_panel_shadow.png) repeat-x 0
		0;
	border: 0 solid #aeafb1;
	border-width: 0 1px 1px;
}

.underlay-close {
	position: absolute;
	right: 5px;
	top: 5px;
}

.user-icon-color-0 {
	background-color: #fff;
	box-shadow: 0 0 0 1px #e7e7ed;
	color: #6b6c7e;
}

.user-icon-color-1 {
	background-color: #fff;
	box-shadow: 0 0 0 1px #e7e7ed;
	color: #4b9bff;
}

.user-icon-color-2 {
	background-color: #fff;
	box-shadow: 0 0 0 1px #e7e7ed;
	color: #ffb46e;
}

.user-icon-color-3 {
	background-color: #fff;
	box-shadow: 0 0 0 1px #e7e7ed;
	color: #ff5f5f;
}

.user-icon-color-4 {
	background-color: #fff;
	box-shadow: 0 0 0 1px #e7e7ed;
	color: #50d2a0;
}

.user-icon-color-5 {
	background-color: #fff;
	box-shadow: 0 0 0 1px #e7e7ed;
	color: #ff73c3;
}

.user-icon-color-6 {
	background-color: #fff;
	box-shadow: 0 0 0 1px #e7e7ed;
	color: #9be169;
}

.user-icon-color-7 {
	background-color: #fff;
	box-shadow: 0 0 0 1px #e7e7ed;
	color: #af78ff;
}

.user-icon-color-8 {
	background-color: #fff;
	box-shadow: 0 0 0 1px #e7e7ed;
	color: #ffd76e;
}

.user-icon-color-9 {
	background-color: #fff;
	box-shadow: 0 0 0 1px #e7e7ed;
	color: #5fc8ff;
}

.portlet-column-content.empty {
	padding: 50px;
}

#wrapper {
	position: relative;
}

.modify-pages li {
	position: relative;
}
.modify-pages li.lfr-nav-hover .delete-tab {
	opacity: 1;
}

.modify-pages .delete-tab {
	color: #444;
	cursor: pointer;
	display: block;
	font-size: 20px;
	font-weight: bold;
	height: 16px;
	line-height: 6px;
	margin-top: -8px;
	opacity: 0;
	overflow: hidden;
	padding: 3px 0;
	position: absolute;
	right: 1px;
	text-shadow: 0 1px #fff;
	top: 50%;
}
.modify-pages .delete-tab:hover {
	color: #b50303;
}

.modify-pages .drag-handle {
	cursor: move;
	left: 3px;
	margin-left: 15px;
	position: absolute;
	top: 15px;
}

.controls-hidden .modify-pages .drag-handle {
	display: none;
}

@media (min-width: 768px) {
	.touch .modify-pages .drag-handle {
		display: none;
	}
}

.nav li .toolbar {
	margin-top: 5px;
}

.navbar-nav .nav-item.hover:after {
	bottom: -0.3125rem;
	content: '';
	height: 0.3125rem;
	left: 0;
	position: absolute;
	width: 100%;
}

.navigation-pane .body-row {
	height: 100%;
	overflow: hidden;
	position: relative;
	width: 100%;
}
.navigation-pane .body-row ul li a .icon {
	float: left;
	margin-right: 5px;
}

.navigation-pane .lfr-component {
	margin-left: 0;
}

.navigation-pane .navigation-entry {
	position: relative;
}
.navigation-pane .navigation-entry.folder.error {
	display: block;
	padding: 6px 8px;
}
.navigation-pane .navigation-entry .browse-folder,
.navigation-pane .navigation-entry .nav-item-label {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	vertical-align: middle;
}
.navigation-pane .navigation-entry .nav-item-icon {
	vertical-align: middle;
}
.navigation-pane .navigation-entry .overlay.entry-action {
	bottom: 0;
	display: block;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
}
.navigation-pane .navigation-entry .overlay.entry-action .btn {
	border-width: 0;
	margin: 0;
	padding: 11px 14px;
}
@media (min-width: 768px) {
	.navigation-pane .navigation-entry .overlay.entry-action .btn {
		padding: 11px;
	}
}

.nav-menu ul {
	padding-left: 10px;
}

.nav-menu li a.ancestor {
	font-weight: bold;
}

.nav-menu li a.selected {
	color: #000;
	font-weight: bold;
	text-decoration: none;
}

.nav-menu-style-arrows ul {
	list-style-image: url(../images/arrows/04_right.png);
}

.portlet-navigation .nav-pills > li > a {
	margin-bottom: 2px;
}

.portlet-navigation .nav-pills > li > .dropdown-menu {
	margin-top: 0;
}

.split-button-dropdowns {
	list-style: none;
	margin: 0;
	padding: 0;
}
.split-button-dropdowns > li {
	display: inline-block;
	padding-left: 2px;
	padding-right: 2px;
}

.form-options {
	border: 1px solid #aaa;
	display: inline-block;
	vertical-align: middle;
}
.form-options input {
	border-width: 0;
	display: inline;
	float: left;
}

.form-triggers {
	float: left;
}

.form-trigger {
	background: #c4c4c4 url(../images/application/button_bg.png) repeat-x 0 0;
	border-left: 1px solid #bbb;
	display: inline-block;
	float: left;
}
.form-trigger img {
	background: no-repeat 50% 40%;
	height: 25px;
	padding: 0 3px;
	vertical-align: middle;
	width: 16px;
}
.form-trigger:focus,
.form-trigger:hover {
	background-color: #83b0ca;
	background-image: url(../images/application/button_bg_over.png);
}

.trigger-selected {
	background-color: #ebebeb;
	background-image: url(../images/application/button_bg_selected.png);
}
.trigger-selected:focus,
.trigger-selected:hover {
	background-color: #b7def4;
	background-image: url(../images/application/button_bg_selected_over.png);
}

.options-trigger img {
	background-image: url(../images/common/configuration.png);
}

.save-trigger img {
	background-image: url(../images/common/check.png);
}

body.portlet {
	border-width: 0;
}

.portlet-icon-back {
	margin-top: -2px;
}

.portlet-topper {
	position: relative;
}
.portlet-topper .portlet-topper-toolbar .portlet-icon-back {
	background: url(../images/arrows/12_left.png) no-repeat 0 50%;
	padding: 5px 5px 5px 18px;
}
.portlet-topper .portlet-topper-toolbar .portlet-options .lfr-icon-menu-text {
	display: none;
}

.portlet-title-editable {
	cursor: pointer;
}

.portlet-title-text {
	display: inline-block;
	margin-top: 0;
	max-width: 95%;
	overflow: hidden;
	text-overflow: ellipsis;
	vertical-align: top;
	white-space: nowrap;
}

.panel-page-content .portlet-title-text,
.panel-page-body .portlet-title-text {
	cursor: auto;
}

.portlet-minimized .portlet-content {
	padding: 0;
}

.portlet-nested-portlets .portlet-boundary {
	left: 0 !important;
	position: relative !important;
	top: 0 !important;
}

.portlet-layout .portlet-header {
	margin-bottom: 1rem;
}

.portlet-draggable .portlet-topper {
	cursor: move;
}

@media (min-width: 576px) {
	.portlet .visible-interaction {
		display: none;
	}
}

.portlet:hover .visible-interaction,
.portlet.open .visible-interaction {
	display: block;
}

@media (max-width: 767.98px) {
	.controls-hidden .portlet .visible-interaction {
		display: none;
	}
}

.lfr-status-alert-label,
.lfr-status-error-label,
.lfr-status-info-label,
.lfr-status-progress-label,
.lfr-status-success-label {
	background: none no-repeat 0 50%;
	padding: 3px 3px 3px 20px;
}

.lfr-status-alert-label {
	background-image: url(../images/messages/alert.png);
	color: #663;
}

.lfr-status-error-label {
	background-image: url(../images/messages/error.png);
	color: #900;
}

.lfr-status-help-label,
.lfr-status-info-label,
.lfr-status-progress-label {
	background-image: url(../images/messages/info.png);
	color: #34404f;
}

.lfr-status-help-label {
	background-image: url(../images/portlet/help.png);
}

.lfr-status-progress-label {
	background-image: url(../images/aui/loading_indicator.gif);
}

.lfr-status-success-label {
	background-image: url(../images/messages/success.png);
	color: #384f34;
}

.portlet-msg {
	background: #eee none no-repeat 6px 50%;
	border: 1px solid #555;
	color: #34404f;
	font-weight: bold;
	margin: 2px auto 14px;
	padding: 6px 6px 6px 30px;
	text-align: left;
}

.lfr-message {
	position: relative;
}
.lfr-message .lfr-message-control {
	background-color: #333;
	display: inline-block;
}
.lfr-message .lfr-message-controls {
	display: none;
	left: 3px;
	margin: -8px 8px 0 3px;
	position: absolute;
	top: 50%;
	z-index: 10;
}
.lfr-message .lfr-message-close {
	background-image: url(../images/portlet/close_borderless.png);
	background-position: 0 0;
	background-repeat: no-repeat;
}
.lfr-message .lfr-message-close-all {
	color: #fff;
	display: none;
	font-size: 0.8em;
	margin-left: 10px;
	padding: 1px 10px;
	text-shadow: 1px 1px 0 #000;
	vertical-align: top;
}
.lfr-message .lfr-message-close-all a {
	color: #fff;
}
.lfr-message .lfr-message-controls-hover .lfr-message-close-all {
	display: inline-block;
}
.lfr-message.pending {
	background-image: url(../images/common/time.png);
}

.lfr-message-content.alert {
	margin-bottom: 0;
}

.lfr-message-close {
	cursor: pointer;
}

.portlet-section-selected,
.portlet-section-selected a {
	background: #727c81;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
}

.portlet-section-selected a:hover,
.portlet-section-selected a:focus {
	background-color: #727c81;
}

.portlet {
	margin-bottom: 10px;
	position: relative;
}
.portlet > .portlet-content-editable {
	border-color: transparent;
}
.portlet > .portlet-topper {
	display: none;
}
@media (min-width: 768px) {
	.portlet > .portlet-topper {
		display: flex;
		left: 0;
		opacity: 0;
		position: absolute;
		right: 0;
		transition: opacity 0.25s, transform 0.25s;
		top: 0;
	}
}
@media (min-width: 768px) and (prefers-reduced-motion: reduce) {
	.portlet > .portlet-topper {
		transition: none;
	}
}

@media (min-width: 768px) {
	.controls-visible .portlet:hover > .portlet-content-editable,
	.controls-visible .portlet.open > .portlet-content-editable,
	.controls-visible .portlet.focus > .portlet-content-editable {
		border-color: transparent;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

@media (min-width: 768px) {
	.controls-visible .portlet:hover > .portlet-topper,
	.controls-visible .portlet.open > .portlet-topper,
	.controls-visible .portlet.focus > .portlet-topper {
		opacity: 1;
		transform: translateY(-97%);
	}
}

.portlet-content-editable {
	border-color: transparent;
	border-radius: 0 0;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
}

.portlet-actions {
	float: right;
}

.portlet-name-text {
	font-size: 0.875rem;
	font-weight: 600;
}

.portlet-options {
	display: inline-block;
}

.portlet-title-default {
	flex: 1 1 auto;
	line-height: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.portlet-title-menu {
	flex: 0 1 auto;
}
.portlet-title-menu > span > a {
	display: inline-block;
	text-decoration: none;
}

.portlet-topper {
	background-color: #f7f7f7;
	border-color: transparent;
	border-radius: 0 0;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	color: #6b6c7e;
	display: box;
	display: flex;
	padding: 3px 12px 3px 24px;
	position: relative;
}

.portlet-topper-toolbar {
	margin: 0;
	padding-left: 0;
}
.portlet-topper-toolbar > a,
.portlet-topper-toolbar > span > a,
.portlet-topper-toolbar .lfr-icon-menu > a {
	color: #6b6c7e;
}
.portlet-topper-toolbar > a:focus,
.portlet-topper-toolbar > a:hover {
	text-decoration: none;
}

@media (max-width: 767.98px) {
	.lfr-configurator-visibility {
		opacity: 0.5;
	}
}

@media (min-width: 576px) {
	.lfr-configurator-visibility .portlet:hover .portlet-topper,
	.lfr-configurator-visibility .portlet.focus .portlet-topper,
	.lfr-configurator-visibility .portlet.open .portlet-topper {
		opacity: 0.5;
	}
	.lfr-configurator-visibility .portlet-content-editable {
		opacity: 0.5;
	}
}

@media (max-width: 767.98px) {
	.controls-visible .portlet-content-editable {
		border-color: transparent;
		border-top-left-radius: 0;
		border-top-right-radius: 0;
	}
}

@media (max-width: 767.98px) {
	.controls-visible .portlet-topper {
		display: box;
		display: flex;
	}
}

.controls-visible .portlet-topper-toolbar {
	display: block;
}

.lfr-configurator-visibility .portlet-borderless-bar {
	opacity: 0.6;
}

.lfr-configurator-visibility .portlet-content .lfr-icon-actions {
	opacity: 1;
}

.lfr-panel-page {
	width: 100%;
}
.lfr-panel-page .portlet-title {
	font-size: 13px;
}
.lfr-panel-page .lfr-add-content h2 span {
	background-color: #d3dadd;
}

.main-content-body {
	margin-top: 20px;
}

.restricted,
.restricted td {
	background: #fdd;
	border-width: 0;
}

.restricted * {
	color: #727c81;
}

.alt.restricted td {
	background-color: #ffc0c0;
}

.hover.restricted td {
	background-color: #d3bdc0;
}

.alt.restricted td.first,
.restricted td.first {
	background-image: url(../images/messages/error.png);
	background-position: 5px 50%;
	background-repeat: no-repeat;
	padding-left: 28px;
}

.portlet-borderless .portlet-content {
	padding: 1rem;
}

.portlet-decorate .portlet-content {
	background: #fff;
	border-color: transparent;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	padding: 1rem;
	word-wrap: break-word;
}

.portlet-barebone .portlet-content {
	padding: 0;
}

.portlet-dynamic-data-lists-display .lfr-ddm-field-group,
.portlet-dynamic-data-lists .lfr-ddm-field-group {
	background: #fff;
	border-radius: 3px;
	border-top: 5px solid transparent;
	box-shadow: 0 1px 2px #c4c4c4;
	margin: 8px 6px 0;
	outline: 0;
	padding: 28px 10px 10px;
	position: relative;
	-webkit-box-shadow: 0 1px 2px #c4c4c4;
}

.breadcrumb.breadcrumb-vertical {
	display: inline-block;
	text-align: center;
}
.breadcrumb.breadcrumb-vertical li {
	display: block;
}
.breadcrumb.breadcrumb-vertical li.last,
.breadcrumb.breadcrumb-vertical li.only {
	background: none;
}
.breadcrumb.breadcrumb-vertical .divider {
	background: url(../images/arrows/07_down.png) no-repeat 50% 100%;
	display: block;
	height: 10px;
	overflow: hidden;
	text-indent: 101%;
	white-space: nowrap;
}

.taglib-calendar tr.portlet-section-header th,
.taglib-calendar tr td {
	border-width: 0;
}

.taglib-calendar tr td a {
	background-color: #f0f5f7;
	border: 1px solid #fff;
	border-bottom-width: 0;
	border-left-width: 0;
	display: block;
	height: 15px;
	padding: 5px 0;
}
.taglib-calendar tr td a:hover {
	background-color: #727c81;
	color: #fff;
}

.taglib-calendar tr td.calendar-inactive {
	background-color: #fff;
	color: #b5bfc4;
}

.taglib-calendar tr th {
	border-bottom-color: #d7d7d7;
}

.taglib-calendar table td {
	border-width: 0;
}

.taglib-calendar .calendar-current-day,
.taglib-calendar .calendar-current-day a {
	background-color: #fff;
}

.taglib-calendar .calendar-current-day a {
	border: 1px solid #727c81;
	color: #369;
	text-decoration: underline;
}

.navbar form {
	margin: 0;
}

.widget-toolbar .btn + .btn,
.widget-toolbar .widget-group + .widget-group {
	margin-left: 1rem;
}

.widget-mode-detail {
	padding-top: 1rem;
}
.widget-mode-detail .title {
	font-size: 36px;
}
.widget-mode-detail .sub-title {
	font-size: 26px;
	margin-bottom: 32px;
}
.widget-mode-detail .widget-metadata {
	margin-bottom: 2rem;
}
.widget-mode-detail .widget-mode-detail-text {
	margin-top: 48px;
}
.widget-mode-detail .widget-mode-detail-text img {
	max-width: 100%;
}
.widget-mode-detail .widget-mode-detail-text p {
	font-size: 18px;
	line-height: 1.8;
}

.widget-mode-card .card {
	display: flex;
	flex-direction: column;
	height: calc(100% - 24px);
	margin-bottom: 24px;
}

.widget-mode-card .card-header {
	overflow: hidden;
	padding: 0;
}

.widget-mode-card .card-title {
	position: relative;
}

@media (min-width: 768px) {
	.widget-mode-card .visible-interaction {
		position: absolute;
		right: -8px;
	}
}

.widget-mode-simple .widget-topbar {
	margin-bottom: 8px;
}

.widget-mode-simple .widget-metadata {
	margin-bottom: 24px;
}

.widget-mode-simple .widget-toolbar {
	margin-top: 1.5rem;
}

.widget-mode-simple .widget-content .cover-image {
	margin-bottom: 24px;
}

.menu-content,
.underlay-content {
	box-shadow: 2px 4px 7px rgba(0, 0, 0, 0.5);
}

.lfr-ddm-container .file-entry-upload-progress {
	border-radius: 0 0 4px 4px;
}

.lfr-preview-file-image img {
	box-shadow: 0 3px 5px -3px rgba(0, 0, 0, 0.8);
}

.lfr-preview-file-image-current-column {
	box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.8);
}

.lfr-preview-file-image-current-column {
	box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.8);
}

.portlet-document-library .lfr-ddm-small-image-preview,
.portlet-dynamic-data-mapping .lfr-ddm-small-image-preview {
	box-shadow: 0 1px 3px #ccc;
}

.portlet-document-library-upload-mask .overlaymask-content {
	border-radius: 5px;
}

.overlaymask-content {
	background-color: #fff;
}

:not(.inline-item) > .loading-animation {
	margin-bottom: 20px;
	margin-top: 20px;
}

.product-menu .loading-animation {
	margin-top: 160px;
}

.lfr-search-combobox-item {
	border-radius: 1px;
}

.lfr-search-combobox .field-input-text {
	border-radius: 4px 1px 1px 4px;
}

.lfr-search-combobox .button-input {
	border-radius: 1px 4px 4px 1px;
}

.lfr-upload-container .progress-bar,
.lfr-upload-container .progress,
.lfr-editable:after {
	border-radius: 10px;
}

.portlet-language .portlet-body .current-language,
.portlet-language .portlet-body .taglib-icon,
.portlet-language .portlet-body .taglib-language-list-text {
	border-radius: 10px;
}

body > .lfr-menu-list ul,
.active-area-proxy,
.entry-display-style .entry-thumbnail,
.lfr-api-results,
.lfr-translation-manager,
.lfr-translation-manager-translation,
.lfr-upload-container .cancel-button .modify-pages .delete-tab,
.portlet-image-gallery-display .image-thumbnail img,
.rule-group-instance-container .rule-group-instance,
.select-documents,
.select-files,
.taglib-ratings.stars:hover,
.taglib-ratings.stars:hover .liferay-rating-vote > div,
.taglib-ratings.stars .rating-focused > div,
.tags-search-combobox .field-input-text {
	border-radius: 4px;
}

.entry-display-style,
.lfr-search-combobox,
.lfr-upload-container .upload-file,
.lfr-upload-container .upload-target,
.portlet-document-library .common-file-metadata-container.selected,
.portlet-document-library-display .common-file-metadata-container.selected,
.portlet-image-gallery-display .image-icon,
.select-documents,
.select-files {
	border-radius: 5px;
}

.portlet-dynamic-data-list-display
	.lfr-ddm-container
	.lfr-ddm-repeatable-placeholder,
.portlet-dynamic-data-lists
	.lfr-ddm-container
	.lfr-ddm-repeatable-placeholder {
	border-radius: 6px;
}

.menu-content {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

.taglib-form-navigator > .form-steps > ul.form-navigator.list-group {
	box-shadow: none;
}
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab
	.tab-label:hover
	.number,
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab
	.tab-label:focus
	.number {
	box-shadow: 0 0 5px 0 #333;
	transition-duration: 0.25s;
	transition-property: box-shadow;
	transition-timing-function: ease-out;
}
.taglib-form-navigator
	> .form-steps
	> ul.form-navigator.list-group
	.tab
	.tab-label
	.number {
	border-radius: 50%;
}

.underlay-content {
	border-bottom-left-radius: 8px;
	border-bottom-right-radius: 8px;
}

.input-localized .lfr-input-localized-state {
	border-radius: 3px;
}

.input-localized .lfr-input-localized .lfr-input-localized-state {
	box-shadow: 0 0 3px #ddd;
}
.input-localized
	.lfr-input-localized
	.lfr-input-localized-state.lfr-input-localized-state-error {
	box-shadow: 0 0 3px #ff0047;
}

.input-localized .palette-item-selected .lfr-input-localized-state {
	box-shadow: 0 0 3px #27c1f2;
}

.lfr-content-preview-popup .lfr-content-preview-popup-content {
	border-radius: 0;
	box-shadow: 8px 3px 7px rgba(0, 0, 0, 0.25);
}

.lfr-message .lfr-message-control {
	border-radius: 10px;
}

.lfr-token {
	border-radius: 8px;
}

.staging-tabview-list {
	border-radius: 0;
}

.site-variations-tabview-list .tab-content,
.staging-tabview-list .tab-active .tab-content,
.tagselector-content .textboxlistentry-holder .lfr-tag-selector-input:focus {
	box-shadow: none;
}

.rule-group-instance-container .rule-group-instance {
	box-shadow: 1px 1px 2px #999;
}

.lfr-action-label {
	border-radius: 2px;
}

@keyframes progress-bar-stripes {
	from {
		background-position: 40px 0;
	}
	to {
		background-position: 0 0;
	}
}

.lfr-progress-active .progress-bar-status,
.lfr-upload-container .file-uploading .progress-bar .progress {
	-webkit-animation: progress-bar-stripes 0.5s linear infinite;
	animation: progress-bar-stripes 0.5s linear infinite;
	background-image: linear-gradient(
		-45deg,
		rgba(255, 255, 255, 0.3) 25%,
		rgba(255, 255, 255, 0) 25%,
		rgba(255, 255, 255, 0) 50%,
		rgba(255, 255, 255, 0.3) 50%,
		rgba(255, 255, 255, 0.3) 75%,
		rgba(255, 255, 255, 0) 75%,
		rgba(255, 255, 255, 0)
	);
	background-size: 40px 40px;
	transition: width, 0.5s, ease-out;
}
@media (prefers-reduced-motion: reduce) {
	.lfr-progress-active .progress-bar-status,
	.lfr-upload-container .file-uploading .progress-bar .progress {
		transition: none;
	}
}

@keyframes highlight-animation {
	from {
		background-color: #ffc;
	}
	to {
		background-color: transparent;
	}
}

.highlight-animation {
	-webkit-animation: highlight-animation 0.7s;
	animation: highlight-animation 0.7s;
}

.lfr-spa-loading .lfr-spa-loading-bar {
	-webkit-animation: shift-rightwards 1s ease-in-out infinite;
	animation: shift-rightwards 1s ease-in-out infinite;
	-webkit-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.lfr-spa-loading-bar {
	transform: translateX(100%);
}

@keyframes shift-rightwards {
	0% {
		transform: translateX(-100%);
	}
	40% {
		transform: translateX(0%);
	}
	60% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(100%);
	}
}

.mobile.touch
	body:first-of-type
	.portlet-content
	.lfr-icon-actions
	.lfr-icon-menu-text,
.mobile.touch
	body:first-of-type
	.portlet-content
	.lfr-icon-actions
	.taglib-text {
	max-width: 200px;
}

.portlet-boundary.yui3-dd-dragging {
	transform: scale(0.8);
	transition: transform 0.3s ease;
}
@media (prefers-reduced-motion: reduce) {
	.portlet-boundary.yui3-dd-dragging {
		transition: none;
	}
}

.portlet-document-library .entry-thumbnail .label,
.portlet-document-library-display .workflow-status .label,
.portlet-journal .entry-thumbnail .label {
	border-bottom-left-radius: 0;
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}

.portlet-options.btn-group .dropdown-toggle,
.portlet-options.btn-group.open .dropdown-toggle {
	box-shadow: none;
}

@keyframes lfr-drop-active {
	0% {
		background-color: #ebebeb;
		border-color: #ddd;
	}
	50% {
		background-color: #ddedde;
		border-color: #7d7;
		transform: scale(1.1);
	}
	75% {
		background-color: #ddedde;
		border-color: #7d7;
	}
	100% {
		background-color: #ebebeb;
		border-color: #ddd;
	}
}

.upload-drop-active .lfr-upload-container .upload-target {
	-webkit-animation: none;
	animation: none;
}

.upload-drop-active .portlet-document-library .document-container {
	box-shadow: inset 0 0 5px #b8c1d1;
}

.upload-drop-intent .lfr-upload-container .upload-target {
	-webkit-animation: lfr-drop-active 1s ease 0.2s infinite;
	animation: lfr-drop-active 1s ease 0.2s infinite;
}

.quick-access-nav a {
	box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 1px;
}

.cke_toolbar.cke_toolbar__a11yhelpbtn .cke_toolgroup,
.cke_toolbar.cke_toolbar__a11yhelpbtn .cke_toolgroup:hover {
	box-shadow: initial;
}

.cke_toolbar.cke_toolbar__a11yhelpbtn .cke_button:hover {
	box-shadow: none;
}

.cke_toolbar.cke_toolbar__a11yhelpbtn .cke_button .cke_button_label:after {
	background-image: linear-gradient(#fff, #e4e4e4);
	border-radius: 2px;
}

.cke_toolbar.cke_toolbar__a11yhelpbtn
	.cke_button
	.cke_button_label:hover:after {
	background-image: linear-gradient(#f2f2f2, #ccc);
}

input.switch:focus ~ .switch-bar:before {
	box-shadow: 0 0 3px #00f;
}

input.switch:empty ~ .switch-bar:after,
input.switch:empty ~ .switch-bar:before,
input.switch:empty ~ .switch-bar .switch-icon,
input.switch:empty ~ .switch-bar .switch-toggle:after,
input.switch:empty ~ .switch-bar .switch-toggle:before {
	transition: all 100ms ease-in;
}
@media (prefers-reduced-motion: reduce) {
	input.switch:empty ~ .switch-bar:after,
	input.switch:empty ~ .switch-bar:before,
	input.switch:empty ~ .switch-bar .switch-icon,
	input.switch:empty ~ .switch-bar .switch-toggle:after,
	input.switch:empty ~ .switch-bar .switch-toggle:before {
		transition: none;
	}
}

.taglib-image-selector .selection-status {
	transition: opacity 0.2s ease-in-out;
	border-radius: 30px;
}
@media (prefers-reduced-motion: reduce) {
	.taglib-image-selector .selection-status {
		transition: none;
	}
}

.taglib-image-selector .progress-wrapper .progressbar {
	border-radius: 0;
}

.drop-here-info {
	transition: all 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.drop-here-info {
		transition: none;
	}
}
.drop-here-info .drop-icons {
	transition: all 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
	.drop-here-info .drop-icons {
		transition: none;
	}
}
.drop-here-info .drop-icons span {
	transition: all 0.3s ease-in-out;
	border-radius: 3px;
}
@media (prefers-reduced-motion: reduce) {
	.drop-here-info .drop-icons span {
		transition: none;
	}
}
.drop-here-info .drop-icons span:nth-of-type(1) {
	box-shadow: 5px 4px 0 0 rgba(0, 0, 0, 0.08);
	transform: rotate(25deg);
}
.drop-here-info .drop-icons span:nth-of-type(2) {
	box-shadow: 0 6px 0 -2px rgba(0, 0, 0, 0.15);
	transform: scale(0.8);
}
.drop-here-info .drop-icons span:nth-of-type(3) {
	box-shadow: -5px 4px 0 0 rgba(0, 0, 0, 0.08);
	transform: rotate(-25deg);
}

.drop-active .drop-here-info span:nth-of-type(1) {
	transform: rotate(-20deg);
}

.drop-active .drop-here-info span:nth-of-type(2) {
	transform: scale(1);
}

.drop-active .drop-here-info span:nth-of-type(3) {
	transform: rotate(15deg);
}

/* These inject tags are used for dynamically creating imports for themelet styles, you can place them where ever you like in this file. */
/* inject:imports */
/*!
 *  Font Awesome 3.2.1
 *  the iconic font designed for Bootstrap
 *  ------------------------------------------------------------------------------
 *  The full suite of pictographic icons, examples, and documentation can be
 *  found at http://fontawesome.io.  Stay up to date on Twitter at
 *  http://twitter.com/fontawesome.
 *
 *  License
 *  ------------------------------------------------------------------------------
 *  - The Font Awesome font is licensed under SIL OFL 1.1 -
 *    http://scripts.sil.org/OFL
 *  - Font Awesome CSS, LESS, and SASS files are licensed under MIT License -
 *    http://opensource.org/licenses/mit-license.html
 *  - Font Awesome documentation licensed under CC BY 3.0 -
 *    http://creativecommons.org/licenses/by/3.0/
 *  - Attribution is no longer required in Font Awesome 3.0, but much appreciated:
 *    "Font Awesome by Dave Gandy - http://fontawesome.io"
 *
 *  Author - Dave Gandy
 *  ------------------------------------------------------------------------------
 *  Email: dave@fontawesome.io
 *  Twitter: http://twitter.com/davegandy
 *  Work: Lead Product Designer @ Kyruus - http://kyruus.com
 */
/* FONT PATH
 * -------------------------- */
/* @font-face {
	font-family: 'fontawesome-alloy';
	src: url('../font/fontawesome-alloy.eot');
	src: url('../font/fontawesome-alloy.eot?#iefix') format('embedded-opentype'),
		url('../font/fontawesome-alloy.woff') format('woff'),
		url('../font/fontawesome-alloy.ttf') format('truetype'),
		url('../font/fontawesome-alloy.svg#fontawesome-alloy') format('svg');
	font-weight: normal;
	font-style: normal;
} */

/* FONT AWESOME CORE
 * -------------------------- */
[class^='icon-'],
[class*=' icon-'] {
	font-family: 'fontawesome-alloy';
	font-weight: normal;
	font-style: normal;
	text-decoration: inherit;
	-webkit-font-smoothing: antialiased;
}

[class^='icon-']:before,
[class*=' icon-']:before {
	text-decoration: inherit;
	display: inline-block;
	speak: none;
}

/* makes the font 33% larger relative to the icon container */
.icon-large:before {
	vertical-align: -10%;
	font-size: 1.33333em;
}

/* makes sure icons active on rollover in links */
a [class^='icon-'],
a [class*=' icon-'] {
	display: inline;
}

/* increased font size for icon-large */
[class^='icon-'].icon-fixed-width,
[class*=' icon-'].icon-fixed-width {
	display: inline-block;
	width: 1.14286em;
	text-align: right;
	padding-right: 0.28571em;
}
[class^='icon-'].icon-fixed-width.icon-large,
[class*=' icon-'].icon-fixed-width.icon-large {
	width: 1.42857em;
}

.icons-ul {
	margin-left: 2.14286em;
	list-style-type: none;
}
.icons-ul > li {
	position: relative;
}
.icons-ul .icon-li {
	position: absolute;
	left: -2.14286em;
	width: 2.14286em;
	text-align: center;
	line-height: inherit;
}

[class^='icon-'].hide,
[class*=' icon-'].hide {
	display: none;
}

.icon-muted {
	color: #eeeeee;
}

.icon-light {
	color: white;
}

.icon-dark {
	color: #333333;
}

.icon-border {
	border: solid 1px #eeeeee;
	padding: 0.2em 0.25em 0.15em;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

.icon-2x {
	font-size: 2em;
}
.icon-2x.icon-border {
	border-width: 2px;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.icon-3x {
	font-size: 3em;
}
.icon-3x.icon-border {
	border-width: 3px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.icon-4x {
	font-size: 4em;
}
.icon-4x.icon-border {
	border-width: 4px;
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}

.icon-5x {
	font-size: 5em;
}
.icon-5x.icon-border {
	border-width: 5px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
}

.pull-right {
	float: right;
}

.pull-left {
	float: left;
}

[class^='icon-'].pull-left,
[class*=' icon-'].pull-left {
	margin-right: 0.3em;
}

[class^='icon-'].pull-right,
[class*=' icon-'].pull-right {
	margin-left: 0.3em;
}

/* BOOTSTRAP SPECIFIC CLASSES
 * -------------------------- */
/* Bootstrap 2.0 sprites.less reset */
[class^='icon-'],
[class*=' icon-'] {
	display: inline;
	width: auto;
	height: auto;
	line-height: normal;
	vertical-align: baseline;
	background-image: none;
	background-position: 0% 0%;
	background-repeat: repeat;
	margin-top: 0;
}

/* more sprites.less reset */
.icon-white,
.nav-pills > .active > a > [class^='icon-'],
.nav-pills > .active > a > [class*=' icon-'],
.nav-list > .active > a > [class^='icon-'],
.nav-list > .active > a > [class*=' icon-'],
.navbar-inverse .nav > .active > a > [class^='icon-'],
.navbar-inverse .nav > .active > a > [class*=' icon-'],
.dropdown-menu > li > a:hover > [class^='icon-'],
.dropdown-menu > li > a:hover > [class*=' icon-'],
.dropdown-menu > .active > a > [class^='icon-'],
.dropdown-menu > .active > a > [class*=' icon-'],
.dropdown-submenu:hover > a > [class^='icon-'],
.dropdown-submenu:hover > a > [class*=' icon-'] {
	background-image: none;
}

/* keeps Bootstrap styles with and without icons the same */
.btn [class^='icon-'].icon-large,
.btn [class*=' icon-'].icon-large,
.nav [class^='icon-'].icon-large,
.nav [class*=' icon-'].icon-large {
	line-height: 0.9em;
}

.btn [class^='icon-'].icon-spin,
.btn [class*=' icon-'].icon-spin,
.nav [class^='icon-'].icon-spin,
.nav [class*=' icon-'].icon-spin {
	display: inline-block;
}

.nav-tabs [class^='icon-'],
.nav-tabs [class^='icon-'].icon-large,
.nav-tabs [class*=' icon-'],
.nav-tabs [class*=' icon-'].icon-large,
.nav-pills [class^='icon-'],
.nav-pills [class^='icon-'].icon-large,
.nav-pills [class*=' icon-'],
.nav-pills [class*=' icon-'].icon-large {
	line-height: 0.9em;
}

.btn [class^='icon-'].pull-left.icon-2x,
.btn [class^='icon-'].pull-right.icon-2x,
.btn [class*=' icon-'].pull-left.icon-2x,
.btn [class*=' icon-'].pull-right.icon-2x {
	margin-top: 0.18em;
}

.btn [class^='icon-'].icon-spin.icon-large,
.btn [class*=' icon-'].icon-spin.icon-large {
	line-height: 0.8em;
}

.btn.btn-small [class^='icon-'].pull-left.icon-2x,
.btn.btn-small [class^='icon-'].pull-right.icon-2x,
.btn.btn-small [class*=' icon-'].pull-left.icon-2x,
.btn.btn-small [class*=' icon-'].pull-right.icon-2x {
	margin-top: 0.25em;
}

.btn.btn-large [class^='icon-'],
.btn.btn-large [class*=' icon-'] {
	margin-top: 0;
}
.btn.btn-large [class^='icon-'].pull-left.icon-2x,
.btn.btn-large [class^='icon-'].pull-right.icon-2x,
.btn.btn-large [class*=' icon-'].pull-left.icon-2x,
.btn.btn-large [class*=' icon-'].pull-right.icon-2x {
	margin-top: 0.05em;
}
.btn.btn-large [class^='icon-'].pull-left.icon-2x,
.btn.btn-large [class*=' icon-'].pull-left.icon-2x {
	margin-right: 0.2em;
}
.btn.btn-large [class^='icon-'].pull-right.icon-2x,
.btn.btn-large [class*=' icon-'].pull-right.icon-2x {
	margin-left: 0.2em;
}

/* Fixes alignment in nav lists */
.nav-list [class^='icon-'],
.nav-list [class*=' icon-'] {
	line-height: inherit;
}

/* EXTRAS
 * -------------------------- */
/* Stacked and layered icon */
.icon-stack {
	position: relative;
	display: inline-block;
	width: 2em;
	height: 2em;
	line-height: 2em;
	vertical-align: -35%;
}
.icon-stack [class^='icon-'],
.icon-stack [class*=' icon-'] {
	display: block;
	text-align: center;
	position: absolute;
	width: 100%;
	height: 100%;
	font-size: 1em;
	line-height: inherit;
}
.icon-stack .icon-stack-base {
	font-size: 2em;
}

/* Animated rotating icon */
.icon-spin {
	display: inline-block;
	-moz-animation: spin 2s infinite linear;
	-o-animation: spin 2s infinite linear;
	-webkit-animation: spin 2s infinite linear;
	animation: spin 2s infinite linear;
}

/* Prevent stack and spinners from being taken inline when inside a link */
a .icon-stack,
a .icon-spin {
	display: inline-block;
	text-decoration: none;
}

@-moz-keyframes spin {
	0% {
		-moz-transform: rotate(0deg);
	}
	100% {
		-moz-transform: rotate(359deg);
	}
}

@-webkit-keyframes spin {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(359deg);
	}
}

@-o-keyframes spin {
	0% {
		-o-transform: rotate(0deg);
	}
	100% {
		-o-transform: rotate(359deg);
	}
}

@-ms-keyframes spin {
	0% {
		-ms-transform: rotate(0deg);
	}
	100% {
		-ms-transform: rotate(359deg);
	}
}

@keyframes spin {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(359deg);
	}
}

/* Icon rotations and mirroring */
.icon-rotate-90:before {
	-webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	-o-transform: rotate(90deg);
	transform: rotate(90deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
}

.icon-rotate-180:before {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
}

.icon-rotate-270:before {
	-webkit-transform: rotate(270deg);
	-moz-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	-o-transform: rotate(270deg);
	transform: rotate(270deg);
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

.icon-flip-horizontal:before {
	-webkit-transform: scale(-1, 1);
	-moz-transform: scale(-1, 1);
	-ms-transform: scale(-1, 1);
	-o-transform: scale(-1, 1);
	transform: scale(-1, 1);
}

.icon-flip-vertical:before {
	-webkit-transform: scale(1, -1);
	-moz-transform: scale(1, -1);
	-ms-transform: scale(1, -1);
	-o-transform: scale(1, -1);
	transform: scale(1, -1);
}

/* ensure rotation occurs inside anchor tags */
a .icon-rotate-90:before,
a .icon-rotate-180:before,
a .icon-rotate-270:before,
a .icon-flip-horizontal:before,
a .icon-flip-vertical:before {
	display: inline-block;
}

/* Use the following CSS code if you want to use data attributes for inserting your icons */
[data-icon]:before {
	font-family: 'fontawesome-alloy';
	content: '\FEFF'attr(data-icon);
	speak: none;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Use the following CSS code if you want to have a class per icon */
/*
Instead of a list of all class selectors,
you can use the generic selector below, but it's slower:
[class*="icon-"] {
*/
.icon-caret-bottom-right,
.icon-glass,
.icon-music,
.icon-search,
.icon-envelope,
.icon-heart,
.icon-star,
.icon-star-empty,
.icon-user,
.icon-film,
.icon-th-large,
.icon-th,
.icon-th-list,
.icon-ok,
.icon-remove,
.icon-zoom-in,
.icon-zoom-out,
.icon-off,
.icon-signal,
.icon-cog,
.icon-trash,
.icon-home,
.icon-file,
.icon-inbox,
.icon-play-circle,
.icon-repeat,
.icon-refresh,
.icon-list-alt,
.icon-lock,
.icon-flag,
.icon-headphones,
.icon-volume-off,
.icon-volume-down,
.icon-volume-up,
.icon-qrcode,
.icon-barcode,
.icon-tag,
.icon-tags,
.icon-book,
.icon-bookmark,
.icon-print,
.icon-camera,
.icon-font,
.icon-bold,
.icon-italic,
.icon-align-justify,
.icon-list,
.icon-indent-left,
.icon-indent-right,
.icon-facetime-video,
.icon-picture,
.icon-pencil,
.icon-map-marker,
.icon-adjust,
.icon-tint,
.icon-edit,
.icon-share,
.icon-check,
.icon-move,
.icon-step-backward,
.icon-fast-backward,
.icon-backward,
.icon-play,
.icon-pause,
.icon-stop,
.icon-forward,
.icon-fast-forward,
.icon-minus-sign,
.icon-remove-sign,
.icon-ok-sign,
.icon-question-sign,
.icon-info-sign,
.icon-screenshot,
.icon-remove-circle,
.icon-ok-circle,
.icon-ban-circle,
.icon-arrow-left,
.icon-arrow-right,
.icon-arrow-up,
.icon-arrow-down,
.icon-share-alt,
.icon-resize-full,
.icon-resize-small,
.icon-plus,
.icon-minus,
.icon-asterisk,
.icon-exclamation-sign,
.icon-gift,
.icon-leaf,
.icon-calendar,
.icon-random,
.icon-comment,
.icon-magnet,
.icon-chevron-up,
.icon-chevron-down,
.icon-retweet,
.icon-shopping-cart,
.icon-folder-close,
.icon-folder-open,
.icon-resize-vertical,
.icon-resize-horizontal,
.icon-bar-chart,
.icon-twitter-sign,
.icon-facebook-sign,
.icon-camera-retro,
.icon-key,
.icon-cogs,
.icon-comments,
.icon-thumbs-up,
.icon-thumbs-down,
.icon-star-half,
.icon-signin,
.icon-trophy,
.icon-github-sign,
.icon-upload-alt,
.icon-lemon,
.icon-phone,
.icon-check-empty,
.icon-bookmark-empty,
.icon-phone-sign,
.icon-twitter,
.icon-facebook,
.icon-github,
.icon-unlock,
.icon-credit,
.icon-rss,
.icon-hdd,
.icon-bullhorn,
.icon-bell,
.icon-certificate,
.icon-hand-right,
.icon-hand-left,
.icon-hand-up,
.icon-globe,
.icon-wrench,
.icon-tasks,
.icon-filter,
.icon-briefcase,
.icon-fullscreen,
.icon-group,
.icon-link,
.icon-cloud,
.icon-beaker,
.icon-cut,
.icon-copy,
.icon-paper-clip,
.icon-save,
.icon-sign-blank,
.icon-reorder,
.icon-list-ul,
.icon-list-ol,
.icon-strikethrough,
.icon-underline,
.icon-table,
.icon-magic,
.icon-money,
.icon-caret-down,
.icon-caret-up,
.icon-caret-left,
.icon-caret-right,
.icon-columns,
.icon-sort,
.icon-sort-down,
.icon-sort-up,
.icon-envelope-alt,
.icon-linkedin,
.icon-undo,
.icon-legal,
.icon-dashboard,
.icon-comment-alt,
.icon-comments-alt,
.icon-bolt,
.icon-sitemap,
.icon-umbrella,
.icon-paste,
.icon-lightbulb,
.icon-exchange,
.icon-bell-alt,
.icon-coffee,
.icon-food,
.icon-file-alt,
.icon-building,
.icon-hospital,
.icon-ambulance,
.icon-medkit,
.icon-fighter-jet,
.icon-beer,
.icon-h-sign,
.icon-plus-sign,
.icon-double-angle-left,
.icon-double-angle-right,
.icon-double-angle-up,
.icon-double-angle-down,
.icon-angle-left,
.icon-angle-right,
.icon-angle-up,
.icon-angle-down,
.icon-desktop,
.icon-laptop,
.icon-spinner,
.icon-circle,
.icon-reply,
.icon-github-alt,
.icon-folder-close-alt,
.icon-folder-open-alt,
.icon-expand-alt,
.icon-collapse-alt,
.icon-smile,
.icon-frown,
.icon-meh,
.icon-gamepad,
.icon-keyboard,
.icon-flag-alt,
.icon-flag-checkered,
.icon-terminal,
.icon-code,
.icon-reply-all,
.icon-star-half-full,
.icon-location-arrow,
.icon-crop,
.icon-code-fork,
.icon-subscript,
.icon-eraser,
.icon-puzzle,
.icon-microphone,
.icon-microphone-off,
.icon-shield,
.icon-calendar-empty,
.icon-fire-extinguisher,
.icon-rocket,
.icon-maxcdn,
.icon-chevron-sign-left,
.icon-chevron-sign-right,
.icon-chevron-sign-up,
.icon-chevron-sign-down,
.icon-html5,
.icon-css3,
.icon-anchor,
.icon-unlock-alt,
.icon-bullseye,
.icon-ellipsis-horizontal,
.icon-ellipsis-vertical,
.icon-rss-sign,
.icon-fb-boolean,
.icon-text-height,
.icon-text-width,
.icon-align-left,
.icon-align-center,
.icon-align-right,
.icon-step-forward,
.icon-eject,
.icon-chevron-left,
.icon-chevron-right,
.icon-plus-sign-2,
.icon-fire,
.icon-eye-open,
.icon-eye-close,
.icon-warning-sign,
.icon-plane,
.icon-heart-empty,
.icon-signout,
.icon-linkedin-sign,
.icon-pushpin,
.icon-external-link,
.icon-hand-down,
.icon-circle-arrow-left,
.icon-circle-arrow-right,
.icon-circle-arrow-up,
.icon-circle-arrow-down,
.icon-truck,
.icon-pinterest,
.icon-pinterest-sign,
.icon-google-plus-sign,
.icon-google-plus,
.icon-cloud-download,
.icon-cloud-upload,
.icon-user-md,
.icon-stethoscope,
.icon-suitcase,
.icon-tablet,
.icon-mobile,
.icon-circle-blank,
.icon-quote-left,
.icon-quote-right,
.icon-unlink,
.icon-question,
.icon-info,
.icon-exclamation,
.icon-superscript,
.icon-play-sign,
.icon-ticket,
.icon-minus-sign-alt,
.icon-check-minus,
.icon-level-up,
.icon-sort-by-attributes-alt,
.icon-sort-by-order,
.icon-sort-by-order-alt,
.icon-thumbs-up-2,
.icon-thumbs-down-2,
.icon-dribbble,
.icon-skype,
.icon-foursquare,
.icon-trello,
.icon-female,
.icon-level-down,
.icon-check-sign,
.icon-edit-sign,
.icon-external-link-sign,
.icon-share-sign,
.icon-compass,
.icon-collapse,
.icon-collapse-top,
.icon-expand,
.icon-euro,
.icon-gbp,
.icon-dollar,
.icon-rupee,
.icon-yen,
.icon-renminbi,
.icon-won,
.icon-bitcoin,
.icon-file-2,
.icon-file-text,
.icon-sort-by-alphabet,
.icon-sort-by-alphabet-alt,
.icon-sort-by-attributes,
.icon-youtube-sign,
.icon-youtube,
.icon-xing,
.icon-xing-sign,
.icon-youtube-play,
.icon-dropbox,
.icon-stackexchange,
.icon-instagram,
.icon-flickr,
.icon-adn,
.icon-bitbucket,
.icon-bitbucket-sign,
.icon-tumblr,
.icon-tumblr-sign,
.icon-long-arrow-down,
.icon-long-arrow-up,
.icon-long-arrow-left,
.icon-long-arrow-right,
.icon-apple,
.icon-windows,
.icon-android,
.icon-linux,
.icon-male,
.icon-gittip,
.icon-sun,
.icon-moon,
.icon-archive,
.icon-bug,
.icon-vk,
.icon-weibo,
.icon-renren,
.icon-time,
.icon-road,
.icon-download-alt,
.icon-download,
.icon-upload,
.icon-db-joinxor,
.icon-db-state,
.icon-db-start,
.icon-db-end,
.icon-db-fork,
.icon-db-condition,
.icon-db-task,
.icon-db-join,
.icon-fb-button,
.icon-fb-fieldset,
.icon-fb-custom-field,
.icon-fb-separator,
.icon-fb-paragraph,
.icon-fb-file-upload,
.icon-fb-text,
.icon-fb-text-box,
.icon-fb-select,
.icon-fb-radio,
.icon-fb-number,
.icon-fb-integer,
.icon-fb-decimal {
	font-family: 'fontawesome-alloy';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	-webkit-font-smoothing: antialiased;
}

.icon-caret-bottom-right:before {
	content: '\e016';
}

.icon-glass:before {
	content: '\f000';
}

.icon-music:before {
	content: '\f001';
}

.icon-search:before {
	content: '\f002';
}

.icon-envelope:before {
	content: '\f003';
}

.icon-heart:before {
	content: '\f004';
}

.icon-star:before {
	content: '\f005';
}

.icon-star-empty:before {
	content: '\f006';
}

.icon-user:before {
	content: '\f007';
}

.icon-film:before {
	content: '\f008';
}

.icon-th-large:before {
	content: '\f009';
}

.icon-th:before {
	content: '\f00a';
}

.icon-th-list:before {
	content: '\f00b';
}

.icon-ok:before {
	content: '\f00c';
}

.icon-remove:before {
	content: '\f00d';
}

.icon-zoom-in:before {
	content: '\f00e';
}

.icon-zoom-out:before {
	content: '\f010';
}

.icon-off:before {
	content: '\f011';
}

.icon-signal:before {
	content: '\f012';
}

.icon-cog:before {
	content: '\f013';
}

.icon-trash:before {
	content: '\f014';
}

.icon-home:before {
	content: '\f015';
}

.icon-file:before {
	content: '\f016';
}

.icon-inbox:before {
	content: '\f01c';
}

.icon-play-circle:before {
	content: '\f01d';
}

.icon-repeat:before {
	content: '\f01e';
}

.icon-refresh:before {
	content: '\f021';
}

.icon-list-alt:before {
	content: '\f022';
}

.icon-lock:before {
	content: '\f023';
}

.icon-flag:before {
	content: '\f024';
}

.icon-headphones:before {
	content: '\f025';
}

.icon-volume-off:before {
	content: '\f026';
}

.icon-volume-down:before {
	content: '\f027';
}

.icon-volume-up:before {
	content: '\f028';
}

.icon-qrcode:before {
	content: '\f029';
}

.icon-barcode:before {
	content: '\f02a';
}

.icon-tag:before {
	content: '\f02b';
}

.icon-tags:before {
	content: '\f02c';
}

.icon-book:before {
	content: '\f02d';
}

.icon-bookmark:before {
	content: '\f02e';
}

.icon-print:before {
	content: '\f02f';
}

.icon-camera:before {
	content: '\f030';
}

.icon-font:before {
	content: '\f031';
}

.icon-bold:before {
	content: '\f032';
}

.icon-italic:before {
	content: '\f033';
}

.icon-align-justify:before {
	content: '\f039';
}

.icon-list:before {
	content: '\f03a';
}

.icon-indent-left:before {
	content: '\f03b';
}

.icon-indent-right:before {
	content: '\f03c';
}

.icon-facetime-video:before {
	content: '\f03d';
}

.icon-picture:before {
	content: '\f03e';
}

.icon-pencil:before {
	content: '\f040';
}

.icon-map-marker:before {
	content: '\f041';
}

.icon-adjust:before {
	content: '\f042';
}

.icon-tint:before {
	content: '\f043';
}

.icon-edit:before {
	content: '\f044';
}

.icon-share:before {
	content: '\f045';
}

.icon-check:before {
	content: '\f046';
}

.icon-move:before {
	content: '\f047';
}

.icon-step-backward:before {
	content: '\f048';
}

.icon-fast-backward:before {
	content: '\f049';
}

.icon-backward:before {
	content: '\f04a';
}

.icon-play:before {
	content: '\f04b';
}

.icon-pause:before {
	content: '\f04c';
}

.icon-stop:before {
	content: '\f04d';
}

.icon-forward:before {
	content: '\f04e';
}

.icon-fast-forward:before {
	content: '\f050';
}

.icon-minus-sign:before {
	content: '\f056';
}

.icon-remove-sign:before {
	content: '\f057';
}

.icon-ok-sign:before {
	content: '\f058';
}

.icon-question-sign:before {
	content: '\f059';
}

.icon-info-sign:before {
	content: '\f05a';
}

.icon-screenshot:before {
	content: '\f05b';
}

.icon-remove-circle:before {
	content: '\f05c';
}

.icon-ok-circle:before {
	content: '\f05d';
}

.icon-ban-circle:before {
	content: '\f05e';
}

.icon-arrow-left:before {
	content: '\f060';
}

.icon-arrow-right:before {
	content: '\f061';
}

.icon-arrow-up:before {
	content: '\f062';
}

.icon-arrow-down:before {
	content: '\f063';
}

.icon-share-alt:before {
	content: '\f064';
}

.icon-resize-full:before {
	content: '\f065';
}

.icon-resize-small:before {
	content: '\f066';
}

.icon-plus:before {
	content: '\f067';
}

.icon-minus:before {
	content: '\f068';
}

.icon-asterisk:before {
	content: '\f069';
}

.icon-exclamation-sign:before {
	content: '\f06a';
}

.icon-gift:before {
	content: '\f06b';
}

.icon-leaf:before {
	content: '\f06c';
}

.icon-calendar:before {
	content: '\f073';
}

.icon-random:before {
	content: '\f074';
}

.icon-comment:before {
	content: '\f075';
}

.icon-magnet:before {
	content: '\f076';
}

.icon-chevron-up:before {
	content: '\f077';
}

.icon-chevron-down:before {
	content: '\f078';
}

.icon-retweet:before {
	content: '\f079';
}

.icon-shopping-cart:before {
	content: '\f07a';
}

.icon-folder-close:before {
	content: '\f07b';
}

.icon-folder-open:before {
	content: '\f07c';
}

.icon-resize-vertical:before {
	content: '\f07d';
}

.icon-resize-horizontal:before {
	content: '\f07e';
}

.icon-bar-chart:before {
	content: '\f080';
}

.icon-twitter-sign:before {
	content: '\f081';
}

.icon-facebook-sign:before {
	content: '\f082';
}

.icon-camera-retro:before {
	content: '\f083';
}

.icon-key:before {
	content: '\f084';
}

.icon-cogs:before {
	content: '\f085';
}

.icon-comments:before {
	content: '\f086';
}

.icon-thumbs-up:before {
	content: '\f087';
}

.icon-thumbs-down:before {
	content: '\f088';
}

.icon-star-half:before {
	content: '\f089';
}

.icon-signin:before {
	content: '\f090';
}

.icon-trophy:before {
	content: '\f091';
}

.icon-github-sign:before {
	content: '\f092';
}

.icon-upload-alt:before {
	content: '\f093';
}

.icon-lemon:before {
	content: '\f094';
}

.icon-phone:before {
	content: '\f095';
}

.icon-check-empty:before {
	content: '\f096';
}

.icon-bookmark-empty:before {
	content: '\f097';
}

.icon-phone-sign:before {
	content: '\f098';
}

.icon-twitter:before {
	content: '\f099';
}

.icon-facebook:before {
	content: '\f09a';
}

.icon-github:before {
	content: '\f09b';
}

.icon-unlock:before {
	content: '\f09c';
}

.icon-credit:before {
	content: '\f09d';
}

.icon-rss:before {
	content: '\f09e';
}

.icon-hdd:before {
	content: '\f0a0';
}

.icon-bullhorn:before {
	content: '\f0a1';
}

.icon-bell:before {
	content: '\f0a2';
}

.icon-certificate:before {
	content: '\f0a3';
}

.icon-hand-right:before {
	content: '\f0a4';
}

.icon-hand-left:before {
	content: '\f0a5';
}

.icon-hand-up:before {
	content: '\f0a6';
}

.icon-globe:before {
	content: '\f0ac';
}

.icon-wrench:before {
	content: '\f0ad';
}

.icon-tasks:before {
	content: '\f0ae';
}

.icon-filter:before {
	content: '\f0b0';
}

.icon-briefcase:before {
	content: '\f0b1';
}

.icon-fullscreen:before {
	content: '\f0b2';
}

.icon-group:before {
	content: '\f0c0';
}

.icon-link:before {
	content: '\f0c1';
}

.icon-cloud:before {
	content: '\f0c2';
}

.icon-beaker:before {
	content: '\f0c3';
}

.icon-cut:before {
	content: '\f0c4';
}

.icon-copy:before {
	content: '\f0c5';
}

.icon-paper-clip:before {
	content: '\f0c6';
}

.icon-save:before {
	content: '\f0c7';
}

.icon-sign-blank:before {
	content: '\f0c8';
}

.icon-reorder:before {
	content: '\f0c9';
}

.icon-list-ul:before {
	content: '\f0ca';
}

.icon-list-ol:before {
	content: '\f0cb';
}

.icon-strikethrough:before {
	content: '\f0cc';
}

.icon-underline:before {
	content: '\f0cd';
}

.icon-table:before {
	content: '\f0ce';
}

.icon-magic:before {
	content: '\f0d0';
}

.icon-money:before {
	content: '\f0d6';
}

.icon-caret-down:before {
	content: '\f0d7';
}

.icon-caret-up:before {
	content: '\f0d8';
}

.icon-caret-left:before {
	content: '\f0d9';
}

.icon-caret-right:before {
	content: '\f0da';
}

.icon-columns:before {
	content: '\f0db';
}

.icon-sort:before {
	content: '\f0dc';
}

.icon-sort-down:before {
	content: '\f0dd';
}

.icon-sort-up:before {
	content: '\f0de';
}

.icon-envelope-alt:before {
	content: '\f0e0';
}

.icon-linkedin:before {
	content: '\f0e1';
}

.icon-undo:before {
	content: '\f0e2';
}

.icon-legal:before {
	content: '\f0e3';
}

.icon-dashboard:before {
	content: '\f0e4';
}

.icon-comment-alt:before {
	content: '\f0e5';
}

.icon-comments-alt:before {
	content: '\f0e6';
}

.icon-bolt:before {
	content: '\f0e7';
}

.icon-sitemap:before {
	content: '\f0e8';
}

.icon-umbrella:before {
	content: '\f0e9';
}

.icon-paste:before {
	content: '\f0ea';
}

.icon-lightbulb:before {
	content: '\f0eb';
}

.icon-exchange:before {
	content: '\f0ec';
}

.icon-bell-alt:before {
	content: '\f0f3';
}

.icon-coffee:before {
	content: '\f0f4';
}

.icon-food:before {
	content: '\f0f5';
}

.icon-file-alt:before {
	content: '\f0f6';
}

.icon-building:before {
	content: '\f0f7';
}

.icon-hospital:before {
	content: '\f0f8';
}

.icon-ambulance:before {
	content: '\f0f9';
}

.icon-medkit:before {
	content: '\f0fa';
}

.icon-fighter-jet:before {
	content: '\f0fb';
}

.icon-beer:before {
	content: '\f0fc';
}

.icon-h-sign:before {
	content: '\f0fd';
}

.icon-plus-sign:before {
	content: '\f0fe';
}

.icon-double-angle-left:before {
	content: '\f100';
}

.icon-double-angle-right:before {
	content: '\f101';
}

.icon-double-angle-up:before {
	content: '\f102';
}

.icon-double-angle-down:before {
	content: '\f103';
}

.icon-angle-left:before {
	content: '\f104';
}

.icon-angle-right:before {
	content: '\f105';
}

.icon-angle-up:before {
	content: '\f106';
}

.icon-angle-down:before {
	content: '\f107';
}

.icon-desktop:before {
	content: '\f108';
}

.icon-laptop:before {
	content: '\f109';
}

.icon-spinner:before {
	content: '\f110';
}

.icon-circle:before {
	content: '\f111';
}

.icon-reply:before {
	content: '\f112';
}

.icon-github-alt:before {
	content: '\f113';
}

.icon-folder-close-alt:before {
	content: '\f114';
}

.icon-folder-open-alt:before {
	content: '\f115';
}

.icon-expand-alt:before {
	content: '\f116';
}

.icon-collapse-alt:before {
	content: '\f117';
}

.icon-smile:before {
	content: '\f118';
}

.icon-frown:before {
	content: '\f119';
}

.icon-meh:before {
	content: '\f11a';
}

.icon-gamepad:before {
	content: '\f11b';
}

.icon-keyboard:before {
	content: '\f11c';
}

.icon-flag-alt:before {
	content: '\f11d';
}

.icon-flag-checkered:before {
	content: '\f11e';
}

.icon-terminal:before {
	content: '\f120';
}

.icon-code:before {
	content: '\f121';
}

.icon-reply-all:before {
	content: '\f122';
}

.icon-star-half-full:before {
	content: '\f123';
}

.icon-location-arrow:before {
	content: '\f124';
}

.icon-crop:before {
	content: '\f125';
}

.icon-code-fork:before {
	content: '\f126';
}

.icon-subscript:before {
	content: '\f12c';
}

.icon-eraser:before {
	content: '\f12d';
}

.icon-puzzle:before {
	content: '\f12e';
}

.icon-microphone:before {
	content: '\f130';
}

.icon-microphone-off:before {
	content: '\f131';
}

.icon-shield:before {
	content: '\f132';
}

.icon-calendar-empty:before {
	content: '\f133';
}

.icon-fire-extinguisher:before {
	content: '\f134';
}

.icon-rocket:before {
	content: '\f135';
}

.icon-maxcdn:before {
	content: '\f136';
}

.icon-chevron-sign-left:before {
	content: '\f137';
}

.icon-chevron-sign-right:before {
	content: '\f138';
}

.icon-chevron-sign-up:before {
	content: '\f139';
}

.icon-chevron-sign-down:before {
	content: '\f13a';
}

.icon-html5:before {
	content: '\f13b';
}

.icon-css3:before {
	content: '\f13c';
}

.icon-anchor:before {
	content: '\f13d';
}

.icon-unlock-alt:before {
	content: '\f13e';
}

.icon-bullseye:before {
	content: '\f140';
}

.icon-ellipsis-horizontal:before {
	content: '\f141';
}

.icon-ellipsis-vertical:before {
	content: '\f142';
}

.icon-rss-sign:before {
	content: '\f143';
}

.icon-fb-boolean:before {
	content: '\e008';
}

.icon-text-height:before {
	content: '\f034';
}

.icon-text-width:before {
	content: '\f035';
}

.icon-align-left:before {
	content: '\f036';
}

.icon-align-center:before {
	content: '\f037';
}

.icon-align-right:before {
	content: '\f038';
}

.icon-step-forward:before {
	content: '\f051';
}

.icon-eject:before {
	content: '\f052';
}

.icon-chevron-left:before {
	content: '\f053';
}

.icon-chevron-right:before {
	content: '\f054';
}

.icon-plus-sign-2:before {
	content: '\f055';
}

.icon-fire:before {
	content: '\f06d';
}

.icon-eye-open:before {
	content: '\f06e';
}

.icon-eye-close:before {
	content: '\f070';
}

.icon-warning-sign:before {
	content: '\f071';
}

.icon-plane:before {
	content: '\f072';
}

.icon-heart-empty:before {
	content: '\f08a';
}

.icon-signout:before {
	content: '\f08b';
}

.icon-linkedin-sign:before {
	content: '\f08c';
}

.icon-pushpin:before {
	content: '\f08d';
}

.icon-external-link:before {
	content: '\f08e';
}

.icon-hand-down:before {
	content: '\f0a7';
}

.icon-circle-arrow-left:before {
	content: '\f0a8';
}

.icon-circle-arrow-right:before {
	content: '\f0a9';
}

.icon-circle-arrow-up:before {
	content: '\f0aa';
}

.icon-circle-arrow-down:before {
	content: '\f0ab';
}

.icon-truck:before {
	content: '\f0d1';
}

.icon-pinterest:before {
	content: '\f0d2';
}

.icon-pinterest-sign:before {
	content: '\f0d3';
}

.icon-google-plus-sign:before {
	content: '\f0d4';
}

.icon-google-plus:before {
	content: '\f0d5';
}

.icon-cloud-download:before {
	content: '\f0ed';
}

.icon-cloud-upload:before {
	content: '\f0ee';
}

.icon-user-md:before {
	content: '\f0f0';
}

.icon-stethoscope:before {
	content: '\f0f1';
}

.icon-suitcase:before {
	content: '\f0f2';
}

.icon-tablet:before {
	content: '\f10a';
}

.icon-mobile:before {
	content: '\f10b';
}

.icon-circle-blank:before {
	content: '\f10c';
}

.icon-quote-left:before {
	content: '\f10d';
}

.icon-quote-right:before {
	content: '\f10e';
}

.icon-unlink:before {
	content: '\f127';
}

.icon-question:before {
	content: '\f128';
}

.icon-info:before {
	content: '\f129';
}

.icon-exclamation:before {
	content: '\f12a';
}

.icon-superscript:before {
	content: '\f12b';
}

.icon-play-sign:before {
	content: '\f144';
}

.icon-ticket:before {
	content: '\f145';
}

.icon-minus-sign-alt:before {
	content: '\f146';
}

.icon-check-minus:before {
	content: '\f147';
}

.icon-level-up:before {
	content: '\f148';
}

.icon-sort-by-attributes-alt:before {
	content: '\f161';
}

.icon-sort-by-order:before {
	content: '\f162';
}

.icon-sort-by-order-alt:before {
	content: '\f163';
}

.icon-thumbs-up-2:before {
	content: '\f164';
}

.icon-thumbs-down-2:before {
	content: '\f165';
}

.icon-dribbble:before {
	content: '\f17d';
}

.icon-skype:before {
	content: '\f17e';
}

.icon-foursquare:before {
	content: '\f180';
}

.icon-trello:before {
	content: '\f181';
}

.icon-female:before {
	content: '\f182';
}

.icon-level-down:before {
	content: '\f149';
}

.icon-check-sign:before {
	content: '\f14a';
}

.icon-edit-sign:before {
	content: '\f14b';
}

.icon-external-link-sign:before {
	content: '\f14c';
}

.icon-share-sign:before {
	content: '\f14d';
}

.icon-compass:before {
	content: '\f14e';
}

.icon-collapse:before {
	content: '\f150';
}

.icon-collapse-top:before {
	content: '\f151';
}

.icon-expand:before {
	content: '\f152';
}

.icon-euro:before {
	content: '\f153';
}

.icon-gbp:before {
	content: '\f154';
}

.icon-dollar:before {
	content: '\f155';
}

.icon-rupee:before {
	content: '\f156';
}

.icon-yen:before {
	content: '\f157';
}

.icon-renminbi:before {
	content: '\f158';
}

.icon-won:before {
	content: '\f159';
}

.icon-bitcoin:before {
	content: '\f15a';
}

.icon-file-2:before {
	content: '\f15b';
}

.icon-file-text:before {
	content: '\f15c';
}

.icon-sort-by-alphabet:before {
	content: '\f15d';
}

.icon-sort-by-alphabet-alt:before {
	content: '\f15e';
}

.icon-sort-by-attributes:before {
	content: '\f160';
}

.icon-youtube-sign:before {
	content: '\f166';
}

.icon-youtube:before {
	content: '\f167';
}

.icon-xing:before {
	content: '\f168';
}

.icon-xing-sign:before {
	content: '\f169';
}

.icon-youtube-play:before {
	content: '\f16a';
}

.icon-dropbox:before {
	content: '\f16b';
}

.icon-stackexchange:before {
	content: '\f16c';
}

.icon-instagram:before {
	content: '\f16d';
}

.icon-flickr:before {
	content: '\f16e';
}

.icon-adn:before {
	content: '\f170';
}

.icon-bitbucket:before {
	content: '\f171';
}

.icon-bitbucket-sign:before {
	content: '\f172';
}

.icon-tumblr:before {
	content: '\f173';
}

.icon-tumblr-sign:before {
	content: '\f174';
}

.icon-long-arrow-down:before {
	content: '\f175';
}

.icon-long-arrow-up:before {
	content: '\f176';
}

.icon-long-arrow-left:before {
	content: '\f177';
}

.icon-long-arrow-right:before {
	content: '\f178';
}

.icon-apple:before {
	content: '\f179';
}

.icon-windows:before {
	content: '\f17a';
}

.icon-android:before {
	content: '\f17b';
}

.icon-linux:before {
	content: '\f17c';
}

.icon-male:before {
	content: '\f183';
}

.icon-gittip:before {
	content: '\f184';
}

.icon-sun:before {
	content: '\f185';
}

.icon-moon:before {
	content: '\f186';
}

.icon-archive:before {
	content: '\f187';
}

.icon-bug:before {
	content: '\f188';
}

.icon-vk:before {
	content: '\f189';
}

.icon-weibo:before {
	content: '\f18a';
}

.icon-renren:before {
	content: '\f18b';
}

.icon-time:before {
	content: '\f017';
}

.icon-road:before {
	content: '\f018';
}

.icon-download-alt:before {
	content: '\f019';
}

.icon-download:before {
	content: '\f01a';
}

.icon-upload:before {
	content: '\f01b';
}

.icon-db-joinxor:before {
	content: '\e006';
}

.icon-db-state:before {
	content: '\e009';
}

.icon-db-start:before {
	content: '\e00b';
}

.icon-db-end:before {
	content: '\e00a';
}

.icon-db-fork:before {
	content: '\e00c';
}

.icon-db-condition:before {
	content: '\e00e';
}

.icon-db-task:before {
	content: '\e00d';
}

.icon-db-join:before {
	content: '\e00f';
}

.icon-fb-button:before {
	content: '\e010';
}

.icon-fb-fieldset:before {
	content: '\e011';
}

.icon-fb-custom-field:before {
	content: '\e012';
}

.icon-fb-separator:before {
	content: '\e013';
}

.icon-fb-paragraph:before {
	content: '\e014';
}

.icon-fb-file-upload:before {
	content: '\e015';
}

.icon-fb-text:before {
	content: '\e000';
}

.icon-fb-text-box:before {
	content: '\e001';
}

.icon-fb-select:before {
	content: '\e002';
}

.icon-fb-radio:before {
	content: '\e003';
}

.icon-fb-number:before {
	content: '\e004';
}

.icon-fb-integer:before {
	content: '\e005';
}

.icon-fb-decimal:before {
	content: '\e007';
}

.icon-btc:before {
	content: '\f15a';
}

.icon-cny:before {
	content: '\f158';
}

.icon-eur:before {
	content: '\f153';
}

.icon-gear:before {
	content: '\f013';
}

.icon-gears:before {
	content: '\f085';
}

.icon-inr:before {
	content: '\f156';
}

.icon-jpy:before {
	content: '\f157';
}

.icon-krw:before {
	content: '\f159';
}

.icon-mail-forward:before {
	content: '\f064';
}

.icon-mail-reply:before {
	content: '\f112';
}

.icon-paperclip:before {
	content: '\f0c6';
}

.icon-power-off:before {
	content: '\f011';
}

.icon-rotate-left:before {
	content: '\f0e2';
}

.icon-rotate-right:before {
	content: '\f01e';
}

.icon-star-half-empty:before {
	content: '\f123';
}

.icon-unchecked:before {
	content: '\f096';
}

.icon-usd:before {
	content: '\f155';
}

@font-face {
	font-family: 'Glyphicons Halflings';
	src: url(../font/glyphicons-halflings-regular.eot);
	src: url(../font/glyphicons-halflings-regular.eot?#iefix)
			format('embedded-opentype'),
		url(../font/glyphicons-halflings-regular.woff2) format('woff2'),
		url(../font/glyphicons-halflings-regular.woff) format('woff'),
		url(../font/glyphicons-halflings-regular.ttf) format('truetype'),
		url(../font/glyphicons-halflings-regular.svgglyphicons_halflingsregular)
			format('svg');
}

.glyphicon {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-family: 'Glyphicons Halflings';
	font-style: normal;
	font-weight: normal;
	line-height: 1;
	position: relative;
	top: 1px;
}

.glyphicon-asterisk:before {
	content: '\002a';
}

.glyphicon-plus:before {
	content: '\002b';
}

.glyphicon-euro:before,
.glyphicon-eur:before {
	content: '\20ac';
}

.glyphicon-minus:before {
	content: '\2212';
}

.glyphicon-cloud:before {
	content: '\2601';
}

.glyphicon-envelope:before {
	content: '\2709';
}

.glyphicon-pencil:before {
	content: '\270f';
}

.glyphicon-glass:before {
	content: '\e001';
}

.glyphicon-music:before {
	content: '\e002';
}

.glyphicon-search:before {
	content: '\e003';
}

.glyphicon-heart:before {
	content: '\e005';
}

.glyphicon-star:before {
	content: '\e006';
}

.glyphicon-star-empty:before {
	content: '\e007';
}

.glyphicon-user:before {
	content: '\e008';
}

.glyphicon-film:before {
	content: '\e009';
}

.glyphicon-th-large:before {
	content: '\e010';
}

.glyphicon-th:before {
	content: '\e011';
}

.glyphicon-th-list:before {
	content: '\e012';
}

.glyphicon-ok:before {
	content: '\e013';
}

.glyphicon-remove:before {
	content: '\e014';
}

.glyphicon-zoom-in:before {
	content: '\e015';
}

.glyphicon-zoom-out:before {
	content: '\e016';
}

.glyphicon-off:before {
	content: '\e017';
}

.glyphicon-signal:before {
	content: '\e018';
}

.glyphicon-cog:before {
	content: '\e019';
}

.glyphicon-trash:before {
	content: '\e020';
}

.glyphicon-home:before {
	content: '\e021';
}

.glyphicon-file:before {
	content: '\e022';
}

.glyphicon-time:before {
	content: '\e023';
}

.glyphicon-road:before {
	content: '\e024';
}

.glyphicon-download-alt:before {
	content: '\e025';
}

.glyphicon-download:before {
	content: '\e026';
}

.glyphicon-upload:before {
	content: '\e027';
}

.glyphicon-inbox:before {
	content: '\e028';
}

.glyphicon-play-circle:before {
	content: '\e029';
}

.glyphicon-repeat:before {
	content: '\e030';
}

.glyphicon-refresh:before {
	content: '\e031';
}

.glyphicon-list-alt:before {
	content: '\e032';
}

.glyphicon-lock:before {
	content: '\e033';
}

.glyphicon-flag:before {
	content: '\e034';
}

.glyphicon-headphones:before {
	content: '\e035';
}

.glyphicon-volume-off:before {
	content: '\e036';
}

.glyphicon-volume-down:before {
	content: '\e037';
}

.glyphicon-volume-up:before {
	content: '\e038';
}

.glyphicon-qrcode:before {
	content: '\e039';
}

.glyphicon-barcode:before {
	content: '\e040';
}

.glyphicon-tag:before {
	content: '\e041';
}

.glyphicon-tags:before {
	content: '\e042';
}

.glyphicon-book:before {
	content: '\e043';
}

.glyphicon-bookmark:before {
	content: '\e044';
}

.glyphicon-print:before {
	content: '\e045';
}

.glyphicon-camera:before {
	content: '\e046';
}

.glyphicon-font:before {
	content: '\e047';
}

.glyphicon-bold:before {
	content: '\e048';
}

.glyphicon-italic:before {
	content: '\e049';
}

.glyphicon-text-height:before {
	content: '\e050';
}

.glyphicon-text-width:before {
	content: '\e051';
}

.glyphicon-align-left:before {
	content: '\e052';
}

.glyphicon-align-center:before {
	content: '\e053';
}

.glyphicon-align-right:before {
	content: '\e054';
}

.glyphicon-align-justify:before {
	content: '\e055';
}

.glyphicon-list:before {
	content: '\e056';
}

.glyphicon-indent-left:before {
	content: '\e057';
}

.glyphicon-indent-right:before {
	content: '\e058';
}

.glyphicon-facetime-video:before {
	content: '\e059';
}

.glyphicon-picture:before {
	content: '\e060';
}

.glyphicon-map-marker:before {
	content: '\e062';
}

.glyphicon-adjust:before {
	content: '\e063';
}

.glyphicon-tint:before {
	content: '\e064';
}

.glyphicon-edit:before {
	content: '\e065';
}

.glyphicon-share:before {
	content: '\e066';
}

.glyphicon-check:before {
	content: '\e067';
}

.glyphicon-move:before {
	content: '\e068';
}

.glyphicon-step-backward:before {
	content: '\e069';
}

.glyphicon-fast-backward:before {
	content: '\e070';
}

.glyphicon-backward:before {
	content: '\e071';
}

.glyphicon-play:before {
	content: '\e072';
}

.glyphicon-pause:before {
	content: '\e073';
}

.glyphicon-stop:before {
	content: '\e074';
}

.glyphicon-forward:before {
	content: '\e075';
}

.glyphicon-fast-forward:before {
	content: '\e076';
}

.glyphicon-step-forward:before {
	content: '\e077';
}

.glyphicon-eject:before {
	content: '\e078';
}

.glyphicon-chevron-left:before {
	content: '\e079';
}

.glyphicon-chevron-right:before {
	content: '\e080';
}

.glyphicon-plus-sign:before {
	content: '\e081';
}

.glyphicon-minus-sign:before {
	content: '\e082';
}

.glyphicon-remove-sign:before {
	content: '\e083';
}

.glyphicon-ok-sign:before {
	content: '\e084';
}

.glyphicon-question-sign:before {
	content: '\e085';
}

.glyphicon-info-sign:before {
	content: '\e086';
}

.glyphicon-screenshot:before {
	content: '\e087';
}

.glyphicon-remove-circle:before {
	content: '\e088';
}

.glyphicon-ok-circle:before {
	content: '\e089';
}

.glyphicon-ban-circle:before {
	content: '\e090';
}

.glyphicon-arrow-left:before {
	content: '\e091';
}

.glyphicon-arrow-right:before {
	content: '\e092';
}

.glyphicon-arrow-up:before {
	content: '\e093';
}

.glyphicon-arrow-down:before {
	content: '\e094';
}

.glyphicon-share-alt:before {
	content: '\e095';
}

.glyphicon-resize-full:before {
	content: '\e096';
}

.glyphicon-resize-small:before {
	content: '\e097';
}

.glyphicon-exclamation-sign:before {
	content: '\e101';
}

.glyphicon-gift:before {
	content: '\e102';
}

.glyphicon-leaf:before {
	content: '\e103';
}

.glyphicon-fire:before {
	content: '\e104';
}

.glyphicon-eye-open:before {
	content: '\e105';
}

.glyphicon-eye-close:before {
	content: '\e106';
}

.glyphicon-warning-sign:before {
	content: '\e107';
}

.glyphicon-plane:before {
	content: '\e108';
}

.glyphicon-calendar:before {
	content: '\e109';
}

.glyphicon-random:before {
	content: '\e110';
}

.glyphicon-comment:before {
	content: '\e111';
}

.glyphicon-magnet:before {
	content: '\e112';
}

.glyphicon-chevron-up:before {
	content: '\e113';
}

.glyphicon-chevron-down:before {
	content: '\e114';
}

.glyphicon-retweet:before {
	content: '\e115';
}

.glyphicon-shopping-cart:before {
	content: '\e116';
}

.glyphicon-folder-close:before {
	content: '\e117';
}

.glyphicon-folder-open:before {
	content: '\e118';
}

.glyphicon-resize-vertical:before {
	content: '\e119';
}

.glyphicon-resize-horizontal:before {
	content: '\e120';
}

.glyphicon-hdd:before {
	content: '\e121';
}

.glyphicon-bullhorn:before {
	content: '\e122';
}

.glyphicon-bell:before {
	content: '\e123';
}

.glyphicon-certificate:before {
	content: '\e124';
}

.glyphicon-thumbs-up:before {
	content: '\e125';
}

.glyphicon-thumbs-down:before {
	content: '\e126';
}

.glyphicon-hand-right:before {
	content: '\e127';
}

.glyphicon-hand-left:before {
	content: '\e128';
}

.glyphicon-hand-up:before {
	content: '\e129';
}

.glyphicon-hand-down:before {
	content: '\e130';
}

.glyphicon-circle-arrow-right:before {
	content: '\e131';
}

.glyphicon-circle-arrow-left:before {
	content: '\e132';
}

.glyphicon-circle-arrow-up:before {
	content: '\e133';
}

.glyphicon-circle-arrow-down:before {
	content: '\e134';
}

.glyphicon-globe:before {
	content: '\e135';
}

.glyphicon-wrench:before {
	content: '\e136';
}

.glyphicon-tasks:before {
	content: '\e137';
}

.glyphicon-filter:before {
	content: '\e138';
}

.glyphicon-briefcase:before {
	content: '\e139';
}

.glyphicon-fullscreen:before {
	content: '\e140';
}

.glyphicon-dashboard:before {
	content: '\e141';
}

.glyphicon-paperclip:before {
	content: '\e142';
}

.glyphicon-heart-empty:before {
	content: '\e143';
}

.glyphicon-link:before {
	content: '\e144';
}

.glyphicon-phone:before {
	content: '\e145';
}

.glyphicon-pushpin:before {
	content: '\e146';
}

.glyphicon-usd:before {
	content: '\e148';
}

.glyphicon-gbp:before {
	content: '\e149';
}

.glyphicon-sort:before {
	content: '\e150';
}

.glyphicon-sort-by-alphabet:before {
	content: '\e151';
}

.glyphicon-sort-by-alphabet-alt:before {
	content: '\e152';
}

.glyphicon-sort-by-order:before {
	content: '\e153';
}

.glyphicon-sort-by-order-alt:before {
	content: '\e154';
}

.glyphicon-sort-by-attributes:before {
	content: '\e155';
}

.glyphicon-sort-by-attributes-alt:before {
	content: '\e156';
}

.glyphicon-unchecked:before {
	content: '\e157';
}

.glyphicon-expand:before {
	content: '\e158';
}

.glyphicon-collapse-down:before {
	content: '\e159';
}

.glyphicon-collapse-up:before {
	content: '\e160';
}

.glyphicon-log-in:before {
	content: '\e161';
}

.glyphicon-flash:before {
	content: '\e162';
}

.glyphicon-log-out:before {
	content: '\e163';
}

.glyphicon-new-window:before {
	content: '\e164';
}

.glyphicon-record:before {
	content: '\e165';
}

.glyphicon-save:before {
	content: '\e166';
}

.glyphicon-open:before {
	content: '\e167';
}

.glyphicon-saved:before {
	content: '\e168';
}

.glyphicon-import:before {
	content: '\e169';
}

.glyphicon-export:before {
	content: '\e170';
}

.glyphicon-send:before {
	content: '\e171';
}

.glyphicon-floppy-disk:before {
	content: '\e172';
}

.glyphicon-floppy-saved:before {
	content: '\e173';
}

.glyphicon-floppy-remove:before {
	content: '\e174';
}

.glyphicon-floppy-save:before {
	content: '\e175';
}

.glyphicon-floppy-open:before {
	content: '\e176';
}

.glyphicon-credit-card:before {
	content: '\e177';
}

.glyphicon-transfer:before {
	content: '\e178';
}

.glyphicon-cutlery:before {
	content: '\e179';
}

.glyphicon-header:before {
	content: '\e180';
}

.glyphicon-compressed:before {
	content: '\e181';
}

.glyphicon-earphone:before {
	content: '\e182';
}

.glyphicon-phone-alt:before {
	content: '\e183';
}

.glyphicon-tower:before {
	content: '\e184';
}

.glyphicon-stats:before {
	content: '\e185';
}

.glyphicon-sd-video:before {
	content: '\e186';
}

.glyphicon-hd-video:before {
	content: '\e187';
}

.glyphicon-subtitles:before {
	content: '\e188';
}

.glyphicon-sound-stereo:before {
	content: '\e189';
}

.glyphicon-sound-dolby:before {
	content: '\e190';
}

.glyphicon-sound-5-1:before {
	content: '\e191';
}

.glyphicon-sound-6-1:before {
	content: '\e192';
}

.glyphicon-sound-7-1:before {
	content: '\e193';
}

.glyphicon-copyright-mark:before {
	content: '\e194';
}

.glyphicon-registration-mark:before {
	content: '\e195';
}

.glyphicon-cloud-download:before {
	content: '\e197';
}

.glyphicon-cloud-upload:before {
	content: '\e198';
}

.glyphicon-tree-conifer:before {
	content: '\e199';
}

.glyphicon-tree-deciduous:before {
	content: '\e200';
}

.glyphicon-cd:before {
	content: '\e201';
}

.glyphicon-save-file:before {
	content: '\e202';
}

.glyphicon-open-file:before {
	content: '\e203';
}

.glyphicon-level-up:before {
	content: '\e204';
}

.glyphicon-copy:before {
	content: '\e205';
}

.glyphicon-paste:before {
	content: '\e206';
}

.glyphicon-alert:before {
	content: '\e209';
}

.glyphicon-equalizer:before {
	content: '\e210';
}

.glyphicon-king:before {
	content: '\e211';
}

.glyphicon-queen:before {
	content: '\e212';
}

.glyphicon-pawn:before {
	content: '\e213';
}

.glyphicon-bishop:before {
	content: '\e214';
}

.glyphicon-knight:before {
	content: '\e215';
}

.glyphicon-baby-formula:before {
	content: '\e216';
}

.glyphicon-tent:before {
	content: '\26fa';
}

.glyphicon-blackboard:before {
	content: '\e218';
}

.glyphicon-bed:before {
	content: '\e219';
}

.glyphicon-apple:before {
	content: '\f8ff';
}

.glyphicon-erase:before {
	content: '\e221';
}

.glyphicon-hourglass:before {
	content: '\231b';
}

.glyphicon-lamp:before {
	content: '\e223';
}

.glyphicon-duplicate:before {
	content: '\e224';
}

.glyphicon-piggy-bank:before {
	content: '\e225';
}

.glyphicon-scissors:before {
	content: '\e226';
}

.glyphicon-bitcoin:before {
	content: '\e227';
}

.glyphicon-btc:before {
	content: '\e227';
}

.glyphicon-xbt:before {
	content: '\e227';
}

.glyphicon-yen:before {
	content: '\00a5';
}

.glyphicon-jpy:before {
	content: '\00a5';
}

.glyphicon-ruble:before {
	content: '\20bd';
}

.glyphicon-rub:before {
	content: '\20bd';
}

.glyphicon-scale:before {
	content: '\e230';
}

.glyphicon-ice-lolly:before {
	content: '\e231';
}

.glyphicon-ice-lolly-tasted:before {
	content: '\e232';
}

.glyphicon-education:before {
	content: '\e233';
}

.glyphicon-option-horizontal:before {
	content: '\e234';
}

.glyphicon-option-vertical:before {
	content: '\e235';
}

.glyphicon-menu-hamburger:before {
	content: '\e236';
}

.glyphicon-modal-window:before {
	content: '\e237';
}

.glyphicon-oil:before {
	content: '\e238';
}

.glyphicon-grain:before {
	content: '\e239';
}

.glyphicon-sunglasses:before {
	content: '\e240';
}

.glyphicon-text-size:before {
	content: '\e241';
}

.glyphicon-text-color:before {
	content: '\e242';
}

.glyphicon-text-background:before {
	content: '\e243';
}

.glyphicon-object-align-top:before {
	content: '\e244';
}

.glyphicon-object-align-bottom:before {
	content: '\e245';
}

.glyphicon-object-align-horizontal:before {
	content: '\e246';
}

.glyphicon-object-align-left:before {
	content: '\e247';
}

.glyphicon-object-align-vertical:before {
	content: '\e248';
}

.glyphicon-object-align-right:before {
	content: '\e249';
}

.glyphicon-triangle-right:before {
	content: '\e250';
}

.glyphicon-triangle-left:before {
	content: '\e251';
}

.glyphicon-triangle-bottom:before {
	content: '\e252';
}

.glyphicon-triangle-top:before {
	content: '\e253';
}

.glyphicon-console:before {
	content: '\e254';
}

.glyphicon-superscript:before {
	content: '\e255';
}

.glyphicon-subscript:before {
	content: '\e256';
}

.glyphicon-menu-left:before {
	content: '\e257';
}

.glyphicon-menu-right:before {
	content: '\e258';
}

.glyphicon-menu-down:before {
	content: '\e259';
}

.glyphicon-menu-up:before {
	content: '\e260';
}

:root {
	/***  COLORS ***/
	--gs-blue: #522ef5;
	--gs-light-blue: #0675c2;
	--gs-yellow: #fffd65;
}

/*** BREAKPOINTS ***/
.portlet-decorate .portlet-content,
.portlet-boundary .portlet-content {
	padding: 0;
	background: transparent;
	border-width: 0;
}

.portlet {
	margin: 0;
}

.gs-bg-blue {
	background-color: var(--gs-blue);
}

.gs-bg-light-blue {
	background-color: var(--gs-light-blue);
}

.gs-bg-yellow {
	background-color: var(--gs-yellow);
}

.hover\:gs-bg-yellow:hover {
	background-color: var(--gs-yellow);
}

.gs-bg-transparent {
	background-color: transparent;
}

.gs-bg-black {
	background-color: black;
}

.gs-bg-white {
	background-color: white;
}

.gs-bg-overlay {
	background-color: rgba(0, 0, 0, 0.6);
}

.gs-bg-active {
	background-color: var(--gs-yellow);
}

.gs-bg-active a {
	color: var(--gs-blue);
}

.gs-border-yellow {
	border-color: var(--gs-yellow);
}

.gs-border-white {
	border-color: white;
}

.gs-rounded {
	border-radius: 0.25rem;
}

.gs-rounded-lg {
	border-radius: 0.5rem;
}

.gs-rounded-full {
	border-radius: 9999px;
}

.gs-border-solid {
	border-style: solid;
}

.gs-border-0 {
	border-width: 0px;
}

.gs-border-1 {
	border-width: 1px;
}

.gs-border-8 {
	border-width: 8px;
}

.gs-opacity-70 {
	opacity: 0.7;
}

.gs-items-start {
	align-items: flex-start;
}

.gs-items-end {
	align-items: flex-end;
}

.gs-items-center {
	align-items: center;
}

.gs-items-stretch {
	align-items: stretch;
}

.gs-self-end {
	align-self: flex-end;
}

.gs-flex-row {
	flex-direction: row;
}

.gs-flex-row-reverse {
	flex-direction: row-reverse;
}

.gs-flex-col {
	flex-direction: column;
}

.gs-flex-col-reverse {
	flex-direction: column-reverse;
}

@media (min-width: 768px) {
	.md\:gs-flex-row {
		flex-direction: row;
	}
  .md\:gs-flex-col {
    flex-direction: column;
  }
}

@media (min-width: 1024px) {
	.lg\:gs-flex-row {
		flex-direction: row;
	}
  .lg\:gs-flex-col {
    flex-direction: column;
  }
}

.gs-flex-wrap {
	flex-wrap: wrap;
}

.gs-flex-1 {
	flex: 1 1 0%;
}

.gs-gap-4 {
	gap: 1rem;
}

.gs-gap-6 {
  gap: 1.5rem;
}

.gs-gap-8 {
	gap: 2rem;
}

.gs-gap-12 {
  gap: 3rem;
}

.gs-gap-16 {
	gap: 4rem;
}

.gs-grid-auto-cols-15 {
	grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
}

.gs-grid-auto-cols-24 {
	grid-template-columns: repeat(auto-fill, minmax(24rem, 1fr));
}

.gs-justify-start {
	justify-content: flex-start;
}

.gs-justify-center {
	justify-content: center;
}

.gs-justify-between {
	justify-content: space-between;
}

.gs-justify-end {
	justify-content: flex-end;
}

@media (min-width: 1024px) {
	.lg\:gs-justify-end {
		justify-content: flex-end;
	}
}

.gs-cursor-pointer {
	cursor: pointer;
}

.gs-aspect-\[1\/1\] {
	aspect-ratio: 1 / 1;
}

.gs-aspect-\[1008\/574\] {
	aspect-ratio: 1008 / 574;
}



.gs-flex {
	display: flex;
}

.gs-grid {
	display: grid;
}

.gs-hidden {
	display: none;
}

@media (min-width: 768px) {
	.md\:gs-flex {
		display: flex;
	}
}

@media (min-width: 1024px) {
	.lg\:gs-hidden {
		display: none;
	}
	.lg\:gs-flex {
		display: flex;
	}
	.lg\:gs-grid {
		display: grid;
	}
}

@media (min-width: 1280px) {
	.xl\:gs-grid {
		display: grid;
	}
	.xl\:gs-flex {
		display: flex;
	}
	.xl\:gs-hidden {
		display: none;
	}
}

.gs-fixed {
	position: fixed;
}

.gs-absolute {
	position: absolute;
}

.gs-relative {
	position: relative;
}

.gs-sticky {
	position: sticky;
}

.gs-top-0 {
	top: 0px;
}

.gs-top-1\/2 {
	top: 50%;
}

.gs-right-0 {
	right: 0px;
}

.gs-left-0 {
	left: 0px;
}

.gs-left-1\/2 {
	left: 50%;
}

.gs-bottom-0 {
	bottom: 0px;
}

.gs-bottom-13 {
	bottom: 3.25rem;
}

.gs-bottom-14 {
	bottom: 3.5rem;
}

@media (min-width: 1024px) {
	.lg\:gs-top-5 {
		top: 1.25rem;
	}
}

.gs-z-1 {
	z-index: 1;
}

.gs-z-10 {
	z-index: 10;
}

.gs-z-11 {
	z-index: 11;
}

.gs-overflow-hidden {
	overflow: hidden;
}

.gs-overflow-scroll {
	overflow: scroll;
}

.gs-overflow-y-scroll {
	overflow-y: scroll;
}

.gs-w-full {
	width: 100%;
}

.gs-w-2 {
	width: 0.5rem;
}

.gs-w-4 {
	width: 1rem;
}

.gs-w-8 {
	width: 2rem;
}

.gs-w-12 {
	width: 3.5rem;
}

.gs-w-16 {
	width: 4rem;
}

.gs-w-73 {
	width: 18.75rem;
}

.gs-h-full {
	height: 100%;
}

.gs-h-2 {
	height: 0.5rem;
}

.gs-h-4 {
	height: 1rem;
}

.gs-h-8 {
	height: 2rem;
}

.gs-h-12 {
	height: 3.5rem;
}

.gs-h-16 {
	height: 4rem;
}

.gs-h-80 {
	height: 20rem;
}

.gs-h-105 {
	height: 26.25rem;
}

@media (min-width: 768px) {
	.md\:gs-h-105 {
		height: 26.25rem;
	}
}

.gs-max-h-0 {
	max-height: 0px;
}

.gs-max-h-screen-80 {
	max-height: 80vh;
}

.gs-max-h-screen-90 {
	max-height: 90vh;
}

.gs-max-h-screen {
	max-height: 100vh;
}

.gs-max-h-screen {
	max-height: 100vh;
}

@media (min-width: 1024px) {
	.lg\:gs-max-h-screen {
		max-height: 100vh;
	}
}

.gs-min-h-125 {
	min-height: 31.25rem;
}

.gs-max-w-\[1422px\] {
	max-width: 1422px;
}

.gs-max-w-\[1008px\] {
	max-width: 1008px;
}

.gs-max-w-73 {
	max-width: 18.75rem;
}

.gs-max-w-96 {
	max-width: 24rem;
}

.gs-max-w-screen-80 {
	max-width: 80vw;
}

.gs-max-w-3xl {
	max-width: 48rem;
}

.gs-max-w-max {
	max-width: max-content;
}

.gs-m-0 {
	margin: 0;
}

.gs-m-4 {
	margin-bottom: 1rem;
}

.gs-m-auto {
	margin: auto;
}

.gs-mx-auto {
	margin-left: auto;
	margin-right: auto;
}

.gs-mt-auto {
	margin-top: auto;
}

.gs-mt-4 {
	margin-top: 1rem;
}

.gs-mt-12 {
	margin-top: 3rem;
}

.gs-mr-4 {
	margin-right: 1rem;
}

.gs-mb-4 {
	margin-bottom: 1rem;
}

.gs-mb-7 {
	margin-bottom: 1.75rem;
}

.gs-mb-12 {
	margin-bottom: 3rem;
}

.gs-mb-16 {
	margin-bottom: 4rem;
}

.gs-mb-20{
  margin-bottom: 5rem;
}

.gs-mb-24 {
  margin-bottom: 6rem;
}

.gs-mt-24 {
  margin-top: 6rem;
}

@media (min-width: 1024px) {
	.lg\:gs-mr-0 {
		margin-right: 0;
	}
}

.gs-p-0 {
	padding: 0;
}

.gs-p-2{
  padding: 0.5rem;
}

.gs-p-4 {
	padding: 1rem;
}

.gs-p-5 {
	padding: 1.25rem;
}

.gs-p-6 {
  padding: 1.5rem;
}

.gs-p-8 {
	padding: 2rem;
}

.gs-px-4 {
	padding-left: 1rem;
	padding-right: 1rem;
}

.gs-px-8 {
	padding-left: 2rem;
	padding-right: 2rem;
}

.gs-px-16 {
	padding-left: 4rem;
	padding-right: 4rem;
}

.gs-py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.gs-py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.gs-py-2 {
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

.gs-py-3 {
	padding-top: 0.75rem;
	padding-bottom: 0.75rem;
}

.gs-py-4 {
	padding-top: 1rem;
	padding-bottom: 1rem;
}

.gs-py-9 {
	padding-top: 2.25rem;
	padding-bottom: 2.25rem;
}

.gs-py-16 {
	padding-top: 4rem;
	padding-bottom: 4rem;
}

.gs-pb-16 {
	padding-bottom: 4rem;
}

.gs-pt-16 {
	padding-top: 4rem;
}

.gs-translate-x-1\/2 {
	transform: translateX(50%);
}

.gs-translate-y-1\/2 {
	transform: translateY(50%);
}

.gs-transition-all {
	transition-property: all;
	transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
	transition-duration: 150ms;
}

.gs-duration-500 {
	transition-duration: 500ms;
}

.gs-ease-out {
	transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

@font-face {
	font-family: 'Neutrif Studio';
	src: url('../font/Neutrif-Studio-Regular.ttf');
}

.gs-neutrif-studio {
	font-family: 'Neutrif Studio', 'Courier New', Courier, monospace;
}

.gs-text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.gs-text-sm {
	font-size: 0.875rem;
	line-height: 1.25rem;
}

.gs-text-base {
	font-size: 1rem;
	line-height: 1.5rem;
}

.gs-text-lg {
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.gs-text-xl {
	font-size: 1.25rem;
	line-height: 1.75rem;
}

.gs-text-2xl {
	font-size: 1.5rem;
	line-height: 2rem;
}

.gs-font-normal {
	font-weight: 400;
}

.gs-font-medium {
	font-weight: 500;
}

.gs-font-semibold {
	font-weight: 600;
}

.gs-font-bold {
	font-weight: 700;
}

.gs-list-none {
	list-style-type: none;
}

.gs-text-blue {
	color: var(--gs-blue);
}

.hover\:gs-text-blue:hover {
	color: var(--gs-blue);
}

.gs-text-yellow {
	color: var(--gs-yellow);
}

.gs-text-transparent {
	color: transparent;
}

.gs-text-black {
	color: black;
}

.gs-text-white {
	color: white;
}

.hover\:gs-text-white:hover {
	color: white;
}

.gs-text-grey {
	color: #eeee;
}

.gs-text-gray-800 {
	color: #1f2937;
}

.gs-underline {
	text-decoration-line: underline;
}

.gs-no-underline {
	text-decoration-line: none;
}

.hover\:gs-no-underline:hover {
	text-decoration-line: none;
}

.gs-text-center {
	text-align: center;
}

html {
	scroll-behavior: smooth;
}

.gs-youtube-video {
	position: relative;
	cursor: pointer;
	overflow: hidden;
}

.gs-youtube-video img,
.gs-youtube-video iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.gs-custom-modal-text p,
.gs-custom-modal-text h1,
.gs-custom-modal-text h2,
.gs-custom-modal-text h3,
.gs-custom-modal-text h4,
.gs-custom-modal-text h5,
.gs-custom-modal-text h6,
.gs-custom-modal-text label {
	font-family: 'Neutrif Studio', 'Courier New', Courier, monospace;
	color: #ffffff;
	font-size: 1.125rem;
	line-height: 1.75rem;
}

.gs-footer-image img {
	width: 100%;
	max-width: 1980px;
}

.gs-custom-h-service > div {
	height: 100%;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes mmfadeOut {
	from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes mmslideIn {
	from {
		transform: translateY(15%);
	}
	to {
		transform: translateY(0);
	}
}

@keyframes mmslideOut {
	from {
		transform: translateY(0);
	}
	to {
		transform: translateY(-10%);
	}
}

.micromodal-slide {
	display: none;
}

.micromodal-slide.is-open {
	display: block;
}

.micromodal-slide[aria-hidden='false'] .gs-modal-overlay {
	animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden='false'] .gs-modal-container {
	animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden='true'] .gs-modal-overlay {
	animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden='true'] .gs-modal-container {
	animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .gs-modal-container,
.micromodal-slide .gs-modal-overlay {
	will-change: transform;
}

.gs-modal-container {
	scrollbar-width: none;
	-ms-overflow-style: none;
}

/** Custom splide **/
.splide__arrow.splide__arrow--next,
.splide__arrow.splide__arrow--prev {
	background: transparent;
}

.splide__arrows .splide__arrow {
	opacity: 1;
}

#seccion-capitulos-anteriores .splide__arrow.splide__arrow--next {
	right: -3em;
}

#seccion-capitulos-anteriores .splide__arrow.splide__arrow--prev {
	left: -3em;
}

.splide__arrows .splide__arrow svg {
	fill: #fff;
	height: 1.875em;
	width: 1.875em;
}

.gs-custom-splide__arrows {
	left: 0;
	gap: 1rem;
	bottom: 30px;
	right: 0;
	margin: auto;
	justify-content: center;
}

@media (min-width: 768px) {
	.gs-custom-splide__arrows {
		left: 40%;
	}
}

/* endinject */
/* This file allows you to override default styles in one central location for easier upgrade and maintenance. */

/*# sourceMappingURL=main.css.map */

/* colors */
.gs-text-primary {
	color: #092754;
}

.gs-text-secondary {
	color: #4f1fff;
}

.gs-text-black {
	color: #333333;
}

.gs-text-grey {
	color: #747474;
}

.gs-bg-primary {
	background-color: #092754;
}

.gs-bg-secondary {
	background-color: #4f1fff;
}

.gs-bg-grey {
	background-color: #f6f6f6;
}

.gs-bg-hard-grey {
  background-color: #565656;
}

.gs-bg-soft-black {
  background-color: #282a2b
}


.gs-bg-white {
	background-color: #ffffff;
}

/* borders-width */

.gs-border-0 {
	border: 0;
}

.gs-border-1 {
	border-width: 1px;
}

.gs-border-2 {
	border-width: 2px;
}

.gs-border-4 {
	border-width: 4px;
}

.gs-border-10 {
	border-width: 10px;
}

.gs-border-b-0 {
	border-bottom-width: 0px;
}

.gs-border-b-1 {
	border-bottom-width: 1px;
}

.gs-border-b-2 {
	border-bottom-width: 2px;
}

.gs-border-b-4 {
	border-bottom-width: 4px;
}

.gs-border-b-10 {
	border-bottom-width: 10px;
}

.gs-border-t-0 {
	border-top-width: 0px;
}

.gs-border-t-1{
  border-top-width: 1px;
}

.gs-border-t-2 {
	border-top-width: 2px;
}

.gs-border-t-3 {
	border-top-width: 3px;
}

.gs-border-t-4 {
	border-top-width: 4px;
}

.gs-border-t-10 {
	border-top-width: 10px;
}

.gs-border-l-0 {
	border-left-width: 0px;
}

.gs-border-l-1 {
	border-left-width: 1px;
}

.gs-border-l-2 {
  border-left-width: 2px;
}

.gs-border-l-4 {
  border-left-width: 4px;
}

.gs-border-r-0 {
	border-right-width: 0px;
}

.gs-border-r-1 {
	border-right-width: 1px;
}

/* borders-color */

.gs-border-primary {
	border-color: #092754;
}

.gs-border-secondary {
	border-color: #4f1fff;
}

.gs-border-grey {
	border-color: #747474;
}

.gs-border-soft-grey {
	border-color: #f1f2f2;
}

.gs-border-light-grey {
  border-color: #d3d3d3;
}

.gs-border-medium-grey {
	border-color: #dcdcdc;
}

.gs-border-white {
  border-color: white;
}

/* borders-radius */

.gs-rounded-0 {
	border-radius: 0;
}

.gs-rouned-4 {
	border-radius: 4px;
}

/* border-style */

.gs-border-solid {
	border-style: solid;
}

/* width */

.gs-w-100 {
	width: 100%;
}

.gs-w-50 {
	width: 50%;
}

.gs-w-25 {
	width: 25%;
}

.gs-max-w-\[100px\] {
	max-width: 100px;
}

.gs-max-w-\[250px\] {
	max-width: 250px;
}

.gs-w-\[250px\] {
	width: 250px;
}
.gs-w-22{
  width: 22px;
}

.gs-w-62 {
	width: 62px;
}

.gs-h-22 {
  height: 22px;
}

.gs-h-62 {
	height: 62px;
}

.gs-h-44 {
	height: 44px;
}

.gs-w-80px{
  width: 80px;
}


.gs-h-80px {
  height: 80px;
}

/* margin */

.gs-mx-0 {
	margin-left: 0;
	margin-right: 0;
}

.gs-my-0 {
	margin-top: 0;
	margin-bottom: 0;
}

.gs-m-8 {
	margin: 2rem;
}

/* padding */

.gs-px-6{
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.gs-p-8 {
	padding: 2rem;
}

.gs-p-16 {
	padding: 4rem;
}

.gs-py-8 {
	padding-top: 2rem;
	padding-bottom: 2rem;
}

/* transform */

.gs-rotate-y-180 {
	transform: rotateY(180deg);
}

/* flip */

.gs-flip-card {
	perspective: 1000px;
	width: 100%;
	height: 350px;
	margin: 0 auto;
	transform-origin: center;
}

.gs-flip-card-inner {
	position: relative;
	width: 100%;
	height: 100%;
	text-align: center;
	transition: transform 0.6s;
	transform-style: preserve-3d;
	transform-origin: center;
}

.gs-flip-card:hover .gs-flip-card-inner {
	transform: rotateY(180deg);
}

.gs-flip-card-front,
.gs-flip-card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	border-radius: 4px;
	inset: 0;
}

.gs-flip-card-back {
	transform: rotateY(180deg);
}

/* grids */
.gs-grid-auto-cols-250 {
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* font-family */

.gs-roboto-studio {
	font-family: 'roboto', sans-serif;
}

/* font-size */

.gs-text-3xl {
	font-size: 1.875rem;
	line-height: 2.25rem;
}

.gs-text-4xl {
	/* font-size: 2.25rem; saesa ocupa 2.125*/ 
	font-size: 2.125rem;
	line-height: 2.75rem;
}

.gs-border-t-custom::before {
	content: '';
	border-top: 3px solid #4f1fff;
	display: block;
	width: 100%;
}

/* hover */

.hover\:gs-bg-primary:hover {
	background-color: #092754;
}

.hover\:gs-bg-secondary:hover {
	background-color: #4f1fff;
}

.hover\:gs-bg-grey:hover {
	background-color: #747474;
}

.hover\:gs-bg-white:hover {
	background-color: #ffffff;
}

.hover\:gs-text-secondary:hover {
  color: #4f1fff;
}

.hover\:gs-bg-hard-grey:hover {
  background-color: #565656;
}


@media (min-width: 768px) {
	.gs-md\:p-0 {
		padding: 0 !important;
	}
}

@media (min-width: 1024px){
  .gs-lg\:p-0 {
    padding: 0 !important;
  }

  .gs-lg\:p-4{
    padding: 1rem !important;
  }
}


.gs-pl-6 {
  padding-left: 1.5rem;
}

/* align */

.gs-text-left{
  text-align: left;
}

/* align media */

@media (min-width: 768px) {
	.gs-md\:text-left {
    text-align: left;
  }

  .gs-md\:text-center {
    text-align: center;
  }

  .gs-md\:text-right {
    text-align: right;
  }

  .gs-md\:text-justify {
    text-align: justify;
  }

  .gs-md\:text-nowrap {
    white-space: nowrap;
  }

  .gs-md\:justify-center{
    justify-content: center !important;
  }

  .gs-md\:justify-between{
    justify-content: space-between !important;
  }

  .gs-md\:items-center{
    align-items: center !important;
  }

  .gs-md\:items-start{
    align-items: flex-start !important;
  }
}

@media (min-width: 1024px){
  .gs-lg\:items-center {
    align-items: center !important;
  }

  .gs-lg\:items-start {
    align-items: flex-start !important;
  }

  .gs-lg\:items-end {
    align-items: flex-end !important;
  }

  .gs-lg\:justify-center {
    justify-content: center !important;
  }

  .gs-lg\:justify-between {
    justify-content: space-between !important;
  }
}

/* max-width */
.gs-max-w-\[500px\] {
	max-width: 500px;
}

.gs-max-w-\[1020px\] {
	max-width: 1020px;
}

.gs-max-w\[1100px\] {
  max-width: 1100px;
}

.gs-w-fit {
  width: fit-content;
}

/* special inners */

.gs-strong\:font-bold strong {
	font-weight: 700;
}

.gs-p\:m-0 p {
  margin: 0;
}

.gs-p\:text-center p {
  text-align: center;
}

.gs-p\:text-primary p {
  color: #092754;
}

.gs-p\:text-base p {
  font-size: 1rem;
	line-height: 1.5rem;
}

.gs-img\:max-w-\[250px\] img {
  max-width: 250px;
}
.gs-img\:max-w-\[240px\] img {
  max-width: 240px;
}
.gs-img\:w-\[240px\] img {
  max-width: 240px;
}


@media (min-width: 640px) {
	.gs-container {
		max-width: 640px;
	}
}

@media (min-width: 768px) {
	.gs-container {
		max-width: 768px;
	}
}

@media (min-width: 1024px) {
	.gs-container {
		max-width: 1024px;
	}
}

@media (min-width: 1280px) {
	.gs-container {
		max-width: 1100px;
	}
}
 

.autofit-float.autofit-row.portlet-header {
	display: none;
}

.gs-list-style-li  li {
	list-style: disc !important;
}

.gs-list-padding-ul  ul {
	padding-left: 1.5rem;
}

.gs-gap-7 {
	gap: 1.875rem;
}

.scroll-to-top {
    position: fixed;
    bottom: 0;
    right: 32px;
    background-color: #333333;
    color: white;
    width: 48px;
    height: 35px;
    border-radius: 4px 4px 0 0;
    border: none;
    cursor: pointer;
    display: none;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s, opacity 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	z-index: 999999;
}

.scroll-to-top:hover {
    background-color: #4f1fff;
}

.scroll-to-top.visible {
    display: flex;
}