/*
 * Base structure
 */

/* Move down content because we have a fixed navbar that is 50px tall */
:root {
	--menu-lateral-botao: #333;
	--menu-lateral-texto-cor: white;
	--menu-lateral-tela-botoes-cor: #101010;
	--menu-lateral-tela-submenu-botoes-cor: #181c20;
	--menu-lateral-tela-selecionada-color-destaque: #d19b3d;
	--menu-lateral-tela-selecionada-bg-color: #4f5b69;
	--menu-lateral-li-border-left: #2e353d;
	--menu-lateral-li-border-bottom: #23282e;

	--footer-bck-gradient-start: rgb(0, 0, 0);
	--footer-bck-gradient-end: rgb(41, 85, 103);

 		/*--purple: #8b52bf;
		--blue: #000082;
		--cyan: #005d69;
		--green: #006c15;
		--orange: #b37200;
		--red: #620000;
		--default: #222222;*/
}

.custom-theme #menuLogo { 
	border: solid 1px;
	border-radius: 3px;
	border-color: #FFFFFF;
	background-color: #FFFFFF;
	padding: 8px;
}

.custom-theme #navbar > ul > li > a{
	color: #FFFFFF;

	&:hover {
		color: lightgrey;
	}
}

.color-purple {
	--menu-lateral-botao: #e0aaff;
	--menu-lateral-tela-botoes-cor: #8b52bf;
	--menu-lateral-tela-submenu-botoes-cor: #9567be;
	--menu-lateral-tela-selecionada-color-destaque: #826aed;
	--menu-lateral-tela-selecionada-bg-color: #e0aaff;
	--menu-lateral-li-border-left: #3a0967;
	--menu-lateral-li-border-bottom: #3a0967;

	--footer-bck-gradient-start: #8b52bf;
}

.color-blue {
	--menu-lateral-botao: #6697f1;
	--menu-lateral-tela-botoes-cor: #000082;
	--menu-lateral-tela-submenu-botoes-cor: #597cd3;
	--menu-lateral-tela-selecionada-color-destaque: #0051e9;
	--menu-lateral-tela-selecionada-bg-color: #6697f1;
	--menu-lateral-li-border-left: #6697f1;
	--menu-lateral-li-border-bottom: #6697f1;

	--footer-bck-gradient-start: #000082;
}

.color-cyan {
	--menu-lateral-botao: #ade8f4;
	--menu-lateral-tela-botoes-cor: #005d69;
	--menu-lateral-tela-submenu-botoes-cor: #12a5b4;
	--menu-lateral-tela-selecionada-color-destaque: #00b6cb;
	--menu-lateral-tela-selecionada-bg-color: #ade8f4;
	--menu-lateral-li-border-left: #023439;
	--menu-lateral-li-border-bottom: #023439;

	--footer-bck-gradient-start: #005d69;
}

.color-green {
	--menu-lateral-botao: #7dc380;
	--menu-lateral-tela-botoes-cor: #006c15;
	--menu-lateral-tela-submenu-botoes-cor: #409951;
	--menu-lateral-tela-selecionada-bg-color: #7dc380;
	--menu-lateral-tela-selecionada-color-destaque: #006c15;
	--menu-lateral-li-border-left: #00390b;
	--menu-lateral-li-border-bottom: #00390b;

	--footer-bck-gradient-start: #006c15;
}

.color-orange {
	--menu-lateral-botao: #d3b073;
	--menu-lateral-tela-botoes-cor: #b37200;
	--menu-lateral-tela-submenu-botoes-cor: #cb973b;
	--menu-lateral-tela-selecionada-bg-color: #d3b073;
	--menu-lateral-tela-selecionada-color-destaque: #b37200;
	--menu-lateral-li-border-left: #472d00;
	--menu-lateral-li-border-bottom: #472d00;

	--footer-bck-gradient-start: #b37200;
}

.color-red {
	--menu-lateral-botao: #be6060;
	--menu-lateral-tela-botoes-cor: #620000;
	--menu-lateral-tela-submenu-botoes-cor: #ac2d2d;
	--menu-lateral-tela-selecionada-bg-color: #be6060;
	--menu-lateral-tela-selecionada-color-destaque: #620000;
	--menu-lateral-li-border-left: #be6060;
	--menu-lateral-li-border-bottom: #be6060;

	--footer-bck-gradient-start: #620000;
}

body {
	padding-top: 50px;
}

#menuLateral{
	color: var(--menu-lateral-texto-cor);
	border: solid 1px var(--menu-lateral-botao);
	border-radius: 4px;
	padding: 9px 10px;
}
#menuLateral:hover{
	background-color: var(--menu-lateral-botao);
}

/*
 * Main content / Side bar
 */
.main {
	padding-top: 20px;
	padding-bottom: 20px;
}
.main .page-header {
	margin-top: 0;
}

.toggled {
	width: 0 !important;
	padding: 0 !important;
	min-width: 0 !important;
}
.nav-side-menu .menu-list .menu-content {
	display: block;
}

.nav-side-menu{
	overflow-x: hidden;
	overflow-y: auto; /* Scrollable contents if viewport is shorter than content. */
	background-color: var(--menu-lateral-tela-botoes-cor);
	min-width: 225px;
}

@media (max-width: 767px) {
	.nav-side-menu {
		width: 0 !important;
		padding: 0 !important;
		min-width: 0px;
	}
	.toggled {
		width: 100% !important;
		/*max-width: 275px !important;*/
	}
	.toggledHidden{
		width: 0;
		opacity: 0;
		padding: 0;
		filter: alpha(opacity=0);
		background-color: #000;
		overflow: hidden;
	}
	.toggledHidden *{
		width: 0;
		padding: 0;
		margin: 0;
	}
}
@media (min-width: 767px) {
	.main {
		/*padding-right: 40px;
		padding-left: 40px;*/
		min-height: 500px;
	}
	.nav-side-menu{
		padding-left: 20px;
		padding-right: 0px;
	}
	.toggledHidden{
		width: 100% !important;
	}
}
.nav-side-menu ul,
.nav-side-menu li {
	list-style: none;
	padding: 0px;
	margin: 0px;
	line-height: 35px;
	cursor: pointer;
}
.nav-side-menu ul :not(collapsed) .arrow:before,
.nav-side-menu li :not(collapsed) .arrow:before {
	font-family: FontAwesome;
	content: "\f078";
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
	vertical-align: middle;
	float: right;
	-webkit-transition: -webkit-transform .2s ease-in-out;  
	-moz-transition: -moz-transform .2s ease-in-out;  
	-o-transition: -o-transform .2s ease-in-out;  
	-ms-transition: -ms-transform .2s ease-in-out;  
	transition: transform .2s ease-in-out;  
}
.nav-side-menu ul .active,
.nav-side-menu li .active {
	border-left: 3px solid var(--menu-lateral-tela-selecionada-color-destaque);
	background-color: var(--menu-lateral-tela-selecionada-bg-color);
}
.nav-side-menu ul .sub-menu li.active,
.nav-side-menu li .sub-menu li.active {
	color: var(--menu-lateral-tela-selecionada-color-destaque);
}
.nav-side-menu ul .sub-menu li.active a,
.nav-side-menu li .sub-menu li.active a {
	color: var(--menu-lateral-tela-selecionada-color-destaque);
}
.nav-side-menu .sub-menu-item{
	background-color: var(--menu-lateral-tela-submenu-botoes-cor);
	border: none;
	border-bottom: 1px solid #23282e;
	margin-left: 0px;
}
/*
.nav-side-menu ul .sub-menu li,
.nav-side-menu li .sub-menu li {
	background-color: #181c20;
	border: none;
	line-height: 28px;
	border-bottom: 1px solid #23282e;
	margin-left: 0px;
}

.nav-side-menu ul .sub-menu li:hover,
.nav-side-menu li .sub-menu li:hover {
	background-color: #020203;
}
*/
.nav-side-menu .sub-menu-item:hover{
	background-color: #020203;
}
.nav-side-menu li .sub-menu .sub-menu-item:before {
	font-family: FontAwesome;
	content: "\f105";
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
	vertical-align: middle;
}
/*
.nav-side-menu ul .sub-menu li:before,
.nav-side-menu li .sub-menu li:before {
	font-family: FontAwesome;
	content: "\f105";
	display: inline-block;
	padding-left: 10px;
	padding-right: 10px;
	vertical-align: middle;
}
*/
.nav-side-menu li {
	padding-left: 0px;
	border-left: 3px solid var(--menu-lateral-li-border-left);
	border-bottom: 1px solid var(--menu-lateral-li-border-bottom);
}
.nav-side-menu li a {
	text-decoration: none;
	color: var(--menu-lateral-texto-cor);
}
.nav-side-menu li a i {
	padding-left: 10px;
	width: 20px;
	padding-right: 20px;
}

.nav-side-menu li.collapsed .arrow:before {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

li.sub-menu-item > a {
	transition: margin 0.3s;
	-o-transition: margin 0.3s;
    -ms-transition: margin 0.3s;
    -moz-transition: margin 0.3s;
    -webkit-transition: margin 0.3s;
}

.nav-side-menu > div.menu-list > ul.menu-content > li.collapse > ul.sub-menu > li.collapse > ul.sub-menu > li.sub-menu-item > a {
	margin-left: 15px;
}

.nav-side-menu .menu-list-title:hover{
	background-color: var(--menu-lateral-tela-selecionada-bg-color);
}

.nav-side-menu .sub-menu-item:hover {
	border-left: 3px solid var(--menu-lateral-tela-selecionada-color-destaque);
	background-color: var(--menu-lateral-tela-selecionada-bg-color);
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
/*
.nav-side-menu li:hover {
	border-left: 3px solid #d19b3d;
	background-color: #4f5b69;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	-ms-transition: all 1s ease;
	transition: all 1s ease;
}
*/

/*
 * Global add-ons
 */

.sub-header {
	padding-bottom: 10px;
	border-bottom: 1px solid #eee;
}

footer {
	width:100%;
	color: #8c8b8b;
	background-image: linear-gradient(var(--footer-bck-gradient-start), var(--footer-bck-gradient-end));
}

footer a{
	color: #00CBFE;
}

footer p:last-child {
	margin-bottom: 0;
}

/**
 * Util
 */
.row-eq-height {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}
.animate-all{
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	transition: all 0.5s ease;
}

.bold{
	font-weight: bold;
}

#iXLS{
	width: 0px;
	height: 0px;
	position: absolute;
	top: -500px;
	border: 0px;
	background: transparent;
}

.hoverTh th:hover{
	cursor: pointer;
	background-color: #f9f9f9;
	border-radius: 4px;
}

.cursor-pointer{
	cursor: pointer;
}

.font-normal{
	font-weight: normal;
}

.underline{
	text-decoration: underline;
}

.line-through{
	text-decoration: line-through;
}

.radius-padding{
	padding: 5px;
	border-radius: 2px;
}

.spin {
	-webkit-animation-name: spin;
	-webkit-animation-duration: 1000ms;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;


	-moz-animation-name: spin;
	-moz-animation-duration: 1000ms;
	-moz-animation-iteration-count: infinite;
	-moz-animation-timing-function: linear;

	-ms-animation-name: spin;
	-ms-animation-duration: 1000ms;
	-ms-animation-iteration-count: infinite;
	-ms-animation-timing-function: linear;

	animation-name: spin;
	animation-duration: 1000ms;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

@-moz-keyframes spin {
	from { -moz-transform: rotate(0deg); }
	to { -moz-transform: rotate(360deg); }
}
@-webkit-keyframes spin {
	from { -webkit-transform: rotate(0deg); }
	to { -webkit-transform: rotate(360deg); }
}
@-ms-keyframes spin {
	from { -ms-transform: rotate(0deg); }
	to { -ms-transform: rotate(360deg); }
}
@keyframes spin {
	from { transform:rotate(0deg); }
	to { transform:rotate(360deg); }
}
.AnexosDragOver{
	border-color: blue !important;
}

.bd-bottom{
	margin-bottom: 5px;
	padding-bottom:14px;
	border-bottom: 1px solid #eee;
}

.modal-xlg {
	width: 95%;
}

.text-normal{
	font-size: 100%;
	font-weight: inherit;
}

.width-90{
	width: 90%;
	margin-top: 3px;
}

.a-btn-drop-down{
	display: inline-block !important;
	padding: 6px 12px !important;
}

.all-copy{
	-webkit-user-select: all;/* Chrome all / Safari all */
	-moz-user-select: all;/* Firefox all */
	-ms-user-select: all;/* IE 10+ */
	user-select: all;/* Likely future */
	cursor: cell;
}

.form-control[readonly]{
	-webkit-user-select: all;/* Chrome all / Safari all */
	-moz-user-select: all;/* Firefox all */
	-ms-user-select: all;/* IE 10+ */
	user-select: all;/* Likely future */
}

.pd-top{
	padding-top: 10px;
}

.mg-top{
	margin-top: 10px;
}
.bd-solid{
	border: solid 1px;
}
.ocultar{
	display: none;
}
footer img{
	width: 80%;
}
footer a:hover{
	color: white;
}
@media(min-width:560px){
	.ocultar{
		display: block;
	}
	footer img{
		width: auto;
	}
}
/*Adicionado para corrigir bug no chrome de nao aparecer cor de background*/
#dvContainer{
	background-color: #101010;
}
#dvBody{
	background-color: #FFF;
}
.table-small{
	font-size: 75%;
}

.border-radius{
	border-radius: 2px;
}



.text-purple {
	color: #840886;
}
.bg-purple {
	background-color: #d8a4f9;
}
.table > thead > tr > td.purple,
.table > tbody > tr > td.purple,
.table > tfoot > tr > td.purple,
.table > thead > tr > th.purple,
.table > tbody > tr > th.purple,
.table > tfoot > tr > th.purple,
.table > thead > tr.purple > td,
.table > tbody > tr.purple > td,
.table > tfoot > tr.purple > td,
.table > thead > tr.purple > th,
.table > tbody > tr.purple > th,
.table > tfoot > tr.purple > th {
	background-color: #d8a4f9;
}
.table-hover > tbody > tr > td.purple:hover,
.table-hover > tbody > tr > th.purple:hover,
.table-hover > tbody > tr.purple:hover > td,
.table-hover > tbody > tr:hover > .purple,
.table-hover > tbody > tr.purple:hover > th {
  background-color: #cd9deb;
}

.text-orange {
	color: #865808;
}

.bg-orange {
	background-color: #f9daa4;
}
.table > thead > tr > td.orange,
.table > tbody > tr > td.orange,
.table > tfoot > tr > td.orange,
.table > thead > tr > th.orange,
.table > tbody > tr > th.orange,
.table > tfoot > tr > th.orange,
.table > thead > tr.orange > td,
.table > tbody > tr.orange > td,
.table > tfoot > tr.orange > td,
.table > thead > tr.orange > th,
.table > tbody > tr.orange > th,
.table > tfoot > tr.orange > th {
	background-color: #f9daa4;
}
.table-hover > tbody > tr > td.orange:hover,
.table-hover > tbody > tr > th.orange:hover,
.table-hover > tbody > tr.orange:hover > td,
.table-hover > tbody > tr:hover > .orange,
.table-hover > tbody > tr.orange:hover > th {
  background-color: #f3d5a1;
}

.text-cyan {
	color: #023451;
}

.bg-cyan {
	background-color: #66d2d2;
}
.table > thead > tr > td.cyan,
.table > tbody > tr > td.cyan,
.table > tfoot > tr > td.cyan,
.table > thead > tr > th.cyan,
.table > tbody > tr > th.cyan,
.table > tfoot > tr > th.cyan,
.table > thead > tr.cyan > td,
.table > tbody > tr.cyan > td,
.table > tfoot > tr.cyan > td,
.table > thead > tr.cyan > th,
.table > tbody > tr.cyan > th,
.table > tfoot > tr.cyan > th {
	background-color: #66d2d2;
}
.table-hover > tbody > tr > td.cyan:hover,
.table-hover > tbody > tr > th.cyan:hover,
.table-hover > tbody > tr.cyan:hover > td,
.table-hover > tbody > tr:hover > .cyan,
.table-hover > tbody > tr.cyan:hover > th {
  background-color: #64c4c4;
}

.text-pink {
	color: #91377d;
}

.bg-pink {
	background-color: #f994e4;
}
.table > thead > tr > td.pink,
.table > tbody > tr > td.pink,
.table > tfoot > tr > td.pink,
.table > thead > tr > th.pink,
.table > tbody > tr > th.pink,
.table > tfoot > tr > th.pink,
.table > thead > tr.pink > td,
.table > tbody > tr.pink > td,
.table > tfoot > tr.pink > td,
.table > thead > tr.pink > th,
.table > tbody > tr.pink > th,
.table > tfoot > tr.pink > th {
	background-color: #f994e4;
}
.table-hover > tbody > tr > td.pink:hover,
.table-hover > tbody > tr > th.pink:hover,
.table-hover > tbody > tr.pink:hover > td,
.table-hover > tbody > tr:hover > .pink,
.table-hover > tbody > tr.pink:hover > th {
  background-color: #ed8dd9;
}

.scrollTypeahead .dropdown-menu {
	max-height: 200px;
	overflow-y: auto;
}

.typeaheadInputWidth .dropdown-menu {
	width: 100%;
}

.select-input-group{
	width: auto; 
	border-radius: 0 0 0 0 !important;
	min-width: 80px;
	max-width: 120px;
	margin-left: -1px;
}

.select-input-group:last-child{
	border-radius: 0 4px 4px 0 !important;
}