/* Minification failed. Returning unminified contents.
(4722,22): run-time error CSS1031: Expected selector, found '('
 */
/*Descrição da animação*/

@-webkit-keyframes focused{
	30%, 80%, 0%, 100%{
		-webkit-transform:scale(1);
		transform:scale(1);
	}
	55%{
		-webkit-transform:scale(1.1);
		transform:scale(1.1);
	}
}
@-moz-keyframes focused{
	30%, 80%, 0%, 100%{
		-moz-transform:scale(1);
		transform:scale(1);
	}
	55%{
		-moz-transform:scale(1.1);
		transform:scale(1.1);
	}
}
@keyframes focused{
	30%, 80%, 0%, 100%{
		transform:scale(1);
	}
	55%{
		transform:scale(1.1);
	}
}
/*======================================*/

/* Alerta de erro */

@-webkit-keyframes error-alert{
   0%{
    -webkit-transform: translateX(0px) translateY(20px);
	transform: translateX(0px) translateY(20px);
    opacity: 0;
  }
  20%{
    -webkit-transform: translateX(30px);
	transform: translateX(30px);
  }
  40%{
     -webkit-transform: translateX(-30px);
	 transform: translateX(-30px);
  }
  60%{
    -webkit-transform: translateX(20px);
	transform: translateX(20px); 
	opacity: 1;
  }
  80%{
    -webkit-transform: translateX(-20px);
	transform: translateX(-20px);
  }
  100%{
    -webkit-transform: translateX(0px);
	transform: translateX(0px);
    }
}
@-moz-keyframes error-alert{
   0%{
    -moz-transform: translateX(0px) translateY(20px);
	transform: translateX(0px) translateY(20px);
    opacity: 0;
  }
  20%{
    -moz-transform: translateX(30px);
	transform: translateX(30px);    
  }
  40%{
     -moz-transform: translateX(-30px);
	 transform: translateX(-30px);
  }
  60%{
    -moz-transform: translateX(20px);
	transform: translateX(20px);
	opacity: 1;
  }
  80%{
    -moz-transform: translateX(-20px);
	transform: translateX(-20px);
  }
  100%{
    -moz-transform: translateX(0px);
	transform: translateX(0px);
    }
}
@keyframes error-alert{
   0%{
    transform: translateX(0px) translateY(20px);
    opacity: 0;
  }
  20%{
    transform: translateX(30px);    
  }
  40%{
     transform: translateX(-30px);
  }
  60%{
    transform: translateX(20px); opacity: 1;
  }
  80%{
    transform: translateX(-20px);
  }
  100%{
    transform: translateX(0px);
    }
}
/*======================================*/

/* Alerta de sucesso */

@-webkit-keyframes success-alert{
  0%{
    -webkit-transform: translateY(100%);
	transform: translateY(100%);
    opacity: 0;
  }
  25%{
    opacity: 0;
  }
}
@-moz-keyframes success-alert{
  0%{
    -moz-transform: translateY(100%);
	transform: translateY(100%);
    opacity: 0;
  }
  25%{
    opacity: 0;
  }
}
@keyframes success-alert{
  0%{
    transform: translateY(100%);
    opacity: 0;
  }
  25%{
    opacity: 0;
  }
}
/*======================================*/

/* remover alerta */

@-webkit-keyframes alert-remove{
  100%{
    -webkit-transform: translateY(100%);
	transform: translateY(100%);
    opacity: 0;
  }
  75%{
    opacity: 0;
  }
}
@-moz-keyframes alert-remove{
  100%{
    -moz-transform: translateY(100%);
	transform: translateY(100%);
    opacity: 0;
  }
  75%{
    opacity: 0;
  }
}
@keyframes alert-remove{
  100%{
    transform: translateY(100%);
    opacity: 0;
  }
  75%{
    opacity: 0;
  }
}
/*======================================*/

/* Iniciar o tutorial */

@-webkit-keyframes tutorial-init{
	0%{
		box-shadow: none;
		-webkit-transform: translateY(-30px);
		transform: translateY(-30px);
		opacity:0;
	}
}
@-moz-keyframes tutorial-init{
	0%{
		box-shadow: none;
		-moz-transform: translateY(-30px);
		transform: translateY(-30px);
		opacity:0;
	}
}
@keyframes tutorial-init{
	0%{
		box-shadow: none;
		transform: translateY(-30px);
		opacity:0;
	}
}
/*======================================*/

/* Entrada co custompopup */

@-webkit-keyframes popup-enter{
	from{
		transform:scale(0.2);
		opacity: 0;
	}
}
/*======================================*/

/* Entrada do overlay custompopup */

@-webkit-keyframes overlay-enter{
	from{
		opacity: 0;
	} 
}
@-moz-keyframes overlay-enter{
	from{
		opacity: 0;
	} 
}
@keyframes overlay-enter{
	from{
		opacity: 0;
	} 
}
/*======================================*/

/*Fechar da popup*/

@-webkit-keyframes popup-out{
	0%{
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
	}
	100%{
		-webkit-transform: scale(0.2) translateY(200%);
		transform: scale(0.2) translateY(200%);
		opacity: 0;
		
	}
}
@-moz-keyframes popup-out{
	0%{
		-moz-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
	}
	100%{
		-moz-transform: scale(0.2) translateY(200%);
		transform: scale(0.2) translateY(200%);
		opacity: 0;
	}
}
@keyframes popup-out{
	0%{
		transform-origin: 50% 50%;
	}
	100%{
		transform: scale(0.2) translateY(200%);
		opacity: 0;
	}
}
/*======================================*/

/*fechar alternativo da popup*/

@-webkit-keyframes popup-out-alt{
	0%{
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
	}
	100%{
		-webkit-transform: scale(0.2);
		transform: scale(0.2);
		opacity: 0;
	}
}
@-moz-keyframes popup-out-alt{
	0%{
		-moz-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
	}
	100%{
		-moz-transform: scale(0.2);
		transform: scale(0.2);
		opacity: 0;
	}
}
@keyframes popup-out-alt{
	0%{
		-webkit-transform-origin: 50% 50%;
		transform-origin: 50% 50%;
	}
	100%{
		transform: scale(0.2);
		opacity: 0;
	}
}
/*======================================*/

/* Overlay do custompopup ao fechar */

@-webkit-keyframes overlay-out{
	to{
		opacity: 0;
	}
}
@-moz-keyframes overlay-out{
	to{
		opacity: 0;
	}
}
@keyframes overlay-out{
	to{
		opacity: 0;
	}
}
/*======================================*/

/* Mostrar as opções */

@-webkit-keyframes option-enter{
	0%{
		transform: translateY(-50%);
	}
}
/*======================================*/

/* Mostrar as sugestões */

@-webkit-keyframes suggestionShow{
	0%{
		transform: translateY(-20px);
		opacity: 0;
	}
}
/*======================================*/

/* Tabs */

@-webkit-keyframes pane-in-left{
	0%{
		transform: translateX(-200px);
		opacity: 0;
		visibility: hidden;
	}
	100%{
		visibility: visible;
	}
}

@-webkit-keyframes pane-in-right{
	0%{
		transform: translateX(200px);
		opacity: 0;
		visibility: hidden;
	}
	100%{
		visibility: visible;
	}
}
@-webkit-keyframes pane-out-left{
	0%{
		visibility: visible;
	}
	100%{
		transform:translateX(-200px);
		opacity: 0;
		visibility: hidden;
	}
}
@-webkit-keyframes pane-out-right{
	0%{
		visibility: visible;
	}
	100%{
		transform:translateX(200px);
		opacity: 0;
		visibility: hidden;
	}
}
/*======================================*/
/* Highlight Tela Pessoa */
@-webkit-keyframes highlight-user-fade {
    0% {
        background: orange;
    }
    100% {
        background: white;
    }
}
@-moz-keyframes highlight-user-fade {
    0% {
        background: orange;
    }
    100% {
        background: white;
    }
}
@-ms-keyframes highlight-user-fade {
    0% {
        background: orange;
    }
    100% {
        background: white;
    }
}
@keyframes highlight-user-fade {
    0% {
        background: orange;
    }
    100% {
        background: white;
    }
}
/*@media screen and (max-width:480px)
{
	body
	{
		font-size: .85em;
	}
}

@media screen and (min-width:481px)
{
	body
	{
		font-size: .85em;
	}
}*/
/*@media screen and (max-width:480px)
{
	body
	{
		font-size: .85em;
	}
}

@media screen and (min-width:481px)
{
	body
	{
		font-size: .85em;
	}
}*/

/* Styles for basic forms
-----------------------------------------------------------*/
header, footer, nav, section {
	display: block;
}

fieldset {
	border: 0;
	padding: 0;
	margin: 0;
	left: 0;
}

legend {
	font-size: 1.2em;
	font-weight: bold;
}

.control-group > .controls > textarea {
	left: 30%;
	position: relative;
	width: 70% !important;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	border-radius: 0;
	border: 1px solid hsl(209, 40%, 56%);
	background: hsla(0, 100%, 100%, 0);
	box-shadow: none;
	min-height: 40px !important;
	padding: 5px;
	text-indent: 10px;
	color: #444;
	font-family: inherit;
}

.editor-label {
	margin: 1em 0 0 0;
}

.editor-field {
	margin: 0.5em 0 0 0;
}

select {
	border-radius: 0;
}

/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error {
	color: #f00;
}

.field-validation-valid {
	display: none;
}

.validation-summary-errors {
	font-weight: bold;
	color: #f00;
}

.validation-summary-valid {
	display: none;
}

.k-widget.k-tooltip {
	background: hsla(0, 39%, 55%, 0.72);
	border-color: hsl(0, 29%, 51%);
}

.tooltip {
	display: none;
	position: absolute; /* border: 1px solid #333; */ /* background-color: hsl(0, 39%, 55%); */
	border-radius: 5px;
	padding: 10px;
	color: #fff;
	font-size: 12px Arial;
}

	.tooltip .arrow {
		margin-bottom: 8px;
		margin-top: -5px;
	}

	.tooltip .tooltip-inner {
		background: hsl(0, 39%, 55%);
		max-width: none;
	}

	.tooltip .tooltip-arrow {
		border: none;
	}
/*input text*/
input, select {
	/* border-radius: 0 !important; */ /* height: 30px !important; */ /* border: 1px solid #6290BC !important; */
	margin: 0 !important;
	padding: 5px;
}

.password-btn:hover {
	background: #fff;
	color: hsl(209, 50%, 44%);
}

.fields-block {
	width: 150px;
	clear: right;
	float: left;
	margin-left: 13px;
}

	.fields-block input {
		vertical-align: middle;
		margin: 5px 2px;
		padding: 0 4px;
		display: block;
		width: 100%;
	}

.red-tooltip + .tooltip {
	background-color: transparent;
	border: 0 solid;
	padding: 0;
}

	.red-tooltip + .tooltip > .tooltip-inner {
		background-color: #b95f5f !important;
		margin: 0;
		border: 0 solid;
		font-size: 8pt;
		white-space: normal;
	}

	.red-tooltip + .tooltip > .tooltip-arrow {
		display: none;
	}

.input-label-form {
	position: relative !important;
	display: inline-block !important;
	width: 70%;
	left: 30%;
	padding: 0 !important;
	font-weight: 400;
	color: /*hsl(209, 40%, 56%)*/ #444 !important;
	background: hsl(0, 0%, 94%) !important;
	border: 1px solid /* #6190BB*/ #666; /* border-left: none!important; */
	border-radius: 0 !important;
	outline: 0 !important;
	text-indent: 15px;
	-webkit-transition: all 0.3s ease-in-out !important;
	-moz-transition: all 0.3s ease-in-out !important;
	-o-transition: all 0.3s ease-in-out !important;
	transition: all 0.3s ease-in-out !important;
	margin: 0 !important;
	min-height: 30px !important;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

input:-webkit-autofill {
	color: /* #6190BB */ #666 !important;
	background: #fff;
}

.input-label-form:focus, .input-label-form:active {
	box-shadow: none !important;
}

	.input-label-form:active::-webkit-input-placeholder, .input-label-form:active::-moz-input-placeholder {
		color: #aaa;
	}
/*fim input text*/

/*label*/
.label-block label {
	vertical-align: middle;
	margin: 2px 2px;
	padding: 0 4px;
	height: 23px;
	display: block;
	width: 100%;
}

.input-label-form ~ label {
	/* display: inline-block; */
	position: absolute;
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	-o-transform: translateX(0);
	transform: translateX(0);
	top: 0;
	left: 0;
	padding: 11px 15px 3px !important; /* -webkit-transition: all 0.3s ease-in-out;  	-moz-transition: all 0.3s ease-in-out;    */
	overflow: hidden;
	color: #fff;
	font-weight: none;
	width: 80px !important;
	text-align: right;
	margin-left: 0 !important; /* height: 80px; */
	border: 1px solid #6896C1;
}

	.input-label-form ~ label:before {
		top: 6px; /* left: 6px; */ /* right: 5px; */ /* bottom: 6px; */ /* background: #3871A8; */
	}

	.input-label-form ~ label:after {
		/* top: 0; */ /* bottom: 0; */ /* background: #6190BB; */
	}

	.input-label-form ~ label:active:before {
		border-radius: 5px;
	}
/*fim label*/

/*button*/

button.img-button[disabled], button.img-button[disabled="disabled"] {
	color: hsl(0, 0%, 74%);
}

.button, .row-form a.openDialog {
	background: #3871A8;
	color: #fff;
	border: 1px solid #3871A8;
	padding: 5px;
	font-size: 12px;
	text-align: center;
	top: 3px;
}

.button-login:hover {
	background: #fff !important;
	color: #3871a8 !important;
}

button.btn {
	padding: 7px 12px 8px !important;
}

button:focus {
	outline: none;
}

.normal-button {
	position: relative;
	width: 100%;
	background: hsl(209, 50%, 44%);
	color: hsl(0, 100%, 100%);
	border: 1px solid hsl(209, 50%, 44%);
	padding: 5px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

	.normal-button:hover {
		background: #fff;
		color: hsl(209, 50%, 44%);
	}

	.normal-button:disabled {
		background: hsl(0, 0%, 60%);
		color: hsl(0, 100%, 100%);
		border: 1px solid hsl(0, 0%, 60%);
		opacity: 0.8;
	}
/*fim button*/

/*dropdownlist*/
.dropdown-language > span {
	background: #fff !important;
	border: 1px solid /* #6190BB*/ #666 !important;
	border-radius: 0;
}

	.dropdown-language > span > span {
		color: #444 !important;
	}

div.k-animation-container.km-popup > div {
	/* background: #FFFFFF; */ /* color: #fff; */ /* box-shadow: 0 1px 3px hsla(0, 0%, 0%, 0.33); */
}

	div.k-animation-container.km-popup > div > ul > li {
		/* background: #fff; */ /* color: #3871a8; */ /* border-radius: 0; */ /* border-bottom: 1px solid #3871a8; */ /* width: 100%; */ /* padding: 5px 5px 0 !important; */ /* border: 1px solid #fff; */
	}

	div.k-animation-container.km-popup > div > ul {
		/* border: none; */ /* background: #f00; */ /* margin: -3px; */
	}

		div.k-animation-container.km-popup > div > ul > li.k-item.k-state-selected.k-state-focused {
			/* background: hsl(209, 50%, 44%); */ /* border-left: 1px solid #fff; */ /* border-right: 1px solid #fff; */ /* color: #fff; */
		}

		div.k-animation-container.km-popup > div > ul > li.k-item.k-state-hover {
			/* background: #5389bc !important; */ /* color: #fff; */ /* border: 1px solid #fff !important; */
		}
/*fim dropdownlist*/

/*switch*/
.btn.active {
	background: #6290BC;
	color: #fff;
	text-shadow: none;
	font-weight: bold;
	box-shadow: none;
}

.btn {
	background: hsl(0, 0%, 74%); /* border: 1px solid #6190BB; */
	color: hsl(0, 0%, 39%);
	border-radius: 0 !important;
	width: 50% !important; /* transition: all ease 0.2s!important; */
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	height: 30px;
	margin: 0 !important; /* margin-right: 1px; */
	padding: 1px !important;
	text-shadow: none;
	box-shadow: none !important;
	border: none;
}

.btn-group button:hover {
	/* background: hsl(209, 16%, 90%); */ /* color: #000; */
}
/*fim switch*/

/*input number*/
span.k-widget.k-numerictextbox.red-tooltip.input-label-form {
	/* position: absolute!important; */
	background: #fff !important;
	width: 100%;
	height: 30px;
	border-radius: 0 !important;
	left: 0;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 0 !important;
}

.control-group span.k-numeric-wrap.k-state-default {
	position: absolute;
	left: 0;
	top: 0;
	box-shadow: none !important;
	border: none;
	width: 100%;
	height: 28px;
}

.control-group .k-formatted-value.k-input {
	position: absolute !important;
	left: 30%;
	width: 70%;
	border: none !important;
	border-left: 1px solid #666 !important;
	border-radius: 1px !important; /* background: hsl(0, 100%, 100%); */
	z-index: 4; /* display: none!important; */
	padding: 0 !important;
	height: 28px !important;
	margin: 0;
	text-indent: 15px;
	background: hsl(0, 100%, 100%) !important;
	min-height: 28px !important;
	opacity: 1 !important;
}

.fields-disabled .k-state-disabled {
	margin: 0 !important; /* position: absolute; */ /* top: 0; */
	width: 100%;
	border: none;
	height: 28px;
}

.fields-disabled .k-timepicker {
	border-color: hsl(0, 0%, 60%) !important;
}

.fields-disabled > .k-numerictextbox .k-select {
	display: none;
}

input.red-tooltip.input-label-form.k-input:not(.k-formatted-value):not([data-role="timepicker"]) {
	position: absolute !important;
	left: 30%;
	width: 70%;
	height: 28px !important;
	border: none !important;
	border-left: 1px solid !important;
	box-shadow: none; /* display: none!important; */
	z-index: 2;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	padding: 0 !important;
	text-indent: 15px;
	background: hsl(0, 100%, 100%) !important;
	min-height: 28px !important;
	opacity: 1 !important;
}

input.red-tooltip.input-label-form.k-input:not(.k-formatted-value):focus {
	z-index: 7;
}

.control-group span.k-numeric-wrap.k-state-default > span.k-select {
	position: absolute;
	top: 0;
	right: 0;
	height: 28px;
	border: none;
	border-left: 1px solid /* #6190BB */ #666;
	border-radius: 0;
	width: 17px;
	z-index: 10;
	margin: 0;
}

	.control-group span.k-numeric-wrap.k-state-default > span.k-select > .k-link {
		height: 50%;
		position: relative; /* left: 0; */
		border-radius: 0;
	}

		.control-group span.k-numeric-wrap.k-state-default > span.k-select > .k-link > span.k-icon {
			position: absolute;
			left: 0;
			top: 2px;
			width: 100%;
			height: 100%;
		}

input.k-formatted-value.field.k-input {
	border-color: transparent !important;
}

/*fim input number*/

/*form e outros*/
.required-label {
	font-weight: bold;
}

.label-block {
	width: 70px;
	float: left;
	clear: right;
	text-align: right;
}

.normal-row {
	/* display: block; */ /* clear: both; */
}

.center {
	text-align: center !important; /* margin-top: 0; */
}

.left {
	text-align: left;
}

.right {
	text-align: right;
}

.form-horizontal {
	/* max-width: 600px; */ /* margin-left: 30px; */ /* min-width: 380px; */ /* width: 100%; */
	margin: 0;
	height: auto;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.control-group > .controls > .bnt-group {
	height: 31px;
}

#centro-div > form {
	width: 90%;
	margin: auto;
}

#centro-div > .form-horizontal > .row-form > .control-group {
	margin: 0 !important;
}

.row-form {
	position: relative;
	height: 35px;
	width: 100%;
}

	.row-form:nth-child(4) {
		height: 35px;
	}

.normal-row.center > a {
	position: relative;
}

.row-form:last-child {
	margin: 10px 0;
}

.control-group {
	margin-bottom: 5px !important; /* overflow: hidden; */
	width: 100%; /* box-sizing: border-box; */
	max-width: 600px;
	min-width: 270px;
	min-height: 30px;
	position: relative;
}

	.control-group:last-child {
		/* margin-bottom: 0!important; */
	}

label.control-label.disable-label {
	border: 1px solid #6896c1; /* padding: 7px 0 0 7px !important; */
	margin: 0 -1px 0 0 !important;
	background: #6896c1;
	color: #fff;
}

label.control-label {
	min-width: 30% !important;
	padding: 7px 0 0 15px !important;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	text-align: left !important;
	font-weight: normal !important;
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

	label.control-label:hover {
		width: auto !important;
		padding: 7px 7px 0 15px !important;
		background: hsl(0, 100%, 100%) !important;
		box-shadow: 3px 0 3px -3px hsla(0, 0%, 0%, 0.67);
	}

.btn-group {
	background: hsl(209, 10%, 81%);
	height: 31px; /* border: 1px solid #6190BB; */ /* border-left: none; */
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.btn-group {
	width: 70%; /* position: absolute!important; */
	left: 30%;
	height: 30px;
}

span.k-dropdown.red-tooltip > span.k-dropdown-wrap {
	padding: 3px 0 4px;
}

div.row-form > span.normal-row > a.openDialog {
	color: #fff;
	font-size: small;
}

.control-group span.k-widget.k-dropdown.k-header {
	width: 70%;
	height: 30px; /* height: 36px; */
	left: 30%;
}

	.control-group span.k-widget.k-dropdown.k-header > span {
		background: #fff;
		padding: 0 0 0 5px !important;
		border-radius: 0;
		border: 1px solid /* #6190BB */ #666; /* border-left: none!important; */
		height: 30px;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
		-moz-box-sizing: border-box;
	}

.control-group > span.k-widget.k-dropdown.k-header > span > span.k-input {
	color: #3767b9;
	height: 100%; /* padding: 0; */
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}

.control-different {
	width: 75%;
	left: 25%;
	position: relative;
	height: 30px;
}

div.controls > input.input-small {
	width: 50%;
	border-radius: 0 !important;
	height: 30px !important;
	border: 1px solid /* #6190BB */ #666 !important;
	color: #3767b9 !important;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
}
/*fim form e outros*/

/*autocomplete*/
label.control-label.label-autoComplete {
	display: inline;
	width: 30%; /* font-weight: bold; */
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	background: hsl(0, 100%, 100%);
	color: hsl(209, 40%, 56%); /* padding: 7px 0 0 7px !important; */
	margin: 0 !important;
	border: 1px solid /* #6190BB */ #666;
	border-right: none;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	height: 30px;
	overflow: hidden;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.red-tooltip.autocomplete-field.input-label-form.k-input {
	width: 101%;
	border: 1px solid /* #6190BB */ #666;
	padding: 10px 0 2px 15px !important;
	text-indent: 95px;
}

div.control-group > label.control-label {
	margin: 0 !important;
	background: hsla(0, 100%, 100%, 0);
	color: #666;
	border: 1px solid #666;
	border-right: none !important;
	white-space: nowrap;
	height: 30px;
	position: absolute;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-box-sizing: border-box; /* z-index: 10; */
	overflow: hidden;
	width: 30%;
	z-index: 8;
}

.control-group > span.k-dropdown.red-tooltip, .control-group .k-dropdown.k-header {
	width: 219px; /* height: 80px; */
}

input.red-tooltip.autocomplete-field {
	height: 30px !important;
	border: 1px solid hsl(209, 40%, 56%);
	border-right: none;
	margin: 0;
	padding: 0;
	text-indent: 15px;
	width: calc(100% - 29px) !important;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	border-radius: 0;
	color: hsl(209, 40%, 56%);
	z-index: 2;
	left: 0;
}

span.k-widget.k-autocomplete.red-tooltip.autocomplete-field {
	width: 70%;
	margin: 0;
	padding: 0; /* text-indent: 80px; */
	box-shadow: none;
	border: none;
	left: 30%;
	background: hsla(0, 100%, 100%, 0);
}

div.control-group > a.openDialog {
	position: absolute;
	top: 0;
	right: 0; /* height: 30px; */ /* background: #000; */
}

a.openDialog {
	position: absolute;
	right: 0;
	top: 0;
	width: 30px;
	height: 30px;
	color: hsl(209, 50%, 44%);
}

i {
	pointer-events: none;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
}

a.openDialog:hover .iconOpen-book {
	background: #6290BC;
}

a.openDialog + span {
	position: absolute;
	top: 6px;
	right: 40px;
	color: hsl(0, 39%, 55%) !important;
}

.fields-disabled > .controls > .openDialog + span {
	right: 5px !important;
}

span.k-autocomplete.red-tooltip.autocomplete-field > input.red-tooltip.autocomplete-field:hover a.openDialog + span {
	display: none;
}
/*fim auto complete*/

/*validação form*/
.validation-error input.red-tooltip:not([data-role="datepicker"]), .validation-error textarea, .validation-error .k-datepicker {
	border: 1px solid hsl(0, 39%, 55%) !important;
	color: hsl(0, 39%, 55%);
}

.validation-error label.control-label {
	background-color: hsl(0, 39%, 55%) !important;
	border: 1px solid hsl(0, 39%, 55%) !important;
	color: hsl(0, 100%, 100%) !important;
	border-right: none !important;
}

.validation-error .required-input {
	color: #fff;
}

.validation-error button {
	background: hsl(0, 28%, 76%) !important;
}

.validation-error .bool-group {
	border-color: #B95F5F;
}

.validation-error .k-select {
	border-color: #B95F5F !important;
}

.required-input {
	position: absolute;
	left: 5px;
	top: 5px;
	z-index: 9;
	font-size: 20px;
	color: #6190BB;
	font-weight: bold;
}

.group-field .required-input {
	/* top: 19px; */ /* left: 0; */
}

.validation-error .k-dropdown-wrap {
	border: 1px solid hsl(0, 39%, 55%) !important;
}
/*fim validação form*/

/*date simples*/
.k-widget.k-datepicker.k-header.red-tooltip, .k-widget.k-datetimepicker.k-header.red-tooltip {
	width: 70%;
	left: 30%;
	width: -moz-calc(70% + 1px);
	left: -moz-calc(30% - 1px);
	height: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	border: 1px solid /* #6190BB */ #666;
	border-radius: 0;
}

.k-picker-wrap {
	/* border-radius: 0; */ /* box-sizing: border-box; */
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box; /* border: none; */ /* background: hsla(0, 100%, 100%, 0) !important; */ /* position: relative; */ /* top: 0; */ /* left: -1px; */ /* width: calc(100% + 1px); */ /* height: 30px; */
}

	.k-picker-wrap.k-state-focused {
		background-color: rgb(255, 255, 255);
	}

	.k-picker-wrap > .k-select {
		/* border-radius: 0 !important; */ /* position: absolute !important; */ /* left: 0; */ /* border-right: 1px solid; */ /* border-color: hsl(209, 40%, 56%) !important; */
	}

.fields-disabled .k-select {
	border-color: hsl(0, 0%, 60%) !important;
}

.k-timepicker .k-select {
	border-style: none !important;
}

.k-datepicker input.red-tooltip {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	text-indent: 15px;
	height: 28px !important;
}
/*fim date simples*/

/*date duplo*/

.k-widget.k-datepicker.k-header {
	/* border-radius: 0; */ /* border: 1px solid #6290BC; */ /* border-top: none; */ /* height: 30px; */
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box; /* box-sizing: border-box; */ /* flex: 1; */ /* background: hsla(0, 100%, 100%, 0); */ /* padding: 0; */
}

	.k-widget.k-datepicker.k-header:nth-child(3) {
		/* margin-left: 0; */ /* top: 0; */ /* height: 24px !important; */
	}

.pseudo-control {
	display: flex;
	width: 70%;
	height: 30px;
	left: 30%;
	position: relative;
	border-bottom: 1px solid #666;
	border-right: 1px solid #666;
	border-left: 1px solid #666;
}

	.pseudo-control .k-datepicker {
		width: 100% !important;
		height: 28px;
		-ms-flex: 1 !important;
		flex: 1 !important;
		left: 0 !important;
		border-top: 1px solid #666 !important;
	}

		.pseudo-control .k-datepicker .k-picker-wrap {
			/* height: inherit; */
		}

	.pseudo-control > .k-datepicker input {
		left: 0% !important;
		text-indent: 15px;
		height: inherit;
	}

	.pseudo-control span.k-widget.k-datepicker:nth-child(3) {
		/* height: 30px !important; */
		margin-left: -1px;
	}

#data_field > span.k-widget.k-datepicker.k-header {
	height: 24px !important;
	left: 0;
}

	#data_field > span.k-widget.k-datepicker.k-header:first-child {
		border-right: none;
	}

#data_field input {
	/* text-indent: 0; */
}

#data_field .k-i-calendar {
	background-position: -32px -177px; /* position: absolute; */ /* left: 3px; */ /* top: 3px; */
}

.inputs-conditions .k-datepicker {
	left: 0 !important;
	position: relative;
	height: 23px !important;
}

	.inputs-conditions .k-datepicker input {
		text-indent: 22px;
		color: hsl(0, 0%, 19%);
	}

	.inputs-conditions .k-datepicker .k-i-calendar {
		position: absolute;
		left: 3px;
		top: 2px;
	}
/*fim date duplo*/

/*campos desabilitados*/
.fields-disabled :not(label) {
	/* pointer-events: none; */
}

.fields-disabled input:not([data-role="datepicker"]):not(.k-formatted-value):not([data-role="timepicker"]), .fields-disabled label, .fields-disabled input:focus, .fields-disabled .k-numerictextbox, .fields-disabled textarea {
	border: 1px solid #999999 !important; /* border-bottom: 1px solid #999; */
	color: hsl(0, 0%, 60%) !important;
	cursor: default;
	box-shadow: none !important; /* resize: none; */
}

.fields-disabled label {
	border-right: none !important;
}

.fields-disabled span:not(.k-numeric-wrap) {
	color: hsl(0, 0%, 60%) !important;
}

.fields-disabled .bool {
	background: hsl(0, 0%, 60%) !important;
}

.fields-disabled .btn-group {
	border: 1px solid hsl(0, 0%, 60%);
}

.fields-disabled .iconOpen-book {
	right: 120%;
	opacity: 0;
}

.fields-disabled .k-state-disabled:not(.k-numeric-wrap):not(.required-input):not(.k-picker-wrap), .fields-disabled .k-widget.k-datepicker.k-header {
	border: 1px solid #999999 !important;
	opacity: 1;
}

.fields-disabled .k-state-disabled span {
	color: #999999 !important;
}
/*fim campos desabilitados*/

.pseudo-field {
	position: relative;
	left: 30%;
	width: 70%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: flex;
}

.next-previous {
	height: 30px;
	border: 1px solid hsl(209, 40%, 56%);
	background: hsla(0, 100%, 100%, 0);
	-ms-flex: 1;
	flex: 1;
	font-size: 18px !important;
	color: hsl(209, 40%, 56%);
}

	.next-previous:hover {
		background: hsl(209, 40%, 56%);
		color: #fff;
	}

	.next-previous:disabled {
		border-color: hsl(0, 0%, 60%);
		color: hsl(0, 0%, 60%);
	}

		.next-previous:disabled:hover {
			background: hsl(0, 0%, 60%);
			color: #fff;
		}

.controls {
	/* position: relative; */ /* left: 30%; */ /* width: 70%; */
}

	.controls input:not(.red-tooltip) {
		width: 70%;
		left: 30%;
		position: relative;
	}

.bool-group {
	position: relative;
	width: 70%;
	height: 30px;
	left: 30%;
	border: 1px solid #666;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
}

input[value="True"] ~ .bool[value="True"] {
	left: 0;
	z-index: 2;
}

input[value="True"] ~ .bool[value="False"] {
	left: 100%;
}

input[value="False"] ~ .bool[value="True"] {
	left: -100%;
}

input[value="False"] ~ .bool[value="False"] {
	left: 0;
}

.bool {
	position: absolute;
	width: 100%;
	height: 28px;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

	.bool[value="True"], .bool[value="False"] {
		-webkit-transition: all 0.3s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all 0.3s ease;
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
		color: #444;
		border: none;
		background: #97C0E3;
	}

		.bool[value="True"]:before {
			position: absolute;
			top: 0;
			right: 0;
			width: 20%;
			height: 100%;
			background: hsl(0, 0%, 96%);
			content: "";
			box-shadow: 0 0 4px hsl(0, 0%, 0%);
		}

		.bool[value="False"]:before {
			position: absolute;
			top: 0;
			left: 0;
			width: 20%;
			height: 100%;
			background: hsl(0, 0%, 96%);
			content: "";
			box-shadow: 0 0 4px hsla(0, 0%, 0%, 1);
		}

	.bool[value="True"] {
		text-shadow: 0 1px hsla(0, 0%, 0%, 0.2);
	}

/*bop search popup*/
.SetSearchPopUpBop input {
	-ms-flex: 1;
	flex: 1;
	top: -1px;
	position: relative; /* height: 30px!important; */
}

.SetSearchPopUpBop div {
	display: flex;
}

.SetSearchPopUpBop i {
	position: absolute;
	right: 5px;
	top: -1px;
}

.search-conditions-inputs .k-picker-wrap > .k-select {
	height: 23px;
}

#bop_search_div {
	top: 0;
	position: relative;
	height: 24px;
}

/*time picker*/
.k-timepicker input.red-tooltip {
	position: absolute !important;
	left: 23px;
	top: 0;
	border: none !important;
	width: calc(100% - 22px) !important;
	min-height: 28px !important;
	height: 28px !important;
}

.k-timepicker {
	background: hsla(0, 100%, 100%, 0) !important;
}

	.k-timepicker .k-i-clock {
		left: 3px;
		top: 5px;
		position: absolute;
	}

#advancedSearchPopup .k-datepicker input {
	text-indent: 30px;
	left: 0;
}

#advancedSearchPopup .k-datepicker {
	height: 29px !important;
}

.fields-disabled input.red-tooltip.autocomplete-field {
	width: 100% !important;
}

.k-grid .k-dropdown.k-header {
	width: 60px;
}

.red-tooltip > .k-picker-wrap {
	height: 28px;
}

/*-------------------------------------------------------*/

.group-field {
	position: relative;
	max-width: 600px; /* height: 30px; */
	margin-bottom: 5px;
	display: flex;
}

.group-field-select {
	height: 40px;
}

.boolean-button {
	width: 100%;
	height: 100%;
	position: absolute;
	cursor: pointer;
	display: flex;
	justify-content: center;
	align-items: center;
	background: #A1B9CF;
}

.boolean-button-true {
	left: 0;
}

	.boolean-button-true:after, .boolean-button-false:after {
		content: "";
		position: absolute;
		width: 29%;
		height: 100%;
		background-color: #fff;
		top: 0;
	}

.boolean-button-false:after {
	left: 0;
	box-shadow: 1px 0 3px rgba(0, 0, 0, 0.5);
}

.boolean-button-true:after {
	right: 0;
	box-shadow: -1px 0 3px rgba(0, 0, 0, 0.5);
}

.boolean-button-false {
	left: 100%;
}

[value="False"] ~ .boolean-button-false {
	left: 0;
}

[value="False"] ~ .boolean-button-true {
	left: -100%;
}

.field-disabled {
	opacity: 0.7;
	pointer-events: none;
}

	.field-disabled .field[required]:valid {
		border-bottom-style: dashed;
		border-bottom-color: #757575 !important;
	}

.group-field-disabled {
	pointer-events: none;
}

.z-index-over {
	/* z-index: 11; */
}

.search-values > .field {
	position: absolute;
	left: 0;
	top: 15px;
	max-width: initial;
	height: 25px;
	z-index: 1;
	background: rgba(231, 231, 231, 0);
	padding: 5px 5px 0 5px;
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: #9B9B9B;
	font-size: 17px;
	color: #444;
	text-indent: 5px;
}

#SetBopOnSearch___tbx_bop_search_autoCompleteFull {
	width: 100%;
	left: 0;
}

.field, .group-field > .k-numerictextbox, .field-dropdownlist, .field-masked {
	position: relative;
	left: 30%;
	top: 0;
	width: 70%;
	height: 30px;
	max-width: 70%;
	border: 1px solid;
	border-color: /* #779CC1 */ #666;
	padding: 0;
	font-size: 14px;
	text-indent: 10px;
	border-radius: 0 2px 2px 0;
	background-color: #fff;
	color: #444;
}

textarea.field {
	min-height: 60px;
	border-bottom-left-radius: 3px;
	padding: 5px;
	max-height: 150px;
	transition-property: box-shadow, color;
}

.group-field.field-disabled .info-component {
	color: #0e67bf;
	pointer-events: all;
}

.group-field.field-disabled .info-box {
	background-color: #0e67bf;
}

.field-masked {
	height: 30px !important;
}

.field-dropdownlist {
	background-color: transparent;
	border-width: 1px;
	border-color: /* #6190BB */ #666;
}

	.field-dropdownlist > .k-dropdown-wrap, .field-dropdownlist > .k-dropdown-wrap > .k-input {
		background-color: transparent;
		height: 100%;
		border: none;
		min-height: initial;
	}

		.field-dropdownlist > .k-dropdown-wrap > .k-input {
			line-height: 25px;
		}

		.field-dropdownlist > .k-dropdown-wrap > .k-select {
		}

.group-field-boolean {
	overflow: hidden;
	background-color: #DBDBDB;
	display: flex;
}

.group-field-dates {
	display: flex;
	text-indent: 0;
}

	.group-field-dates .k-datepicker {
		-ms-flex: 1;
		flex: 1;
	}

	.group-field-dates .k-datepicker, .group-field-dates .k-picker-wrap, .field-datepicker, .group-field .k-select {
		height: 100% !important;
		min-height: initial;
	}

	.group-field-dates .k-select, .field-dropdownlist > .k-dropdown-wrap > .k-select {
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.group-field-dates .k-picker-wrap, .field-datepicker {
		background-color: transparent;
		border: none;
	}

input.field-datepicker {
	text-indent: 10px !important;
	left: 0;
	margin-left: 0 !important;
}

.field-disabled .field, .field-disabled .label-field, .field-disabled .field-dropdownlist, .field-disabled .field-numeric.k-numerictextbox, .field-disabled .field-masked {
	border-style: dashed !important; /* border-color: #ababab; */
}

.field-disabled .label-field {
	border-right-width: 0;
}

.field-disabled .boolean-button {
	background: #C7D7E5;
}

.group-field-disabled .field {
	color: rgba(68, 68, 68, 0.6) !important;
	border-color: rgba(117, 117, 117, 0.6);
	border-style: dotted;
}

.field[required]:valid {
	/* border-color: rgba(84, 148, 196, 0.6)!important; */
}

textarea ~ span ~ .field-message {
	padding-top: 30px;
}

.field-invalid .field[required], .field-invalid .label-field, .field-invalid .required-input, .field-invalid .group-field-dates, .field-invalid .field-numeric {
	border-color: #C24747 !important;
	color: #C24747 !important;
}

.field-invalid .field-message {
	color: #c24747;
	padding-bottom: 25px;
	width: 30%;
	margin-top: 10px;
}

.field-invalid .field-highlight {
	background: #c24747;
}

.input-validation-error:focus + .field-message {
	display: none;
}

.field:focus, .field:hover {
	color: #000;
	box-shadow: 0 2px 6px rgba(0,0,0,0.2),0 2px 3px rgba(0,0,0,0.05);
}

.field-highlight {
	position: absolute;
	bottom: 0;
	left: 0;
	height: 2px;
	width: 100%;
	background: #5494C4;
	z-index: 3;
	-moz-transform: scaleX(0);
	-ms-transform: scaleX(0);
	-o-transform: scaleX(0);
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
}

.field-message {
	position: relative;
	font-size: 11px;
	padding: 0 0 0 5px;
	color: #A9A9B1;
	bottom: -28px;
	right: 40px;
	z-index: 50;
	background: transparent;
	margin: 5px 0 5px 0;
	padding-bottom: 20px;
}

.field-open-window .field-message {
	right: 60px;
}

.field:focus ~ .field-highlight {
	-moz-transform: scaleX(1);
	-ms-transform: scaleX(1);
	-o-transform: scaleX(1);
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
	-moz-transform: scale(0);
	-ms-transform: scale(0);
	-o-transform: scale(0);
	-webkit-transform: scale(0);
	transform: scale(0);
}

.field:after {
	/* content: "asdf"; */
	position: absolute;
	left: 50%;
	height: 2px;
	width: 0;
	-moz-animation: field-focus 0.5s ease;
	-o-animation: field-focus 0.5s ease;
	-webkit-animation: field-focus 0.5s ease;
	animation: field-focus 0.5s ease;
}

.field:focus:after {
	-moz-animation: field-focus 0.5s ease;
	-o-animation: field-focus 0.5s ease;
	-webkit-animation: field-focus 0.5s ease;
	animation: field-focus 0.5s ease;
}

.label-field {
	position: absolute;
	top: 0;
	left: 0;
	min-width: 30%;
	width: 30%;
	height: 30px;
	border: 1px solid /* #6190BB */ #666;
	border-right: none;
	font-size: 13px;
	color: /* #6190BB */ #666;
	white-space: pre;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
	z-index: 2;
	padding: 7px 5px 0 5px;
	text-indent: 10px;
	border-radius: 2px 0 0 2px;
}

	.label-field:hover {
		width: auto;
		background: #fff;
		z-index: 8;
		box-shadow: 3px 0 3px -3px hsla(0,0%,0%,.67);
	}

.label-border-bottom {
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: #757575;
	color: #444;
}

.group-field-disabled .label-field {
	color: rgba(117, 117, 117, 0.6) !important;
}

/*.field:valid ~ .label-field, */ .s-list ~ .label-field {
	/* height: 15px !important; */ /* top: 2px !important; */ /* padding: 1px 0 0 5px; */
	font-size: 12px !important;
	color: #696969; /* text-indent: 0; */
}

.s-list ~ .label-field {
	color: #9B9B9B;
	border: none;
	border-style: none !important;
	height: 15px !important;
	top: 2px !important;
	padding: 1px 0 0 5px;
}

.field:focus ~ .label-field {
	color: #666;
}

.field:valid ~ .label-field:after {
	/* content: ":"; */
}

.group-field .k-numeric-wrap {
	/* position: absolute; */
}

.group-field > .k-numerictextbox input, .group-field .k-numeric-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #FFF !important;
	border-radius: 0 2px 2px 0;
	border: none;
}

.group-field > .k-numerictextbox .k-select {
	/* height: 100%; */
	min-height: inherit;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
}

.group-field .k-link {
	display: flex;
	justify-content: center;
}

.group-field > .k-numerictextbox .k-link:first-child {
	align-items: flex-end;
}

.group-field .k-link:last-child {
	align-items: flex-start;
}

/*Softin AutoComplete*/
.s-autocomplete-span {
	position: absolute;
	top: 30px;
	left: 0;
	width: 100%;
	color: #fff;
}

.s-autocomplete-full {
	padding-right: 30px;
}

.s-autocomplete-suggestion-opened {
	-moz-transform: scaleY(1) !important;
	-ms-transform: scaleY(1) !important;
	-o-transform: scaleY(1) !important;
	-webkit-transform: scaleY(1) !important;
	transform: scaleY(1) !important;
}

.s-autocomplete-suggestion {
	position: relative;
	top: 0;
	width: 100%; /* max-height: 200px; */ /* overflow-y: auto; */ /* background: #cacaca; */ /* box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23); */
	z-index: 20;
}

.s-autocomplete-option, .s-autocomplete-option-disabled {
	padding: 5px;
	background: #fff;
	color: #2A2A2A;
	list-style: none;
	padding: 8px;
	cursor: pointer;
	overflow: hidden;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
	display: flex;
	justify-content: space-between;
}

.s-autocomplete-option-disabled {
	background: #767676;
	color: #fff;
	border-radius: 3px 2px 0 0;
}

.s-autocomplete-option-addictional {
	color: #848484;
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.s-autocomplete-option-text {
	/* flex: 1; */
}

.s-autocomplete-option:not(:last-child) {
	border-bottom: 1px solid #BCBCBC;
}

.s-autocomplete-option:last-child {
	border-radius: 0 0 3px 3px;
}

.s-autocomplete-option:first-child {
	border-radius: 3px 3px 0 0;
}

.s-autocomplete-option-selected {
	background: #E0E0E0;
}

.s-autocomplete-option-inactive {
	color: #8D8D8D;
}

.s-autocomplete-book {
	position: absolute;
	top: -25px;
	right: 5px;
	height: 23px;
	width: 25px; /* background: #989898; */
	z-index: 9;
	cursor: pointer;
}

	.s-autocomplete-book > i:before {
		font-size: 20px;
		color: hsl(0, 0%, 46%);
	}

	.s-autocomplete-book:hover > i:before {
		color: #4F4F4F;
	}

.s-autocomplete-panel {
	position: fixed; /* right: 0; */ /* top: 5px; */ /* height: 350px; */
	margin-top: 5px;
	width: 600px;
	background: hsl(0, 0%, 93%);
	-webkit-transition-property: transform;
	-webkit-transform-origin: 100% 0%;
	-webkit-transform: scale(0);
	-moz-transition-property: transform;
	-moz-transform-origin: 100% 0%;
	-moz-transform: scale(0);
	-o-transition-property: transform;
	transition-property: transform;
	-ms-transform-origin: 100% 0%;
	-o-transform-origin: 100% 0%;
	transform-origin: 100% 0%;
	-ms-transform: scale(0);
	-o-transform: scale(0);
	transform: scale(0);
	z-index: 90;
	border-radius: 4px;
}

.s-autocomplete-panel-block {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 300;
}

.s-autocomplete-panel-block-show {
	position: fixed;
}

.s-autocomplete-panel-up {
	top: initial;
	bottom: 35px;
	-moz-transform-origin: 100% 100%;
	-ms-transform-origin: 100% 100%;
	-o-transform-origin: 100% 100%;
	-webkit-transform-origin: 100% 100%;
	transform-origin: 100% 100%;
}

.s-autocomplete-panel-opened {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}

.s-autocomplete-panel-content {
	opacity: 0;
	height: 100%; /* overflow: hidden; */
}

.s-autocomplete-panel-opened .s-autocomplete-panel-content {
	opacity: 1;
	-moz-transition-delay: 300ms;
	-o-transition-delay: 300ms;
	-webkit-transition-delay: 300ms;
	transition-delay: 300ms;
}



/*Softin List*/
.s-list-content {
	position: relative;
	left: 0;
	top: 15px;
	width: 100%;
	height: 26px; /* padding: 5px; */
	font-size: 17px;
	z-index: 5;
	overflow: visible;
	border-width: 0 0 1px 0;
	border-style: solid;
	border-color: #9B9B9B;
}

.group-field .s-list-content {
	height: 30px;
	margin-bottom: 14px;
}

.field-disabled .s-list-content {
	border-style: dashed;
}

.s-list-selected {
	position: inherit;
	top: 0;
	left: 0;
	height: 100%;
	width: 90%;
	padding: 5px;
	cursor: pointer;
	color: #444;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}

.s-list-icon {
	position: absolute;
	right: 10px;
	top: 0;
}

	.s-list-icon:before {
		color: #757575;
		font-size: 20px;
	}

.s-list-content-options {
	position: absolute; /* width: 100%; */
	display: none;
	overflow: auto;
	background: #fff;
	-moz-transition-property: none !important;
	-o-transition-property: none !important;
	-webkit-transition-property: none !important;
	transition-property: none !important;
	max-height: 130px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	border-radius: 3px;
	z-index: 94;
}

.s-list-content-active {
	/* border-radius: 3px; */ /* overflow-y: auto; */ /* background: #fff; */
	z-index: 100;
}

	.s-list-content-active .s-list-content-options {
		/* visibility: visible; */ /* opacity: 1; */ /* transition-property: top, visible, opacity!important; */
	}

.s-list-options {
	padding: 5px;
	cursor: pointer;
	position: relative;
	min-height: 26px;
	color: #444;
	height: auto;
}

	.s-list-options:hover, .s-list-options-hover {
		background: #C8C8C8;
	}

.s-list-options-selected {
	border-bottom: 1px solid rgba(117, 117, 117, 0.5);
}

.s-list-content-active > .s-list-options:hover {
	background: rgba(0, 0, 0, 0.2);
}

/*--------------------------------------*/
#search .s-list-content {
	left: 0;
	width: 100%;
	top: 0;
	height: 23px;
	font-size: inherit;
	border-color: inherit;
}

.s-autocomplete-fields-conditions {
	display: flex;
	position: relative;
	width: 100%;
	height: 26px;
}

	.s-autocomplete-fields-conditions > span {
		-ms-flex: 1;
		flex: 1;
		position: relative;
	}

	.s-autocomplete-fields-conditions .s-list-content {
		left: 0;
		top: 0;
		width: 100%;
	}

.s-autocomplete-fields-values {
	display: flex;
	position: relative;
	width: 100%;
	height: 26px;
}

	.s-autocomplete-fields-values > input, .s-autocomplete-fields-date1, .s-autocomplete-fields-date2 {
		-ms-flex: 1;
		flex: 1;
		border-style: solid;
		border-width: 0 0 1px 0;
		border-color: #757575;
	}

		.s-autocomplete-fields-date1, .s-autocomplete-fields-date1 > span, .s-autocomplete-fields-date2, .s-autocomplete-fields-date2 > span {
			height: inherit;
			background: rgba(0, 0, 0, 0) !important;
		}

			.s-autocomplete-fields-date1 .k-select, .s-autocomplete-fields-date2 .k-select {
				display: flex;
				align-items: center;
				justify-content: center;
			}

	.s-autocomplete-fields-values > div {
		-ms-flex: 1;
		flex: 1;
		left: 0;
		top: 0;
		width: 100%;
	}

	.s-autocomplete-fields-values > input:nth-child(2) {
		border-left-width: 1px;
	}

.s-autocomplete-buttons-book {
	display: flex; /* height: 30px; */
	padding: 3px;
}

.s-autocomplete-grid > .k-grid {
	max-height: 220px;
	overflow: scroll;
}

.s-autocomplete-buttons-book > button {
	-ms-flex: 1;
	flex: 1;
}
/*================= Buttons ========================*/
.flat-button {
	position: relative;
	border: none;
	background: none;
	color: #3D7099;
	text-transform: uppercase;
	font-family: Hanken, Arial;
	font-weight: 700;
	border-radius: 4px;
	cursor: pointer;
	overflow: hidden;
	padding: 8px 20px;
}

	.flat-button:disabled {
		opacity: 0.5;
	}

	.flat-button:hover {
		background: rgba(61, 112, 153, 0.2);
	}

	.flat-button:focus {
		background: rgba(61, 112, 153, 0.2);
	}

.button-green {
	color: #3D993E;
}

	.button-green:hover {
		background: rgba(61, 153, 62, 0.2);
	}
/*Flap*/
.flap-buttons {
	display: flex;
	max-width: 600px;
	margin-bottom: 5px;
}

.flap-button {
	/* flex: 1; */
	height: 35px;
	border: 1px solid; /* box-shadow: 0 2px 3px rgba(0, 0, 0, 0.4), 0 -1px 1px rgba(0, 0, 0, 0.15); */ /* border-radius: 3px; */
	cursor: pointer;
	color: #4191D3;
	text-transform: uppercase;
	display: flex;
	justify-content: space-around;
	font-weight: 700;
	align-items: center;
	background: #FFF;
	padding-right: 10px;
}

	.flap-button:hover {
		background: rgba(108, 151, 178, 0.15);
	}

.flap-button-add:hover {
	/* background: #2A9B65; */
}

.flap-button-new {
	/* background: #FFFFFF; */ /* color: #4191D3; */
}

.flap-button-add {
	/* background: hsl(157, 40%, 49%); */
}

	.flap-button-add > i:before {
		/* color: #fff; */
	}

.flap-button:not(:last-child) {
	margin-right: 5px;
}

.flap-disabled .flap-button {
	opacity: 0.5;
	pointer-events: none;
}

.flap-button > div {
	/* width: 104px; */
}

.flap-update {
	display: none;
}

.flap-button-edit > .flap-update {
	display: initial;
}

.flap-button-edit > .flap-add {
	display: none;
}

.flap-button > i {
	width: 40px;
	font-size: 23px;
}

.flap-grid-trash-button > i:before {
	font-size: 20px;
}

.k-grid-flap-trash-button {
	min-width: initial !important;
	height: 30px;
	width: 50px;
}

.flap-disabled .k-grid-flap-trash-button {
	opacity: 0.7;
	box-shadow: none;
	pointer-events: none;
}


.list-busy {
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.list-busy-text {
	color: #8B8B8B;
	margin-bottom: 5%;
}

.list-busy img {
	height: 135px;
}


.bn {
	background-color: transparent;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	display: flex;
	justify-content: space-around;
	padding: 10px 20px;
	position: relative;
	color: #438acf;
	font-size: 26px;
}

	.bn:disabled {
		opacity: 0.6;
		cursor: default;
	}

.bn-flat:disabled, .bn-raise:disabled {
	pointer-events: none;
}

.bn:disabled:hover {
	background-color: initial;
	color: rgba(0,0,0,0.25);
}

.bn-icon {
	border-radius: 100%;
	width: 45px;
	height: 45px;
	padding: 0;
	justify-content: center;
	align-items: center;
}

.bn-flat {
	/* color: #537CA3; */
	-moz-transition-duration: 200ms !important;
	-o-transition-duration: 200ms !important;
	-webkit-transition-duration: 200ms !important;
	transition-duration: 200ms !important;
}

	/*.bn-icon > i, .bn-flat > i, .bn-raise > i {
	font-size: 20px;
}*/

	.bn-flat > i, .bn-raise > i {
		margin-right: 10px;
		margin-left: -5px;
	}

.bn-raise {
	background-color: #6497C8;
	box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24);
	color: #fff;
}

.bn.bn-raise:hover {
	background-color: #438ACF;
}

.bn-flat, .bn-raise {
	font-size: 18px;
	overflow: hidden;
}

.bn-title {
	width: auto;
	height: auto;
	position: absolute;
	top: 100%;
	left: 0;
	text-align: center;
	background: rgba(115, 115, 115, 0.93);
	color: #FFF;
	font-size: 12px;
	opacity: 0;
	padding: 5px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
	visibility: hidden;
	z-index: 900;
	white-space: pre;
	border-radius: 2px 2px 20px 20px;
}

.bn:hover {
	background: rgba(108, 151, 178, 0.15);
	opacity: 1;
}

.bn-icon:hover > .bn-title {
	top: 115%;
	opacity: 1;
	visibility: visible;
	border-radius: 2px;
}

.bn-green {
	color: #43894A;
}

	.bn-green:hover {
		background-color: rgba(75, 158, 83, 0.15);
	}

.bn-raise.bn-green {
	background-color: #58965E;
	color: #fff;
}

.bn-red {
	color: #C24747;
}

	.bn-red:hover {
		background-color: rgba(194, 71, 71, 0.15);
	}

.bn-raise.bn-red {
	background-color: #BA5959;
	color: #fff;
}

	.bn-raise.bn-red:hover {
		background-color: #C24747;
	}

.k-header.k-state-focused {
	box-shadow: none !important;
}

.k-grid tbody .k-button, .k-ie8 .k-grid tbody button.k-button {
	padding: 5px;
}

.k-grid .k-button {
	margin: 0;
}

.k-grid-header th.k-header > .k-link {
	font-size: .929em;
	padding: 0px 9px;
	overflow: hidden;
	white-space: pre-line;
	text-overflow: initial;
}

.k-grid td {
	text-overflow: initial;
}

#legendaPermission > div.transition.bn-title {
	left: -25px;
}

.textarea-see-more {
	color: #438ACF;
	position: relative;
	bottom: 20px;
	text-align: center;
	cursor: pointer;
	padding-right: 2px;
	max-width: 600px;
	display: flex;
	justify-content: flex-end;
	top: -18px;
}

	.textarea-see-more i {
		background: #fff;
	}

.label-field.transition {
	background: #fff;
	pointer-events: all;
}

span.k-dropdown-wrap.k-state-default {
	background: #fff;
}


#history .textarea-see-more {
	max-width: 775px;
}

#Customer > div.content-columns > div.column > div.control-group > label.control-label {
	color: #666 !important;
	border-color: #666 !important;
	border-style: dashed !important;
	border-right-width: 0px !important;
}

.blockCustomer {
	flex: 20 !important;
	text-indent: 8px;
	border: 1px solid #666;
	border-right: none;
}

.next-previous:disabled {
	border-style: dashed;
	border-width: 1px !important;
	pointer-events: none !important;
	opacity: 1 !important;
	color: #444;
	border-color: #90b1cf;
}

.link-open-window {
	background-color: hsla(208, 100%, 100%, 0);
}

.control-group > .controls > textarea {
	border: 1px solid #666;
}

td a i {
	color: #000 !important;
}

.info-component {
	position: absolute;
	color: #438acf;
	text-align: right;
	left: 609px;
	top: 4px;
	display: flex;
	cursor: pointer;
}

	.info-component i {
		font-size: 22px;
	}

.info-box {
	position: relative;
	border: 1px solid;
	padding: 10px;
	left: 10px;
	background: #438acf;
	color: #fff;
	display: none;
	border-radius: 5px;
	width: auto;
	text-align: left;
	font-size: 13px;
	min-width: 150px;
	z-index: 99;
}

	.info-box span {
		font-weight: bold;
	}


.multiselect-group label {
	width: 180px;
	border: 1px solid #666;
	border-right: none;
	padding: 7px 5px 0 5px;
	max-height: 35px;
	border: 1px solid /* #6190BB */ #666;
	border-right: none;
	font-size: 13px;
	color: /* #6190BB */ #666;
	white-space: pre;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
	z-index: 2;
	padding: 7px 5px 0 5px;
	text-indent: 10px;
	border-radius: 2px 0 0 2px;
}

	.multiselect-group label.label-field {
		position: initial;
		min-width: 0%;
		height: 34px;
	}

.k-widget.k-multiselect.k-header.field-multiselect.input-validation-error {
	height: 34px;
}

.k-widget.k-multiselect.k-header.field-multiselect.input-validation-error {
	height: 38px;
}

.group-field.multiselected {
	max-width: 100% !important;
	display: block;
}

.multiselect-group > div {
	display: flex;
}

.multiselect-group .field-message {
	/* left: -221px; */
	right: 218px;
}

.multiselect-group label.label-field:hover {
	width: 180px;
}

.k-widget.k-multiselect.k-header.field-multiselect {
	width: 420px !important;
	border-color: #666 !important;
	position: initial;
	top: 0px;
	font-size: 14px;
	text-indent: 10px;
	background-color: rgb(255, 255, 255);
	color: rgb(68, 68, 68);
	border-width: 1px;
	border-style: solid;
	border-image: initial;
	border-color: rgb(102, 102, 102);
	padding: 0px;
	border-radius: 0px 2px 2px 0px;
	border-color: #666 !important;
}

.form-title {
	width: 97.5%;
	font-size: 20pt;
	font-family: arial;
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	margin-bottom: 5px;
	border-radius: 3px;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	border-bottom-right-radius: 3px;
	border-bottom-left-radius: 3px;
	background-color: #d9edf7;
	color: #31708f;
}

.k-header.k-with-icon > .k-link {
	margin: auto !important;
}

span.number-with-combo-number {
    width: 40% !important; 
}

span.number-with-combo-text{
    width: 30% !important;
}
#waiting, .menuWaiting {
	position: fixed;
	top: 0px;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0);
	z-index: 2000;
	padding: 0px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-user-select: none;
}

.menuWaiting {
	position: absolute;
	width: 17px;
	height: 10%;
	right: 20px;
	top: 13px;
}

.noEvents {
	pointer-events: none;
}

.k-loading-image {
	background: none;
}

.spinner {
	animation: mozRotator 2s ease infinite;
	-webkit-animation: chRotator 2s ease infinite;
}


@keyframes mozRotator {
	0% {
		transform: rotate(0deg);
	}

	50% {
		transform: rotate(570deg);
	}

	100% {
		transform: rotate(720deg);
	}
}

@-webkit-keyframes chRotator {
	0% {
		-webkit-transform: rotate(0deg);
	}

	50% {
		-webkit-transform: rotate(570deg);
	}

	100% {
		-webkit-transform: rotate(720deg);
	}
}

.path {
	stroke-dasharray: 187;
	stroke-dashoffset: 0;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	animation: dash 2s ease infinite, colors 5.6s ease-in-out infinite;
	-webkit-animation: dash 2s ease infinite, colors 5.6s ease-in-out infinite;
}

.menuPath {
	stroke-dasharray: 187;
	stroke-dashoffset: 0;
	-webkit-transform-origin: center;
	-ms-transform-origin: center;
	transform-origin: center;
	animation: dash 2s ease infinite, menuLoad 5.6s ease-in-out infinite;
	-webkit-animation: dash 2s ease infinite, menuLoad 5.6s ease-in-out infinite;
}

@-webkit-keyframes menuLoad {
	0% {
		stroke: #DE3E35;
	}

	75% {
		stroke: #F7C223;
	}

	100% {
		stroke: #1B9A59;
	}
}

@keyframes menuLoad {
	0% {
		stroke: #DE3E35;
	}

	75% {
		stroke: #F7C223;
	}

	100% {
		stroke: #1B9A59;
	}
}


@keyframes colors {
	0% {
		stroke: #4285F4;
	}

	25% {
		stroke: #DE3E35;
	}

	50% {
		stroke: #F7C223;
	}

	75% {
		stroke: #1B9A59;
	}

	100% {
		stroke: #4285F4;
	}
}

@-webkit-keyframes colors {
	0% {
		stroke: #4285F4;
	}

	25% {
		stroke: #DE3E35;
	}

	50% {
		stroke: #F7C223;
	}

	75% {
		stroke: #1B9A59;
	}

	100% {
		stroke: #4285F4;
	}
}

@-webkit-keyframes dash {
	0% {
		stroke-dashoffset: -187;
	}

	50% {
		stroke-dashoffset: -76.75;
	}

	100% {
		stroke-dashoffset: -187;
	}
}

@keyframes dash {
	0% {
		stroke-dashoffset: -187;
	}

	50% {
		stroke-dashoffset: -76.75;
	}

	100% {
		stroke-dashoffset: -187;
	}
}

.ripple {
	position: absolute;
	background: rgba(0,0,0,.25);
	border-radius: 100%;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	transform: scale(0);
	pointer-events: none;
	opacity: 1;
}

	.ripple.show {
		-webkit-animation: ripple 3.5s ease-out;
		-moz-animation: ripple 3.5s ease-out;
		animation: ripple 3.5s ease-out;
	}

@-webkit-keyframes ripple {
	to {
		opacity: 1;
		transform: scale(9);
	}
}

@keyframes ripple {
	to {
		opacity: 1;
		transform: scale(9);
	}
}

#ink {
	display: block;
	position: absolute;
	background: rgba(255, 255, 255, 0.46);
	border-radius: 100%;
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	transform: scale(0);
}

.ripple-effect {
	overflow: hidden;
}
/*animation effect*/
.animate {
	-webkit-animation: ripple-effect 0.65s linear;
	-moz-animation: ripple-effect 0.65s linear;
	animation: ripple-effect 0.65s linear;
}

@-webkit-keyframes ripple-effect {
	100% {
		opacity: 0;
		-webkit-transform: scale(2.5);
		transform: scale(2.5);
	}
}

@-moz-keyframes ripple-effect {
	100% {
		opacity: 0;
		-moz-transform: scale(2.5);
		transform: scale(2.5);
	}
}

@keyframes ripple-effect {
	100% {
		opacity: 0;
		transform: scale(2.5);
	}
}

.content-icons {
	display: flex;
	height: 45px;
    z-index: 10;
    position: relative;
}

.title-i {
	width: auto;
	height: auto;
	position: absolute;
	top: 100%;
	left: 0px;
	text-align: center;
	background: rgba(115, 115, 115, 0.93);
	color: #fff;
	font-size: 12px;
	opacity: 0;
	padding: 5px;
	box-shadow: 0px 1px 4px hsla(0, 0%, 0%, 0.4);
	visibility: hidden;
	z-index: 900;
	white-space: pre;
	border-radius: 2px 2px 20px 20px;
}

.pseudoOpenDialog:hover .title-i, .content-i:hover .title-i {
	top: 115%;
	opacity: 1;
	visibility: visible;
	border-radius: 2px;
}

.content-i:disabled:hover .title-i {
	/* opacity: 0.9; */
}

i:before {
	font-family: FontAwesome !important;
	font-style: normal !important;
	font-weight: normal !important;
	text-decoration: inherit !important;
	font-size: inherit; /* position: relative; */
	color: inherit;
}

i:after {
	font-family: FontAwesome !important;
	font-style: normal !important;
	font-weight: normal !important;
	text-decoration: inherit !important;
	font-size: 30px;
	position: absolute;
	top: 35%;
	left: 20%;
	color: hsl(209, 40%, 56%);
}

.header-bar-top i:before, #posi i:before {
	color: #1976D2;
}

.iconPersonalizefix > i {
	position: absolute;
	top: 10px;
	left: 5px;
	color: #fff;
}

.iconPersonalizefix:hover {
	background: #fff;
}
/*fim definiçoes padrao*/

/*definiçoes particulares*/
.toggle-module-hide:hover i:before {
	color: hsl(207, 62%, 62%);
}

.content-settings > i {
	position: relative;
	width: 60px;
	height: 40px; /* left: 15px; */ /* top: 10px; */
}

.set-header-top {
	position: absolute;
	top: 0px;
	right: 0px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 5;
}

#windows-tabs:focus .set-header-top:before {
	content: "\f0d8 ";
}

#windows-tabs .set-header-top:before {
	content: "\f0d7 ";
}

.reload-frame {
	display: none;
	position: absolute;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.reload-frame:before {
	top: 26%;
}

.reload-frame:hover {
	background: #fff;
}

.reload-frame:hover:before {
	color: #3E8DCF;
}

i.iconOpen-book, .link-open-window, .link-open-window-open-dialog {
	height: 30px;
	width: 30px;
	background: hsl(0, 100%, 100%);
	position: absolute;
	right: 0px;
	top: 0px;
	border-top: 1px solid hsl(209, 40%, 56%);
	border-bottom: 1px solid #666;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	cursor: pointer;
}

.group-field .link-open-window {
	right: 30px;
	z-index: 10;
}

.fields-disabled .link-open-window {
	opacity: 0.5;
}

.link-open-window > i:before, .link-open-window-open-dialog > i:before {
	font-size: 20px;
	color: #757575;
}

.link-open-window:hover > i:before, .link-open-window-open-dialog:hover > i:before {
	color: #4F4F4F;
}

.link-open-window .i-external:before, .link-open-window-open-dialog .i-external:before {
	font-size: 20px !important;
	left: 0px;
	top: 0px;
	padding: 5px;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}

.link-open-window:hover .i-external:before, .link-open-window-open-dialog:hover .i-external:before {
	color: #fff;
}

.link-open-window{
	background-color: transparent !important;
}

.link-open-window-open-dialog {
	right: 29px;
}

.validation-error i.iconOpen-book {
	border: 1px solid hsl(0, 39%, 55%) !important;
}

.validation-error i.iconOpen-book:before {
	color: hsl(0, 39%, 55%);
}

.validation-error i.iconOpen-book:hover {
	background: hsl(0, 39%, 55%) !important;
}

i.iconOpen-book:hover, .link-open-window:hover, .link-open-window-open-dialog:hover {
	/* background: hsl(209, 40%, 56%); */
}

a.openDialog:hover .iconOpen-book:before {
	color: hsl(0, 100%, 100%);
}

.iconButton-search > i:before {
	color: #6190BB;
	left: 10px;
	top: 5px;
	font-size: 30px;
}

.iconPersonalize-small:hover, .iconButton-search:hover {
	background: #6190BB;
}

.iconPersonalize-small:hover i:before, .iconButton-search:hover i:before {
	color: #fff !important;
}

.small-toolbar > button[disabled] i:before {
	color: hsl(0, 0%, 60%);
}

.small-toolbar > button[disabled]:hover i:before {
	color: #fff;
}

.small-toolbar > button:hover i:before {
	color: #fff;
}

button.toolbar-excel.content-iconPersonalize {
	margin-left: -3px !important;
}

.customPopup-close:hover:before {
	color: #fff;
}
/*fim definiçoes particulares*/

/*icones*/
.content-settings-user > i:before {
	content: "\f007";
}

.content-settings-help > i:before {
	content: "\f059";
}

.content-settings-indicate > i:before {
    content: "\f0a4";
}

.content-settings-about > i:before {
    content: "\f05a";
}

.content-settings-disconnectWsApp > i:before {
	content: "\f08b";
}

.content-settings-tutorial > i:before {
	content: "\f14b";
}

.content-settings-shortKey > i:before {
	content: "\f1fc";
}

.i-logout:after {
	content: "\f011";
}

.content-settings-favorites > i:before {
	content: "\f006";
}

.content-settings-tema > i:before {
	content: "\f1fc";
}

.iconOpen-book:before {
	content: "\f02d";
	color: hsl(209, 40%, 56%);
	font-size: 20px; /* left: 5px; */
	position: absolute;
	top: 20%;
	left: 18%;
}

.iconPersonalize-small-search > i:before {
	content: "\f002";
	color: #6190BB;
	font-size: 25px;
}

.iconPersonalize-small-folder > i:before {
	content: "\f115";
	color: #6190BB;
	font-size: 25px;
}

.iconButton-search-show > i:before {
	content: "\f002";
}

.iconButton-search-hide > i:before {
	content: "\f105";
	left: 18px;
}

.content-i:disabled i:before {
	/* opacity: 0.4; */
}

.content-i:disabled:hover i:before {
	/* color: #fff; */
}

.content-i:disabled:hover {
	cursor: default;
	opacity: 1;
}

.cctoolbar-refresh > i:before {
	content: "\f021";
}

.customPopup-close > i:before {
	color: rgba(255, 255, 255, 0.5);
}

.close-advanced-popup i:before {
	content: "\f00d";
	font-size: 23px;
	left: 6px;
	top: 4px;
	color: hsl(0, 39%, 55%);
}

.close-advanced-popup:hover i:before {
	color: #fff;
}
/*fim icones*/

/*new*/
.content-i {
	position: relative;
	background: hsla(0, 100%, 100%, 0);
	width: 45px;
	height: 45px;
	border: 1px solid hsla(0, 100%, 100%, 0);
	padding: 0px;
	text-align: center;
	margin: 0px;
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	display: flex;
	align-items: baseline;
	justify-content: center;
	cursor: pointer;
	z-index: 50;
	border-radius: 100px;
	color: #438ACF;
	font-size: 26px;
}

.content-i:disabled {
	opacity: 0.5;
}

.content-i:not(:disabled):hover {
	background: rgba(108, 151, 178, 0.15);
}

.content-i:hover i:before {
	/* color: #fff; */
}

.content-icons-exp {
	border: 1px solid hsl(209, 40%, 56%);
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.small-toolbar > button > i {
	/* justify-content: flex-start; */
	position: absolute;
	left: 5px;
	top: 0px;
}

.content-i-exp:hover, .content-i-exp:hover > i:before {
	background: hsl(209, 40%, 56%);
	color: hsl(0, 100%, 100%);
}

.content-i-exp[disabled] {
	color: hsl(0, 0%, 60%) !important;
}

.content-i-exp[disabled] > i:before {
	color: hsl(0, 0%, 60%) !important;
}

.content-i-exp[disabled]:hover, .content-i-exp[disabled]:hover > i:before {
	color: hsl(0, 100%, 100%) !important;
	background: hsl(0, 0%, 74%) !important;
}

#searchDivConditions .openDialog i {
	width: 30px !important;
	height: 30px !important;
}

#searchDivConditions .openDialog i:before {
	font-size: 20px !important;
	top: 5px !important;
}

.content-settings-logout {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 40px;
	height: 40px;
	background: hsla(207, 62%, 54%, 0);
	cursor: pointer;
	font-size: 26px;
}

#btn_logout > i {
	position: absolute; /* top: 6px; */
	left: 20%;
}

.settings-top-bar, .chat-top-bar, #notification, .help-top-bar, .content-settings-color {
	position: absolute;
	/*right: 40px;*/
	top: 0px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	font-size: 26px;
}

.settings-top-bar 
{
	right:40px;
}

.chat-top-bar {
	right:80px;
}

.help-top-bar 
{
    text-align: center;
    top: 5px;
    right: 1px;
    color: #fff;
    right: 77px;
}

#notification {
	right: 113px;
}

.content-settings-color {
	right: 80px;
}

.i-settings:before {
	top: 15%;
	left: 20%;
}

.content-settings-logout:hover {
	background: #eee;
}

.settings-top-bar:hover i:before {
	/* color: hsl(207, 61%, 53%); */
}

.i-menu:before {
	top: 25%;
	left: 15%;
}

.fix-menu {
	position: absolute;
	right: -20px;
	top: 5px;
	width: 40px;
	height: 40px;
	cursor: pointer;
	z-index: 100;
	background: #65C599; /* border: 2px solid #65C599; */
	border-radius: 40px;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.44);
	-webkit-transform: translateX(-350px);
	-moz-transform: translateX(-350px);
	transform: translateX(-350px);
	-webkit-transition-delay: 0.3s !important;
	-moz-transition-delay: 0.3s !important;
	transition-delay: 0.3s !important;
}

.i-fix:before {
	top: 15%;
	left: 33%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 17px;
	color: #fafafa;
}

.content-settings > i:before {
	color: #585858;
	top: 5px;
}

.i-book:before {
	content: "\f02d";
	font-size: 20px;
	top: 20% !important;
}


i.fa-star-o ~ .title-i {
    left: -70px;
}

i.fa-binoculars ~ .title-i {
    left: -90px;
}

i.fa-columns ~ .title-i {
    left: -90px;
}

.text-fieldIcon {
	height: 30px;
	width: 30px;
	position: absolute;
	right: 5px;
	top: 0px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
	font-size: 18px;
	color: #D9D919;
	pointer-events: all;
}


#menu_tree {
	position: absolute;
	width: 100%;
	overflow-x: hidden;
	overflow-y: hidden;
	height: 100%;
}

#menu_tree ul {
	margin: 0px;
	box-shadow: 0px 1px 3px -1px rgba(0, 0, 0, 0.4) inset;
}

.menu-title:hover, .module-active > .menu-title {
	background: #C8C8C8;
}

.tree_view_list-active > .title-treeview, .tree_view_list-active > .tree_link {
	background: #A1A1A1 !important;
	color: #fafafa;
}

#menu_tree li {
	line-height: 25px;
}

.treeview {
	position: relative;
	height: -webkit-calc(100% - 80px);
	height: -moz-calc(100% - 80px);
	height: calc(100% - 80px);
	overflow-y: auto;
}
.title-treeview, .tree_link {
	/* padding-left: 10px; */ /* border-bottom: 1px solid #000; */
}

.title-treeview {
	cursor: default;
	padding-left: 10px; /* box-shadow: 0px 1px 1px -1px rgba(0, 0, 0, 0.22); */
	z-index: 2;
	position: relative;
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}
.tree_link {
	cursor: pointer;
	border-left: 5px solid rgba(255, 255, 255, 0);
	padding-left: 5px;
	color: #3D3D3D;
}

.tree_link:hover {
	border-left-color: #757575;
}
.treeview ul {
	overflow: hidden;
	height: auto;
	display: none;
	position: relative;
}
.treeview > li > .title-treeview {
	background: rgba(0, 0, 0, 0.2);
	background: #B5C5D5; /* text-shadow: 0px 0px 1px #000; */
}
.treeview > li > ul > li > .title-treeview {
	background: #C4D2E0;
}
.treeview > li > ul > li > ul > li > .title-treeview {
	background: rgba(0, 0, 0, 0.1);
}



@font-face {
	/*src: url("../fonts/HansKendrick-Regular.otf") format('opentype');*/
	font-family: 'Hanken';
}

@font-face {
	src: url("../fonts/Dosis-Regular.ttf");
	font-family: 'Dosis';
}

.k-header > .k-grid-filter, .k-header > .k-header-column-menu {
	float: right;
	margin: -0.5em -0.6em -0.4em !important;
	padding-top: .5em !important;
	position: absolute !important;
	z-index: 1;
}

.k-grid-header .k-grid-filter, .k-grid-header .k-header-column-menu {
	margin: -0.5em 0.5em -0.4em -0.6em !important;
}

.k-grid-header th.k-header > .k-link {
	padding: 0px 1em !important;
}

a {
	color: #000;
	font-weight: normal;
	text-decoration: none;
}

	a.hover {
		color: #0688FF;
	}

li {
	list-style: none;
}

ul {
	padding: 0px;
}

.padding {
	padding: 5px !important;
	position: relative;
}
/*customPopup*/
.customPopup {
	width: 100%;
	height: 100%;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-timing-function: cubic-bezier(.55,0,.1,1);
	-moz-animation-duration: 0.4s;
	-moz-animation-timing-function: cubic-bezier(.55,0,.1,1);
	animation-duration: 0.4s;
	animation-timing-function: cubic-bezier(.55,0,.1,1);
}

.customPopup-main {
	position: relative;
	background: #fff;
	z-index: 500;
	height: 90%;
	/*overflow: hidden;*/
	border-radius: 3px;
	-webkit-animation-name: popup-enter;
	-webkit-animation-duration: inherit;
	-webkit-animation-timing-function: inherit;
	-moz-animation-name: popup-enter;
	-moz-animation-duration: inherit;
	-moz-animation-timing-function: inherit;
	animation-name: popup-enter;
	animation-duration: inherit;
	animation-timing-function: inherit; /*transition-property: transform!important;*/
}

.customPopup-title {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 40px; /* background: #25A977; */
	background: #438ACF; /* background: hsl(231, 48%, 48%); */ /* background: hsl(174, 100%, 29%); */ /* background: hsl(200, 18%, 46%); */
	color: #fff;
	font-weight: 700;
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	font-size: 16px;
	z-index: 20;
	font-family: Hanken, Arial;
	letter-spacing: 1px;
}

.customPopup-buttons {
	position: absolute;
	bottom: 0px;
	width: 100%;
	height: 45px;
	display: flex; /* flex-direction: row-reverse; */
	box-shadow: 0 0px 3px rgba(0, 0, 0, 0.3);
	padding: 5px;
	border-top: 1px solid #BCBCBC;
}

.customPopup-buttons-left {
	display: flex;
	align-items: center;
}

.customPopup-buttons-right {
	display: flex;
	flex-direction: row-reverse;
	flex: 1;
}

.customPopup-button {
	font-size: 15px;
}

.customPopup-content {
	position: relative;
	overflow: auto;
	height: calc(100% - 40px);
}

.customPopup-waiting {
	position: absolute;
	width: 100%;
	left: 0px;
	top: 0px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.customPopup-template-buttons .customPopup-content {
	max-height: calc(100% - 85px);
}

.customPopup-close {
	position: absolute;
	right: 0px;
	top: 0px;
	font-weight: bold;
	height: 40px;
	width: 40px;
	cursor: -webkit-grab;
	display: flex;
	justify-content: center;
	align-items: center;
	opacity: 0.6;
}

.customPopup-overlay {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.25);
	z-index: 490;
	-webkit-animation-name: overlay-enter;
	-webkit-animation-duration: inherit;
	-webkit-animation-timing-function: inherit;
	-moz-animation-name: overlay-enter;
	-moz-animation-duration: inherit;
	-moz-animation-timing-function: inherit;
	animation-name: overlay-enter;
	animation-duration: inherit;
	animation-timing-function: inherit;
}

.customPopup-close:hover {
	opacity: 1;
}

.customPopup-iframe {
	width: 100%;
	border: none;
}

.customPopup-closing .customPopup-main {
	-webkit-animation-name: popup-out;
	-moz-animation-name: popup-out;
	animation-name: popup-out;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: both;
}

.customPopup-closing-alt .customPopup-main {
	-webkit-animation-name: popup-out-alt;
	-moz-animation-name: popup-out-alt;
	animation-name: popup-out-alt;
	-webkit-animation-fill-mode: both;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: both;
}


.customPopup-closing .customPopup-overlay, .customPopup-closing-alt .customPopup-overlay {
	-webkit-animation-name: overlay-out;
	-moz-animation-name: overlay-out;
	animation-name: overlay-out;
	-webkit-animation-fill-mode: forwards;
	-moz-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}


/*fim customPopup*/

/*estrutura em colunas*/
/*declara o conteudo em colunas*/
.content-columns {
	width: 100%;
	display: flex;
	position: relative;
	flex-wrap: wrap;
	height: auto;
}

	.content-columns > * {
		flex: 1;
	}

.column {
	display: block;
	flex: 1;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	min-width: 270px;
	height: auto;
}

	.column:not(:first-child) {
		padding-left: 5px;
	}

/*define em linha en vez de colunas*/
.vertical {
	flex-flow: column wrap;
}

/* "column-divisors" : declara que havera um linha dividindo as colunas*/
.columns-divisors > .column:not(:first-child) {
	border-left: 1px solid hsl(207, 62%, 54%);
}

.content-columns > .column {
	padding: 5px;
}

.column-not-separator > .column {
	padding: 0px;
}

.columns-no-wrap {
	flex-wrap: nowrap;
}

.column-vertical-center {
	align-items: center;
}

.column-large {
	flex: 2 !important;
}

.column-larger {
	flex: 3 !important;
}

.column-extra-large {
	flex: 4 !important;
}

.column-extra-larger {
	flex: 5 !important;
}

.min-column > .column {
	min-width: 0px !important;
}
/*fim estrutura em colunas*/

* {
	box-sizing: border-box !important;
	-moz-box-sizing: border-box;
}

	*:focus {
		outline: none;
	}
/*---------*/
.onDrag {
	-webkit-transform: scale(0.8) !important;
	-moz-transform: scale(0.8) !important;
	transform: scale(0.8) !important;
	opacity: 0.9;
	transition-property: transform !important;
	transform-origin: 50% 50% !important;
}

.noDrag {
	user-drag: none;
	user-select: none;
	-moz-user-select: none;
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.trash {
	position: fixed;
	bottom: 0px;
	left: -webkit-calc(50% - 75px);
	left: -moz-calc(50% - 75px);
	left: calc(50% - 75px);
	width: 150px;
	height: 100px;
	background: #C24747;
	visibility: hidden;
	border-radius: 50px 50px 5px 5px;
	-webkit-transform: translateY(20px);
	-moz-transform: translateY(20px);
	transform: translateY(20px);
	opacity: 0;
	-webkit-transition: -webkit-transform 0.5s cubic-bezier(.5,.03,.4,.9), border-radius 0.5s cubic-bezier(.5,.03,.4,.9) 0.5s, opacity 0.3s cubic-bezier(.5,.03,.4,.9), visibility 0.5s cubic-bezier(.5,.03,.4,.9);
	-moz-transition: -moz-transform 0.5s cubic-bezier(.5,.03,.4,.9), border-radius 0.5s cubic-bezier(.5,.03,.4,.9) 0.5s, opacity 0.3s cubic-bezier(.5,.03,.4,.9), visibility 0.5s cubic-bezier(.5,.03,.4,.9);
	transition: transform 0.5s cubic-bezier(.5,.03,.4,.9), border-radius 0.5s cubic-bezier(.5,.03,.4,.9) 0.5s, opacity 0.3s cubic-bezier(.5,.03,.4,.9), visibility 0.5s cubic-bezier(.5,.03,.4,.9);
	z-index: 7000;
}

	.trash > i:before {
		font-size: 70px !important;
		color: #FFFFFF;
		left: 47px;
		top: 15%;
	}

.dragOver > i:before {
	/* color: #F4F4F4; */
}

.dragOver {
	background: #963131; /* box-shadow: 0px 0px 3px 3px #C24747; */
}

.onExclude {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	transform: scale(0);
	opacity: 0;
}

.dragging {
	border-radius: 5px !important;
	visibility: visible !important;
	-webkit-transform: translateY(-20px) !important;
	-moz-transform: translateY(-20px) !important;
	transform: translateY(-20px) !important;
	opacity: 1 !important;
	-webkit-transition: -webkit-transform 0.5s ease, border-radius 0.5s cubic-bezier(.5,.03,.4,.9), opacity 0.5s cubic-bezier(.5,.03,.4,.9), visibility 0.5s cubic-bezier(.5,.03,.4,.9);
	-moz-transition: -moz-transform 0.5s ease, border-radius 0.5s cubic-bezier(.5,.03,.4,.9), opacity 0.5s cubic-bezier(.5,.03,.4,.9), visibility 0.5s cubic-bezier(.5,.03,.4,.9);
	transition: transform 0.5s ease, border-radius 0.5s cubic-bezier(.5,.03,.4,.9), opacity 0.5s cubic-bezier(.5,.03,.4,.9), visibility 0.5s cubic-bezier(.5,.03,.4,.9);
}

[draggable] {
	-webkit-user-select: none;
	-webkit-user-drag: element;
}
/*Shared*/

.transition, #menu-bar, .i-fix::before, .fix-menu, #content, .content-settings-others, .trash > i::before, .tabs-frames, .windows-tabs-name, .lists-tabs, .module-name, .module-back, #search-screens, .remove-module, .tutorial, .toggle, .toggle:after, .toggle-alt, .toggle-alt:after, .title-i, .content-i, .pane > li, .field {
	-webkit-transition-property: all;
	-webkit-transition-duration: 0.5s;
	-webkit-transition-delay: 0s;
	-webkit-transition-timing-function: cubic-bezier(.55,0,.1,1);
	-moz-transition-property: all;
	-moz-transition-duration: 0.5s;
	-moz-transition-delay: 0s;
	-moz-transition-timing-function: cubic-bezier(.55,0,.1,1);
	transition-property: all;
	transition-duration: 0.5s;
	transition-delay: 0s;
	transition-timing-function: cubic-bezier(.55,0,.1,1);
}

.tabs-frames {
	-webkit-transition-duration: 0.2s !important;
	-moz-transition-duration: 0.2s !important;
	transition-duration: 0.2s !important;
}

.box-shadow-1 {
	box-shadow: 0 1px 1.5px rgba(0, 0, 0, 0.12), 0 1px 1px rgba(0, 0, 0, 0.24);
}

.box-shadow-2 {
	box-shadow: 0 1px 2px 3px rgba(0, 0, 0, 0.16), 0 1px 3px 0px rgba(0, 0, 0, 0.23);
}

.box-shadow-3 {
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.19), 0 6px 3px rgba(0, 0, 0, 0.23);
}

.box-shadow-4 {
	box-shadow: 0 14px 14px rgba(0, 0, 0, 0.25), 0 10px 5px rgba(0, 0, 0, 0.22);
}

.box-shadow-5 {
	box-shadow: 0 19px 19px rgba(0, 0, 0, 0.3), 0 15px 6px rgba(0, 0, 0, 0.22);
}

.hide {
	display: none;
}

.alert-label {
	display: flex;
	height: 30px;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	color: #fff;
	background-color: #c24747;
	width: 600px;
	border-radius: 4px;
}

/*toggle*/
.toggle-text {
	height: 28px; /* padding-left: 10px; */
	position: relative;
	border-radius: 40px !important;
	display: flex;
	flex: 1;
	align-items: center;
	width: calc(100% - 0px);
}

.toggle-disabled {
	pointer-events: none;
}

.toggle-disabled {
	opacity: 0.4;
}

.toggle-checked {
	box-shadow: inset 0 0 0 15px #15C654;
}

.toggle-indeterminate {
	box-shadow: inset 0 0 0 15px #B5B5B5;
}

.toggle-checked:after {
	transform: translateX(27px);
}

.toggle-indeterminate:after {
	transform: translateX(14px);
}

.toggle-content {
	-webkit-user-select: none;
	-moz-user-select: none;
	user-select: none;
	display: flex;
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 2px;
	background: #F2F2F2;
	border-bottom: 1px solid #CFCFCF;
	cursor: default;
}

.toggle-selected {
	background: #CFCFCF !important;
}

.toggle, .toggle-alt {
	width: 55px;
	height: 28px !important;
	background-color: #C24747;
	position: relative;
	top: 0px;
	left: 0px;
	border-radius: 40px !important;
	cursor: pointer;
	margin-right: 5px;
}

	.toggle:after, .toggle-alt:after {
		content: '';
		display: inline-block;
		position: absolute;
		width: 24px;
		height: 24px;
		background-color: hsl(0, 0%, 100%);
		top: 2px;
		left: 2px;
		-moz-border-radius: 50%;
		-webkit-border-radius: 50%;
		border-radius: 50%;
	}

.alert .toggle-content {
	background: initial;
	border: initial;
}

.alert .toggle {
	width: 40px;
	height: 23px !important;
	top: 4px;
}

	.alert .toggle:after {
		height: 19px;
		width: 19px;
	}

.alert .toggle-checked:after {
	transform: translateX(17px);
}

.gridbool input[type="checkbox"] {
	display: none;
}

.gridbool [type="checkbox"]:not(:checked), .gridbool [type="checkbox"]:checked {
	position: absolute;
	left: -9999px;
}

	.gridbool [type="checkbox"]:not(:checked) + label, .gridbool [type="checkbox"]:checked + label {
		position: relative;
		padding-left: 15px;
		cursor: pointer;
	}

		.gridbool [type="checkbox"]:not(:checked) + label:before, .gridbool [type="checkbox"]:checked + label:before {
			content: '';
			position: absolute;
			left: 0;
			width: 17px;
			height: 17px;
			border: 1px solid #aaa;
			background: #f8f8f8;
			border-radius: 3px;
			box-shadow: inset 0 1px 3px rgba(0,0,0,.3);
		}

		.gridbool [type="checkbox"]:not(:checked) + label:after, .gridbool [type="checkbox"]:checked + label:after {
			content: '✔';
			position: absolute;
			top: 0;
			left: 4px;
			font-size: 14px;
			color: #09ad7e;
			transition: all .2s;
		}

		.gridbool [type="checkbox"]:not(:checked) + label:after {
			opacity: 0;
			transform: scale(0);
		}

		.gridbool [type="checkbox"]:checked + label:after {
			opacity: 1;
			transform: scale(1);
		}

.gridbool [type="checkbox"]:disabled:not(:checked) + label:before, .gridbool [type="checkbox"]:disabled:checked + label:before {
	box-shadow: none;
	border-color: #bbb;
	background-color: #ddd;
}

.gridbool [type="checkbox"]:disabled:checked + label:after {
	color: #999;
}

.gridbool [type="checkbox"]:disabled + label {
	color: #aaa;
}

.gridbool [type="checkbox"]:checked:focus + label:before, .gridbool [type="checkbox"]:not(:checked):focus + label:before {
	border: 1px dotted blue;
}

.gridbool label:hover:before {
	border: 1px solid #4778d9 !important;
}

.gridbool-disabled {
	pointer-events: none;
}

.screen-content {
	font-family: Arial !important;
}

#waitingBackground {
	width: 150px;
	height: 160px;
	position: absolute;
	animation-name: gravittemFloat;
	animation-duration: 2.5s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	margin-left: 700px;
	margin-top: 225px;
	background: rgba(226,226,226,0);
	background: -moz-radial-gradient(center, ellipse cover, rgba(226,226,226,1) 0%, rgba(219,219,219,1) 20%, rgba(209,209,209,1) 40%, rgba(254,254,254,0) 67%, rgba(254,254,254,0) 100%);
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%, rgba(226,226,226,1)), color-stop(20%, rgba(219,219,219,1)), color-stop(30%, rgba(209,209,209,1)), color-stop(67%, rgba(254,254,254,0)), color-stop(100%, rgba(254,254,254,0)));
	background: -webkit-radial-gradient(center, ellipse cover, rgba(226,226,226,1) 0%, rgba(219,219,219,1) 20%, rgba(209,209,209,1) 40%, rgba(254,254,254,0) 67%, rgba(254,254,254,0) 100%);
	background: -o-radial-gradient(center, ellipse cover, rgba(226,226,226,1) 0%, rgba(219,219,219,1) 20%, rgba(209,209,209,1) 40%, rgba(254,254,254,0) 67%, rgba(254,254,254,0) 100%);
	background: -ms-radial-gradient(center, ellipse cover, rgba(226,226,226,1) 0%, rgba(219,219,219,1) 20%, rgba(209,209,209,1) 40%, rgba(254,254,254,0) 67%, rgba(254,254,254,0) 100%);
	background: radial-gradient(ellipse at center, rgba(226,226,226,1) 0%, rgba(219,219,219,1) 20%, rgba(209,209,209,1) 40%, rgba(254,254,254,0) 67%, rgba(254,254,254,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e2e2e2', endColorstr='#fefefe', GradientType=1 );
}

#waitingGravittem {
	margin-left: 25px;
	margin-top: 10px;
}

@keyframes gravittemFloat {
	0% {
		top: 0px;
	}

	50% {
		top: 25px;
	}

	100% {
		top: 0px;
	}
}

/*.k-grid tr.k-state-selected a {
	color: #FFF !important;  Tela pessoa / Dispositivo autorizado
}*/

.listTitle {
	padding-left: 8px;
	font-weight: bold;
	background-color: #438acf;
	padding: 7px;
	color: #fff;
}

	.listTitle p {
		margin: 0px;
	}

.functions-permissions.message {
	display: flex;
}

.content-flap {
	z-index: 9;
}

.menuButton {
	top: 40px;
	position: absolute;
	z-index: 99;
	background: #fff;
	border-radius: 4px;
	min-width: 150px;
	vertical-align: top;
	overflow: hidden;
	cursor: pointer;
	line-height: 26px;
	border-bottom: 1px solid #438ACF;
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	transform: translateY(-200%);
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	transition-delay: 0.3s;
	box-shadow: 2px 1px 1px #0000004f;
}

	.menuButton ul {
		margin-bottom: 0px;
	}

	.menuButton li {
		list-style: none;
		padding: 5px;
		cursor: pointer;
		width: 100%;
		height: 27px;
		padding: 0 12px;
	}

		.menuButton li:hover {
			background-color: #D9E1E4;
			color: #343C3F;
		}

.menuButton-active {
	-webkit-transition-delay: 0s !important;
	-moz-transition-delay: 0s !important;
	transition-delay: 0s !important;
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	transform: translateY(0%);
}

#importInstructionsDiv {
	border-radius: 5px;
	background: #d9edf7;
	padding: 10px;
	margin: 10px;
}

.importInstructions{
	list-style-type: none;
	counter-reset: item;
}

.importInstructions > li {
	list-style: decimal;
	display: table;
	counter-increment: item;
	margin-bottom: 0.6em;
}

.importInstructions > li:before {
	content: counters(item, ".") ". ";
	display: table-cell;
	padding-right: 0.6em;
}

li .importInstructions > li {
	margin: 0;
}

li .importInstructions > li:before {
	content: counters(item, ".") " ";
}

.importConfig .info-box {
	right: 220px;
	top: 30px;
	min-width: 400px; 
	left: unset;
}

.importConfig .info-component {
	position: absolute;
	color: #438acf;
	text-align: right;
	left: 339px;
	top: 4px;
	display: flex;
	cursor: pointer;
}

.k-progressbar {
	background-color: #d9edf7;
}

body {
	background-color: #D0DFED;
	font-size: 13px !important;
	font-family: Arial;
	margin: 0;
}

@media (max-width: 1023px) {
	.fix-menu {
		display: none;
	}
}
/*reset*/
li {
	line-height: 17px;
	position: relative;
}

/*fim reset*/
html {
	overflow: hidden;
}

/*menu-bar*/
#menu-bar {
	background: #EEE;
	min-width: 90px;
	width: 20%;
	height: -webkit-calc(100% - 40px);
	height: -moz-calc(100% - 40px);
	height: calc(100% - 40px);
	border-right: 3px solid #BEBEBE;
	position: fixed;
	top: 65px;
	left: 0px; /* overflow: hidden; */
	z-index: 95;
	box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.26);
	-webkit-transition-delay: 0.5s;
	-moz-transition-delay: 0.5s;
	transition-delay: 0.5s;
	-webkit-transform: translateX(-99%);
	-moz-transform: translateX(-99%);
	transform: translateX(-99%);
}

.module-back {
	position: absolute;
	width: 30px;
	height: 50px;
	background: rgba(250, 250, 250, 0);
	z-index: 10;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
}

.module-back-visible {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	transform: translateX(0);
}

.module-back > i:before {
	content: "\f053";
	color: #fff;
	top: 10px;
}

#menu-bar:hover, #menu-bar:focus, .menuSelectShort, .menu-show {
	-webkit-transition-delay: 0.4s;
	-moz-transition-delay: 0.4s;
	transition-delay: 0.4s;
	-webkit-transform: translateX(0%) !important;
	-moz-transform: translateX(0%) !important;
	transform: translateX(0%) !important;
}
#menu-bar:hover > .fix-menu, #menu-bar:focus > .fix-menu, .menu-show > .fix-menu, .fix-menu:hover {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
	-webkit-transition-delay: 0.8s !important;
	-moz-transition-delay: 0.8s !important;
	transition-delay: 0.8s !important;
}
.fixed {
	box-shadow: none;
	/* border-color: #659DC5; */
	background: #BFBFBF;
}

.content-callapsable {
	width: 80% !important;
	box-shadow: none;
}
/*fim menu-bar*/

/*conteudo*/
#content {
	width: -webkit-calc(100% - 5px);
	width: -moz-calc(100% - 5px);
	width: calc(100% - 5px);
	height: -webkit-calc(100% - 40px);
	height: -moz-calc(100% - 40px);
	height: calc(100% - 0px);
	border: 0px none;
	position: absolute;
	right: 0%;
	padding-top: 66px;
	overflow-x: hidden;
}

#content iframe {
	width: 100%;
	height: -webkit-calc(100% - 5px);
	height: -moz-calc(100% - 5px);
	height: calc(100% - 0px) !important;
	margin-top: 0px;
	margin-bottom: -6px;
	border: 0px solid;
	z-index: 2;
	position: relative;
}/*
#content > div {
	background: white;
}
#content ul {
	margin: 0px;
	background-color: #C9DDFF;
}
#content ul li {
	margin-left: 4px;
}*/
/*fim conteudo*/

/*modulos*/
.content-settings-others {
	background: #E2E2E2;
	box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.5);
}
.module-active {
	-webkit-transform: translateY(0%) !important;
	-moz-transform: translateY(0%) !important;
	transform: translateY(0%) !important;
}
.list-windows-tabs-active {
	-webkit-transform: translateY(0%) !important;
	-moz-transform: translateY(0%) !important;
	transform: translateY(0%) !important;
	-webkit-transition-delay: 0s !important;
	-moz-transition-delay: 0s !important;
	transition-delay: 0s !important;
	visibility: visible !important;
	opacity: 1 !important;
}
#result-search > li, .modules-name {
	background: #FFF;
	color: #585858;
	list-style: none;
	padding: 8px;
	cursor: pointer;
	overflow: hidden;
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16), 0 3px 3px rgba(0, 0, 0, 0.23);
}

#result-search > li:first-child {
    border-radius: 3px 3px 0px 0px;
}

#result-search > li:last-child {
    border-radius: 0px 0px 3px 3px;
}
.result-search > li:not(:last-child), .modules,.content-settings {
	border-bottom: 1px solid #BCBCBC;
}
.result-search > .tree_link-active{
	background: #E0E0E0!important;
}
.activeModuleSelect, (.result-search > .tree_link-active), .result-search > li:hover, .content-settings:hover, .module-hover > .module-name {
	background: rgba(94, 94, 94, 0.2)!important;
}
/*fim modulos*/

/*barra superior*/
.header-bar-top {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 40px;
	background: #eee;
	z-index: 100;
	border-bottom: 1px solid;
	border-color: rgba(0, 0, 0, 0.2);
	-webkit-user-select: none;
}

.header-tab-top {
    position: fixed;
    top: 40px;
    left: 0px;
    width: 100%;
    height: 25px;
    background: #438ACF;
    background: #1976D2;
    z-index: 90;
}
/*fim barra superior*/

/*config*/
.tools-menu {
	width: 25%;
	position: absolute;
	background: inherit;
}

.iconsearch-screens {
	position: absolute;
	height: 23px;
	width: 40px;
	z-index: 12;
	left: 0px;
	border-left: 1px solid rgba(255,255,255,0.10);
	color: #fff;
}

#search-screens {
	position: absolute;
	height: 25px !important;
	padding: 5px;
	top: -1px;
	left: 0px;
	width: 40px;
	text-indent: 40px;
	z-index: 10;
	color: #fff;
	background: rgba(255, 255, 255, 0);
	font-size: 17px;
	cursor: pointer;
	box-shadow: none;
	border: none!important;
}

#search-screens:focus {
	width: calc(100% - 20px);
	background: rgb(71, 145, 219);
	/* cursor: text; */
}

.iconsearch-screens:before {
	content: "\f002";
	font-size: 17px;
	top: 6px;
}

.tools-config {
	position: absolute;
	top: 0px;
	right: 0px;
}
/*fim config*/

/*abas*/
.temp-menu-show {
	left: 0% !important;
}
.menu-show {
	box-shadow: none !important;
}
.tabs-frames {
	position: fixed;
	left: 35%;
	top: 13%;
	width: 30%; /* display: flex; */ /* justify-content: center; */
	max-height: 80%;
	overflow-y: auto; /* background: #AFCEE8; */
	z-index: 45;
	box-shadow: 2px 2px 5px -2px rgba(0, 0, 0, 0.57);
	border-radius: 3px;
	margin: 0px 0px 0px 0px;
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-30px);
	visibility: hidden;
	opacity: 0;
}

#windows-tabs:focus > .tabs-frames, .listWindowsTabs-show {
	-webkit-transform: translateY(0px);
	-moz-transform: translateY(0px);
	transform: translateY(0px);
	visibility: visible;
	opacity: 1;
	pointer-events: all;
}

#listWindowsTabs{
	pointer-events: none;
}

.lists-tabs {
	position: relative;
	height: 40px;
	display: flex;
	background: #54C49A;
	color: #fff;
	font-size: 14px;
	border-bottom: 1px solid #64A089;
}

.lists-tabs-selected {
	background: hsla(157, 49%, 65%, 1) !important;
}

.lists-tabs-span {
	display: flex;
	width: 100%;
}

.tab-abbr {
	width: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
}

.list-tab-name {
	display: flex;
	align-items: center;
	padding-left: 10px;
	width: 100%;
	background: rgba(0, 0, 0, 0.1);
}

.tabs-frames > .active {
	display: none;
}

.tabs-frames > li {
	padding: 0px !important;
	border-style: solid;
	border-color: #3F8FD2;
	border-width: 0px 1px 1px 1px;
	cursor: pointer;
}
.tabs-frames li div {
	padding: 7px 20px;
}
.tabs-frames > li span {
	color: #fff;
}
li:hover .close {
	color: hsl(207, 62%, 54%);
}
.name-tab-open, .name-tab-open-active {
	position: absolute;
	left: 5%;
	height: 100%;
	width: 90%;
	border-left: 10px solid hsla(0, 100%, 100%, 0);
	padding: 10px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	color: #fff;
	font-size: 15px;
	cursor: pointer;
	text-align: center;
	font-weight: bold;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
button.close {
	background: hsla(207, 62%, 54%, 0);
	opacity: 1;
	color: #fff;
	text-shadow: none;
	font-size: 30px;
	float: none;
	margin: 0px;
	position: absolute;
	right: 10px;
	top: 10px;
}
button.close:hover {
	background: #fff;
	opacity: 1;
	color: #3F8FD2;
}
ul > li > button.close {
	position: absolute;
	right: 5px;
	top: 5px;
}
button.close-tab-active {
	position: relative;
	left: 15px;
}
ul.tabs-frames > li:hover {
	background: #fff;
}
.tabs-frames > li:hover span {
	color: #3F8FD2;
}
ul.tabs-frames.tabs-frames-active {
	-webkit-transform: translateY(0%) !important;
	-moz-transform: translateY(0%) !important;
	transform: translateY(0%) !important;
}

.windows-tabs-name-active {
	top: 0%!important;
	opacity: 1!important;
}

.windows-tabs {
	position: absolute;
	width: 60%;
	height: 100%;
	left: 20%; 
	background: inherit;
}

.windows-tabs-name {
	height: 100%;
	position: relative; 
	top: -100%; 
	color: #fff;
	/* text-transform: uppercase; */
	letter-spacing: 1px;
	font-size: 13px;
	background: inherit;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	opacity: 0;
}

.tab-close {
	width: 30px;
	height: 100%;
	cursor: pointer;
	position: relative;
	cursor: -webkit-grab;
}

#listWindowsTabs .tab-close {
	position: absolute;
	right: 0px;
	top: 0px;
}

.tab-close > i:before {
	content: "\f142";
	font-size: 20px;
	left: 15px;
	top: 10px;
	color: rgba(255, 255, 255, 0.5);
}

#listWindowsTabs .tab-close > i:before {
    color: rgba(0, 0, 0, 0.5);
    color: inherit;
}
/*fim abas*/

/*configuraçoes*/
.content-settings-others {
	position: absolute;
	top: 40px;
	right: 0px;
	z-index: 95;
	width: 20%;
	-webkit-transform: translateY(-105%);
	-moz-transform: translateY(-105%);
	transform: translateY(-105%);
	-webkit-transition-delay: 0.3s;
	-moz-transition-delay: 0.3s;
	transition-delay: 0.3s;
}
.content-settings-active {
	-webkit-transition-delay: 0s !important;
	-moz-transition-delay: 0s !important;
	transition-delay: 0s !important;
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	transform: translateY(0%);
}
.content-settings {
	position: relative;
	display: flex;
	align-items: center;
	width: 100%;
	height: 40px;
	/* background: hsl(207, 62%, 54%); */
	/* border: 1px solid hsl(207, 62%, 54%); */
	color: #585858;
	font-size: 14px;
	cursor: pointer;
}

.content-settings-desc {
	position: relative;
	/* left: 50px; */
}

.name-user-top-bar {
	position: absolute;
	right: 158px;
	top: 7px;
	padding-top: 10px;
	font-size: 16px;
	color: #1976D2;
}
.name-owner-top-bar {
	color: #1976D2;
	width: auto;
	max-width: 11%;
	position: absolute;
	right: 158px;
	top: 6px;
	font-size: 11px;
	line-height: normal;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.image-language {
	height: 100%; /* position: relative; */
	top: 5px;
	margin-right: 15px;
	margin-left: 5px;
}


.system-name {
	color: #fff;
	position: absolute;
	left: 14px;
	font-size: 17px;
	/* height: 100%; */
	/* padding: 10px; */
	/* display: flex; */
	/* align-items: center; */
	/* justify-content: space-around; */
	width: 200px;
	left: 0;
	right: 0;
	margin-left: auto;
	margin-right: auto;
}

.system-logo {
	height: 30px;
	width: auto;
	position: absolute;
	top: 5px;
}

.system-logo-name {
	height: 35px;
	width: auto;
	position: absolute;
	left: 35px;
	top: 3px;
}

.client-logo {
	height: 30px;
	width: auto;
	position: absolute;
}

/*fim configs*/

/*busca*/
.result-search {
	position: absolute;
	top: 55px;
	left: -10px;
	width: 25%;
	z-index: 100;
	max-height: -webkit-calc(100% - 30px);
	max-height: -moz-calc(100% - 30px);
	max-height: calc(100% - 30px);
	overflow-y: hidden;
	padding: 10px;
	/* background: #fff; */
}

.result-search:empty {
    visibility: hidden;
}

.select-search-disable {
	/*background: #E5E5E5; 	color: #616161; 	border-bottom: 1px solid #bdbdbd;*/
	color: #A5A5A5 !important;
	/* opacity: 0.7; */
}

.select-search:before {
	content: attr(software-abbr);
}

.msg-no-results-search {
	padding: 5px;
	color: #EAEAEA;
	z-index: 54;
	background: #7E7E7E;
}
/*
#results-search > li:hover a {
	color: #fff;
}*/


/*
#results-search > li.activeSpan, #results-search > li:hover {
	background: #757575;
	color: #eee;
}
#results-search > li.activeSpan > a {
	color: #fff;
}*/
/*fim busca*/

/*notificaçoes*/
.content-messages {
	position: fixed;
	bottom: 0px;
	right: 25px;
	width: 30%;
	z-index: 2000;
}
.alert-error, .alert-success, .alert-warning, .alert-info {
	color: hsl(0, 100%, 100%) !important;
}
.alert {
	position: relative;
	bottom: 0px;
	left: 0%;
	width: auto;
	max-width: 100%;
	margin-bottom: 10px;
	font-size: 15px;
	background: #5493C4;
	color: #FFF;
	border: 1px solid #246499;
	border-radius: 3px;
	padding: 10px;
	cursor: default;
	z-index: 100;
	word-break: break-word;
	box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, 0.3);

	-webkit-animation-duration: 0.5s;
	-moz-animation-duration: 0.5s;
	animation-duration: 0.5s;

	-webkit-animation-timing-function: cubic-bezier(.55,0,.1,1);
	-moz-animation-timing-function: cubic-bezier(.55,0,.1,1);
	animation-timing-function: cubic-bezier(.55,0,.1,1);

	-webkit-animation-name: success-alert;
	-moz-animation-name: success-alert;
	animation-name: success-alert;
}

.alert-remove {
	-webkit-animation-name: alert-remove!important;
	-moz-animation-name: alert-remove!important;
	animation-name: alert-remove!important;
}
.alert-buttons {
	position: relative;
	display: flex;
	justify-content: flex-start;
	flex-direction: row-reverse;
	margin: 10px 20px 0px 0px;
}

.alert-content {
    margin-right: 25px;
    word-break: inherit;
}
.alert-button-ok, .alert-button-cancel {
	padding: 5px 15px;
	margin-right: 5px;
	border: none;
	background: rgba(0, 0, 0, 0.2);
	color: #FFF;
	font-size: 17px;
	border-radius: 3px;
	cursor: pointer;
	position: relative;
	overflow: hidden;
}
.alert-button-ok {
	font-weight: bold;
}


.alert-focused:after {
    content: "";
    position: absolute;
    background: rgba(255, 255, 255, 0.52);  
	width: 80%;  
	height: 140%;  
	top: -20%;  
	left: 10%;  
	border-radius: 100px;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
	-webkit-animation: focused 3s ease infinite;	
	-moz-animation: focused 3s ease infinite;
	animation: focused 3s ease infinite;
    z-index: -1;
}
.alert-button-ok:hover, .alert-button-cancel:hover {
	background: rgba(0, 0, 0, 0.2);
}
.alert-danger, .alert-error, .error {
	background: #BF4545;
	border: 1px solid #5F1111;
	-webkit-animation-name: error-alert;
	-moz-animation-name: error-alert;
	animation-name: error-alert;
}
.alert-warning {
	background: #CE8414;
	border-color: hsl(45, 47%, 38%);	
	-webkit-animation-name: error-alert;
	-moz-animation-name: error-alert;
	animation-name: error-alert;
}
.close-notify {
	color: #FFF;
	background: rgba(0, 0, 0, 0);
	font-size: 25px !important;
	position: absolute;
	right: 5px;
	top: 5px;
	width: 25px;
	height: 25px;
	padding: 0px;
	border: 1px solid hsla(0, 48%, 32%, 0);
	font-size: 30px !important;
	font-weight: bold;
	line-height: 0px;
	cursor: pointer;
}
.close-notify:hover {
	background: rgba(0, 0, 0, 0.2);
}
.alert-success, .success {
	background: #47B86F;
	border: 1px solid #0B8446;
}
.alert-fixed {
	position: fixed;
	width: 500px;
	left: -webkit-calc(50% - 250px) !important;
	left: -moz-calc(50% - 250px) !important;
	left: calc(50% - 250px) !important;
	top: 25%;
	bottom: auto;
	bottom: initial;
	box-shadow: 0px 2px 4px hsla(0, 0%, 0%, 0.27);
	z-index: 1001;
}
.alert-blocked {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px !important;
	left: 0px;
	z-index: 1000;
}
.alert-button-side {
    flex: 1;
    padding-right: 5px;
    font-size: 13px;
}
/*fim notificaçoes*/

.activeTabSelect {
	background: rgb(255,255,255);
}
.activeTabSelect a {
	color: hsl(207, 62%, 54%) !important;
}


/*Learn*/
.tutorial {
	position: fixed;
	top: 30%;
	left: -webkit-calc(50% - 150px);
	left: -moz-calc(50% - 150px);
	left: calc(50% - 150px);
	width: 300px;
	padding: 15px;
	z-index: 1000;
	background: #FFF;
	border-radius: 0px 3px 3px 3px;
	text-align: justify;
	box-shadow: 0px 0px 0px 2000px rgba(0, 0, 0, 0.13), 0px 1px 3px 2px rgba(0, 0, 0, 0.15);
	-webkit-animation: tutorial-init 0.8s cubic-bezier(.5,.03,.4,.9) 1;
	-moz-animation: tutorial-init 0.8s cubic-bezier(.5,.03,.4,.9) 1;
	animation: tutorial-init 0.8s cubic-bezier(.5,.03,.4,.9) 1;
}

.on-tutorial {
    box-shadow: 0px 1px 3px 2px rgba(0, 0, 0, 0.15);
}

.on-tutorial-remove{
	box-shadow: none;
	-webkit-transform: translateY(-30px);
	-moz-transform: translateY(-30px);
	transform: translateY(-30px);
	opacity:0;
}

.tutorial h2 {
    text-align: center;
    font-size: 16px;
    color: #000;
}

.tutorial p {
	text-indent: 15px;
}
.tutorial-buttons {
	display: flex;
	color: hsl(0, 0%, 0%);
	justify-content: flex-end;
}
.tutorial-next {
	color: hsl(150, 71%, 36%);
}

.tutorial-next[disabled="disabled"] {
	opacity: 0.5;
	cursor: default;
}

.tutorial-buttons > button {
	border: none;
	background: none;
	font-size: 19px;
	padding: 7px;
	border-radius: 3px;
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
.tutorial-cancel {
	color: #6B6B6B;
}
.tutorial-cancel:hover {
	background: #D7D7D7;
}
.tutorial-next:hover {
	background: #CDF4E1;
}

/*======================================*/

.modules {
	/* background: #E2E2E2; */
	position: absolute;
	width: 100%;
	height: 31px;
	overflow: hidden;

	-webkit-transition-property: box-shadow, perspective, z-index, top, height, background;
	-webkit-transition-duration: 0.25s, 0.25s, 0.25s, 0.5s, 0.5s;
	-webkit-transition-delay: 0.5s, 0.5s, 0.5s, 0s, 0s;
	-webkit-transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
	
	-moz-transition-property: box-shadow, perspective, z-index, top, height, background;
	-moz-transition-duration: 0.25s, 0.25s, 0.25s, 0.5s, 0.5s;
	-moz-transition-delay: 0.5s, 0.5s, 0.5s, 0s, 0s;
	-moz-transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);

	transition-property: box-shadow, perspective, z-index, top, height, background;
	transition-duration: 0.25s, 0.25s, 0.25s, 0.5s, 0.5s;
	transition-delay: 0.5s, 0.5s, 0.5s, 0s, 0s;
	transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);

	z-index: 1;
}

.module-active {
	top: 0px !important;
	height: 100%;
	perspective: 800px;
	z-index: 3;
	box-shadow: 0px 0px 3px #000;
	-webkit-transition-property: box-shadow, perspective, z-index, top, height, background;
	-webkit-transition-duration: 0.25s, 0.25s, 0.25s, 0.5s, 0.5s;
	-webkit-transition-delay: 0s, 0s, 0s, 0.25s, 0.25s;
	-webkit-transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);

	-moz-transition-property: box-shadow, perspective, z-index, top, height, background;
	-moz-transition-duration: 0.25s, 0.25s, 0.25s, 0.5s, 0.5s;
	-moz-transition-delay: 0s, 0s, 0s, 0.25s, 0.25s;
	-moz-transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);

	transition-property: box-shadow, perspective, z-index, top, height, background;
	transition-duration: 0.25s, 0.25s, 0.25s, 0.5s, 0.5s;
	transition-delay: 0s, 0s, 0s, 0.25s, 0.25s;
	transition-timing-function: cubic-bezier(0.55, 0, 0.1, 1);
}

.module-open {
	color: #FAFAFA;
	background: #E7E7E7;
}

.module-name-disable {
	height: 50px !important;
	padding-left: 40px !important;
	-webkit-transition-delay: 0.25s;
	-moz-transition-delay: 0.25s;
	transition-delay: 0.25s;
	font-size: 17px;
	font-weight: 700;
}

.module-name {
	position: relative;
	padding: 5px;
	height: 30px;
	display: flex;
	align-items: center;
}

.module-open > .module-name {
	background: #518bb8;
}

.module-open > .module-name-disable {
    background: #518BB8;
}

.remove-module {
	position: absolute;
	right: 0px;
	top: 0px;
	width: 30px;
	height: 30px;
	cursor: -webkit-grab;
	-webkit-transform: translateX(100%);	
	-moz-transform: translateX(100%);
	transform: translateX(100%);
	z-index: 10!important;
}

.module-open .remove-module {
	-webkit-transform: translateX(0%);
	-moz-transform: translateX(0%);
	transform: translateX(0%);
}

.module-active .remove-module {
	top: 10px;
}

.remove-module > i:before {
	content: "\f142";
	font-size: 20px;
	top: 5px;
	left: 15px !important;
	color: rgba(255, 255, 255, 0.5);
}

.module-pages {
	visibility: hidden;
	height: -webkit-calc(100% - 10px);
	height: -moz-calc(100% - 10px);
	height: calc(100% - 10px);
	-webkit-transition: all 0.75s;
	-moz-transition: all 0.75s;
	transition: all 0.75s;
	color: #1B1B1B;
}

.module-active > .module-pages {
	visibility: visible;
}

#notificationList {
	position: absolute;
	right: 50px;
	background: #fff;
	top: -400px;
	z-index: 95;
	display: flex;
	flex-direction: column;
	box-shadow: 0px 1px 3px #989898;
	border-radius: 0 0 3px 3px;
	transition-delay: 200ms;
}

#notificationList > h4 {
	padding-left: 7px;
	padding-right: 7px;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-between;
}
 
 #notificationList.focus {
	top: 40px;
 }


#notificationList > div {
	padding: 7px;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	color: #464646;
	z-index: 5465465;
}

#notificationList > div > button {
	background: #6290bc;
	color: #FFF;
	padding: 5px 12px;
	border-radius: 3px;
	border: 1px #1976d2 solid;
	box-shadow: 0px 1px 2px #8C8C8C;
	z-index: 546546;
	cursor: pointer;
}

.notify-count {
	padding: 3px;
	background: #4777C2;
	border-radius: 20px;
	margin-left: 10px;
	color: #fff;
	min-width: 21px;
	text-align: center;
}

#notification > .badge {
	position: absolute;
	right: 7px;
	top: 5px;
	background: #E53935;
	color: #fff;
	font-size: 11px;
	padding: 2px;
	border-radius: 2px;
	box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.11);
}

/** cor **/

.cores {
      position: absolute;
    bottom: -61px;
    left: -112px;
    background: #E2E2E2;
    padding: 5px 10px;
    border: 1px solid #C4C4C4;
    display: none;
}

/*.cores:after {
	position: absolute;
	content: "";
	width: 20px;
	height: 20px;
	background-color: #fff;
	transform: rotate(45deg);
	top: -11px;
	right: 4px;
	z-index: -1;
}*/

.cor {
	width: 100%;
	height: 20px;
	margin: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 3px;
	cursor: pointer;
	border: none;
	color: #fff !important;
}

.cor:hover {
	transform: scale(1.2);
}

.cor-1 {
  background-color: #0bb9b7;
}

.cor-2 {
  background-color: #EF6C00;
}

.cor-3 {
  background-color: #673ab7;
}

.cor-4 {
  background-color: #4caf50;
}

.cor-5 {
	background-color: #4495D1;
}



.dialog {
	font-family: Arial;
	background: #fff;
	width: 30%;
	height: 200px;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	box-shadow: 1px 0px 10px 1px rgba(0, 0, 0, 0.25);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

	.dialog.md-effect-3 {
		-webkit-transform: translateY(20%);
		-moz-transform: translateY(20%);
		-ms-transform: translateY(20%);
		transform: translateY(20%);
		opacity: 0;
	}

	.dialog.md-show.md-effect-3 {
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
		opacity: 1;
	}

.dialog-title {
	width: 100%;
	height: 15%;
	display: flex;
	justify-content: center;
	align-items: center;
	border-bottom: 1px solid #E0E0E0;
	/*color: #009688;*/
	font-weight: bold;
	text-transform: uppercase;
}

	.dialog-title span {
		width: 93%;
		text-align: center;
	}

.dialog i {
	cursor: pointer;
}

.dialog-content {
	width: 100%;
	height: 70%;
	padding: 4px 8px;
}

.dialog-buttons {
	width: 100%;
	height: 15%;
	border-bottom-left-radius: 15px;
	border-bottom-right-radius: 15px;
	border-top: 1px solid #E0E0E0;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	/*background: #009688;*/
}
	.dialog-buttons span {
		padding: 0px 0px 0px 5px;
	}

	.dialog-buttons button {
		margin: 5px;
		border: none;
		background-color: transparent;
		text-transform: uppercase;
		color: #fff;
		cursor: pointer;
	}

		.dialog-buttons button:focus {
			outline: 0;
		}

		.dialog-buttons button:last-child {
			border-bottom-right-radius: 10px;
			margin-right: 5px;
		}


.dialog-close {
	float: right;
	cursor: pointer;
}
