@-webkit-keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes fadeInDown {
	0% {
		opacity: 0;
		transform: translateY(-20px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}

@-webkit-keyframes fadeOutUp {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateY(-20px);
	}
}

@keyframes fadeOutUp {
	0% {
		opacity: 1;
		transform: translateY(0);
	}
	100% {
		opacity: 0;
		transform: translateY(-20px);
	}
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translateX(-20px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translateX(20px);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

@-webkit-keyframes fadeOutRight {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		transform: translateX(20px);
	}
}

@keyframes fadeOutRight {
	0% {
		opacity: 1;
		transform: translateX(0);
	}
	100% {
		opacity: 0;
		transform: translateX(20px);
	}
}

.app2-fade-enter {
	opacity: 0;
}

.app2-fade-enter-active {
	-webkit-animation-name: fadeInDown;
	        animation-name: fadeInDown;
	-webkit-animation-iteration-count: 1s;
	        animation-iteration-count: 1s;
	-webkit-animation-duration: 0.3s;
	        animation-duration: 0.3s;
	-webkit-animation-delay: 0s;
	        animation-delay: 0s;
	-webkit-animation-timing-function: ease;
	        animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.app2-fade-leave-to {
	-webkit-animation-name: fadeOutUp;
	        animation-name: fadeOutUp;
	-webkit-animation-iteration-count: 1s;
	        animation-iteration-count: 1s;
	-webkit-animation-duration: 0.2s;
	        animation-duration: 0.2s;
	-webkit-animation-delay: 0s;
	        animation-delay: 0s;
	-webkit-animation-timing-function: ease;
	        animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.app2-fade-right-enter-active {
	-webkit-animation-name: fadeInRight;
	        animation-name: fadeInRight;
	-webkit-animation-iteration-count: 1s;
	        animation-iteration-count: 1s;
	-webkit-animation-duration: 0.3s;
	        animation-duration: 0.3s;
	-webkit-animation-delay: 0s;
	        animation-delay: 0s;
	-webkit-animation-timing-function: ease;
	        animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.app2-fade-right-leave-to {
	-webkit-animation-name: fadeOutRight;
	        animation-name: fadeOutRight;
	-webkit-animation-iteration-count: 1s;
	        animation-iteration-count: 1s;
	-webkit-animation-duration: 0.2s;
	        animation-duration: 0.2s;
	-webkit-animation-delay: 0s;
	        animation-delay: 0s;
	-webkit-animation-timing-function: ease;
	        animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

/* =Company card
----------------------------------------*/
.app2-om {
	font-size: 0.8rem;
}
.app2-om .app2-om__edit-link {
	text-align: center;
	font-size: 1rem;
}
.app2-om ul, .app2-om li {
	background-color: #FFFFFF;
	list-style: none;
	margin: 0;
	padding: 0;
}
.app2-om li > a {
	display: flex;
	align-items: center;
	padding: 0.25rem 1rem;
	text-decoration: none;
	transition: all 0.1s ease-in;
}
.app2-om li > a:hover {
	background: #F8F9FA;
}
.app2-om li > a .col {
	text-decoration: underline;
}

.app2-om--active {
	transform: translateY(0);
}

.app2-om-enter {
	opacity: 0;
}

.app2-om-enter-active {
	-webkit-animation-name: fadeInDown;
	        animation-name: fadeInDown;
	-webkit-animation-iteration-count: 1s;
	        animation-iteration-count: 1s;
	-webkit-animation-duration: 0.2s;
	        animation-duration: 0.2s;
	-webkit-animation-delay: 0s;
	        animation-delay: 0s;
	-webkit-animation-timing-function: ease;
	        animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.app2-om-leave-to {
	-webkit-animation-name: fadeOutUp;
	        animation-name: fadeOutUp;
	-webkit-animation-iteration-count: 1s;
	        animation-iteration-count: 1s;
	-webkit-animation-duration: 0.1s;
	        animation-duration: 0.1s;
	-webkit-animation-delay: 0s;
	        animation-delay: 0s;
	-webkit-animation-timing-function: ease;
	        animation-timing-function: ease;
	-webkit-animation-fill-mode: both;
	        animation-fill-mode: both;
	-webkit-backface-visibility: hidden;
	        backface-visibility: hidden;
}

.app2-om--animate {
	overflow: hidden;
}

.app2-om__left {
	width: 23px;
	height: 23px;
}
.app2-om__left .material-icons {
	font-size: 21px;
}

.app2-om__right a {
	text-decoration: none;
}

.app2-om__badge {
	background: #DEE2E6;
	color: #343A40;
	font-size: 0.6rem;
	border-radius: 4px;
	text-decoration: none;
	padding: 0 2px;
}

.app2-om__billing-item, .app2-om__demo-item, .app2-om__theme {
	border-top: 1px solid #CED4DA;
}

.app2-om__theme h4 {
	font-size: 1.2rem;
	color: #343A40;
}

.app2-om__theme-color-picker {
	position: relative;
	width: 32px;
	display: inline-block;
}
.app2-om__theme-color-picker-toggle {
	height: 32px;
	width: 32px;
	border-radius: 50%;
	cursor: pointer;
	overflow: hidden;
	align-items: center;
	justify-content: center;
}
.app2-om__theme-color-picker-container {
	z-index: 5000;
	position: absolute !important;
	width: 220px !important;
	right: 0;
	top: 0;
	background: #FFFFFF;
	padding: 10px;
}
.app2-om__theme-color-picker-slider {
	width: auto !important;
}
.app2-om__theme-color-picker-palette-color {
	display: inline-block;
	height: 32px;
	width: 32px;
	border-radius: 50%;
	cursor: pointer;
}

@media (max-width: 767.98px) {
	.app2-om {
		margin-left: -10px;
		margin-right: -10px;
	}
}