@charset "UTF-8";
/*@import "masterlinkframework/libs/normalize";*/
* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

	*:before,
	*:after {
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}

html {
	font-size: 10px;
	-webkit-tap-highlight-color: transparent;
}

body {
	font-size: 14px;
	line-height: 1.42857;
	color: #4c4c4c;
	background-color: #fff;
}

input,
button,
select,
textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

a {
	text-decoration: none;
}

	a:hover, a:focus {
		color: #d9d9d9;
		text-decoration: none;
	}

figure {
	margin: 0;
}

.img-circle {
	border-radius: 50%;
}

hr {
	margin-top: 20px;
	margin-bottom: 20px;
}

.sr-only {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
	position: static;
	width: auto;
	height: auto;
	margin: 0;
	overflow: visible;
	clip: auto;
}

[role="button"] {
	cursor: pointer;
}

/* Preload images */
body:after {
	display: none;
}

body.lb-disable-scrolling {
	overflow: hidden;
}

.lightboxOverlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: black;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
	opacity: 0.8;
	display: none;
}

.lightbox {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 10000;
	text-align: center;
	line-height: 0;
	font-weight: normal;
}

	.lightbox .lb-image {
		display: block;
		height: auto;
		max-width: inherit;
		border-radius: 3px;
	}

	.lightbox a img {
		border: none;
	}

.lb-outerContainer {
	position: relative;
	background-color: white;
	*zoom: 1;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	border-radius: 4px;
}

	.lb-outerContainer:after {
		content: "";
		display: table;
		clear: both;
	}

.lb-container {
	padding: 4px;
}

.lb-loader {
	position: absolute;
	top: 43%;
	left: 0;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
}

.lb-cancel {
	display: block;
	width: 32px;
	height: 32px;
	margin: 0 auto;
	background: url(../images/loading.gif) no-repeat;
}

.lb-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
}

.lb-container > .nav {
	left: 0;
}

.lb-nav a {
	outline: none;
	background-image: url("data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==");
}

.lb-prev, .lb-next {
	height: 100%;
	cursor: pointer;
	display: block;
}

.lb-nav a.lb-prev {
	width: 34%;
	left: 0;
	float: left;
	background: url(../images/prev.png) left 48% no-repeat;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	-o-transition: opacity 0.6s;
	transition: opacity 0.6s;
}

	.lb-nav a.lb-prev:hover {
		filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
		opacity: 1;
	}

.lb-nav a.lb-next {
	width: 64%;
	right: 0;
	float: right;
	background: url(../images/next.png) right 48% no-repeat;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	-o-transition: opacity 0.6s;
	transition: opacity 0.6s;
}

	.lb-nav a.lb-next:hover {
		filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
		opacity: 1;
	}

.lb-dataContainer {
	margin: 0 auto;
	padding-top: 5px;
	*zoom: 1;
	width: 100%;
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-right-radius: 4px;
}

	.lb-dataContainer:after {
		content: "";
		display: table;
		clear: both;
	}

.lb-data {
	padding: 0 4px;
	color: #ccc;
}

	.lb-data .lb-details {
		width: 85%;
		float: left;
		text-align: left;
		line-height: 1.1em;
	}

	.lb-data .lb-caption {
		font-size: 13px;
		font-weight: bold;
		line-height: 1em;
	}

	.lb-data .lb-number {
		display: block;
		clear: left;
		padding-bottom: 1em;
		font-size: 12px;
		color: #999999;
	}

	.lb-data .lb-close {
		display: block;
		float: right;
		width: 30px;
		height: 30px;
		background: url(../images/close.png) top right no-repeat;
		text-align: right;
		outline: none;
		filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
		opacity: 0.7;
		-webkit-transition: opacity 0.2s;
		-moz-transition: opacity 0.2s;
		-o-transition: opacity 0.2s;
		transition: opacity 0.2s;
	}

		.lb-data .lb-close:hover {
			cursor: pointer;
			filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
			opacity: 1;
		}

/*!
Animate.css - http://daneden.me/animate
Version - 3.4.0
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/
.animated {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

	.animated.infinite {
		-webkit-animation-iteration-count: infinite;
		animation-iteration-count: infinite;
	}

	.animated.hinge {
		-webkit-animation-duration: 2s;
		animation-duration: 2s;
	}

	.animated.bounceIn,
	.animated.bounceOut {
		-webkit-animation-duration: .75s;
		animation-duration: .75s;
	}

	.animated.flipOutX,
	.animated.flipOutY {
		-webkit-animation-duration: .75s;
		animation-duration: .75s;
	}

@-webkit-keyframes bounce {
	from, 20%, 53%, 80%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	40%, 43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}

@keyframes bounce {
	from, 20%, 53%, 80%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	40%, 43% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -30px, 0);
		transform: translate3d(0, -30px, 0);
	}

	70% {
		-webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
		-webkit-transform: translate3d(0, -15px, 0);
		transform: translate3d(0, -15px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, -4px, 0);
		transform: translate3d(0, -4px, 0);
	}
}

.bounce {
	-webkit-animation-name: bounce;
	animation-name: bounce;
	-webkit-transform-origin: center bottom;
	transform-origin: center bottom;
}

@-webkit-keyframes flash {
	from, 50%, to {
		opacity: 1;
	}

	25%, 75% {
		opacity: 0;
	}
}

@keyframes flash {
	from, 50%, to {
		opacity: 1;
	}

	25%, 75% {
		opacity: 0;
	}
}

.flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes pulse {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	50% {
		-webkit-transform: scale3d(1.05, 1.05, 1.05);
		transform: scale3d(1.05, 1.05, 1.05);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.pulse {
	-webkit-animation-name: pulse;
	animation-name: pulse;
}

@-webkit-keyframes rubberBand {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 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: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes rubberBand {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 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: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.rubberBand {
	-webkit-animation-name: rubberBand;
	animation-name: rubberBand;
}

@-webkit-keyframes shake {
	from, to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}

	20%, 40%, 60%, 80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}

@keyframes shake {
	from, to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}

	20%, 40%, 60%, 80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}

.shake {
	-webkit-animation-name: shake;
	animation-name: shake;
}

@-webkit-keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg);
	}

	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg);
	}

	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}

	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg);
	}

	to {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg);
	}
}

@keyframes swing {
	20% {
		-webkit-transform: rotate3d(0, 0, 1, 15deg);
		transform: rotate3d(0, 0, 1, 15deg);
	}

	40% {
		-webkit-transform: rotate3d(0, 0, 1, -10deg);
		transform: rotate3d(0, 0, 1, -10deg);
	}

	60% {
		-webkit-transform: rotate3d(0, 0, 1, 5deg);
		transform: rotate3d(0, 0, 1, 5deg);
	}

	80% {
		-webkit-transform: rotate3d(0, 0, 1, -5deg);
		transform: rotate3d(0, 0, 1, -5deg);
	}

	to {
		-webkit-transform: rotate3d(0, 0, 1, 0deg);
		transform: rotate3d(0, 0, 1, 0deg);
	}
}

.swing {
	-webkit-transform-origin: top center;
	transform-origin: top center;
	-webkit-animation-name: swing;
	animation-name: swing;
}

@-webkit-keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	10%, 20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}

	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}

	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes tada {
	from {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}

	10%, 20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
	}

	30%, 50%, 70%, 90% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}

	40%, 60%, 80% {
		-webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}

	to {
		-webkit-transform: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.tada {
	-webkit-animation-name: tada;
	animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
	from {
		-webkit-transform: none;
		transform: none;
	}

	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}

	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}

	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}

	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}

	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes wobble {
	from {
		-webkit-transform: none;
		transform: none;
	}

	15% {
		-webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
		transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
	}

	30% {
		-webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
		transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
	}

	45% {
		-webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
		transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
	}

	60% {
		-webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
		transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
	}

	75% {
		-webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
		transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

.wobble {
	-webkit-animation-name: wobble;
	animation-name: wobble;
}

@-webkit-keyframes jello {
	from, 11.1%, to {
		-webkit-transform: none;
		transform: none;
	}

	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}

	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}

	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}

	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}

	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}

	77.7% {
		-webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
		transform: skewX(0.39063deg) skewY(0.39063deg);
	}

	88.8% {
		-webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
		transform: skewX(-0.19531deg) skewY(-0.19531deg);
	}
}

@keyframes jello {
	from, 11.1%, to {
		-webkit-transform: none;
		transform: none;
	}

	22.2% {
		-webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
		transform: skewX(-12.5deg) skewY(-12.5deg);
	}

	33.3% {
		-webkit-transform: skewX(6.25deg) skewY(6.25deg);
		transform: skewX(6.25deg) skewY(6.25deg);
	}

	44.4% {
		-webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
		transform: skewX(-3.125deg) skewY(-3.125deg);
	}

	55.5% {
		-webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
		transform: skewX(1.5625deg) skewY(1.5625deg);
	}

	66.6% {
		-webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
		transform: skewX(-0.78125deg) skewY(-0.78125deg);
	}

	77.7% {
		-webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
		transform: skewX(0.39063deg) skewY(0.39063deg);
	}

	88.8% {
		-webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
		transform: skewX(-0.19531deg) skewY(-0.19531deg);
	}
}

.jello {
	-webkit-animation-name: jello;
	animation-name: jello;
	-webkit-transform-origin: center;
	transform-origin: center;
}

@-webkit-keyframes bounceIn {
	from, 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: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

@keyframes bounceIn {
	from, 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: scale3d(1, 1, 1);
		transform: scale3d(1, 1, 1);
	}
}

.bounceIn {
	-webkit-animation-name: bounceIn;
	animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInDown {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(0, -3000px, 0);
		transform: translate3d(0, -3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, 25px, 0);
		transform: translate3d(0, 25px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, 5px, 0);
		transform: translate3d(0, 5px, 0);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

.bounceInDown {
	-webkit-animation-name: bounceInDown;
	animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}

	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}

	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInLeft {
	from, 60%, 75%, 90%, to {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(-3000px, 0, 0);
		transform: translate3d(-3000px, 0, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(25px, 0, 0);
		transform: translate3d(25px, 0, 0);
	}

	75% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}

	90% {
		-webkit-transform: translate3d(5px, 0, 0);
		transform: translate3d(5px, 0, 0);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

.bounceInLeft {
	-webkit-animation-name: bounceInLeft;
	animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
	from, 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);
	}

	from {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes bounceInRight {
	from, 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);
	}

	from {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}

	to {
		-webkit-transform: none;
		transform: none;
	}
}

.bounceInRight {
	-webkit-animation-name: bounceInRight;
	animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
	from, 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);
	}

	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes bounceInUp {
	from, 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);
	}

	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 3000px, 0);
		transform: translate3d(0, 3000px, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}

	75% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}

	90% {
		-webkit-transform: translate3d(0, -5px, 0);
		transform: translate3d(0, -5px, 0);
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.bounceInUp {
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}

	50%, 55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
}

@keyframes bounceOut {
	20% {
		-webkit-transform: scale3d(0.9, 0.9, 0.9);
		transform: scale3d(0.9, 0.9, 0.9);
	}

	50%, 55% {
		opacity: 1;
		-webkit-transform: scale3d(1.1, 1.1, 1.1);
		transform: scale3d(1.1, 1.1, 1.1);
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}
}

.bounceOut {
	-webkit-animation-name: bounceOut;
	animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}

	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

@keyframes bounceOutDown {
	20% {
		-webkit-transform: translate3d(0, 10px, 0);
		transform: translate3d(0, 10px, 0);
	}

	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, -20px, 0);
		transform: translate3d(0, -20px, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

.bounceOutDown {
	-webkit-animation-name: bounceOutDown;
	animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

@keyframes bounceOutLeft {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(20px, 0, 0);
		transform: translate3d(20px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

.bounceOutLeft {
	-webkit-animation-name: bounceOutLeft;
	animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

@keyframes bounceOutRight {
	20% {
		opacity: 1;
		-webkit-transform: translate3d(-20px, 0, 0);
		transform: translate3d(-20px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

.bounceOutRight {
	-webkit-animation-name: bounceOutRight;
	animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}

	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

@keyframes bounceOutUp {
	20% {
		-webkit-transform: translate3d(0, -10px, 0);
		transform: translate3d(0, -10px, 0);
	}

	40%, 45% {
		opacity: 1;
		-webkit-transform: translate3d(0, 20px, 0);
		transform: translate3d(0, 20px, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

.bounceOutUp {
	-webkit-animation-name: bounceOutUp;
	animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.fadeIn {
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDown {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInDown {
	-webkit-animation-name: fadeInDown;
	animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInDownBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInDownBig {
	-webkit-animation-name: fadeInDownBig;
	animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInLeft {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInLeftBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInLeftBig {
	-webkit-animation-name: fadeInLeftBig;
	animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRight {
	from {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInRightBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInRightBig {
	-webkit-animation-name: fadeInRightBig;
	animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUp {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes fadeInUpBig {
	from {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.fadeInUpBig {
	-webkit-animation-name: fadeInUpBig;
	animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

@keyframes fadeOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
	}
}

.fadeOut {
	-webkit-animation-name: fadeOut;
	animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

@keyframes fadeOutDown {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

.fadeOutDown {
	-webkit-animation-name: fadeOutDown;
	animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

@keyframes fadeOutDownBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, 2000px, 0);
		transform: translate3d(0, 2000px, 0);
	}
}

.fadeOutDownBig {
	-webkit-animation-name: fadeOutDownBig;
	animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes fadeOutLeft {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.fadeOutLeft {
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

@keyframes fadeOutLeftBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(-2000px, 0, 0);
		transform: translate3d(-2000px, 0, 0);
	}
}

.fadeOutLeftBig {
	-webkit-animation-name: fadeOutLeftBig;
	animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

@keyframes fadeOutRight {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

.fadeOutRight {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

@keyframes fadeOutRightBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(2000px, 0, 0);
		transform: translate3d(2000px, 0, 0);
	}
}

.fadeOutRightBig {
	-webkit-animation-name: fadeOutRightBig;
	animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

@keyframes fadeOutUp {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

.fadeOutUp {
	-webkit-animation-name: fadeOutUp;
	animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

@keyframes fadeOutUpBig {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(0, -2000px, 0);
		transform: translate3d(0, -2000px, 0);
	}
}

.fadeOutUpBig {
	-webkit-animation-name: fadeOutUpBig;
	animation-name: fadeOutUpBig;
}

@-webkit-keyframes flip {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	80% {
		-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

@keyframes flip {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	40% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
		-webkit-animation-timing-function: ease-out;
		animation-timing-function: ease-out;
	}

	50% {
		-webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	80% {
		-webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}
}

.animated.flip {
	-webkit-backface-visibility: visible;
	backface-visibility: visible;
	-webkit-animation-name: flip;
	animation-name: flip;
}

@-webkit-keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

@keyframes flipInX {
	from {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

.flipInX {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInX;
	animation-name: flipInX;
}

@-webkit-keyframes flipInY {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

@keyframes flipInY {
	from {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
	}

	to {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

.flipInY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipInY;
	animation-name: flipInY;
}

@-webkit-keyframes flipOutX {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}

	30% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1;
	}

	to {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}

@keyframes flipOutX {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}

	30% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		opacity: 1;
	}

	to {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		opacity: 0;
	}
}

.flipOutX {
	-webkit-animation-name: flipOutX;
	animation-name: flipOutX;
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}

	30% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1;
	}

	to {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}

@keyframes flipOutY {
	from {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}

	30% {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
		opacity: 1;
	}

	to {
		-webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
		opacity: 0;
	}
}

.flipOutY {
	-webkit-backface-visibility: visible !important;
	backface-visibility: visible !important;
	-webkit-animation-name: flipOutY;
	animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedIn {
	from {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}

	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1;
	}

	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes lightSpeedIn {
	from {
		-webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
		transform: translate3d(100%, 0, 0) skewX(-30deg);
		opacity: 0;
	}

	60% {
		-webkit-transform: skewX(20deg);
		transform: skewX(20deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: skewX(-5deg);
		transform: skewX(-5deg);
		opacity: 1;
	}

	to {
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.lightSpeedIn {
	-webkit-animation-name: lightSpeedIn;
	animation-name: lightSpeedIn;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOut {
	from {
		opacity: 1;
	}

	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}

@keyframes lightSpeedOut {
	from {
		opacity: 1;
	}

	to {
		-webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
		transform: translate3d(100%, 0, 0) skewX(30deg);
		opacity: 0;
	}
}

.lightSpeedOut {
	-webkit-animation-name: lightSpeedOut;
	animation-name: lightSpeedOut;
	-webkit-animation-timing-function: ease-in;
	animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateIn {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, -200deg);
		transform: rotate3d(0, 0, 1, -200deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.rotateIn {
	-webkit-animation-name: rotateIn;
	animation-name: rotateIn;
}

@-webkit-keyframes rotateInDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.rotateInDownLeft {
	-webkit-animation-name: rotateInDownLeft;
	animation-name: rotateInDownLeft;
}

@-webkit-keyframes rotateInDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.rotateInDownRight {
	-webkit-animation-name: rotateInDownRight;
	animation-name: rotateInDownRight;
}

@-webkit-keyframes rotateInUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.rotateInUpLeft {
	-webkit-animation-name: rotateInUpLeft;
	animation-name: rotateInUpLeft;
}

@-webkit-keyframes rotateInUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

@keyframes rotateInUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -90deg);
		transform: rotate3d(0, 0, 1, -90deg);
		opacity: 0;
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: none;
		transform: none;
		opacity: 1;
	}
}

.rotateInUpRight {
	-webkit-animation-name: rotateInUpRight;
	animation-name: rotateInUpRight;
}

@-webkit-keyframes rotateOut {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1;
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0;
	}
}

@keyframes rotateOut {
	from {
		-webkit-transform-origin: center;
		transform-origin: center;
		opacity: 1;
	}

	to {
		-webkit-transform-origin: center;
		transform-origin: center;
		-webkit-transform: rotate3d(0, 0, 1, 200deg);
		transform: rotate3d(0, 0, 1, 200deg);
		opacity: 0;
	}
}

.rotateOut {
	-webkit-animation-name: rotateOut;
	animation-name: rotateOut;
}

@-webkit-keyframes rotateOutDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, 45deg);
		transform: rotate3d(0, 0, 1, 45deg);
		opacity: 0;
	}
}

.rotateOutDownLeft {
	-webkit-animation-name: rotateOutDownLeft;
	animation-name: rotateOutDownLeft;
}

@-webkit-keyframes rotateOutDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}

@keyframes rotateOutDownRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}

.rotateOutDownRight {
	-webkit-animation-name: rotateOutDownRight;
	animation-name: rotateOutDownRight;
}

@-webkit-keyframes rotateOutUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}

@keyframes rotateOutUpLeft {
	from {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		opacity: 1;
	}

	to {
		-webkit-transform-origin: left bottom;
		transform-origin: left bottom;
		-webkit-transform: rotate3d(0, 0, 1, -45deg);
		transform: rotate3d(0, 0, 1, -45deg);
		opacity: 0;
	}
}

.rotateOutUpLeft {
	-webkit-animation-name: rotateOutUpLeft;
	animation-name: rotateOutUpLeft;
}

@-webkit-keyframes rotateOutUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0;
	}
}

@keyframes rotateOutUpRight {
	from {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		opacity: 1;
	}

	to {
		-webkit-transform-origin: right bottom;
		transform-origin: right bottom;
		-webkit-transform: rotate3d(0, 0, 1, 90deg);
		transform: rotate3d(0, 0, 1, 90deg);
		opacity: 0;
	}
}

.rotateOutUpRight {
	-webkit-animation-name: rotateOutUpRight;
	animation-name: rotateOutUpRight;
}

@-webkit-keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	20%, 60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	40%, 80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}

	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}

@keyframes hinge {
	0% {
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	20%, 60% {
		-webkit-transform: rotate3d(0, 0, 1, 80deg);
		transform: rotate3d(0, 0, 1, 80deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
	}

	40%, 80% {
		-webkit-transform: rotate3d(0, 0, 1, 60deg);
		transform: rotate3d(0, 0, 1, 60deg);
		-webkit-transform-origin: top left;
		transform-origin: top left;
		-webkit-animation-timing-function: ease-in-out;
		animation-timing-function: ease-in-out;
		opacity: 1;
	}

	to {
		-webkit-transform: translate3d(0, 700px, 0);
		transform: translate3d(0, 700px, 0);
		opacity: 0;
	}
}

.hinge {
	-webkit-animation-name: hinge;
	animation-name: hinge;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

@keyframes rollIn {
	from {
		opacity: 0;
		-webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
		transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
	}

	to {
		opacity: 1;
		-webkit-transform: none;
		transform: none;
	}
}

.rollIn {
	-webkit-animation-name: rollIn;
	animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}

@keyframes rollOut {
	from {
		opacity: 1;
	}

	to {
		opacity: 0;
		-webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
		transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
	}
}

.rollOut {
	-webkit-animation-name: rollOut;
	animation-name: rollOut;
}

@-webkit-keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
		opacity: 1;
	}
}

@keyframes zoomIn {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}

	50% {
		opacity: 1;
	}
}

.zoomIn {
	-webkit-animation-name: zoomIn;
	animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown {
	from {
		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 {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomInDown {
	-webkit-animation-name: zoomInDown;
	animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft {
	from {
		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 {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomInLeft {
	-webkit-animation-name: zoomInLeft;
	animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight {
	from {
		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 {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomInRight {
	-webkit-animation-name: zoomInRight;
	animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp {
	from {
		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 {
	from {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	60% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomInUp {
	-webkit-animation-name: zoomInUp;
	animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut {
	from {
		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 {
	from {
		opacity: 1;
	}

	50% {
		opacity: 0;
		-webkit-transform: scale3d(0.3, 0.3, 0.3);
		transform: scale3d(0.3, 0.3, 0.3);
	}

	to {
		opacity: 0;
	}
}

.zoomOut {
	-webkit-animation-name: zoomOut;
	animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes zoomOutDown {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomOutDown {
	-webkit-animation-name: zoomOutDown;
	animation-name: zoomOutDown;
}

@-webkit-keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}

@keyframes zoomOutLeft {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
		transform: scale(0.1) translate3d(-2000px, 0, 0);
		-webkit-transform-origin: left center;
		transform-origin: left center;
	}
}

.zoomOutLeft {
	-webkit-animation-name: zoomOutLeft;
	animation-name: zoomOutLeft;
}

@-webkit-keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		transform: scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center;
	}
}

@keyframes zoomOutRight {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
	}

	to {
		opacity: 0;
		-webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
		transform: scale(0.1) translate3d(2000px, 0, 0);
		-webkit-transform-origin: right center;
		transform-origin: right center;
	}
}

.zoomOutRight {
	-webkit-animation-name: zoomOutRight;
	animation-name: zoomOutRight;
}

@-webkit-keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

@keyframes zoomOutUp {
	40% {
		opacity: 1;
		-webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
		-webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
		animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
	}

	to {
		opacity: 0;
		-webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
		-webkit-transform-origin: center bottom;
		transform-origin: center bottom;
		-webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
		animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
	}
}

.zoomOutUp {
	-webkit-animation-name: zoomOutUp;
	animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInDown {
	from {
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInDown {
	-webkit-animation-name: slideInDown;
	animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInLeft {
	from {
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInLeft {
	-webkit-animation-name: slideInLeft;
	animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInRight {
	from {
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInRight {
	-webkit-animation-name: slideInRight;
	animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes slideInUp {
	from {
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
		visibility: visible;
	}

	to {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

.slideInUp {
	-webkit-animation-name: slideInUp;
	animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

@keyframes slideOutDown {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, 100%, 0);
		transform: translate3d(0, 100%, 0);
	}
}

.slideOutDown {
	-webkit-animation-name: slideOutDown;
	animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

@keyframes slideOutLeft {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(-100%, 0, 0);
		transform: translate3d(-100%, 0, 0);
	}
}

.slideOutLeft {
	-webkit-animation-name: slideOutLeft;
	animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

@keyframes slideOutRight {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(100%, 0, 0);
		transform: translate3d(100%, 0, 0);
	}
}

.slideOutRight {
	-webkit-animation-name: slideOutRight;
	animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

@keyframes slideOutUp {
	from {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	to {
		visibility: hidden;
		-webkit-transform: translate3d(0, -100%, 0);
		transform: translate3d(0, -100%, 0);
	}
}

.slideOutUp {
	-webkit-animation-name: slideOutUp;
	animation-name: slideOutUp;
}

div.ui-datepicker {
	background-color: #F7F7F7;
	border: 1px solid #E9E9E9;
	border-radius: 8px;
}

span.ui-datepicker-month, .ui-datepicker-year {
	color: #e74725;
	font-weight: bold;
}

.ui-datepicker-calendar thead th {
	font-weight: bold;
}

.ui-datepicker td span, .ui-datepicker td a {
	border: 1px solid #ECECEC;
	background-color: #FFFFFF;
	color: #595959;
}

.ui-datepicker-header {
	border-bottom: 3px solid #e74725;
}

.ui-datepicker-next.icon-mlk-expand, .ui-datepicker-prev.icon-mlk-back {
	background-color: #e74725;
	border-radius: 50%;
	color: #F7F7F7;
}

a.ui-state-default.ui-state-active {
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(51, 51, 51, 0.6);
	box-shadow: inset 0 1px 0px #CADFDF, 0 0 3px #CDE0E0;
}

a.ui-state-default.ui-state-highlight {
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(51, 51, 51, 0.6);
	box-shadow: inset 0 1px 0px #868686, 0 0 3px #868686;
}

* {
	overflow-anchor: none !important;
}

.cursor-default {
	cursor: default;
}

.nowrap-xs {
	white-space: nowrap;
}

.clear-both-xs {
	clear: both;
}

.float-left {
	float: left;
}

.float-right {
	float: right;
}

.text-right {
	text-align: right;
}

.text-left {
	text-align: left;
}

@media (min-width: 768px) {
	.nowrap-sm {
		white-space: nowrap;
	}

	.clear-both-sm {
		clear: both;
	}

	.float-left-sm {
		float: left;
	}
}

.divider-active {
	height: 1px;
	margin: 9px 0;
	overflow: hidden;
	background-color: #e74725;
}

.divider-fitted-up-active {
	width: 100%;
	height: 1px;
	margin: 0 0 9px;
	overflow: hidden;
	background-color: #e74725;
}

.mlk-spin {
	-webkit-animation: spin 1s infinite linear;
	-o-animation: spin 1s infinite linear;
	animation: spin 1s infinite linear;
}

@-moz-keyframes spin {
	0% {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(359deg);
		-ms-transform: rotate(359deg);
		-o-transform: rotate(359deg);
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@-webkit-keyframes spin {
	0% {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(359deg);
		-ms-transform: rotate(359deg);
		-o-transform: rotate(359deg);
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

@keyframes spin {
	0% {
		-moz-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		-o-transform: rotate(0deg);
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}

	100% {
		-moz-transform: rotate(359deg);
		-ms-transform: rotate(359deg);
		-o-transform: rotate(359deg);
		-webkit-transform: rotate(359deg);
		transform: rotate(359deg);
	}
}

.accordion {
	margin-bottom: 20px;
	background-color: none;
	border: 1px solid transparent;
	border-radius: none;
	-webkit-box-shadow: 0;
	box-shadow: 0;
}

.accordion-body {
	padding: 3px;
	padding-bottom: 0;
	padding-left: 9px;
}

	.accordion-body:before, .accordion-body:after {
		content: " ";
		display: table;
	}

	.accordion-body:after {
		clear: both;
	}

.accordion-default {
	margin-bottom: 10px;
}

.accordion-head {
	padding: 5px;
	border-bottom: 1px solid transparent;
}

	.accordion-head [class*="icon-mlk"] {
		display: inline-block;
	}

		.accordion-head [class*="icon-mlk"][data-expanded="true"] {
			-webkit-transform: rotate(90deg);
			-ms-transform: rotate(90deg);
			-o-transform: rotate(90deg);
			transform: rotate(90deg);
			-webkit-transition: all ease-in 0.2s;
			-o-transition: all ease-in 0.2s;
			transition: all ease-in 0.2s;
		}

		.accordion-head [class*="icon-mlk"][data-expanded="false"] {
			-webkit-transform: rotate(0);
			-ms-transform: rotate(0);
			-o-transform: rotate(0);
			transform: rotate(0);
			-webkit-transition: all ease-in 0.2s;
			-o-transition: all ease-in 0.2s;
			transition: all ease-in 0.2s;
		}

.accordion-title {
	margin-top: 0;
	margin-bottom: 0;
	font-size: 12px;
	position: relative;
	z-index: 1;
	color: #595959;
	text-transform: uppercase;
	font-weight: 600;
	overflow: hidden;
}

	.accordion-title > a {
		color: inherit;
		position: relative;
		z-index: 10;
		padding: 0 10px 0 0;
		overflow: hidden;
	}

		.accordion-title > a:after {
			content: "";
			position: absolute;
			left: 100%;
			top: calc(50% - (1px / 2));
			background: #e5e5e5;
			height: 1px;
			width: 50000px;
		}

.accordion-footer {
	padding: 5px;
	background-color: Red;
	border-top: 1px solid none;
}

.accordion-group {
	margin-bottom: 15px;
}

	.accordion-group .accordion {
		margin-bottom: 0;
	}

		.accordion-group .accordion + .accordion {
			margin-top: 5px;
		}

.collapse {
	display: none;
}

	.collapse.in {
		display: block;
	}

.collapsing {
	position: relative;
	height: 0;
	overflow: hidden;
	-webkit-transition-property: height, visibility;
	transition-property: height, visibility;
	-webkit-transition-duration: 0.35s;
	transition-duration: 0.35s;
	-webkit-transition-timing-function: ease;
	transition-timing-function: ease;
}

.tree-search-transparent .tree-top-container {
	position: relative;
	background: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	z-index: 9;
	border-bottom: 0;
	float: left;
	width: 100%;
}

	.tree-search-transparent .tree-top-container .form {
		padding: 8px 8px;
	}

	.tree-search-transparent .tree-top-container .new-item {
		float: left;
		width: 100%;
	}

.tree-search-white-border .tree-top-container {
	position: relative;
	background: #fff;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
	z-index: 9;
	border-bottom: 0;
	float: left;
	width: 100%;
}

	.tree-search-white-border .tree-top-container .form {
		padding: 8px 8px;
	}

	.tree-search-white-border .tree-top-container .new-item {
		float: left;
		width: 100%;
	}

.tree-default {
	height: 100%;
	float: left;
	width: 100%;
	text-align: left;
}

	.tree-default.tree-fixed .tree-itens {
		overflow-y: auto;
		overflow-x: hidden;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}

	.tree-default.tree-fixed .tree-container {
		position: absolute;
	}

	.tree-default .tree-container {
		font-size: 13.16px;
		height: 100%;
		position: relative;
		bottom: 0;
		left: 0;
		top: 0;
		right: 0;
		border: 0;
		float: left;
		width: 100%;
		border-radius: 0;
		overflow: hidden;
		background: #f7f7f7;
	}

	.tree-default .tree-itens {
		position: relative;
		padding: 0;
		margin: 0;
		float: left;
		width: 100%;
		background: #f7f7f7;
	}

		.tree-default .tree-itens ul {
			float: left;
			width: 100%;
		}

			.tree-default .tree-itens ul, .tree-default .tree-itens ul ul {
				list-style: none;
				margin: 0;
				padding: 0;
			}

				.tree-default .tree-itens ul li {
					width: 100%;
					float: left;
				}

					.tree-default .tree-itens ul li a {
						color: #595959;
						padding: 4px 8px;
						display: block;
						-ms-word-wrap: break-word;
						word-wrap: break-word;
						float: left;
						width: 100%;
					}

						.tree-default .tree-itens ul li a:hover {
							color: #595959;
							background: #ededed;
							text-decoration: none;
						}

						.tree-default .tree-itens ul li a.cursor-default:hover {
							background: none;
						}

						.tree-default .tree-itens ul li a.tree-node-active {
							color: #e74725;
							background: transparent;
							font-weight: bold;
						}

						.tree-default .tree-itens ul li a.icon-link {
							padding: 0 4px;
							width: 20px;
							height: 20px;
							float: left;
							display: inline-block;
							top: 0;
							position: relative;
						}

						.tree-default .tree-itens ul li a.icon-ball {
							top: 9px;
							margin-right: 2px;
						}

						.tree-default .tree-itens ul li a.tree-node-no-link {
							cursor: default;
						}

					.tree-default .tree-itens ul li .ms-home .icon-mlk-home {
						top: 5px;
						color: #a6a6a6;
					}

					.tree-default .tree-itens ul li [class*="icon"].load {
						padding: 0;
						width: auto;
						height: auto;
						font-size: 0.9em;
						display: inline-block;
						float: none;
					}

					.tree-default .tree-itens ul li .text-wrapper {
						position: relative;
					}

						.tree-default .tree-itens ul li .text-wrapper .extra-icons-after {
							position: absolute;
							right: 0;
							width: 20px;
							padding: 0;
							margin-left: 2px;
							margin-top: 4px;
							color: #595959;
						}

							.tree-default .tree-itens ul li .text-wrapper .extra-icons-after.hover-icon {
								display: none;
							}

								.tree-default .tree-itens ul li .text-wrapper .extra-icons-after.hover-icon:hover {
									color: #e74725;
								}

							.tree-default .tree-itens ul li .text-wrapper .extra-icons-after i {
								height: 12px;
								font-size: 1.1em;
							}

						.tree-default .tree-itens ul li .text-wrapper:hover .extra-icons-after {
							display: inline-block;
						}

					.tree-default .tree-itens ul li.context-active .extra-icons-after {
						display: inline-block;
						color: #e74725;
					}

					.tree-default .tree-itens ul li .icons-wrapper, .tree-default .tree-itens ul li .text-wrapper {
						display: inline-block;
						padding: 2px 0;
						float: left;
					}

						.tree-default .tree-itens ul li .icons-wrapper input {
							vertical-align: middle;
							float: left;
							position: relative;
							top: 4px;
						}

							.tree-default .tree-itens ul li .icons-wrapper input + label {
								float: left;
								position: relative;
								top: 4px;
								display: inline-block;
							}

					.tree-default .tree-itens ul li ul {
						padding-left: 20px;
					}

				.tree-default .tree-itens ul [class^="icon-mlk"], .tree-default .tree-itens ul [class*="icon-mlk"] {
					width: 15px;
					height: 15px;
					display: block;
					position: relative;
					top: calc(50% - 4px);
				}

		.tree-default .tree-itens input[type="radio"].check-control {
			display: none;
		}

			.tree-default .tree-itens input[type="radio"].check-control + label:before {
				font-family: MasterlinkPlatform;
				display: inline-block;
				content: "";
				letter-spacing: 2px;
				line-height: 1.5;
				color: #595959;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-default .tree-itens input[type="radio"].check-control:not(:first-child) + label:before {
				margin-left: 8px;
			}

			.tree-default .tree-itens input[type="radio"].check-control:checked + label:before, .tree-default .tree-itens input[type="radio"].check-control[data-value="true"] + label:before {
				content: "";
				color: #e74725;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-default .tree-itens input[type="radio"].check-control[disabled] + label:before {
				opacity: 0.6;
			}

		.tree-default .tree-itens input[type="checkbox"].check-control {
			display: none;
		}

			.tree-default .tree-itens input[type="checkbox"].check-control + label:before {
				font-family: MasterlinkPlatform;
				display: inline-block;
				content: "";
				letter-spacing: 2px;
				line-height: 1.71429;
				color: #595959;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-default .tree-itens input[type="checkbox"].check-control:checked + label:before, .tree-default .tree-itens input[type="checkbox"].check-control[data-value="true"] + label:before {
				content: "";
				color: #e74725;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-default .tree-itens input[type="checkbox"].check-control[disabled] + label:before {
				opacity: 0.6;
			}

	.tree-default .tree-top-container {
		position: relative;
		background: #f7f7f7;
		-webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
		box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
		z-index: 9;
		border-bottom: 0;
		float: left;
		width: 100%;
	}

		.tree-default .tree-top-container .form {
			padding: 8px 8px;
		}

		.tree-default .tree-top-container .new-item {
			float: left;
			width: 100%;
		}

.tree-default-border-no-shadow {
	height: 100%;
	float: left;
	width: 100%;
	text-align: left;
}

	.tree-default-border-no-shadow.tree-fixed .tree-itens {
		overflow-y: auto;
		overflow-x: hidden;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}

	.tree-default-border-no-shadow.tree-fixed .tree-container {
		position: absolute;
	}

	.tree-default-border-no-shadow .tree-container {
		font-size: 13.16px;
		height: 100%;
		position: relative;
		bottom: 0;
		left: 0;
		top: 0;
		right: 0;
		border: 1px solid #bfbfbf;
		float: left;
		width: 100%;
		border-radius: 0;
		overflow: hidden;
		background: #f7f7f7;
	}

	.tree-default-border-no-shadow .tree-itens {
		position: relative;
		padding: 0;
		margin: 0;
		float: left;
		width: 100%;
		background: #f7f7f7;
	}

		.tree-default-border-no-shadow .tree-itens ul {
			float: left;
			width: 100%;
		}

			.tree-default-border-no-shadow .tree-itens ul, .tree-default-border-no-shadow .tree-itens ul ul {
				list-style: none;
				margin: 0;
				padding: 0;
			}

				.tree-default-border-no-shadow .tree-itens ul li {
					width: 100%;
					float: left;
				}

					.tree-default-border-no-shadow .tree-itens ul li a {
						color: #595959;
						padding: 4px 8px;
						display: block;
						-ms-word-wrap: break-word;
						word-wrap: break-word;
						float: left;
						width: 100%;
					}

						.tree-default-border-no-shadow .tree-itens ul li a:hover {
							color: #595959;
							background: #ededed;
							text-decoration: none;
						}

						.tree-default-border-no-shadow .tree-itens ul li a.cursor-default:hover {
							background: none;
						}

						.tree-default-border-no-shadow .tree-itens ul li a.tree-node-active {
							color: #e74725;
							background: transparent;
							font-weight: bold;
						}

						.tree-default-border-no-shadow .tree-itens ul li a.icon-link {
							padding: 0 4px;
							width: 20px;
							height: 20px;
							float: left;
							display: inline-block;
							top: 0;
							position: relative;
						}

						.tree-default-border-no-shadow .tree-itens ul li a.icon-ball {
							top: 9px;
							margin-right: 2px;
						}

						.tree-default-border-no-shadow .tree-itens ul li a.tree-node-no-link {
							cursor: default;
						}

					.tree-default-border-no-shadow .tree-itens ul li .ms-home .icon-mlk-home {
						top: 5px;
						color: #a6a6a6;
					}

					.tree-default-border-no-shadow .tree-itens ul li [class*="icon"].load {
						padding: 0;
						width: auto;
						height: auto;
						font-size: 0.9em;
						display: inline-block;
						float: none;
					}

					.tree-default-border-no-shadow .tree-itens ul li .text-wrapper {
						position: relative;
					}

						.tree-default-border-no-shadow .tree-itens ul li .text-wrapper .extra-icons-after {
							position: absolute;
							right: 0;
							width: 20px;
							padding: 0;
							margin-left: 2px;
							margin-top: 4px;
							color: #595959;
						}

							.tree-default-border-no-shadow .tree-itens ul li .text-wrapper .extra-icons-after.hover-icon {
								display: none;
							}

								.tree-default-border-no-shadow .tree-itens ul li .text-wrapper .extra-icons-after.hover-icon:hover {
									color: #e74725;
								}

							.tree-default-border-no-shadow .tree-itens ul li .text-wrapper .extra-icons-after i {
								height: 12px;
								font-size: 1.1em;
							}

						.tree-default-border-no-shadow .tree-itens ul li .text-wrapper:hover .extra-icons-after {
							display: inline-block;
						}

					.tree-default-border-no-shadow .tree-itens ul li.context-active .extra-icons-after {
						display: inline-block;
						color: #e74725;
					}

					.tree-default-border-no-shadow .tree-itens ul li .icons-wrapper, .tree-default-border-no-shadow .tree-itens ul li .text-wrapper {
						display: inline-block;
						padding: 2px 0;
						float: left;
					}

						.tree-default-border-no-shadow .tree-itens ul li .icons-wrapper input {
							vertical-align: middle;
							float: left;
							position: relative;
							top: 4px;
						}

							.tree-default-border-no-shadow .tree-itens ul li .icons-wrapper input + label {
								float: left;
								position: relative;
								top: 4px;
								display: inline-block;
							}

					.tree-default-border-no-shadow .tree-itens ul li ul {
						padding-left: 20px;
					}

				.tree-default-border-no-shadow .tree-itens ul [class^="icon-mlk"], .tree-default-border-no-shadow .tree-itens ul [class*="icon-mlk"] {
					width: 15px;
					height: 15px;
					display: block;
					position: relative;
					top: calc(50% - 4px);
				}

		.tree-default-border-no-shadow .tree-itens input[type="radio"].check-control {
			display: none;
		}

			.tree-default-border-no-shadow .tree-itens input[type="radio"].check-control + label:before {
				font-family: MasterlinkPlatform;
				display: inline-block;
				content: "";
				letter-spacing: 2px;
				line-height: 1.5;
				color: #595959;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-default-border-no-shadow .tree-itens input[type="radio"].check-control:not(:first-child) + label:before {
				margin-left: 8px;
			}

			.tree-default-border-no-shadow .tree-itens input[type="radio"].check-control:checked + label:before, .tree-default-border-no-shadow .tree-itens input[type="radio"].check-control[data-value="true"] + label:before {
				content: "";
				color: #e74725;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-default-border-no-shadow .tree-itens input[type="radio"].check-control[disabled] + label:before {
				opacity: 0.6;
			}

		.tree-default-border-no-shadow .tree-itens input[type="checkbox"].check-control {
			display: none;
		}

			.tree-default-border-no-shadow .tree-itens input[type="checkbox"].check-control + label:before {
				font-family: MasterlinkPlatform;
				display: inline-block;
				content: "";
				letter-spacing: 2px;
				line-height: 1.71429;
				color: #595959;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-default-border-no-shadow .tree-itens input[type="checkbox"].check-control:checked + label:before, .tree-default-border-no-shadow .tree-itens input[type="checkbox"].check-control[data-value="true"] + label:before {
				content: "";
				color: #e74725;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-default-border-no-shadow .tree-itens input[type="checkbox"].check-control[disabled] + label:before {
				opacity: 0.6;
			}

	.tree-default-border-no-shadow .tree-top-container {
		position: relative;
		background: #f7f7f7;
		-webkit-box-shadow: none;
		box-shadow: none;
		z-index: 9;
		border-bottom: 1px solid #bfbfbf;
		float: left;
		width: 100%;
	}

		.tree-default-border-no-shadow .tree-top-container .form {
			padding: 8px 8px;
		}

		.tree-default-border-no-shadow .tree-top-container .new-item {
			float: left;
			width: 100%;
		}

.tree-white {
	height: 100%;
	float: left;
	width: 100%;
	text-align: left;
}

	.tree-white.tree-fixed .tree-itens {
		overflow-y: auto;
		overflow-x: hidden;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}

	.tree-white.tree-fixed .tree-container {
		position: absolute;
	}

	.tree-white .tree-container {
		font-size: 13.16px;
		height: 100%;
		position: relative;
		bottom: 0;
		left: 0;
		top: 0;
		right: 0;
		border: 0;
		float: left;
		width: 100%;
		border-radius: 0;
		overflow: hidden;
		background: #fff;
	}

	.tree-white .tree-itens {
		position: relative;
		padding: 0;
		margin: 0;
		float: left;
		width: 100%;
		background: #fff;
	}

		.tree-white .tree-itens ul {
			float: left;
			width: 100%;
		}

			.tree-white .tree-itens ul, .tree-white .tree-itens ul ul {
				list-style: none;
				margin: 0;
				padding: 0;
			}

				.tree-white .tree-itens ul li {
					width: 100%;
					float: left;
				}

					.tree-white .tree-itens ul li a {
						color: #595959;
						padding: 4px 8px;
						display: block;
						-ms-word-wrap: break-word;
						word-wrap: break-word;
						float: left;
						width: 100%;
					}

						.tree-white .tree-itens ul li a:hover {
							color: #595959;
							background: #ededed;
							text-decoration: none;
						}

						.tree-white .tree-itens ul li a.cursor-default:hover {
							background: none;
						}

						.tree-white .tree-itens ul li a.tree-node-active {
							color: #e74725;
							background: transparent;
							font-weight: bold;
						}

						.tree-white .tree-itens ul li a.icon-link {
							padding: 0 4px;
							width: 20px;
							height: 20px;
							float: left;
							display: inline-block;
							top: 0;
							position: relative;
						}

						.tree-white .tree-itens ul li a.icon-ball {
							top: 9px;
							margin-right: 2px;
						}

						.tree-white .tree-itens ul li a.tree-node-no-link {
							cursor: default;
						}

					.tree-white .tree-itens ul li .ms-home .icon-mlk-home {
						top: 5px;
						color: #a6a6a6;
					}

					.tree-white .tree-itens ul li [class*="icon"].load {
						padding: 0;
						width: auto;
						height: auto;
						font-size: 0.9em;
						display: inline-block;
						float: none;
					}

					.tree-white .tree-itens ul li .text-wrapper {
						position: relative;
					}

						.tree-white .tree-itens ul li .text-wrapper .extra-icons-after {
							position: absolute;
							right: 0;
							width: 20px;
							padding: 0;
							margin-left: 2px;
							margin-top: 4px;
							color: #595959;
						}

							.tree-white .tree-itens ul li .text-wrapper .extra-icons-after.hover-icon {
								display: none;
							}

								.tree-white .tree-itens ul li .text-wrapper .extra-icons-after.hover-icon:hover {
									color: #e74725;
								}

							.tree-white .tree-itens ul li .text-wrapper .extra-icons-after i {
								height: 12px;
								font-size: 1.1em;
							}

						.tree-white .tree-itens ul li .text-wrapper:hover .extra-icons-after {
							display: inline-block;
						}

					.tree-white .tree-itens ul li.context-active .extra-icons-after {
						display: inline-block;
						color: #e74725;
					}

					.tree-white .tree-itens ul li .icons-wrapper, .tree-white .tree-itens ul li .text-wrapper {
						display: inline-block;
						padding: 2px 0;
						float: left;
					}

						.tree-white .tree-itens ul li .icons-wrapper input {
							vertical-align: middle;
							float: left;
							position: relative;
							top: 4px;
						}

							.tree-white .tree-itens ul li .icons-wrapper input + label {
								float: left;
								position: relative;
								top: 4px;
								display: inline-block;
							}

					.tree-white .tree-itens ul li ul {
						padding-left: 20px;
					}

				.tree-white .tree-itens ul [class^="icon-mlk"], .tree-white .tree-itens ul [class*="icon-mlk"] {
					width: 15px;
					height: 15px;
					display: block;
					position: relative;
					top: calc(50% - 4px);
				}

		.tree-white .tree-itens input[type="radio"].check-control {
			display: none;
		}

			.tree-white .tree-itens input[type="radio"].check-control + label:before {
				font-family: MasterlinkPlatform;
				display: inline-block;
				content: "";
				letter-spacing: 2px;
				line-height: 1.5;
				color: #595959;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-white .tree-itens input[type="radio"].check-control:not(:first-child) + label:before {
				margin-left: 8px;
			}

			.tree-white .tree-itens input[type="radio"].check-control:checked + label:before, .tree-white .tree-itens input[type="radio"].check-control[data-value="true"] + label:before {
				content: "";
				color: #e74725;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-white .tree-itens input[type="radio"].check-control[disabled] + label:before {
				opacity: 0.6;
			}

		.tree-white .tree-itens input[type="checkbox"].check-control {
			display: none;
		}

			.tree-white .tree-itens input[type="checkbox"].check-control + label:before {
				font-family: MasterlinkPlatform;
				display: inline-block;
				content: "";
				letter-spacing: 2px;
				line-height: 1.71429;
				color: #595959;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-white .tree-itens input[type="checkbox"].check-control:checked + label:before, .tree-white .tree-itens input[type="checkbox"].check-control[data-value="true"] + label:before {
				content: "";
				color: #e74725;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-white .tree-itens input[type="checkbox"].check-control[disabled] + label:before {
				opacity: 0.6;
			}

	.tree-white .tree-top-container {
		position: relative;
		background: #fff;
		-webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
		box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
		z-index: 9;
		border-bottom: 0;
		float: left;
		width: 100%;
	}

		.tree-white .tree-top-container .form {
			padding: 8px 8px;
		}

		.tree-white .tree-top-container .new-item {
			float: left;
			width: 100%;
		}

.tree-white-border {
	height: 100%;
	float: left;
	width: 100%;
	text-align: left;
}

	.tree-white-border.tree-fixed .tree-itens {
		overflow-y: auto;
		overflow-x: hidden;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}

	.tree-white-border.tree-fixed .tree-container {
		position: absolute;
	}

	.tree-white-border .tree-container {
		font-size: 13.16px;
		height: 100%;
		position: relative;
		bottom: 0;
		left: 0;
		top: 0;
		right: 0;
		border: 1px solid #e7e7e7;
		float: left;
		width: 100%;
		border-radius: 0;
		overflow: hidden;
		background: #fff;
	}

	.tree-white-border .tree-itens {
		position: relative;
		padding: 0;
		margin: 0;
		float: left;
		width: 100%;
		background: #fff;
	}

		.tree-white-border .tree-itens ul {
			float: left;
			width: 100%;
		}

			.tree-white-border .tree-itens ul, .tree-white-border .tree-itens ul ul {
				list-style: none;
				margin: 0;
				padding: 0;
			}

				.tree-white-border .tree-itens ul li {
					width: 100%;
					float: left;
				}

					.tree-white-border .tree-itens ul li a {
						color: #595959;
						padding: 4px 8px;
						display: block;
						-ms-word-wrap: break-word;
						word-wrap: break-word;
						float: left;
						width: 100%;
					}

						.tree-white-border .tree-itens ul li a:hover {
							color: #595959;
							background: #ededed;
							text-decoration: none;
						}

						.tree-white-border .tree-itens ul li a.cursor-default:hover {
							background: none;
						}

						.tree-white-border .tree-itens ul li a.tree-node-active {
							color: #e74725;
							background: transparent;
							font-weight: bold;
						}

						.tree-white-border .tree-itens ul li a.icon-link {
							padding: 0 4px;
							width: 20px;
							height: 20px;
							float: left;
							display: inline-block;
							top: 0;
							position: relative;
						}

						.tree-white-border .tree-itens ul li a.icon-ball {
							top: 9px;
							margin-right: 2px;
						}

						.tree-white-border .tree-itens ul li a.tree-node-no-link {
							cursor: default;
						}

					.tree-white-border .tree-itens ul li .ms-home .icon-mlk-home {
						top: 5px;
						color: #a6a6a6;
					}

					.tree-white-border .tree-itens ul li [class*="icon"].load {
						padding: 0;
						width: auto;
						height: auto;
						font-size: 0.9em;
						display: inline-block;
						float: none;
					}

					.tree-white-border .tree-itens ul li .text-wrapper {
						position: relative;
					}

						.tree-white-border .tree-itens ul li .text-wrapper .extra-icons-after {
							position: absolute;
							right: 0;
							width: 20px;
							padding: 0;
							margin-left: 2px;
							margin-top: 4px;
							color: #595959;
						}

							.tree-white-border .tree-itens ul li .text-wrapper .extra-icons-after.hover-icon {
								display: none;
							}

								.tree-white-border .tree-itens ul li .text-wrapper .extra-icons-after.hover-icon:hover {
									color: #e74725;
								}

							.tree-white-border .tree-itens ul li .text-wrapper .extra-icons-after i {
								height: 12px;
								font-size: 1.1em;
							}

						.tree-white-border .tree-itens ul li .text-wrapper:hover .extra-icons-after {
							display: inline-block;
						}

					.tree-white-border .tree-itens ul li.context-active .extra-icons-after {
						display: inline-block;
						color: #e74725;
					}

					.tree-white-border .tree-itens ul li .icons-wrapper, .tree-white-border .tree-itens ul li .text-wrapper {
						display: inline-block;
						padding: 2px 0;
						float: left;
					}

						.tree-white-border .tree-itens ul li .icons-wrapper input {
							vertical-align: middle;
							float: left;
							position: relative;
							top: 4px;
						}

							.tree-white-border .tree-itens ul li .icons-wrapper input + label {
								float: left;
								position: relative;
								top: 4px;
								display: inline-block;
							}

					.tree-white-border .tree-itens ul li ul {
						padding-left: 20px;
					}

				.tree-white-border .tree-itens ul [class^="icon-mlk"], .tree-white-border .tree-itens ul [class*="icon-mlk"] {
					width: 15px;
					height: 15px;
					display: block;
					position: relative;
					top: calc(50% - 4px);
				}

		.tree-white-border .tree-itens input[type="radio"].check-control {
			display: none;
		}

			.tree-white-border .tree-itens input[type="radio"].check-control + label:before {
				font-family: MasterlinkPlatform;
				display: inline-block;
				content: "";
				letter-spacing: 2px;
				line-height: 1.5;
				color: #595959;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-white-border .tree-itens input[type="radio"].check-control:not(:first-child) + label:before {
				margin-left: 8px;
			}

			.tree-white-border .tree-itens input[type="radio"].check-control:checked + label:before, .tree-white-border .tree-itens input[type="radio"].check-control[data-value="true"] + label:before {
				content: "";
				color: #e74725;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-white-border .tree-itens input[type="radio"].check-control[disabled] + label:before {
				opacity: 0.6;
			}

		.tree-white-border .tree-itens input[type="checkbox"].check-control {
			display: none;
		}

			.tree-white-border .tree-itens input[type="checkbox"].check-control + label:before {
				font-family: MasterlinkPlatform;
				display: inline-block;
				content: "";
				letter-spacing: 2px;
				line-height: 1.71429;
				color: #595959;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-white-border .tree-itens input[type="checkbox"].check-control:checked + label:before, .tree-white-border .tree-itens input[type="checkbox"].check-control[data-value="true"] + label:before {
				content: "";
				color: #e74725;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-white-border .tree-itens input[type="checkbox"].check-control[disabled] + label:before {
				opacity: 0.6;
			}

	.tree-white-border .tree-top-container {
		position: relative;
		background: #fff;
		-webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
		box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
		z-index: 9;
		border-bottom: 0;
		float: left;
		width: 100%;
	}

		.tree-white-border .tree-top-container .form {
			padding: 8px 8px;
		}

		.tree-white-border .tree-top-container .new-item {
			float: left;
			width: 100%;
		}

.tree-white-border-grey-base {
	height: 100%;
	float: left;
	width: 100%;
	text-align: left;
}

	.tree-white-border-grey-base.tree-fixed .tree-itens {
		overflow-y: auto;
		overflow-x: hidden;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}

	.tree-white-border-grey-base.tree-fixed .tree-container {
		position: absolute;
	}

	.tree-white-border-grey-base .tree-container {
		font-size: 13.16px;
		height: 100%;
		position: relative;
		bottom: 0;
		left: 0;
		top: 0;
		right: 0;
		border: 1px solid #bfbfbf;
		float: left;
		width: 100%;
		border-radius: 3px;
		overflow: hidden;
		background: #fff;
	}

	.tree-white-border-grey-base .tree-itens {
		position: relative;
		padding: 0;
		margin: 0;
		float: left;
		width: 100%;
		background: #fff;
	}

		.tree-white-border-grey-base .tree-itens ul {
			float: left;
			width: 100%;
		}

			.tree-white-border-grey-base .tree-itens ul, .tree-white-border-grey-base .tree-itens ul ul {
				list-style: none;
				margin: 0;
				padding: 0;
			}

				.tree-white-border-grey-base .tree-itens ul li {
					width: 100%;
					float: left;
				}

					.tree-white-border-grey-base .tree-itens ul li a {
						color: #595959;
						padding: 4px 8px;
						display: block;
						-ms-word-wrap: break-word;
						word-wrap: break-word;
						float: left;
						width: 100%;
					}

						.tree-white-border-grey-base .tree-itens ul li a:hover {
							color: #595959;
							background: #ededed;
							text-decoration: none;
						}

						.tree-white-border-grey-base .tree-itens ul li a.cursor-default:hover {
							background: none;
						}

						.tree-white-border-grey-base .tree-itens ul li a.tree-node-active {
							color: #e74725;
							background: transparent;
							font-weight: bold;
						}

						.tree-white-border-grey-base .tree-itens ul li a.icon-link {
							padding: 0 4px;
							width: 20px;
							height: 20px;
							float: left;
							display: inline-block;
							top: 0;
							position: relative;
						}

						.tree-white-border-grey-base .tree-itens ul li a.icon-ball {
							top: 9px;
							margin-right: 2px;
						}

						.tree-white-border-grey-base .tree-itens ul li a.tree-node-no-link {
							cursor: default;
						}

					.tree-white-border-grey-base .tree-itens ul li .ms-home .icon-mlk-home {
						top: 5px;
						color: #a6a6a6;
					}

					.tree-white-border-grey-base .tree-itens ul li [class*="icon"].load {
						padding: 0;
						width: auto;
						height: auto;
						font-size: 0.9em;
						display: inline-block;
						float: none;
					}

					.tree-white-border-grey-base .tree-itens ul li .text-wrapper {
						position: relative;
					}

						.tree-white-border-grey-base .tree-itens ul li .text-wrapper .extra-icons-after {
							position: absolute;
							right: 0;
							width: 20px;
							padding: 0;
							margin-left: 2px;
							margin-top: 4px;
							color: #595959;
						}

							.tree-white-border-grey-base .tree-itens ul li .text-wrapper .extra-icons-after.hover-icon {
								display: none;
							}

								.tree-white-border-grey-base .tree-itens ul li .text-wrapper .extra-icons-after.hover-icon:hover {
									color: #e74725;
								}

							.tree-white-border-grey-base .tree-itens ul li .text-wrapper .extra-icons-after i {
								height: 12px;
								font-size: 1.1em;
							}

						.tree-white-border-grey-base .tree-itens ul li .text-wrapper:hover .extra-icons-after {
							display: inline-block;
						}

					.tree-white-border-grey-base .tree-itens ul li.context-active .extra-icons-after {
						display: inline-block;
						color: #e74725;
					}

					.tree-white-border-grey-base .tree-itens ul li .icons-wrapper, .tree-white-border-grey-base .tree-itens ul li .text-wrapper {
						display: inline-block;
						padding: 2px 0;
						float: left;
					}

						.tree-white-border-grey-base .tree-itens ul li .icons-wrapper input {
							vertical-align: middle;
							float: left;
							position: relative;
							top: 4px;
						}

							.tree-white-border-grey-base .tree-itens ul li .icons-wrapper input + label {
								float: left;
								position: relative;
								top: 4px;
								display: inline-block;
							}

					.tree-white-border-grey-base .tree-itens ul li ul {
						padding-left: 20px;
					}

				.tree-white-border-grey-base .tree-itens ul [class^="icon-mlk"], .tree-white-border-grey-base .tree-itens ul [class*="icon-mlk"] {
					width: 15px;
					height: 15px;
					display: block;
					position: relative;
					top: calc(50% - 4px);
				}

		.tree-white-border-grey-base .tree-itens input[type="radio"].check-control {
			display: none;
		}

			.tree-white-border-grey-base .tree-itens input[type="radio"].check-control + label:before {
				font-family: MasterlinkPlatform;
				display: inline-block;
				content: "";
				letter-spacing: 2px;
				line-height: 1.5;
				color: #595959;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-white-border-grey-base .tree-itens input[type="radio"].check-control:not(:first-child) + label:before {
				margin-left: 8px;
			}

			.tree-white-border-grey-base .tree-itens input[type="radio"].check-control:checked + label:before, .tree-white-border-grey-base .tree-itens input[type="radio"].check-control[data-value="true"] + label:before {
				content: "";
				color: #e74725;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-white-border-grey-base .tree-itens input[type="radio"].check-control[disabled] + label:before {
				opacity: 0.6;
			}

		.tree-white-border-grey-base .tree-itens input[type="checkbox"].check-control {
			display: none;
		}

			.tree-white-border-grey-base .tree-itens input[type="checkbox"].check-control + label:before {
				font-family: MasterlinkPlatform;
				display: inline-block;
				content: "";
				letter-spacing: 2px;
				line-height: 1.71429;
				color: #595959;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-white-border-grey-base .tree-itens input[type="checkbox"].check-control:checked + label:before, .tree-white-border-grey-base .tree-itens input[type="checkbox"].check-control[data-value="true"] + label:before {
				content: "";
				color: #e74725;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-white-border-grey-base .tree-itens input[type="checkbox"].check-control[disabled] + label:before {
				opacity: 0.6;
			}

	.tree-white-border-grey-base .tree-top-container {
		position: relative;
		background: #fff;
		-webkit-box-shadow: none;
		box-shadow: none;
		z-index: 9;
		border-bottom: 1px solid #bfbfbf;
		float: left;
		width: 100%;
	}

		.tree-white-border-grey-base .tree-top-container .form {
			padding: 0 0;
		}

		.tree-white-border-grey-base .tree-top-container .new-item {
			float: left;
			width: 100%;
		}

	.tree-white-border-grey-base .text-wrapper {
		border-right: 1px solid #bfbfbf;
	}

	.tree-white-border-grey-base.icons-before-right .icons-wrapper .extra-icons-before {
		padding-top: 4px;
		padding-bottom: 4px;
		float: left;
	}

		.tree-white-border-grey-base.icons-before-right .icons-wrapper .extra-icons-before [class*="icon-mlk"] {
			display: inline-block;
		}

	.tree-white-border-grey-base.icons-before-right .icons-wrapper [data-type="expand"] {
		display: none;
	}

.no-shadow-top-container .tree-top-container {
	-webkit-box-shadow: none;
	box-shadow: none;
}

.first-child-uppercase .tree-itens > ul:first-child > li > .text-wrapper {
	text-transform: uppercase;
	font-weight: 600;
}

.first-child-uppercase .tree-itens ul ul {
	text-transform: none;
	font-weight: normal;
}

.tree-processes {
	height: 100%;
	float: left;
	width: 100%;
	text-align: left;
}

	.tree-processes.tree-fixed .tree-itens {
		overflow-y: auto;
		overflow-x: hidden;
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
	}

	.tree-processes.tree-fixed .tree-container {
		position: absolute;
	}

	.tree-processes .tree-container {
		font-size: 13.16px;
		height: 100%;
		position: relative;
		bottom: 0;
		left: 0;
		top: 0;
		right: 0;
		border: 0;
		float: left;
		width: 100%;
		border-radius: 0;
		overflow: hidden;
		background: #ededed;
	}

	.tree-processes .tree-itens {
		position: relative;
		padding: 0;
		margin: 0;
		float: left;
		width: 100%;
		background: #ededed;
	}

		.tree-processes .tree-itens ul {
			float: left;
			width: 100%;
		}

			.tree-processes .tree-itens ul, .tree-processes .tree-itens ul ul {
				list-style: none;
				margin: 0;
				padding: 0;
			}

				.tree-processes .tree-itens ul li {
					width: 100%;
					float: left;
				}

					.tree-processes .tree-itens ul li a {
						color: #595959;
						padding: 4px 8px;
						display: block;
						-ms-word-wrap: break-word;
						word-wrap: break-word;
						float: left;
						width: 100%;
					}

						.tree-processes .tree-itens ul li a:hover {
							color: #595959;
							background: #ededed;
							text-decoration: none;
						}

						.tree-processes .tree-itens ul li a.cursor-default:hover {
							background: none;
						}

						.tree-processes .tree-itens ul li a.tree-node-active {
							color: #e74725;
							background: transparent;
							font-weight: bold;
						}

						.tree-processes .tree-itens ul li a.icon-link {
							padding: 0 4px;
							width: 20px;
							height: 20px;
							float: left;
							display: inline-block;
							top: 0;
							position: relative;
						}

						.tree-processes .tree-itens ul li a.icon-ball {
							top: 9px;
							margin-right: 2px;
						}

						.tree-processes .tree-itens ul li a.tree-node-no-link {
							cursor: default;
						}

					.tree-processes .tree-itens ul li .ms-home .icon-mlk-home {
						top: 5px;
						color: #a6a6a6;
					}

					.tree-processes .tree-itens ul li [class*="icon"].load {
						padding: 0;
						width: auto;
						height: auto;
						font-size: 0.9em;
						display: inline-block;
						float: none;
					}

					.tree-processes .tree-itens ul li .text-wrapper {
						position: relative;
					}

						.tree-processes .tree-itens ul li .text-wrapper .extra-icons-after {
							position: absolute;
							right: 0;
							width: 20px;
							padding: 0;
							margin-left: 2px;
							margin-top: 4px;
							color: #595959;
						}

							.tree-processes .tree-itens ul li .text-wrapper .extra-icons-after.hover-icon {
								display: none;
							}

								.tree-processes .tree-itens ul li .text-wrapper .extra-icons-after.hover-icon:hover {
									color: #e74725;
								}

							.tree-processes .tree-itens ul li .text-wrapper .extra-icons-after i {
								height: 12px;
								font-size: 1.1em;
							}

						.tree-processes .tree-itens ul li .text-wrapper:hover .extra-icons-after {
							display: inline-block;
						}

					.tree-processes .tree-itens ul li.context-active .extra-icons-after {
						display: inline-block;
						color: #e74725;
					}

					.tree-processes .tree-itens ul li .icons-wrapper, .tree-processes .tree-itens ul li .text-wrapper {
						display: inline-block;
						padding: 2px 0;
						float: left;
					}

						.tree-processes .tree-itens ul li .icons-wrapper input {
							vertical-align: middle;
							float: left;
							position: relative;
							top: 4px;
						}

							.tree-processes .tree-itens ul li .icons-wrapper input + label {
								float: left;
								position: relative;
								top: 4px;
								display: inline-block;
							}

					.tree-processes .tree-itens ul li ul {
						padding-left: 20px;
					}

				.tree-processes .tree-itens ul [class^="icon-mlk"], .tree-processes .tree-itens ul [class*="icon-mlk"] {
					width: 15px;
					height: 15px;
					display: block;
					position: relative;
					top: calc(50% - 4px);
				}

		.tree-processes .tree-itens input[type="radio"].check-control {
			display: none;
		}

			.tree-processes .tree-itens input[type="radio"].check-control + label:before {
				font-family: MasterlinkPlatform;
				display: inline-block;
				content: "";
				letter-spacing: 2px;
				line-height: 1.5;
				color: #595959;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-processes .tree-itens input[type="radio"].check-control:not(:first-child) + label:before {
				margin-left: 8px;
			}

			.tree-processes .tree-itens input[type="radio"].check-control:checked + label:before, .tree-processes .tree-itens input[type="radio"].check-control[data-value="true"] + label:before {
				content: "";
				color: #e74725;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-processes .tree-itens input[type="radio"].check-control[disabled] + label:before {
				opacity: 0.6;
			}

		.tree-processes .tree-itens input[type="checkbox"].check-control {
			display: none;
		}

			.tree-processes .tree-itens input[type="checkbox"].check-control + label:before {
				font-family: MasterlinkPlatform;
				display: inline-block;
				content: "";
				letter-spacing: 2px;
				line-height: 1.71429;
				color: #595959;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-processes .tree-itens input[type="checkbox"].check-control:checked + label:before, .tree-processes .tree-itens input[type="checkbox"].check-control[data-value="true"] + label:before {
				content: "";
				color: #e74725;
				-webkit-transition: all ease 0.8s;
				-o-transition: all ease 0.8s;
				transition: all ease 0.8s;
			}

			.tree-processes .tree-itens input[type="checkbox"].check-control[disabled] + label:before {
				opacity: 0.6;
			}

	.tree-processes .tree-top-container {
		position: relative;
		background: #ededed;
		-webkit-box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
		box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.2);
		z-index: 9;
		border-bottom: 0;
		float: left;
		width: 100%;
	}

		.tree-processes .tree-top-container .form {
			padding: 8px 8px;
		}

		.tree-processes .tree-top-container .new-item {
			float: left;
			width: 100%;
		}

	.tree-processes .tree-itens ul > li .text-wrapper .icon-hover {
		display: none;
	}

	.tree-processes .tree-itens ul > li .text-wrapper:hover .icon-hover, .tree-processes .tree-itens ul > li .text-wrapper.context-menu-active .icon-hover {
		display: block;
		background-color: rgba(237, 237, 237, 0.7);
	}

	.tree-processes .tree-itens ul > li li ul li ul {
		padding-left: 50px;
	}

	.tree-processes .tree-itens ul > li.arvore-nivel-1 {
		background: #ededed;
		border: 1px solid #bfbfbf;
		font-weight: 600;
	}

		.tree-processes .tree-itens ul > li.arvore-nivel-1 > div > a.icon-link:empty {
			display: none;
		}

		.tree-processes .tree-itens ul > li.arvore-nivel-1 > ul {
			padding-left: 5px;
			padding-right: 5px;
		}

			.tree-processes .tree-itens ul > li.arvore-nivel-1 > ul > .arvore-nivel-2 {
				background: #ededed;
				border: 1px solid #d9d9d9;
				text-transform: uppercase;
				margin-bottom: 5px;
			}

				.tree-processes .tree-itens ul > li.arvore-nivel-1 > ul > .arvore-nivel-2 .text-wrapper {
					font-size: 11px;
					font-weight: bold;
				}

				.tree-processes .tree-itens ul > li.arvore-nivel-1 > ul > .arvore-nivel-2 > ul {
					padding-left: 0;
					padding-right: 0;
				}

					.tree-processes .tree-itens ul > li.arvore-nivel-1 > ul > .arvore-nivel-2 > ul .arvore-nivel-3 {
						background: #f7f7f7;
						text-transform: none;
						padding-left: 20px;
					}

						.tree-processes .tree-itens ul > li.arvore-nivel-1 > ul > .arvore-nivel-2 > ul .arvore-nivel-3 .text-wrapper {
							font-weight: 600;
							font-size: 13px;
						}

						.tree-processes .tree-itens ul > li.arvore-nivel-1 > ul > .arvore-nivel-2 > ul .arvore-nivel-3 .arvore-nivel-4 [class*="icon-mlk-"] {
							font-size: 15px;
							top: 5px;
						}

						.tree-processes .tree-itens ul > li.arvore-nivel-1 > ul > .arvore-nivel-2 > ul .arvore-nivel-3 .arvore-nivel-4 .icon-link:not([class*="icon-mlk-"]) {
							display: none;
						}

						.tree-processes .tree-itens ul > li.arvore-nivel-1 > ul > .arvore-nivel-2 > ul .arvore-nivel-3 .arvore-nivel-4.tree-node-container-active .type-field {
							color: #e74725;
						}

.tree-hidden-empty-icons .tree-itens ul > li a.icon-link:empty {
	display: none;
}

.tree-first-level-highlight .tree-itens > ul > li {
	position: relative;
}

	.tree-first-level-highlight .tree-itens > ul > li:after {
		height: 1px;
		content: "";
		position: absolute;
		width: 150%;
		background: #bfbfbf;
		z-index: 10;
		left: -10px;
		right: 0;
		bottom: 0;
	}

	.tree-first-level-highlight .tree-itens > ul > li > ul {
		position: relative;
	}

		.tree-first-level-highlight .tree-itens > ul > li > ul:before {
			box-shadow: #878686 0 2px 4px -1px;
			content: "";
			width: 150%;
			height: 6px;
			position: absolute;
			z-index: 1;
			left: -10%;
			right: -10%;
			top: -8px;
		}

.tree-line-active .tree-node-container-active {
	position: relative;
}

	.tree-line-active .tree-node-container-active:before {
		content: "";
		background: #e74725;
		width: 3px;
		height: 20px;
		left: -20px;
		top: 5px;
		position: absolute;
	}

	.tree-line-active .tree-node-container-active.arvore-nivel-1:before {
		left: 0;
	}

	.tree-line-active .tree-node-container-active.arvore-nivel-2:before {
		left: -20px;
	}

.form {
	float: left;
	width: 100%;
}

	.form textarea.input-control,
	.form .print-textarea,
	.form input.input-control,
	.form select.input-control {
		vertical-align: top;
	}

		.form textarea.input-control, .form textarea.input-control .label-control,
		.form .print-textarea,
		.form .print-textarea .label-control,
		.form input.input-control,
		.form input.input-control .label-control,
		.form select.input-control,
		.form select.input-control .label-control {
			width: 100%;
		}

			.form textarea.input-control.input-width-auto, .form textarea.input-control .label-control.input-width-auto,
			.form .print-textarea.input-width-auto,
			.form .print-textarea .label-control.input-width-auto,
			.form input.input-control.input-width-auto,
			.form input.input-control .label-control.input-width-auto,
			.form select.input-control.input-width-auto,
			.form select.input-control .label-control.input-width-auto {
				width: auto;
			}

			.form textarea.input-control[disabled], .form textarea.input-control[readonly],
			fieldset[disabled] .form textarea.input-control, .form textarea.input-control .label-control[disabled], .form textarea.input-control .label-control[readonly],
			fieldset[disabled] .form textarea.input-control .label-control,
			.form .print-textarea[disabled],
			.form .print-textarea[readonly],
			fieldset[disabled]
			.form .print-textarea,
			.form .print-textarea .label-control[disabled],
			.form .print-textarea .label-control[readonly],
			fieldset[disabled]
			.form .print-textarea .label-control,
			.form input.input-control[disabled],
			.form input.input-control[readonly],
			fieldset[disabled]
			.form input.input-control,
			.form input.input-control .label-control[disabled],
			.form input.input-control .label-control[readonly],
			fieldset[disabled]
			.form input.input-control .label-control,
			.form select.input-control[disabled],
			.form select.input-control[readonly],
			fieldset[disabled]
			.form select.input-control,
			.form select.input-control .label-control[disabled],
			.form select.input-control .label-control[readonly],
			fieldset[disabled]
			.form select.input-control .label-control {
				opacity: 0.6;
			}

				.form textarea.input-control[disabled],
				fieldset[disabled] .form textarea.input-control, .form textarea.input-control .label-control[disabled],
				fieldset[disabled] .form textarea.input-control .label-control,
				.form .print-textarea[disabled],
				fieldset[disabled]
				.form .print-textarea,
				.form .print-textarea .label-control[disabled],
				fieldset[disabled]
				.form .print-textarea .label-control,
				.form input.input-control[disabled],
				fieldset[disabled]
				.form input.input-control,
				.form input.input-control .label-control[disabled],
				fieldset[disabled]
				.form input.input-control .label-control,
				.form select.input-control[disabled],
				fieldset[disabled]
				.form select.input-control,
				.form select.input-control .label-control[disabled],
				fieldset[disabled]
				.form select.input-control .label-control {
					cursor: not-allowed;
				}

	.form .label-control {
		vertical-align: middle;
	}

		.form .label-control.disabled {
			opacity: 0.6;
		}

		.form .label-control [class*="icon-mlk-"] {
			margin-right: 5px;
		}

	.form input.input-control, .form .loading-input {
		margin: 0;
		outline: none;
		-webkit-appearance: none;
		tap-highlight-color: rgba(255, 255, 255, 0);
		line-height: 1.42857;
		padding: 4px 4px;
		font-size: inherit;
		background: #fff;
		border: 1px solid #bfbfbf;
		color: #4c4c4c;
		border-radius: 2px;
		/*min-height: 28px;*/
		-webkit-transition:;
		-o-transition:;
		transition:;
		-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
		box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
	}

		.form input.input-control:focus, .form .loading-input:focus {
			border-color: rgba(51, 51, 51, 0.2);
			outline: 0;
			-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(51, 51, 51, 0.6);
			box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(51, 51, 51, 0.6);
		}

		.form input.input-control.input-lg, .form .loading-input.input-lg {
			height: 46px;
			padding: 10px 16px;
			font-size: 18px;
			line-height: 1.3333333;
		}

		.form input.input-control.input-sm, .form .loading-input.input-sm {
			height: 30px;
			padding: 5px 10px;
			font-size: 12px;
			line-height: 1.5;
		}

	.form textarea, .form .print-textarea {
		margin: 0em;
		-webkit-appearance: none;
		-webkit-tap-highlight-color: rgba(255, 255, 255, 0);
		tap-highlight-color: rgba(255, 255, 255, 0);
		padding: 4px 4px;
		font-size: 13.16px;
		background: #fff;
		border: 1px solid #bfbfbf;
		outline: none;
		color: #4c4c4c;
		border-radius: 2px;
		line-height: 1.42857;
		resize: vertical;
		-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
		box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
	}

		.form textarea:focus, .form .print-textarea:focus {
			border-color: rgba(51, 51, 51, 0.2);
			outline: 0;
			-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(51, 51, 51, 0.6);
			box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(51, 51, 51, 0.6);
		}

	.form select.input-control {
		font-size: inherit;
		display: block;
		height: auto;
		width: 100%;
		min-height: 28px;
		background: #fff;
		border: 1px solid #bfbfbf;
		border-radius: 2px;
		padding: 3px 4px;
		color: #4c4c4c;
		-webkit-transition:;
		-o-transition:;
		transition:;
		-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
		box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
	}

		.form select.input-control:focus {
			border-color: rgba(51, 51, 51, 0.2);
			outline: 0;
			-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(51, 51, 51, 0.6);
			box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(51, 51, 51, 0.6);
		}

		.form select.input-control.input-lg {
			height: 46px;
			padding: 10px 16px;
			font-size: 18px;
			line-height: 1.3333333;
		}

		.form select.input-control.input-sm {
			height: 30px;
			padding: 5px 10px;
			font-size: 12px;
			line-height: 1.5;
		}

	.form .select-faux {
		display: block;
		width: 100%;
		min-height: 28px;
		border-radius: 2px;
		position: relative;
		padding-right: 15px;
		min-width: 120px;
		font-size: 13.16px;
		height: 25.38px;
		cursor: default;
	}

	

		.form .select-faux:not(.no-arrow):after {
			content: "\e91c";
			font-family: "MasterlinkPlatform";
			font-size: 11px;
			position: absolute;
			right: 4px;
			top: calc(50% - 7px);
		}

		.form .select-faux .select-container {
			display: none;
			top: 101%;
			margin: 0;
			left: 0;
			border: 1px solid #bfbfbf;
			-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
			box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.25);
		}

			.form .select-faux .select-container .select-top-icon {
				border-bottom: 1px solid #e5e5e5;
				margin-bottom: 5px;
				padding-bottom: 3px;
				text-align: right;
			}

				.form .select-faux .select-container .select-top-icon ~ [class*="tree"] {
					height: calc(100% - 20px - 5px - 3px);
				}

		.form .select-faux .select-input {
			position: absolute;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			background: #fff;
			padding-right: 15px;
		}

			.form .select-faux .select-input[readonly]:not([disabled]) {
				background: #fff;
				opacity: 1;
			}

		.form .select-faux .select-faux-list {
			list-style: none;
			padding: 0;
			margin: 0;
		}

			.form .select-faux .select-faux-list li {
				padding: 4px 0;
				display: block;
				float: left;
				width: 100%;
			}

				.form .select-faux .select-faux-list li:not(:last-child) {
					border-bottom: 1px solid #e4e4e4;
				}

				.form .select-faux .select-faux-list li .input-control {
					vertical-align: middle;
					padding: 0;
					min-height: unset;
					width: 40px;
				}

					.form .select-faux .select-faux-list li .input-control.input-md {
						width: 80px;
					}

				.form .select-faux .select-faux-list li:hover {
					background: #e4e4e4;
				}

		.form .select-faux.select-nowrap .select-container {
			width: auto;
			white-space: nowrap;
		}

		.form .select-faux.disabled {
			opacity: 0.6;
		}

	.form .select-faux-all {
		position: relative;
		float: left;
		width: 100%;
	}

		.form .select-faux-all .select-faux-all-show {
			font-size: 13.16px;
			display: block;
			height: auto;
			width: 100%;
			min-height: 28px;
			background: #fff;
			border: 1px solid #bfbfbf;
			border-radius: 2px;
			padding: 3px 4px;
			color: #4c4c4c;
			cursor: default;
			position: relative;
			-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
			box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
		}

			.form .select-faux-all .select-faux-all-show:focus {
				border-color: rgba(51, 51, 51, 0.2);
				outline: 0;
				-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(51, 51, 51, 0.6);
				box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(51, 51, 51, 0.6);
			}

			.form .select-faux-all .select-faux-all-show:after {
				content: "\e91c";
				font-family: "MasterlinkPlatform";
				font-size: 11px;
				position: absolute;
				right: 4px;
				top: calc(50% - 7px);
			}

		.form .select-faux-all .select-faux-all-list {
			position: absolute;
			left: 0;
			right: 0;
			top: 100%;
			z-index: 10;
			background: #fff;
			padding: 0;
			color: #4c4c4c;
			border: 1px solid #bfbfbf;
			-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
			box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
		}

			.form .select-faux-all .select-faux-all-list ul {
				padding: 0;
				float: left;
				width: 100%;
				margin: 0;
			}

				.form .select-faux-all .select-faux-all-list ul li {
					list-style: none;
					float: left;
					width: 100%;
					cursor: default;
					padding: 3px 4px;
				}

					.form .select-faux-all .select-faux-all-list ul li:not(:last-child) {
						border-bottom: 1px solid #e1e1e1;
					}

					.form .select-faux-all .select-faux-all-list ul li:hover {
						background: #f4d4cd;
					}

			.form .select-faux-all .select-faux-all-list [class*="icon"] {
				margin-right: 5px;
			}

	.form .loading-input {
		opacity: 0.7;
	}

		.form .loading-input i.icon-mlk-refresh.mlk-spin.load {
			float: right;
			position: relative;
			top: 2px;
		}

	.form .inline-group input.input-control, .form .inline-group select.input-control, .form .inline-group .label-control {
		display: inline-block;
		width: auto;
		margin-top: 0;
		margin-bottom: 0;
		vertical-align: middle;
		font-size: 1em;
	}

	.form .segment-base {
		background: #f7f7f7;
		border: 1px solid #e5e5e5;
	}

	.form .form-group {
		margin-bottom: 15px;
	}

		.form .form-group:before, .form .form-group:after {
			content: " ";
			display: table;
		}

		.form .form-group:after {
			clear: both;
		}

	.form .label-control {
		color: #4c4c4c;
		font-size: 1em;
	}

		.form .label-control.label-secondary {
			color: #808080;
		}

		.form .label-control.label-principal {
			color: #e74725;
		}

		.form .label-control.label-lg {
			font-size: 18px;
		}

	.form .required:after {
		content: "*";
		padding-left: 1%;
	}

	.form .optional:after {
		content: attr(data-optional);
		padding-left: 1%;
		font-size: 0.85em;
	}

	.form input[type="radio"].check-control {
		display: none;
	}

		.form input[type="radio"].check-control + label:before {
			font-family: MasterlinkPlatform;
			display: inline-block;
			content: "";
			letter-spacing: 2px;
			line-height: 1.5;
			color: #595959;
			-webkit-transition: all ease 0.8s;
			-o-transition: all ease 0.8s;
			transition: all ease 0.8s;
		}

		.form input[type="radio"].check-control:not(:first-child) + label:before {
			margin-left: 8px;
		}

		.form input[type="radio"].check-control:checked + label:before, .form input[type="radio"].check-control[data-value="true"] + label:before {
			content: "";
			color: #e74725;
			-webkit-transition: all ease 0.8s;
			-o-transition: all ease 0.8s;
			transition: all ease 0.8s;
		}

		.form input[type="radio"].check-control[disabled] + label:before {
			opacity: 0.6;
		}

	.form input[type="checkbox"].check-control {
		display: none;
	}

		.form input[type="checkbox"].check-control + label:before {
			font-family: MasterlinkPlatform;
			display: inline-block;
			content: "";
			letter-spacing: 2px;
			line-height: 1.71429;
			color: #595959;
			-webkit-transition: all ease 0.8s;
			-o-transition: all ease 0.8s;
			transition: all ease 0.8s;
		}

		.form input[type="checkbox"].check-control:checked + label:before, .form input[type="checkbox"].check-control[data-value="true"] + label:before {
			content: "";
			color: #e74725;
			-webkit-transition: all ease 0.8s;
			-o-transition: all ease 0.8s;
			transition: all ease 0.8s;
		}

		.form input[type="checkbox"].check-control[disabled] + label:before {
			opacity: 0.6;
		}

	.form input[type="radio"].radio-check {
		display: none;
	}

		.form input[type="radio"].radio-check + label:before {
			font-family: MasterlinkPlatform;
			display: inline-block;
			content: " \e9c8";
			letter-spacing: 2px;
			line-height: 1.5;
			color: #595959;
			-webkit-transition: all ease 0.8s;
			-o-transition: all ease 0.8s;
			transition: all ease 0.8s;
		}

		.form input[type="radio"].radio-check:not(:first-child) + label:before {
			margin-left: 8px;
		}

		.form input[type="radio"].radio-check:checked + label:before, .form input[type="radio"].radio-check[data-value="true"] + label:before {
			content: "\e9c7";
			color: #e74725;
			-webkit-transition: all ease 0.8s;
			-o-transition: all ease 0.8s;
			transition: all ease 0.8s;
		}

		.form input[type="radio"].radio-check[disabled] + label:before {
			opacity: 0.6;
		}

	.form input[type="checkbox"].radio_all_unchecked {
		display: none;
	}

		.form input[type="checkbox"].radio_all_unchecked + label:before {
			font-family: MasterlinkPlatform;
			display: inline-block;
			content: "\e9ee";
			letter-spacing: 2px;
			line-height: 1.71429;
			color: #595959;
			-webkit-transition: all ease 0.8s;
			-o-transition: all ease 0.8s;
			transition: all ease 0.8s;
		}

		.form input[type="checkbox"].radio_all_unchecked:checked + label:before, .form input[type="checkbox"].radio_all_unchecked[data-value="true"] + label:before {
			content: "\e9ed";
			color: #e74725;
			-webkit-transition: all ease 0.8s;
			-o-transition: all ease 0.8s;
			transition: all ease 0.8s;
		}

		.form input[type="checkbox"].radio_all_unchecked[disabled] + label:before {
			opacity: 0.6;
		}

	.form input[type="radio"].radio_all_unchecked {
		display: none;
	}

		.form input[type="radio"].radio_all_unchecked + label:before {
			font-family: MasterlinkPlatform;
			display: inline-block;
			content: "\e9ee";
			letter-spacing: 2px;
			line-height: 1.5;
			color: #595959;
			-webkit-transition: all ease 0.8s;
			-o-transition: all ease 0.8s;
			transition: all ease 0.8s;
		}

		.form input[type="radio"].radio_all_unchecked:not(:first-child) + label:before {
			margin-left: 8px;
		}

		.form input[type="radio"].radio_all_unchecked:checked + label:before, .form input[type="radio"].radio_all_unchecked[data-value="true"] + label:before {
			content: "\e9ed";
			color: #e74725;
			-webkit-transition: all ease 0.8s;
			-o-transition: all ease 0.8s;
			transition: all ease 0.8s;
		}

		.form input[type="radio"].radio_all_unchecked[disabled] + label:before {
			opacity: 0.6;
		}

	.form .radio-to-button {
		padding: 0;
		margin: 1px 2px;
		border: 1px solid #bfbfbf;
		float: left;
		border-radius: 2px;
		overflow: hidden;
		font-size: 10px;
		background: #d9d9d9;
	}

		.form .radio-to-button li {
			padding: 1px;
			margin: 0;
			list-style: none;
			float: left;
			display: inline-block;
		}

			.form .radio-to-button li input {
				display: none;
			}

				.form .radio-to-button li input + label {
					padding: 2px 5px;
					border-radius: 2px;
					float: left;
					min-width: 25px;
					cursor: pointer;
					text-align: center;
				}

				.form .radio-to-button li input:checked + label, .form .radio-to-button li input[data-value="true"] + label {
					background: #e74725;
					color: #fff;
				}

				.form .radio-to-button li input[disabled] + label {
					opacity: 0.6;
				}

	.form .check-to-button {
		padding: 0;
		margin: 1px 2px;
		border: 1px solid #e74725;
		float: left;
		overflow: hidden;
		font-size: 11px;
		font-weight: 600;
	}

		.form .check-to-button li {
			padding: 0;
			margin: 0;
			list-style: none;
			float: left;
			display: inline-block;
			background: #fff;
			border-right: 1px solid #e74725;
		}

			.form .check-to-button li input {
				display: none;
			}

				.form .check-to-button li input + label {
					padding: 10px 8px;
					float: left;
					min-width: 30px;
					cursor: pointer;
					text-align: center;
				}

				.form .check-to-button li input:not(:checked) + label:hover {
					color: #e74725;
				}

				.form .check-to-button li input:checked + label, .form .check-to-button li input[data-value="true"] + label {
					background: #e74725;
					color: #fff;
				}

			.form .check-to-button li label {
				margin-bottom: 0px;
			}

			.form .check-to-button li input[disabled] + label {
				opacity: 0.6;
			}

			.form .check-to-button li:last-child {
				border-right: 0;
			}

	.form .admin-radio-to-button {
		margin-top: 1px;
		margin-bottom: 1px;
		float: left;
		overflow: hidden;
		font-size: 16px;
	}

		.form .admin-radio-to-button li {
			padding: 0;
			margin: 0;
			list-style: none;
			float: left;
			display: inline-block;
		}

			.form .admin-radio-to-button li input {
				display: none;
			}

				.form .admin-radio-to-button li input + label {
					padding: 2px 5px;
					border-radius: 2px;
					float: left;
					min-width: 25px;
					cursor: pointer;
					text-align: center;
				}

				.form .admin-radio-to-button li input:checked + label, .form .admin-radio-to-button li input[data-value="true"] + label {
					background: #e74725;
					color: #fff;
				}

				.form .admin-radio-to-button li input[disabled] + label {
					opacity: 0.6;
				}

				.form .admin-radio-to-button li input + label {
					float: none;
				}

	.form .admin-check-to-button {
		margin-top: 1px;
		margin-bottom: 1px;
		float: left;
		overflow: hidden;
		font-size: 16px;
	}

		.form .admin-check-to-button li {
			padding: 0;
			margin: 0;
			list-style: none;
			float: left;
			display: inline-block;
		}

			.form .admin-check-to-button li input {
				display: none;
			}

				.form .admin-check-to-button li input + label {
					padding: 2px 5px;
					border-radius: 2px;
					float: left;
					min-width: 25px;
					cursor: pointer;
					text-align: center;
				}

				.form .admin-check-to-button li input:checked + label, .form .admin-check-to-button li input[data-value="true"] + label {
					background: #e74725;
					color: #fff;
				}

				.form .admin-check-to-button li input[disabled] + label {
					opacity: 0.6;
				}

				.form .admin-check-to-button li input + label {
					float: none;
				}

	.form .link-to-button > div {
		margin-bottom: 16px;
	}

	.form .link-to-button a {
		color: #4c4c4c;
		font-size: 14px;
		padding: 3px 5px 3px 5px;
	}

		.form .link-to-button a.align-active {
			background: #e74725;
			color: #fff;
		}

	.form .has-info .input-control {
		border-color: #006699;
	}

	.form .has-success .input-control {
		border-color: #057774;
	}

	.form .has-warning .input-control {
		border-color: #ff9900;
	}

	.form .has-danger .input-control {
		border-color: #8c0000;
	}

.switch {
	position: relative;
	width: 43px;
	height: 18px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	text-align: left;
}

	.switch .switch-checkbox {
		display: none;
	}

	.switch .switch-label {
		display: block;
		overflow: hidden;
		cursor: pointer;
		border-radius: 17px;
		position: relative;
	}

	.switch .switch-inner {
		display: block;
		width: 200%;
		margin-left: -100%;
		-webkit-transition: margin 0.3s ease-in 0s;
		-o-transition: margin 0.3s ease-in 0s;
		transition: margin 0.3s ease-in 0s;
	}

		.switch .switch-inner:before, .switch .switch-inner:after {
			display: block;
			float: left;
			width: 50%;
			height: 18px;
			padding: 0;
			line-height: 20px;
			font-size: 0.7em;
			font-weight: 600;
			-moz-box-sizing: border-box;
			-webkit-box-sizing: border-box;
			box-sizing: border-box;
		}

		.switch .switch-inner:before {
			content: "ON";
			padding-left: 5px;
			background-color: #e74725;
			color: #FFFFFF;
		}

		.switch .switch-inner:after {
			content: "OFF";
			padding-right: 5px;
			background-color: #808080;
			color: #FFFFFF;
			text-align: right;
		}

	.switch .switch-switch {
		display: block;
		width: 16px;
		height: 16px;
		margin: 4px;
		background: #F8F8F8;
		border-radius: 50%;
		position: absolute;
		top: -3px;
		bottom: 0;
		right: 23px;
		-webkit-box-shadow: 1px 1px 3px 0px #333333;
		box-shadow: 1px 1px 3px 0px #333333;
		-webkit-transition: all 0.3s ease-in;
		-o-transition: all 0.3s ease-in;
		transition: all 0.3s ease-in;
	}

	.switch .switch-checkbox:checked + .switch-label .switch-inner {
		margin-left: 0;
	}

	.switch .switch-checkbox:checked + .switch-label .switch-switch {
		right: -3px;
		-webkit-box-shadow: -1px 1px 3px 0 #333333;
		box-shadow: -1px 1px 3px 0 #333333;
	}

	.switch.switch-disabled {
		opacity: 0.6;
	}

.button-switch {
	float: left;
	padding: 6px 9px;
	border-radius: 2px;
	cursor: pointer;
}

	.button-switch .label-control {
		float: left;
		width: auto;
		margin-right: 10px;
		cursor: pointer;
	}

	.button-switch .switch {
		float: left;
	}

.input-group-sm > .form-control {
	font-size: .875em !important;
}

.input-group-sm > .input-group-append > .input-group-text {
	font-size: .875em !important;
}

.input-group {
	position: relative;
	display: table;
	border-collapse: separate;
	border: 1px solid #bfbfbf;
	border-radius: 2px;
}

	.input-group.input-noborder {
		border: none;
	}

	.input-group[class*="col-"] {
		float: none;
		padding-left: 0;
		padding-right: 0;
	}

	.input-group input.input-control, .input-group textarea.input-control, .input-group select.input-control, .input-group .print-textarea {
		position: relative;
		z-index: 2;
		float: left;
		width: 100%;
		margin-bottom: 0;
		border: none;
	}

		.input-group input.input-control:focus, .input-group textarea.input-control:focus, .input-group select.input-control:focus, .input-group .print-textarea:focus {
			border-color: rgba(51, 51, 51, 0.2);
			outline: 0;
			-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(51, 51, 51, 0.6);
			box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(51, 51, 51, 0.6);
		}

			.input-group input.input-control:focus + .input-group-btn, .input-group textarea.input-control:focus + .input-group-btn, .input-group select.input-control:focus + .input-group-btn, .input-group .print-textarea:focus + .input-group-btn {
				-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(51, 51, 51, 0.6);
				box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(51, 51, 51, 0.6);
			}

	.input-group .area-control {
		position: relative;
		/*z-index: 2;*/
		float: left;
		margin-bottom: 0;
		border: none;
	}

	.input-group-addon,
	.input-group-btn,
	.input-group .input-control,
	.input-group .area-control {
		display: table-cell;
	}

		.input-group-addon:not(:first-child):not(:last-child),
		.input-group-btn:not(:first-child):not(:last-child),
		.input-group .input-control:not(:first-child):not(:last-child),
		.input-group .area-control:not(:first-child):not(:last-child) {
			border-radius: 0;
		}

.input-group-addon,
.input-group-btn {
	width: 1%;
	white-space: nowrap;
	vertical-align: middle;
}

.input-group-addon {
	padding: 4px 4px;
	font-size: 14px;
	font-weight: normal;
	line-height: 1;
	color: #4c4c4c;
	text-align: center;
	background-color: red;
	border: 1px solid blue;
	border-radius: 2px;
}

	.input-group-addon input[type="radio"],
	.input-group-addon input[type="checkbox"] {
		margin-top: 0;
	}

.search .input-group-btn {
    font-size: 14px;
    line-height: 1em;
    vertical-align: middle;
}
    .search .input-group-btn .button-input {
        background-color: #f7f7f7;
    }

.search .input-group .searchString.input-control:focus {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.input-group-btn {
	position: relative;
	font-size: 0;
	white-space: nowrap;
	vertical-align: middle;
}

	.input-group-btn > .button {
		position: relative;
	}

		.input-group-btn > .button + .button {
			margin-left: -1px;
		}

		.input-group-btn > .button:hover, .input-group-btn > .button:focus, .input-group-btn > .button:active {
			z-index: 2;
		}

	.input-group-btn:first-child > .button,
	.input-group-btn:first-child > .btn-group {
		margin-right: -1px;
	}

	.input-group-btn:last-child > .button,
	.input-group-btn:last-child > .btn-group {
		z-index: 2;
		margin-left: -1px;
		height: 100%;
		padding-top: 0;
		padding-bottom: 0;
	}

.input-group .area-control input.input-control, .input-group .area-control textarea.input-control, .input-group .area-control select.input-control, .print-textarea {
	border: 1px solid #bfbfbf;
}

.select-container {
	position: absolute;
	height: auto;
	max-height: 250px;
	width: 100%;
	z-index: 99;
	margin-top: 5px;
	-webkit-appearance: none;
	padding: 4px 4px;
	background: #fff;
	border: 1px solid #bfbfbf;
	outline: none;
	color: #4c4c4c;
	border-radius: 2px;
	line-height: 1.42857;
	resize: vertical;
	-webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
	box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.05);
}

.select-container.pull-right{
	right: 0;
	left: unset;
}

	.select-container.select-tree {
		height: 250px;
	}

	.select-container.w250 {
		width: 250px;
		margin-left: 10px;
	}

	.select-container.h200 {
		height: 200px;
	}

	.select-container.h170 {
		height: 170px;
	}

	.select-container li.selected {
		background: #FADAD3;
	}

	.select-container li a:hover {
		background: #FADAD3;
	}

/*.tabs {
	padding: 0;
	margin: 0;
	list-style: none;
	font-size: $tabs-font-size;
	@include clearfix;

	> li {
		float: left;
		position: relative;
		display: block;
		outline: none;
		margin: 0;

		> a {
			position: relative;
			display: block;
			margin-right: 2px;
			font-weight: 600;
			line-height: $line-height-base;
			border: 1px solid $tabs-border-color;
			border-radius: $border-radius-base $border-radius-base 0 0;
			background: $tabs-tab-background;
			color: $tabs-tab-color;
			padding: $tabs-padding-vertical $tabs-padding-horizontal;
			text-transform: uppercase;
			outline: none;

			&:focus, &:active, &:hover {
				border-color: $tabs-hover-border-color;
				color: $tabs-hover-color;
				background: $tabs-hover-background;
			}

			bottom: -1px;
			padding-top: $tabs-padding-vertical + 1px;
		}

		&.active {


			& > a {

				&,
				&:hover,
				&:focus {
					color: $tabs-active-link-hover-color;
					background-color: $tabs-active-link-hover-bg;
					border: 1px solid $tabs-active-link-hover-border-color;
					border-bottom-color: $tabs-active-link-hover-bg;
					cursor: default;
					outline: none;
				}
			}
		}
	}
}

.tabs-stacked {
	margin-bottom: 0;

	> li {
		float: none;
		z-index: $tabs-zindex;

		+ li {
			margin-left: 0;
		}

		> a {
			background-color: $tabs-stacked-bg;
			border: 1px solid $tabs-stacked-border-color;
			border-right-color: transparent;
			border-left-color: transparent;
			margin-right: 0;

			&:hover {
				border-right-color: transparent;
				border-left-color: transparent;
			}
		}

		&.active > a {
			position: relative;
			margin-right: -$tabs-stacked-active-link-hover-border-left-width;

			&,
			&:hover,
			&:focus {
				border: 1px solid $tabs-stacked-link-hover-border-color;
				border-right-color: transparent;
				border-left-color: transparent;
				background: $tabs-stacked-active-link-hover-bg;
			}

			&:after {
				content: "";
				position: absolute;
				left: 0;
				top: 0;
				width: $tabs-stacked-active-link-hover-border-left-width;
				height: 100%;
				background: $tabs-stacked-active-link-hover-border-left-color;
			}
		}
	}
}

.tabs-invert {
	margin-bottom: 0;

	> li {

		&.active > a {
			&,
			&:hover,
			&:focus {
				color: $tabs-active-link-hover-color;
				background-color: $tabs-active-link-hover-bg;
				border-bottom: 1px solid $tabs-active-link-hover-border-color;
				border-left: 1px solid $tabs-active-link-hover-border-color;
				border-right: 1px solid $tabs-active-link-hover-border-color;
				border-top: transparent;
				cursor: default;
				outline: none;
			}
		}

		& > a {
			bottom: 0;
			top: -1px;
		}
	}
}

.tabs-stacked-fixed {
	float: left;
	margin-bottom: 0;

	> li {
		float: none;
		z-index: $tabs-zindex;
		width: $tabs-stacked-fixed-width;

		+ li {
			margin-left: 0;
		}

		> a {
			background-color: $tabs-stacked-fixed-bg;
			border: $tabs-stacked-fixed-border;
			border-right-color: transparent;
			border-left-color: transparent;
			margin-right: 0;
			color: $tabs-stacked-fixed-color;

			&:hover {
				border-right-color: transparent;
				border-left-color: transparent;
				background: none;
			}
		}

		&.active > a {
			position: relative;
			margin-left: -$tabs-stacked-fixed-active-link-hover-border-right-width;
			color: $tabs-stacked-fixed-color;

			&,
			&:hover,
			&:focus {
				border: 1px solid $tabs-stacked-fixed-link-hover-border-color;
				border-left-color: transparent;
				cursor: pointer;
			}
		}
	}
}

.tabs-context {
	font-size: $tabs-context-font-size;
	background: $tabs-context-background;
	right: 0;
	border-bottom: $tabs-context-border-bottom;
	width: 100%;
	height: 100%;
	position: relative;

	> li {
		border-right: $tabs-context-tab-border-right;
		margin: 0;

		> a {
			display: inline-block;
			padding: $tabs-context-padding-vertical $tabs-context-padding-horizontal;
			text-transform: $tabs-context-text-transform;
			border: none;
			padding: 10px 15px;
			margin: 0;
			background: $tabs-context-tab-background;
			color: $tabs-context-tab-color;

			&:hover {
				background: $tabs-context-tab-hover-background;
			}

			&.icon {
				padding: $tabs-context-tab-icon-padding-horizontal $tabs-context-tab-icon-padding-vertical;
				height: $tabs-context-tab-icon-width;
				width: $tabs-context-tab-icon-height;
				border-radius: $tabs-context-tab-icon-border-radius;
				margin: $tabs-context-tab-icon-margin-horizontal $tabs-context-tab-icon-margin-vertical;
				cursor: pointer;
				background: $tabs-context-tab-icon-background;
				color: $tabs-context-tab-icon-color;

				&:hover {
					background: $tabs-context-tab-icon-hover-background;
					color: $tabs-context-tab-icon-hover-color;
				}
			}
		}

		&.active {

			&, &:hover,
			&:focus {
				background: $tabs-context-tab-active-background;
			}

			> a {
				&,
				&:hover,
				&:focus {
					background: none;
					color: $tabs-context-tab-active-color;
					border: none;
				}

				&.icon {
					cursor: pointer;

					&:hover {
						background: $tabs-context-tab-icon-hover-background;
						color: $tabs-context-tab-icon-hover-color;
					}
				}
			}
		}
	}
}


.tabs-divisors {
	font-size: $tabs-divisors-font-size;
	margin-bottom: 0;
	overflow-y: hidden;

	> li {


		> a {
			background: $tabs-divisors-tab-background;
			color: $tabs-divisors-tab-color;
			text-transform: $tabs-divisors-text-transform;
			border: none;
			position: relative;
			margin-right: 0;
			border-radius: 0;
			padding: $tabs-padding-vertical 6px;

			&:focus, &:active, &:hover {
				background: $tabs-divisors-hover-background;
				color: $tabs-divisors-hover-color;
			}

			.tab-icon {
				margin-right: 5px;
			}
		}

		&:not(:last-child) {
			a {
				&::after {
					content: "";
					width: 1px;
					height: calc(100% - 20px);
					top: 10px;
					right: 0;
					position: absolute;
					background: $tabs-divisors-tab-color;
				}
			}

			&.active > a {
				&::after {
					background: $tabs-divisors-active-link-hover-color;
				}
			}
		}

		&.active {
			> a {
				&,
				&:hover,
				&:focus {
					color: $tabs-divisors-active-link-hover-color;
					background-color: $tabs-divisors-active-link-hover-bg;
					border: 0;
				}

				&::before {
					content: "";
					width: 1px;
					height: calc(100% - 20px);
					top: 10px;
					left: -1px;
					position: absolute;
					background: $tabs-divisors-active-link-hover-color;
				}
			}

			&:after {
				content: "";
				width: 100%;
				height: 5px;
				bottom: 0;
				right: 0;
				position: absolute;
				background: $tabs-divisors-active-link-hover-color;
			}
		}
	}
}

.tabs-state {
	> li {
		> a {
			&:before {
				content: "";
				width: $tabs-state-width;
				position: absolute;
				left: 3px;
				top: 5px;
				bottom: 5px;
				border-radius: 0;
				overflow: hidden;
			}

			&.state-active {
				&:before {
					background: $tabs-state-active-bg;
					border: $tabs-state-active-border;
				}
			}

			&.state-inactive {
				&:before {
					background: $tabs-state-inactive-bg;
					border: $tabs-state-inactive-border;
				}
			}
		}
	}
}

.container-tabs {
	border: 1px solid $tabs-border-color;
	margin: 0 (-($grid-gutter-width/2));
	padding: ($grid-gutter-width/2) ($grid-gutter-width/2);
	@include box-shadow(0px 1px 3px 0px rgba(128,128,128,0.7));
	background: $tabs-active-container-background;
	float: left;
	width: calc(100% + 18px );

	&.container-tabs-op {
		width: 100% !important;
	}
}

.content-tabs-stacked {
	background: $tabs-stacked-active-link-hover-bg;
	border: 1px solid $tabs-border-color;
	border-left: $tabs-stacked-active-link-hover-border-left-width solid $tabs-stacked-active-link-hover-border-left-color;
	overflow: auto;
	margin-left: -$tabs-stacked-space-remove;
}


.content-tabs-stacked-fixed {
	background: $tabs-stacked-fixed-active-link-hover-bg;
	border: 1px solid $tabs-border-color;
	min-height: 65px;
	width: calc(100% - 40px);
	float: left;
}

@media(min-width:$screen-md) {
	.tabs-divisors {
		> li {
			> a {
				padding: $tabs-padding-vertical $tabs-padding-horizontal;
			}
		}
	}
}*/
button.button.button-procdesc-delete {
	font-size: 12px;
}

.button {
	display: inline-block;
	margin-bottom: 0;
	font-weight: 600;
	text-align: center;
	vertical-align: middle;
	touch-action: manipulation;
	cursor: pointer;
	background-image: none;
	border: 1px solid transparent;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
	box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
	padding: 4px 4px;
	font-size: 12px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	color: #d9d9d9;
}

	.button:active, .button.active {
		outline: 0;
		background-image: none;
	}

	.button [class*="icon"] {
		margin-right: 3px;
	}

	.button.button-cell {
		/*display: table-cell;*/
	}

	.button[disabled] {
		opacity: 0.6;
	}

a.button.disabled,
fieldset[disabled] a.button {
	pointer-events: none;
}

.button-main {
	color: #fff;
	background: #e74725;
	margin-bottom: 3px;
	border: 0;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
	box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
}

	.button-main:focus, .button-main:hover {
		background-color: #c33416;
	}

	.button-main:active {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: #c33416;
	}

	.button-main[disabled] {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: #e84f2e;
	}

.button-default {
	color: #4c4c4c;
	background: #d9d9d9;
	margin-bottom: 3px;
	border: 0;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
	box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
}

	.button-default:focus, .button-default:hover {
		background-color: silver;
	}

	.button-default:active {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: silver;
	}

	.button-default[disabled] {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: #dedede;
	}

.button-default-border {
	color: #4c4c4c;
	background: #d9d9d9;
	margin-bottom: 3px;
	border: 1px solid #bfbfbf;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
	box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
	padding: 1px 0;
	margin-top: 1px;
}

	.button-default-border:focus, .button-default-border:hover {
		background-color: silver;
	}

	.button-default-border:active {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: silver;
	}

	.button-default-border[disabled] {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: #dedede;
	}

	.button-default-border:focus, .button-default-border.active {
		background: #d9d9d9;
		color: #e74725;
		outline: none;
	}

.button-transparent {
	color: #4c4c4c;
	background: #d9d9d9;
	margin-bottom: 3px;
	border: 0;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
	box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
	background: transparent;
}

	.button-transparent:focus, .button-transparent:hover {
		background-color: silver;
	}

	.button-transparent:active {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: silver;
	}

	.button-transparent[disabled] {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: #dedede;
	}

	.button-transparent, .button-transparent[disabled] {
		background: transparent;
	}

.button-secondary {
	color: #fff;
	background: #808080;
	margin-bottom: 3px;
	border: 0;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
	box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
}

	.button-secondary:focus, .button-secondary:hover {
		background-color: #676767;
	}

	.button-secondary:active {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: #676767;
	}

	.button-secondary[disabled] {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: #858585;
	}

.button-input {
	color: #4c4c4c;
	background: #fff;
	margin-bottom: 0;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

	.button-input:focus, .button-input:hover {
		background-color: #e6e6e6;
	}

	.button-input:active {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: #e6e6e6;
	}

	.button-input[disabled] {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: white;
	}

.button-light-grey {
	color: #4c4c4c;
	background: #f7f7f7;
	margin-bottom: 0;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

	.button-light-grey:focus, .button-light-grey:hover {
		background-color: #dedede;
	}

	.button-light-grey:active {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: #dedede;
	}

	.button-light-grey[disabled] {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: #fcfcfc;
	}

.button-light-white-darker {
	color: #4d4d4d;
	background: #ededed;
	margin-bottom: 0;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

	.button-light-white-darker:focus, .button-light-white-darker:hover {
		background-color: #d4d4d4;
	}

	.button-light-white-darker:active {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: #d4d4d4;
	}

	.button-light-white-darker[disabled] {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: #f2f2f2;
	}

.button-default-min-border {
	color: #4c4c4c;
	background: #d9d9d9;
	margin-bottom: 0;
	border: 1px solid #bfbfbf;
	-webkit-box-shadow: none;
	box-shadow: none;
	padding: 2px 3px;
	border-radius: 2px;
}

	.button-default-min-border:focus, .button-default-min-border:hover {
		background-color: silver;
	}

	.button-default-min-border:active {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: silver;
	}

	.button-default-min-border[disabled] {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: #dedede;
	}

.button-radius {
	border-radius: 2px;
}

.button-white {
	color: #4c4c4c;
	background: #fff;
	margin-bottom: 0;
	border: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

	.button-white:focus, .button-white:hover {
		background-color: #e6e6e6;
	}

	.button-white:active {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: #e6e6e6;
	}

	.button-white[disabled] {
		-webkit-box-shadow: none;
		box-shadow: none;
		background-color: white;
	}

.button-full {
	width: 100%;
}

.button-simple {
	-webkit-box-shadow: none;
	box-shadow: none;
	margin-bottom: 0;
}

.button-only-icon [class*="icon"] {
	margin-right: 0;
}

.button-cell {
	/*width: 1%;*/
	/*display: table-cell;*/
	float: none;
	height: 100%;
}

.button-group {
	position: relative;
	display: inline-block;
	vertical-align: middle;
}

	.button-group > .button {
		position: relative;
		float: left;
	}

		.button-group > .button:hover, .button-group > .button:focus, .button-group > .button:active, .button-group > .button.active {
			z-index: 2;
		}

	.button-group > .inline-group {
		position: relative;
		display: inline-block;
		vertical-align: middle;
		margin: 0 5px;
	}

	.button-group .button + .button,
	.button-group .button + .button-group,
	.button-group .button-group + .button,
	.button-group .button-group + .button-group {
		margin-left: -1px;
	}

	.button-group > .button:first-child {
		margin-left: 0;
	}

	.button-group > .button-group {
		float: left;
	}

		.button-group > .button-group:not(:first-child):not(:last-child) > .button {
			border-radius: 0;
		}

	.button-group .dropdown-toggle:active,
	.button-group .button-group.open .dropdown-toggle {
		outline: 0;
	}

[data-toggle="buttons"] > .button input[type="radio"],
[data-toggle="buttons"] > .button input[type="checkbox"],
[data-toggle="buttons"] > .button-group > .button input[type="radio"],
[data-toggle="buttons"] > .button-group > .button input[type="checkbox"] {
	position: absolute;
	clip: rect(0, 0, 0, 0);
	pointer-events: none;
}

.buttons-default-sidebyside {
	float: left;
	background: #d9d9d9;
	border-radius: 5px;
	border-top: 1px solid #bfbfbf;
	border-bottom: 1px solid #bfbfbf;
	position: relative;
}

	.buttons-default-sidebyside .buttons-sidebyside-item {
		float: left;
	}

		.buttons-default-sidebyside .buttons-sidebyside-item .button {
			float: left;
			margin: 0;
			padding: 0;
			width: 18px;
			min-width: 18px !important;
			-webkit-box-shadow: none;
			box-shadow: none;
		}

			.buttons-default-sidebyside .buttons-sidebyside-item .button [class*="icon-mlk"] {
				display: inline-block;
			}

			.buttons-default-sidebyside .buttons-sidebyside-item .button.open {
				background: #f7f7f7;
				position: relative;
			}

				.buttons-default-sidebyside .buttons-sidebyside-item .button.open:after {
					content: "";
					top: 96%;
					height: 4px;
					width: 100%;
					left: 0;
					right: -2px;
					background: #f7f7f7;
					position: absolute;
					z-index: 11;
				}

	.buttons-default-sidebyside > .buttons-sidebyside-item > .button {
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
		border-right: 1px solid #bfbfbf;
	}

	.buttons-default-sidebyside > .buttons-sidebyside-item:first-child > .button {
		border-radius: 5px;
		border-left: 1px solid #bfbfbf;
	}

	.buttons-default-sidebyside .buttons-menu {
		display: none;
		position: absolute;
		top: calc(100% + 1px);
		z-index: 10;
		left: 0;
		min-width: 92px;
		border: 1px solid #bfbfbf;
	}

		.buttons-default-sidebyside .buttons-menu .buttons-sidebyside-item {
			position: relative;
		}

			.buttons-default-sidebyside .buttons-menu .buttons-sidebyside-item .button {
				width: 30px;
			}

			.buttons-default-sidebyside .buttons-menu .buttons-sidebyside-item:after {
				content: "";
				position: absolute;
				height: 1px;
				top: 0;
				left: 20%;
				right: 20%;
				background: #c6c6c6;
			}

			.buttons-default-sidebyside .buttons-menu .buttons-sidebyside-item:before {
				content: "";
				position: absolute;
				width: 1px;
				top: 20%;
				bottom: 20%;
				right: 0;
				background: #c6c6c6;
			}

			.buttons-default-sidebyside .buttons-menu .buttons-sidebyside-item:nth-child(3n+0):before {
				display: none;
			}

			.buttons-default-sidebyside .buttons-menu .buttons-sidebyside-item:nth-child(1):after {
				display: none;
			}

			.buttons-default-sidebyside .buttons-menu .buttons-sidebyside-item:nth-child(2):after {
				display: none;
			}

			.buttons-default-sidebyside .buttons-menu .buttons-sidebyside-item:nth-child(3):after {
				display: none;
			}

		.buttons-default-sidebyside .buttons-menu .button {
			background: #f7f7f7;
		}

.buttons-default-item-small {
	float: left;
	/*background: $background;
    border-radius: $radius;
    border-top: $border;
    border-bottom: $border;*/
	position: relative;
}

	.buttons-default-item-small .buttons-item-small {
		float: left;
	}

		.buttons-default-item-small .buttons-item-small .button {
			float: left;
			margin: 0;
			padding: 0;
			width: 18px;
			min-width: 18px !important;
			-webkit-box-shadow: none;
			box-shadow: none;
		}

			.buttons-default-item-small .buttons-item-small .button [class*="icon-mlk"] {
				position: relative;
				top: calc(50% - 6px);
				left: calc(50% - 8px);
				display: inline-block;
			}

			.buttons-default-item-small .buttons-item-small .button.open {
				background: #f7f7f7;
				position: relative;
			}

				.buttons-default-item-small .buttons-item-small .button.open:after {
					content: "";
					top: 96%;
					height: 4px;
					width: 100%;
					left: 0;
					right: -2px;
					background: #f7f7f7;
					position: absolute;
					z-index: 11;
				}

	.buttons-default-item-small > .buttons-item-small > .button {
		margin-left: 0.5em;
		border-top-right-radius: 5px;
		border-bottom-right-radius: 5px;
		border-right: 1px solid #bfbfbf;
	}

	.buttons-default-item-small > .buttons-item-small:first-child > .button {
		border-radius: 5px;
		border-left: 1px solid #bfbfbf;
	}

	.buttons-default-item-small .buttons-menu {
		display: none;
		position: absolute;
		top: calc(100% + 1px);
		z-index: 10;
		left: 0;
		min-width: 62px;
		border: 1px solid #bfbfbf;
	}

		.buttons-default-item-small .buttons-menu .buttons-sidebyside-item {
			position: relative;
		}

			.buttons-default-item-small .buttons-menu .buttons-sidebyside-item .button {
				width: 20px;
			}

			.buttons-default-item-small .buttons-menu .buttons-sidebyside-item:after {
				content: "";
				position: absolute;
				height: 1px;
				top: 0;
				left: 20%;
				right: 20%;
				background: #c6c6c6;
			}

			.buttons-default-item-small .buttons-menu .buttons-sidebyside-item:before {
				content: "";
				position: absolute;
				width: 1px;
				top: 20%;
				bottom: 20%;
				right: 0;
				background: #c6c6c6;
			}

		.buttons-default-item-small .buttons-menu .button {
			background: none;
		}

.popup {
	
	max-height: 92%;
	background: #f7f7f7;
	padding: 0;
	position: relative;
	color: #595959;
	outline: none;
	border: none;
	border-radius: 0;
	overflow: auto;
	text-align: left;
	-webkit-box-shadow: 0px 0px 20px 0px rgba(77, 77, 77, 0.66);
	box-shadow: 0px 0px 20px 0px rgba(77, 77, 77, 0.66);
}

    .popup:not([aria-describedby="wndConfirmBox"]) {
        width: 530px;
        max-width: 90%;
    }
    .popup[aria-describedby="wndConfirmBox"] {
        display: inline-block !important;
        width: auto !important; 
    }

    .popup .ui-dialog-titlebar {
        background: #f7f7f7;
        color: #595959;
        padding: 10px 8px;
        cursor: move;
        border: none;
        border-bottom: 2px solid #e5e5e5;
        border-radius: 0;
        text-align: left;
    }

		.popup .ui-dialog-titlebar .ui-dialog-title {
			font-size: 14px;
			font-weight: 600;
			display: inline;
		}

		.popup .ui-dialog-titlebar button {
			background: #f7f7f7;
			color: #595959;
			border: none;
			cursor: pointer;
			float: right;
			outline: none;
			font-size: 1.2em;
            box-shadow: none;
		}

	.popup .ui-dialog-content {
		padding: 10px 10px 40px 10px;
	}

	.popup .ui-dialog-buttonpane {
		text-align: right;
		padding: 5px;
		position: relative;
		width: 100%;
		background: #f7f7f7;
		color: #595959;
		border: none;
		border-top: none;
	}

		.popup .ui-dialog-buttonpane button {
			margin-left: 10px;
			float: none;
		}

	.popup .with-tabs {
		background: #fff;
	}

.content-label {
	color: #595959;
	font-size: 13px;
	font-weight: 600;
}

/*.toolbar {
    height: $toolbar-height;
    position: relative;
    z-index: 95;

    ~ .container-scroll {
        height: calc(100% - 40px);
    }

    &:empty {
        height: 0;
    }

    &.toolbar-light {
        height: 30px;
        font-size: 13px;
        z-index: 94;

        ul {
            background: $toolbar-light-bg;


            li {
                padding: 4px 0;

                &, a {
                    color: $text-color-secondary;
                }

                a {
                    border-right: 1px solid $toolbar-light-item-dividor;
                    padding: 1px 10px;

                    &:hover {
                        color: $color-active-principal;
                    }
                }

                &.disabled {
                    a {
                        color: $toolbar-item-color-disabled;
                    }
                }

                &:hover {
                    background: $toolbar-light-bg-hover;
                }
            }
        }

        > ul {
            border-top-left-radius: 2px;
            border-top-right-radius: 2px;
            border: $toolbar-light-border;
        }
    }

    ul {
        background: $toolbar-bg;
        margin: 0;
        padding: 0;
        float: left;
        width: 100%;

        li {
            position: relative;
            list-style-type: none;
            display: inline;
            padding: 0;
            margin-right: -1px;
            float: left;

            &, a {
                color: $toolbar-item-color;
            }

            a {
                border-right: 1px solid $toolbar-item-dividor;
                padding: 10px 13px;
                float: left;

                &.text-overline {
                    text-decoration: overline;
                }
            }

            &.disabled {
                a {
                    color: $toolbar-item-color-disabled;
                }

                &:hover {
                    background: none;

                    ul {
                        visibility: visible;
                    }
                }
            }

            &:hover {
                background: $toolbar-item-bg-hover;

                ul {
                    visibility: visible;
                }
            }
            //see more
            ul {
                visibility: hidden;
                position: absolute;
                width: auto;
                right: 0;
                z-index: 5;
                min-width: 100%;
                top: 100%;

                li {
                    a {
                        display: block;
                    }
                }
            }
        }

        &.dropdown-settings {
            min-width: 180px;
            visibility: visible;
            display: none;
            left: 0;
            right: initial;


            li {
                padding: 10px 6px;
                float: left;
                width: 100%;

                &:hover {
                    background: none;
                }
            }

            &:not(.toolbar-blocos) {
                a {
                    border-right: 0;
                    white-space: nowrap;
                }
            }

            &.toolbar-blocos {
                width: 350px;

                li {
                    float: left;
                    width: 33%;
                    padding: 5px 2px;

                    a {
                        width: 100%;
                    }

                    &:nth-child(3n+0) a {
                        border: none;
                    }
                }
            }
        }
    }

    .toolbar-icon {
        display: inline-block;
        //float: left;
        width: 20px;
        max-height: 20px;

        &:before {
            vertical-align: middle;
            text-align: center;
        }
    }

    &.border-bottom, .border-bottom {
        position: relative;

        &:after {
            content: "";
            position: absolute;
            bottom: -2px;
            left: 0;
            right: 0;
            background: $color-active-principal;
            height: 2px;
        }

        border-bottom: 2px solid;
    }

    .toolbar-more {
        .toolbar-icon {
            display: inline;
            float: none;
            padding-right: 15px;
        }
    }

    .toolbar-blocos {
        width: 350px;

        li {
            float: left;
            width: 33%;
        }
    }
}*/
/*.editor {
	.toolbar {
		height: auto;
		padding: 10px 0;
	}
}

.form {
	.editor {
		.input-control {
			width: 80px;
		}
	}
}*/
.container-loading {
	position: absolute;
	background: rgba(0, 0, 0, 0.46);
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999;
	min-height: 270px;
}

.content-main-loader.container-loading .content-loading {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
}

  .content-main-loader.container-loading .content-loading:before {
    content: "";
    position: absolute;
    top: -45px;
    left: -45px;
    right: -45px;
    bottom: -45px;
    border: 17px solid #e74725;
    border-radius: 50%;
  }

  .content-main-loader.container-loading .content-loading .loading-row {
    width: 100px;
    height: 25px;
  }

  .content-main-loader.container-loading .content-loading .containter-ball {
    height: 25px;
    width: 25px;
    float: left;
  }

  .content-main-loader.container-loading .content-loading .ball {
    height: 18px;
    width: 18px;
    max-height: 70%;
    max-width: 70%;
    border-radius: 50%;
    background-color: #e74725;
    margin: 0 auto;
  }

    .content-main-loader.container-loading .content-loading .ball.selected {
      background-color: transparent;
    }

    .content-main-loader.container-loading .content-loading .ball.hover {
      z-index: 999;
      background-color: #e74725;
      position: absolute;
    }

  .content-main-loader.container-loading .content-loading .ball-outside {
    position: absolute;
    bottom: -36px;
    left: -43px;
  }

.loading-animate {
	position: relative;
	height: 30px;
	width: 100%;
	margin: 0 auto;
	font-size: 14px;
	display: none;
}

	.loading-animate i {
		position: absolute;
		top: 5px;
		right: 40px;
		display: inline-block;
		width: 20px;
		height: 20px;
		background: white;
		border-radius: 50%;
	}

	.loading-animate .ball-0 {
		-moz-animation: animateloading 2.4s linear infinite;
		-o-animation: animateloading 2.4s linear infinite;
		-webkit-animation: animateloading 2.4s linear infinite;
		animation: animateloading 2.4s linear infinite;
		opacity: 0;
		-moz-animation-delay: 0;
		-o-animation-delay: 0;
		-webkit-animation-delay: 0;
		animation-delay: 0;
	}

	.loading-animate .ball-1 {
		-moz-animation: animateloading 2.4s linear infinite;
		-o-animation: animateloading 2.4s linear infinite;
		-webkit-animation: animateloading 2.4s linear infinite;
		animation: animateloading 2.4s linear infinite;
		opacity: 0;
		-moz-animation-delay: 0.3s;
		-o-animation-delay: 0.3s;
		-webkit-animation-delay: 0.3s;
		animation-delay: 0.3s;
	}

	.loading-animate .ball-2 {
		-moz-animation: animateloading 2.4s linear infinite;
		-o-animation: animateloading 2.4s linear infinite;
		-webkit-animation: animateloading 2.4s linear infinite;
		animation: animateloading 2.4s linear infinite;
		opacity: 0;
		-moz-animation-delay: 0.6s;
		-o-animation-delay: 0.6s;
		-webkit-animation-delay: 0.6s;
		animation-delay: 0.6s;
	}

	.loading-animate .ball-3 {
		-moz-animation: animateloading 2.4s linear infinite;
		-o-animation: animateloading 2.4s linear infinite;
		-webkit-animation: animateloading 2.4s linear infinite;
		animation: animateloading 2.4s linear infinite;
		opacity: 0;
		-moz-animation-delay: 0.9s;
		-o-animation-delay: 0.9s;
		-webkit-animation-delay: 0.9s;
		animation-delay: 0.9s;
	}

	.loading-animate .ball-4 {
		-moz-animation: animateloading 2.4s linear infinite;
		-o-animation: animateloading 2.4s linear infinite;
		-webkit-animation: animateloading 2.4s linear infinite;
		animation: animateloading 2.4s linear infinite;
		opacity: 0;
		-moz-animation-delay: 1.2s;
		-o-animation-delay: 1.2s;
		-webkit-animation-delay: 1.2s;
		animation-delay: 1.2s;
	}

	.loading-animate .ball-5 {
		-moz-animation: animateloading 2.4s linear infinite;
		-o-animation: animateloading 2.4s linear infinite;
		-webkit-animation: animateloading 2.4s linear infinite;
		animation: animateloading 2.4s linear infinite;
		opacity: 0;
		-moz-animation-delay: 1.5s;
		-o-animation-delay: 1.5s;
		-webkit-animation-delay: 1.5s;
		animation-delay: 1.5s;
	}

	.loading-animate .ball-6 {
		-moz-animation: animateloading 2.4s linear infinite;
		-o-animation: animateloading 2.4s linear infinite;
		-webkit-animation: animateloading 2.4s linear infinite;
		animation: animateloading 2.4s linear infinite;
		opacity: 0;
		-moz-animation-delay: 1.8s;
		-o-animation-delay: 1.8s;
		-webkit-animation-delay: 1.8s;
		animation-delay: 1.8s;
	}

	.loading-animate .ball-7 {
		-moz-animation: animateloading 2.4s linear infinite;
		-o-animation: animateloading 2.4s linear infinite;
		-webkit-animation: animateloading 2.4s linear infinite;
		animation: animateloading 2.4s linear infinite;
		opacity: 0;
		-moz-animation-delay: 2.1s;
		-o-animation-delay: 2.1s;
		-webkit-animation-delay: 2.1s;
		animation-delay: 2.1s;
	}

@-moz-keyframes animateloading {
	0% {
		opacity: 0.5;
	}

	5% {
		opacity: 1;
	}

	40% {
		right: 25%;
	}

	50% {
		right: 35%;
	}

	100% {
		opacity: 0;
		right: 100%;
	}
}

@-webkit-keyframes animateloading {
	0% {
		opacity: 0.5;
	}

	5% {
		opacity: 1;
	}

	40% {
		right: 25%;
	}

	50% {
		right: 35%;
	}

	100% {
		opacity: 0;
		right: 100%;
	}
}

@keyframes animateloading {
	0% {
		opacity: 0.5;
	}

	5% {
		opacity: 1;
	}

	40% {
		right: 25%;
	}

	50% {
		right: 35%;
	}

	100% {
		opacity: 0;
		right: 100%;
	}
}

.listagem {
	clear: both;
	width: 100%;
	height: 93%;
	position: relative;
}

	.listagem.listagem-responsive .list {
		overflow-x: auto !important;
		overflow-y: hidden !important;
	}

	.listagem .mainTable {
		/*width: 100%;
		margin: 0 auto 0;
		border: $gridview-border;
		outline: 0;
		border-collapse: collapse;*/
	}

		.listagem .mainTable .impar td {
			background: #fcfcfc;
		}

		.listagem .mainTable .par td {
			background: #f7f7f7;
		}

		.listagem .mainTable .selected td {
			background: rgba(231, 71, 37, 0.2);
		}

		.listagem .mainTable thead tr {
			background-color: #e74725;
			vertical-align: middle;
			font-weight: 600;
			color: #fff;
		}

			.listagem .mainTable thead tr th {
				/*padding: 0 2px;*/
				/*border: $gridview-head-cell-border;*/
				text-align: left;
				white-space: nowrap;
			}

				.listagem .mainTable thead tr th span {
					display: inline-block;
					cursor: pointer;
				}

				.listagem .mainTable thead tr th [class^="icon-"] {
					padding: 10px 1px;
				}

				.listagem .mainTable thead tr th [class*="search"] {
					padding: 10px 6px;
				}

				.listagem .mainTable thead tr th .sortable {
					cursor: pointer;
				}

		.listagem .mainTable tbody td {
			border: none;
			border-right: 1px solid #F0DADA;
			border-bottom: 1px solid #F0DADA;
			padding: 5px 10px;
			vertical-align: middle;
			color: #4B4B4B;
			cursor: default;
		}

			.listagem .mainTable tbody td:first-child {
				border-left: 1px solid #F0DADA;
			}

			.listagem .mainTable tbody td:last-child {
				border-right: 1px solid #F0DADA;
			}

		.listagem .mainTable tfoot tr {
			background-color: #fff;
			vertical-align: middle;
		}

			.listagem .mainTable tfoot tr td {
				padding: 5px;
				color: #454545;
				vertical-align: middle;
			}

		.listagem .mainTable .history-container {
			color: -_CorTextoHistorico_-;
			background-color: -_CorFundo_-;
			padding: 0;
			margin: 0;
		}

			.listagem .mainTable .history-container .history-content {
				width: 100%;
				position: relative;
				float: left;
				height: 100%;
				padding: 10px 20px 10px 10px;
				margin: 0 0 10px 17px;
				border: 1px solid;
			}

				.listagem .mainTable .history-container .history-content > a {
					position: absolute;
					left: -17px;
					top: -1px;
					z-index: 1;
					height: 36px;
					padding-top: 17px;
					font-size: 16px;
					border-top: 1px solid;
					border-bottom: 1px solid;
					border-left: 1px solid;
					border-bottom-left-radius: 2px;
				}

			.listagem .mainTable .history-container thead tr {
				background: #fff;
			}

				.listagem .mainTable .history-container thead tr th {
					border: none;
				}

			.listagem .mainTable .history-container.child-of-even .history-content, .listagem .mainTable .history-container.child-of-even .history-content > a {
				border-color: -_CorFundoSeparadorCelulaPar_-;
			}

	.listagem .draghandle {
		position: absolute;
		z-index: 5;
		width: 5px;
		cursor: e-resize;
	}

		.listagem .draghandle.dragged {
			border-left: 1px solid #333;
		}

	.listagem .container-search {
		display: none;
		position: absolute;
		z-index: 99;
		overflow: visible;
	}

		.listagem .container-search .top-icon {
			position: absolute;
			content: "";
			width: 32px;
			height: 28px;
			background: #F7F7F7;
			color: #e74725;
			top: -27px;
			left: 0;
			z-index: 1;
			padding: 5px 8px;
			-webkit-box-shadow: 0px -3px 4px 0px rgba(0, 0, 0, 0.2);
			box-shadow: 0px -3px 4px 0px rgba(0, 0, 0, 0.2);
		}

			.listagem .container-search .top-icon.right {
				right: 0;
				left: initial;
			}

		.listagem .container-search .search {
			color: #595959;
			background-color: #F7F7F7;
			border: 1px solid #e5e5e5;
			width: 290px;
			height: auto;
			padding: 8px;
			position: relative;
			-moz-user-select: none;
			-ms-user-select: none;
			-webkit-user-select: none;
			user-select: none;
			left: 0;
			float: left;
			top: 0;
			border-top-right-radius: 3px;
			border-bottom-right-radius: 3px;
			border-bottom-left-radius: 3px;
			-webkit-box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
			box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.2);
		}

			.listagem .container-search .search .container-list-itens {
				height: 200px;
				border: 1px solid #E7E7E7;
				background: #fff;
			}

				.listagem .container-search .search .container-list-itens .list-itens {
					padding: 0 5px;
					margin: 0;
				}

					.listagem .container-search .search .container-list-itens .list-itens li {
						list-style: none;
						padding: 5px 0;
					}

						.listagem .container-search .search .container-list-itens .list-itens li .icons-wrapper {
							float: left;
						}

						.listagem .container-search .search .container-list-itens .list-itens li .text-wrapper {
							font-size: 13px;
						}

					.listagem .container-search .search .container-list-itens .list-itens input[type="checkbox"].check-control {
						display: none;
					}

						.listagem .container-search .search .container-list-itens .list-itens input[type="checkbox"].check-control + label:before {
							font-family: MasterlinkPlatform;
							display: inline-block;
							content: "";
							letter-spacing: 2px;
							line-height: 1.71429;
							color: #595959;
							-webkit-transition: all ease 0.8s;
							-o-transition: all ease 0.8s;
							transition: all ease 0.8s;
						}

						.listagem .container-search .search .container-list-itens .list-itens input[type="checkbox"].check-control:checked + label:before, .listagem .container-search .search .container-list-itens .list-itens input[type="checkbox"].check-control[data-value="true"] + label:before {
							content: "";
							color: #e74725;
							-webkit-transition: all ease 0.8s;
							-o-transition: all ease 0.8s;
							transition: all ease 0.8s;
						}

						.listagem .container-search .search .container-list-itens .list-itens input[type="checkbox"].check-control[disabled] + label:before {
							opacity: 0.6;
						}

			.listagem .container-search .search .search-top {
				clear: both;
				width: 100%;
				float: left;
				margin-bottom: 5px;
			}

				.listagem .container-search .search .search-top .search-input {
					width: calc(100% - 25px);
					float: left;
				}

				.listagem .container-search .search .search-top .button {
					min-width: auto;
				}

			.listagem .container-search .search .results {
				font-size: 12px;
				padding: 5px 0;
			}

		.listagem .container-search .container-button {
			text-align: right;
		}

			.listagem .container-search .container-button .button {
				margin-left: 10px;
			}

	.listagem .search .searchString::-ms-clear {
		display: none;
		user-select: text;
		-moz-user-select: text;
		-ms-user-select: text;
		-webkit-user-select: text;
	}

	.listagem .search-advanced {
		display: none;
		margin-bottom: 5px;
	}

		.listagem .search-advanced.show {
			display: block;
		}

	.listagem .clearSearch {
		font-size: 0.9em;
		margin-left: 5px;
		padding: 10px 5px;
		text-decoration: underline;
	}

	.listagem .dropdown {
		text-align: right;
		float: right;
		margin-bottom: -11px;
		z-index: 5;
		margin-right: 5px;
	}

		.listagem .dropdown > a {
			padding: 0 10px;
			border: 1px solid #e5e5e5;
			border-top-left-radius: 3px;
			border-top-right-radius: 3px;
			float: right;
			height: 15px;
		}

			.listagem .dropdown > a i {
				position: relative;
				top: -2px;
				font-size: 1.3em;
			}

	.listagem .pagin {
		font-size: 0.95em;
		white-space: nowrap;
		width: 100%;
		padding: 10px 5px;
	}

		.listagem .pagin .inputs-filters {
			/*float: right;*/
		}

		.listagem .pagin .info {
			/*float: right; */
		}

		.listagem .pagin .pagination-config, .listagem .pagin #TextInputs {
			/*float: left;*/
			/*clear: both;*/
			padding-top: 5px;
			margin-left: 5px;
		}

			.listagem .pagin .pagination-config input, .listagem .pagin .pagination-config #jumpToPage, .listagem .pagin #TextInputs input, .listagem .pagin #TextInputs #jumpToPage {
				width: 50px;
			}

		.listagem .pagin .nav {
			/*display: table;*/
			border-collapse: separate;
			border-spacing: 3px;
			float: left;
		}

			.listagem .pagin .nav .current {
				/*display: table-cell;*/
				vertical-align: middle;
			}

			.listagem .pagin .nav a {
				/*display: table-cell;*/
				vertical-align: middle;
				float: none;
				color: #e74725;
				background: #ededed;
				border-radius: 50%;
				font-weight: bold;
				text-decoration: none;
				text-align: center;
				width: 24px;
				height: 24px;
				margin-right: 6px;
			}

				.listagem .pagin .nav a:hover {
					background: #eee;
					color: #555;
				}

				.listagem .pagin .nav a.selected {
					background: #e74725;
					color: #fff;
				}

	.listagem .list {
		float: left;
		width: 100%;
	}

.listagem-edit-inline .mainTable {
	width: 100%;
	background: #fff;
}

	.listagem-edit-inline .mainTable .column-small {
		width: 65px;
	}

	.listagem-edit-inline .mainTable .column-medium {
		width: 115px;
	}

	.listagem-edit-inline .mainTable .column-large {
		width: 180px;
	}

	.listagem-edit-inline .mainTable thead tr {
		border-bottom: 1px solid #e74725;
	}

		.listagem-edit-inline .mainTable thead tr th {
			font-weight: normal;
			font-size: 11px;
		}

	.listagem-edit-inline .mainTable tbody tr {
		border-bottom: 1px solid rgba(231, 71, 37, 0.2);
		border-collapse: collapse;
	}

		.listagem-edit-inline .mainTable tbody tr td {
			border-right: 1px solid #e2e2e2;
			position: relative;
		}

			.listagem-edit-inline .mainTable tbody tr td .number {
				margin-left: 5px;
			}

			.listagem-edit-inline .mainTable tbody tr td .clear-radio {
				visibility: hidden;
				font-size: 11px;
				font-weight: bold;
				position: absolute;
				top: calc(50% - 9px);
				color: #e74725;
				cursor: pointer;
			}

			.listagem-edit-inline .mainTable tbody tr td input[type="radio"][data-value="true"] ~ .clear-radio {
				visibility: visible;
			}

			.listagem-edit-inline .mainTable tbody tr td.cell-name {
				padding: 0 5px;
			}

		.listagem-edit-inline .mainTable tbody tr.selected td {
			background: rgba(231, 71, 37, 0.2);
		}

/*Tabela Associação Manual*/
.listagem .listagemBulk, .listagem .buttons {
	float: left;
	display: inline;
}

.listagem .listagemBulk {
	padding: 5px;
	width: 46%;
}

.listagem .mainTable .subLista {
	float: right;
}

.listagem .mainTable td.filho {
	width: 30px;
}

.listagem .resizer {
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	user-select: none;
}

.listagem .slider {
	position: absolute;
	width: 6px;
	cursor: e-resize;
	color: blue;
	z-index: 99;
}

.listagem .resizing {
	cursor: e-resize;
}

.listagem .mainTable .list .subTable {
	margin-top: 10px;
}

.listagem .mainTable tbody td {
	padding: 6px;
	word-break: break-word;
}

/*Botoes da Associação Manual*/
.listagem .buttons {
	width: 5%;
	text-align: center;
	margin-top: 30px;
}

.done {
	clear: both;
	text-align: right;
}

	.done a {
		position: relative;
		right: 50px;
		-moz-box-shadow: inset 0px 1px 0px 0px #ffffff;
		-webkit-box-shadow: inset 0px 1px 0px 0px #ffffff;
		box-shadow: inset 0px 1px 0px 0px #ffffff;
		background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #f9f9f9), color-stop(1, #e9e9e9));
		background: -moz-linear-gradient(center top, #f9f9f9 5%, #e9e9e9 100%);
		filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9f9f9', endColorstr='#e9e9e9');
		background-color: #f9f9f9;
		border: 1px solid #dcdcdc;
		display: inline-block;
		color: #616161;
		font-size: 12px;
		font-weight: normal;
		font-style: normal;
		height: 25px;
		line-height: 25px;
		width: 80px;
		text-decoration: none;
		text-align: center;
	}

		.done a:hover {
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0.05, #e9e9e9), color-stop(1, #f9f9f9));
			background: -moz-linear-gradient(center top, #e9e9e9 5%, #f9f9f9 100%);
			filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e9e9e9', endColorstr='#f9f9f9');
			background-color: #e9e9e9;
		}

.pagin a .pagin a:active {
	-webkit-box-shadow: inset -1px 2px 5px rgba(0, 0, 0, 0.25);
	-moz-box-shadow: inset -1px 2px 5px rgba(0, 0, 0, 0.25);
	box-shadow: inset -1px 2px 5px rgba(0, 0, 0, 0.25);
}

.pagin a .pagin .current {
	color: #404040;
	display: inline-block;
	float: left;
	margin-right: 10px;
	padding-top: 2px;
}

/*Edição Inline*/
.inline-edit a {
	visibility: hidden;
	top: 2px;
}

.inline-edit:hover a {
	visibility: visible;
}

.inline-edit input[type="text"], .inline-edit input[type="number"] {
	width: auto;
	display: inline-block;
}

/**/
.OutOfBounds {
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

@-webkit-keyframes shake {
	0%, 100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}

	10%, 30%, 50%, 70%, 90% {
		-webkit-transform: translate3d(-10px, 0, 0);
		transform: translate3d(-10px, 0, 0);
	}

	20%, 40%, 60%, 80% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}
}

@keyframes shake {
	0%, 100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 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);
	}
}

.OutOfBoundsShake {
	-webkit-animation-name: shake;
	animation-name: shake;
}

.dropup {
	position: relative;
}

	.dropup .dropdown-menu {
		top: auto;
		bottom: 100%;
		margin-bottom: 2px;
	}

.dropdown {
	position: relative;
}

	.dropdown > a {
		color: #4c4c4c;
	}

	.dropdown.open > .dropdown-menu, .dropdown.dropdown-hover:hover > .dropdown-menu {
		display: block;
	}

	.dropdown.open > a, .dropdown.dropdown-hover:hover > a {
		outline: 0;
	}

	.dropdown .dropdown-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 999;
		display: none;
		float: left;
		min-width: 160px;
		padding: 5px 0;
		margin: 2px 0 0;
		list-style: none;
		font-size: 14px;
		text-align: left;
		background-color: #F2F2F2;
		color: #4c4c4c;
		border: none;
		border-radius: 2px;
		-webkit-box-shadow: 0 1px 3px rgba(128, 128, 128, 0.9);
		box-shadow: 0 1px 3px rgba(128, 128, 128, 0.9);
		background-clip: padding-box;
	}

		.dropdown .dropdown-menu.min-290 {
			min-width: 290px;
		}

		.dropdown .dropdown-menu.pull-right {
			right: 0;
			left: auto;
		}

		.dropdown .dropdown-menu.pull-top {
			top: 0;
		}

		.dropdown .dropdown-menu .divider {
			height: 1px;
			margin: 9px 0;
			overflow: hidden;
			background-color: #bfbfbf;
		}

		.dropdown .dropdown-menu > li > a {
			display: block;
			padding: 3px 20px;
			clear: both;
			font-weight: normal;
			line-height: 1.42857;
			color: #000;
			white-space: nowrap;
		}

			.dropdown .dropdown-menu > li > a:hover, .dropdown .dropdown-menu > li > a:focus {
				text-decoration: none;
				color: #e74725;
				background-color: #f5f5f5;
			}

		.dropdown .dropdown-menu > .disabled > a, .dropdown .dropdown-menu > .disabled > a:hover, .dropdown .dropdown-menu > .disabled > a:focus {
			color: #000;
		}

			.dropdown .dropdown-menu > .disabled > a:hover, .dropdown .dropdown-menu > .disabled > a:focus {
				text-decoration: none;
				background-color: transparent;
				background-image: none;
				cursor: not-allowed;
			}

.dropdown-more {
	position: relative;
}

	.dropdown-more > a {
		color: #e74725;
	}

	.dropdown-more.open > .dropdown-menu, .dropdown-more.dropdown-hover:hover > .dropdown-menu {
		display: block;
	}

	.dropdown-more.open > a, .dropdown-more.dropdown-hover:hover > a {
		outline: 0;
	}

	.dropdown-more .dropdown-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 999;
		display: none;
		float: left;
		min-width: 160px;
		padding: 5px 0;
		margin: 2px 0 0;
		list-style: none;
		font-size: 14px;
		text-align: left;
		background-color: #f7f7f7;
		color: #fff;
		border: #e5e5e5;
		border-radius: 2px;
		-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
		box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
		background-clip: padding-box;
	}

		.dropdown-more .dropdown-menu.min-290 {
			min-width: 290px;
		}

		.dropdown-more .dropdown-menu.pull-right {
			right: 0;
			left: auto;
		}

		.dropdown-more .dropdown-menu.pull-top {
			top: 0;
		}

		.dropdown-more .dropdown-menu .divider {
			height: 1px;
			margin: 9px 0;
			overflow: hidden;
			background-color: transparent;
		}

		.dropdown-more .dropdown-menu > li > a {
			display: block;
			padding: 3px 20px;
			clear: both;
			font-weight: normal;
			line-height: 1.42857;
			color: #4c4c4c;
			white-space: nowrap;
		}

			.dropdown-more .dropdown-menu > li > a:hover, .dropdown-more .dropdown-menu > li > a:focus {
				text-decoration: none;
				color: #e74725;
				background-color: transparent;
			}

		.dropdown-more .dropdown-menu > .disabled > a, .dropdown-more .dropdown-menu > .disabled > a:hover, .dropdown-more .dropdown-menu > .disabled > a:focus {
			color: #000;
		}

			.dropdown-more .dropdown-menu > .disabled > a:hover, .dropdown-more .dropdown-menu > .disabled > a:focus {
				text-decoration: none;
				background-color: transparent;
				background-image: none;
				cursor: not-allowed;
			}

	.dropdown-more .dropdown-menu {
		margin-top: -1px;
	}

	.dropdown-more.open > a {
		border-bottom: transparent !important;
		z-index: 1000;
		position: relative;
	}

.dropdown-info {
	display: inline-block;
	position: relative;
}

	.dropdown-info > a {
		color: #4c4c4c;
	}

	.dropdown-info.open > .dropdown-menu, .dropdown-info.dropdown-hover:hover > .dropdown-menu {
		display: block;
	}

	.dropdown-info.open > a, .dropdown-info.dropdown-hover:hover > a {
		outline: 0;
	}

	.dropdown-info .dropdown-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 999;
		display: none;
		float: left;
		min-width: 160px;
		padding: 10px;
		margin: 2px 0 0;
		list-style: none;
		font-size: 12px;
		text-align: left;
		background-color: #fff;
		color: #4c4c4c;
		border: none;
		border-radius: 2px;
		-webkit-box-shadow: 0 1px 3px rgba(128, 128, 128, 0.9);
		box-shadow: 0 1px 3px rgba(128, 128, 128, 0.9);
		background-clip: padding-box;
	}

		.dropdown-info .dropdown-menu.min-290 {
			min-width: 290px;
		}

		.dropdown-info .dropdown-menu.pull-right {
			right: 0;
			left: auto;
		}

		.dropdown-info .dropdown-menu.pull-top {
			top: 0;
		}

		.dropdown-info .dropdown-menu .divider {
			height: 1px;
			margin: 9px 0;
			overflow: hidden;
			background-color: #bfbfbf;
		}

		.dropdown-info .dropdown-menu > li > a {
			display: block;
			padding: 3px 20px;
			clear: both;
			font-weight: normal;
			line-height: 1.42857;
			color: #000;
			white-space: nowrap;
		}

			.dropdown-info .dropdown-menu > li > a:hover, .dropdown-info .dropdown-menu > li > a:focus {
				text-decoration: none;
				color: #e74725;
				background-color: #f5f5f5;
			}

		.dropdown-info .dropdown-menu > .disabled > a, .dropdown-info .dropdown-menu > .disabled > a:hover, .dropdown-info .dropdown-menu > .disabled > a:focus {
			color: #000;
		}

			.dropdown-info .dropdown-menu > .disabled > a:hover, .dropdown-info .dropdown-menu > .disabled > a:focus {
				text-decoration: none;
				background-color: transparent;
				background-image: none;
				cursor: not-allowed;
			}

	.dropdown-info .dropdown-menu {
		margin-top: -1px;
		border-top-right-radius: 0;
	}

	.dropdown-info > a {
		-webkit-transition: color ease-in 0.2s;
		-o-transition: color ease-in 0.2s;
		transition: color ease-in 0.2s;
	}

	.dropdown-info.open > a {
		-webkit-transition: color ease-in 0.2s;
		-o-transition: color ease-in 0.2s;
		transition: color ease-in 0.2s;
		color: #e74725;
	}

	.dropdown-info.border-left {
		margin-left: 2px;
	}

	.dropdown-info .tabs-state-active {
		width: 3px;
		height: 20px;
		float: left;
		margin-right: 5px;
		background: #e74725;
		border: 0;
	}

	.dropdown-info .tabs-state-inactive {
		width: 3px;
		height: 20px;
		float: left;
		margin-right: 5px;
		background: #fff;
		border: 1px solid #bfbfbf;
	}

.dropdown-icon {
	position: relative;
}

	.dropdown-icon > a {
		color: #fff;
	}

	.dropdown-icon.open > .dropdown-menu, .dropdown-icon.dropdown-hover:hover > .dropdown-menu {
		display: block;
	}

	.dropdown-icon.open > a, .dropdown-icon.dropdown-hover:hover > a {
		outline: 0;
	}

	.dropdown-icon .dropdown-menu {
		position: absolute;
		top: 100%;
		left: 0;
		z-index: 999;
		display: none;
		float: left;
		min-width: 160px;
		padding: 5px 0;
		margin: 2px 0 0;
		list-style: none;
		font-size: 14px;
		text-align: left;
		background-color: #4d4d4d;
		color: #fff;
		border: none;
		border-radius: 2px;
		-webkit-box-shadow: 0 1px 3px rgba(128, 128, 128, 0.9);
		box-shadow: 0 1px 3px rgba(128, 128, 128, 0.9);
		background-clip: padding-box;
	}

		.dropdown-icon .dropdown-menu.min-290 {
			min-width: 290px;
		}

		.dropdown-icon .dropdown-menu.pull-right {
			right: 0;
			left: auto;
		}

		.dropdown-icon .dropdown-menu.pull-top {
			top: 0;
		}

		.dropdown-icon .dropdown-menu .divider {
			height: 1px;
			margin: 9px 0;
			overflow: hidden;
			background-color: #bfbfbf;
		}

		.dropdown-icon .dropdown-menu > li > a {
			display: block;
			padding: 3px 20px;
			clear: both;
			font-weight: normal;
			line-height: 1.42857;
			color: #000;
			white-space: nowrap;
		}

			.dropdown-icon .dropdown-menu > li > a:hover, .dropdown-icon .dropdown-menu > li > a:focus {
				text-decoration: none;
				color: #e74725;
				background-color: #f5f5f5;
			}

		.dropdown-icon .dropdown-menu > .disabled > a, .dropdown-icon .dropdown-menu > .disabled > a:hover, .dropdown-icon .dropdown-menu > .disabled > a:focus {
			color: #000;
		}

			.dropdown-icon .dropdown-menu > .disabled > a:hover, .dropdown-icon .dropdown-menu > .disabled > a:focus {
				text-decoration: none;
				background-color: transparent;
				background-image: none;
				cursor: not-allowed;
			}

	.dropdown-icon > a {
		padding-top: 4px;
		padding-left: 6px;
		width: 25px;
		height: 25px;
		display: inline-block;
		border-radius: 50%;
	}

	.dropdown-icon.dropdown-success > a {
		background: #057774;
	}

	.dropdown-icon.dropdown-warning > a {
		background: #ff9900;
	}

	.dropdown-icon.tooltip .dropdown-menu {
		font-size: 0.8em;
		padding: 4px 10px;
		min-width: unset;
		white-space: nowrap;
		top: 0;
		right: 140%;
	}

.config-compatibility {
	flex: 0 0 195px;
	padding: 2px 5px;
}

.builder-group {
	position: relative;
	margin-bottom: 10px;
	padding-right: 0;
}

	.builder-group .builder-head {
		position: relative;
		margin-bottom: 10px;
		float: left;
		width: 100%;
	}

		.builder-group .builder-head:after {
			position: absolute;
			content: "";
			left: 24px;
			height: calc(50% + 10px);
			background: #e74725;
			width: 2px;
			top: 100%;
			z-index: 1;
		}

		.builder-group .builder-head .group-buttons {
			float: left;
			margin-top: 1px;
			border-left: 1px solid #bfbfbf;
			padding-left: 5px;
		}

	.builder-group .builder-body {
		padding-left: 40px;
		position: relative;
		float: left;
		width: 100%;
	}

		.builder-group .builder-body .builder-rule {
			float: left;
			margin-bottom: 10px;
			position: relative;
			width: auto;
		}

			.builder-group .builder-body .builder-rule .button-simple {
				margin-top: 2px;
			}

			.builder-group .builder-body .builder-rule .valores {
				float: left;
			}

				.builder-group .builder-body .builder-rule .valores .select-faux-list > li {
					height: 40px;
					padding: 0;
				}

					.builder-group .builder-body .builder-rule .valores .select-faux-list > li .mlkForm-formGroup_s {
						margin: 0;
						padding: 0;
						height: 100%;
					}

					.builder-group .builder-body .builder-rule .valores .select-faux-list > li .select-faux-list-label {
						margin: 0;
						padding: 0;
						height: 100%;
					}

			.builder-group .builder-body .builder-rule .not, .builder-group .builder-body .builder-rule .selcampo, .builder-group .builder-body .builder-rule .operadores, .builder-group .builder-body .builder-rule .valor, .builder-group .builder-body .builder-rule .tipoValor, .builder-group .builder-body .builder-rule .options {
				float: left;
				margin-right: 2px;
			}

			.builder-group .builder-body .builder-rule .label-middle {
				color: #595959;
				float: left;
				margin-right: 2px;
				margin-top: 2px;
			}

				.builder-group .builder-body .builder-rule .label-middle.disabled {
					opacity: 0.6;
				}

		.builder-group .builder-body .builder-row {
			width: 100%;
			float: left;
			position: relative;
			padding: 0;
			margin: 0;
			border: none;
		}

			.builder-group .builder-body .builder-row:last-of-type:before {
				height: 18px;
			}

			.builder-group .builder-body .builder-row:after {
				position: absolute;
				content: "";
				top: 16px;
				left: -16px;
				height: 2px;
				background: #e74725;
				width: 16px;
			}

			.builder-group .builder-body .builder-row:before {
				position: absolute;
				content: "";
				top: -2px;
				left: -16px;
				height: calc(100% + 16px + 2px);
				background: #e74725;
				width: 2px;
			}

			.builder-group .builder-body .builder-row:disabled input, .builder-group .builder-body .builder-row:disabled select, .builder-group .builder-body .builder-row:disabled .select-input[readonly] {
				opacity: 0.6 !important;
			}

		.builder-group .builder-body .builder-group {
			position: relative;
		}

	.builder-group .deny-container, .builder-group .deny-control {
		float: left;
	}

	.builder-group .deny-control {
		margin-right: 5px;
		text-transform: uppercase;
	}

	.builder-group .deny-group {
		background: transparen;
		padding: 1px 3px;
		margin-right: 5px;
	}

		.builder-group .deny-group .deny-control {
			display: none;
		}

.gaContainer {
	position: relative;
}

.query-builder-container {
	width: 100%;
	overflow: visible;
	float: left;
	position: relative;
	min-height: 100%;
	border: 1px solid #bfbfbf;
}

	.query-builder-container .query-builder-sql {
		width: 40%;
		font-size: 13px;
		float: left;
		display: inline-block;
		background: #ededed;
		height: 100%;
		overflow: auto;
		position: absolute;
		border-right: 1px solid #bfbfbf;
	}

		.query-builder-container .query-builder-sql .query-builder-sql-top {
			width: 100%;
			min-height: 35px;
			float: left;
			border-bottom: 1px solid #bfbfbf;
			padding: 7px 6px;
		}

		.query-builder-container .query-builder-sql .query-builder-sql-overflow {
			width: 100%;
			padding: 6px 10px;
			position: relative;
			float: left;
		}

		.query-builder-container .query-builder-sql ~ .query-builder-ui-container {
			width: 60%;
		}

	.query-builder-container .query-builder-ui-container {
		width: 100%;
		float: right;
		display: inline-block;
	}

		.query-builder-container .query-builder-ui-container .query-builder-ui-top {
			background: #f7f7f7;
			border: 1px solid #bfbfbf;
			border-left: none;
			border-top: none;
			float: left;
			width: 100%;
			min-height: 35px;
		}

			.query-builder-container .query-builder-ui-container .query-builder-ui-top .icon-panel-sql {
				display: inline-block;
				-moz-transform: rotate(0);
				-ms-transform: rotate(0);
				-o-transform: rotate(0);
				-webkit-transform: rotate(0);
				transform: rotate(0);
				-webkit-transition: all 0.5s linear;
				-o-transition: all 0.5s linear;
				transition: all 0.5s linear;
			}

			.query-builder-container .query-builder-ui-container .query-builder-ui-top .query-builder-ui-top-options {
				margin: 4px;
			}

		.query-builder-container .query-builder-ui-container .query-builder-ui-content {
			padding: 5px 2px;
			float: left;
			width: 100%;
		}

			.query-builder-container .query-builder-ui-container .query-builder-ui-content .query-builder-ui {
				float: left;
				width: 100%;
			}

.query-builder-ui.builder-disabled, .query-builder-ui-container.builder-disabled {
	-webkit-animation: fadeout 0.5s forwards;
	-o-animation: fadeout 0.5s forwards;
	animation: fadeout 0.5s forwards;
}

.query-builder-ui.builder-enabled, .query-builder-ui-container.builder-enabled {
	-webkit-animation: fadein 0.5s forwards;
	-o-animation: fadein 0.5s forwards;
	animation: fadein 0.5s forwards;
}

.builder-table {
	display: table;
	width: 100%;
}

	.builder-table .builder-header {
		font-size: 0.9em;
	}

		.builder-table .builder-header .builder-cell {
			padding-bottom: 2px;
			padding-right: 0;
		}

	.builder-table .builder-row, .builder-table .builder-header {
		display: table-row;
		vertical-align: middle;
	}

		.builder-table .builder-row .builder-cell {
			text-align: center;
			vertical-align: top;
		}

	.builder-table .builder-cell {
		display: table-cell;
		vertical-align: middle;
		padding-bottom: 12px;
		padding-right: 5px;
	}

		.builder-table .builder-cell.levels {
			vertical-align: top;
			font-weight: 600;
		}

			.builder-table .builder-cell.levels:first-of-type {
				padding-right: 5px;
				margin-right: 5px;
			}

			.builder-table .builder-cell.levels .bg-section {
				padding-left: 5px;
			}

		.builder-table .builder-cell.cell-small {
			width: 84px;
		}

		.builder-table .builder-cell.cell-min-large {
			min-width: 150px;
		}

		.builder-table .builder-cell .box-tags {
			width: 100%;
			float: left;
			min-height: 30px;
			margin-top: 5px;
		}

		.builder-table .builder-cell .input-control, .builder-table .builder-cell .select-faux {
			min-width: 90px;
		}

		.builder-table .builder-cell .border-left {
			border-left: 1px solid #bfbfbf;
		}

		.builder-table .builder-cell .border-right {
			border-right: 1px solid #bfbfbf;
		}

		.builder-table .builder-cell .bg-section {
			width: 100%;
			background: #d9d9d9;
			display: inline-block;
			min-height: 18px;
		}

.search-op {
	background: #f7f7f7;
	top: 0px;
	-webkit-box-shadow: 0px 0px 3px 0px rgba(128, 128, 128, 0.6);
	box-shadow: 0px 0px 3px 0px rgba(128, 128, 128, 0.6);
	border-bottom: 1px solid #bfbfbf;
	padding: 0;
	width: 100%;
	float: left;
	position: relative;
}

	.search-op .search-op-top {
		background: #f7f7f7;
		padding: 5px 0 5px 10px;
		margin: 0;
		float: left;
		width: 100%;
		clear: both;
	}

		.search-op .search-op-top .search-op-top-title {
			color: #e74725;
			font-size: 12px;
			font-weight: 600;
			text-transform: uppercase;
			padding-top: 2px;
			float: left;
		}

		.search-op .search-op-top .search-op-top-buttons {
			float: right;
		}

			.search-op .search-op-top .search-op-top-buttons .button {
				border-left: 1px solid #bfbfbf;
				padding: 4px 10px;
				float: left;
			}

				.search-op .search-op-top .search-op-top-buttons .button.up [class*="icon-mlk"] {
					-moz-transform: rotate(90deg);
					-ms-transform: rotate(90deg);
					-o-transform: rotate(90deg);
					-webkit-transform: rotate(90deg);
					transform: rotate(90deg);
					-webkit-transition: all ease-in 0.3s;
					-o-transition: all ease-in 0.3s;
					transition: all ease-in 0.3s;
					display: inline-block;
				}

				.search-op .search-op-top .search-op-top-buttons .button.up.open [class*="icon-mlk"] {
					-moz-transform: rotate(-90deg);
					-ms-transform: rotate(-90deg);
					-o-transform: rotate(-90deg);
					-webkit-transform: rotate(-90deg);
					transform: rotate(-90deg);
					-webkit-transition: all ease-in 0.3s;
					-o-transition: all ease-in 0.3s;
					transition: all ease-in 0.3s;
				}

	.search-op .search-op-body {
		float: left;
		width: 100%;
	}

		.search-op .search-op-body .search-op-options {
			padding: 10px;
			border-top: 1px solid #bfbfbf;
			float: left;
			width: 100%;
		}

		.search-op .search-op-body .search-op-ga {
			float: left;
			width: 100%;
		}

		.search-op .search-op-body .search-op-bottom {
			float: right;
		}

		.search-op .search-op-body .search-container, .search-op .search-op-body .clear-container {
			width: 85px;
			float: left;
		}

		.search-op .search-op-body .clear-container {
			margin-right: 7px;
		}

@media (min-width: 768px) {
	.query-builder-container .query-builder-sql {
		width: 35%;
	}

		.query-builder-container .query-builder-sql ~ .query-builder-ui-container {
			width: 65%;
		}
}

@media (min-width: 992px) {
	.query-builder-container .query-builder-sql {
		width: 25%;
	}

		.query-builder-container .query-builder-sql ~ .query-builder-ui-container {
			width: 75%;
		}

	.builder-table .builder-cell.cell-min-large {
		min-width: 200px;
	}

	.builder-table .builder-cell .input-control, .builder-table .builder-cell .select-faux {
		min-width: 160px;
	}

	.builder-table .builder-cell .box-tags {
		width: calc(100% - 45px);
		float: right;
		margin-top: 0;
	}
}

@media (min-width: 1200px) {
	.builder-table .builder-cell.cell-min-large {
		min-width: 290px;
	}

	.builder-table .builder-cell .input-control, .builder-table .builder-cell .select-faux {
		min-width: 200px;
	}
}

@media (min-width: 1600px) {
	.query-builder-container .query-builder-sql {
		width: 20%;
	}

		.query-builder-container .query-builder-sql ~ .query-builder-ui-container {
			width: 80%;
		}
}

@keyframes fadein {
	from {
		opacity: 0.5;
	}

	to {
		opacity: 1;
	}
}

@-moz-keyframes fadein {
	from {
		opacity: 0.5;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes fadein {
	from {
		opacity: 0.5;
	}

	to {
		opacity: 1;
	}
}

@-ms-keyframes fadein {
	from {
		opacity: 0.5;
	}

	to {
		opacity: 1;
	}
}

@-o-keyframes fadein {
	from {
		opacity: 0.5;
	}

	to {
		opacity: 1;
	}
}

@keyframes fadeout {
	from {
		opacity: 1;
	}

	to {
		opacity: 0.5;
	}
}

@-moz-keyframes fadeout {
	from {
		opacity: 1;
	}

	to {
		opacity: 0.5;
	}
}

@-webkit-keyframes fadeout {
	from {
		opacity: 1;
	}

	to {
		opacity: 0.5;
	}
}

@-ms-keyframes fadeout {
	from {
		opacity: 1;
	}

	to {
		opacity: 0.5;
	}
}

@-o-keyframes fadeout {
	from {
		opacity: 1;
	}

	to {
		opacity: 0.5;
	}
}

.box-default {
	background: #f7f7f7;
	border: 1px solid #bfbfbf;
	padding: 8px 15px;
	border-radius: 3px;
	float: left;
	width: 100%;
}

	.box-default.disabled {
		opacity: 0.6;
	}

	.box-default .reset-margins {
		margin: -8px -15px;
	}

	.box-default .reset-margin-left {
		margin-left: -15px;
	}

	.box-default .reset-margin-right {
		margin-right: -15px;
	}

	.box-default .reset-margin-bottom {
		margin-bottom: -8px;
	}

	.box-default .reset-margin-top {
		margin-top: -8px;
	}

.box-default-min {
	background: #f7f7f7;
	border: 1px solid #bfbfbf;
	padding: 5px 5px;
	border-radius: 3px;
	float: left;
	width: 100%;
}

	.box-default-min.disabled {
		opacity: 0.6;
	}

.box-light-min {
	background: #ededed;
	border: 1px solid #bfbfbf;
	padding: 5px 5px;
	border-radius: 3px;
	float: left;
	width: 100%;
}

	.box-light-min.disabled {
		opacity: 0.6;
	}

.box-white {
	background: #fff;
	border: 1px solid #bfbfbf;
	padding: 5px 5px;
	border-radius: 0;
	float: left;
	width: 100%;
}

	.box-white.disabled {
		opacity: 0.6;
	}

.box-white-min {
	background: #fff;
	border: 1px solid #bfbfbf;
	padding: 5px 5px;
	border-radius: 3px;
	float: left;
	width: 100%;
}

	.box-white-min.disabled {
		opacity: 0.6;
	}

.box-border {
	background: #f7f7f7;
	border: 1px solid #ededed;
	padding: 8px 5px;
	border-radius: 0;
	float: left;
	width: 100%;
}

	.box-border.disabled {
		opacity: 0.6;
	}

.box-default-shadow {
	background: #f7f7f7;
	border: 1px solid #bfbfbf;
	padding: 3px 3px;
	border-radius: 2px;
	float: left;
	width: 100%;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
	box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
}

.box-default-shadowlight-noradius {
	background: #f7f7f7;
	border: 1px solid #bfbfbf;
	padding: 3px 3px;
	border-radius: 0;
	float: left;
	width: 100%;
	-webkit-box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.2);
}

.box-light-shadow {
	background: #ededed;
	border: 0;
	padding: 0 5px;
	border-radius: 0;
	float: left;
	width: 100%;
	-webkit-box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
	box-shadow: 0px 1px 3px 0px rgba(128, 128, 128, 0.7);
}

.bg-white {
	background: #fff;
}

.bg-default {
	background: #f7f7f7;
}

.container-scroll {
	position: absolute;
	padding-top: 9px;
	overflow: auto;
	height: 100%;
	width: 100%;
}

.layer {
	position: absolute;
	top: 0;
	right: -100%;
	background: #fff;
	width: 99%;
	height: 100%;
	-webkit-animation: slide 0.8s forwards;
	-webkit-animation-delay: 0.2s;
	animation: slide 0.8s forwards;
	animation-delay: 0.2s;
}

.inner_layer {
	position: relative;
	height: calc(100% - 40px);
}

@-webkit-keyframes slide {
	100% {
		right: 0;
	}
}

@keyframes slide {
	100% {
		right: 0;
	}
}

@-webkit-keyframes slideOut {
	100% {
		right: -100%;
	}
}

@keyframes slideOut {
	100% {
		right: -100%;
	}
}

.layer.Out {
	right: 0;
	-webkit-animation: slideOut 0.8s forwards;
	-webkit-animation-delay: 0.2s;
	animation: slideOut 0.8s forwards;
	animation-delay: 0.2s;
}

.backgroundDisable {
	overflow: hidden;
	visibility: hidden;
	position: absolute;
	top: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
	height: 100%;
	opacity: 0.0;
	-webkit-transition: opacity 500ms;
	-moz-transition: opacity 500ms;
	-ms-transition: opacity 500ms;
	-o-transition: opacity 500ms;
	transition: opacity 500ms;
	z-index: 9090 !important;
}

.wrapper_content {
	height: 100%;
	overflow: auto;
}
