﻿/* -------------------- */
/* [ SAGRES MATRÍCULA ] */
/* -------------------- */
* {
	margin: 0;
	padding: 0;
	border: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-moz-user-select: none;
	-ms-user-select: none;
	-webkit-user-select: none;
	user-select: none;
}

input, textarea {
	-moz-user-select: initial;
	-ms-user-select: initial;
	-webkit-user-select: initial;
	user-select: initial;
}

body {
	color: #333;
	background-color: #fff;
	font: normal 100%/1.4 "Segoe UI", Frutiger, "Frutiger Linotype", "Dejavu Sans", "Helvetica Neue", Arial, sans-serif;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
	-webkit-font-smoothing: antialiased;
	text-shadow: 0 0 1px rgba(0, 0, 0, 0.01);
	-webkit-text-stroke: 1px transparent;
}

html, body {
	overflow-x: hidden;
}

::selection {
	background: #007998;
	color: white;
}

a {
	text-decoration: none;
	color: #333;
}

ul, li {
	list-style: none;
}

.clear:after {
	clear: both;
	content: " ";
	display: block;
}

.left {
	float: left;
}

.right {
	float: right;
}

.text-left {
	text-align: left;
}

.text-center {
	text-align: center;
}

.text-right {
	text-align: right;
}

.loading {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 150px;
	margin: -75px auto 0 -75px;
	color: #999;
	text-transform: uppercase;
	height: 150px;
	line-height: 150px;
	text-align: center;
	display: none;
}

.half-opacity {
    opacity: .5;
}

.ui-loader-default {
	opacity: .5;
}

.ui-loader:before {
	content: 'Aguarde…';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3rem;
	height: 3rem;
	margin-top: -1.5rem;
	margin-left: -1.5rem;
}

.ui-loader:not(:required):before {
	content: '';
	border-radius: 50%;
	border: 3px solid #fff;
	border-top-color: black;
	-moz-animation: spinner .6s linear infinite;
	-o-animation: spinner .6s linear infinite;
	-webkit-animation: spinner .6s linear infinite;
	animation: spinner .6s linear infinite;
}

.ui-loader .ui-icon-loading {
	background: transparent;
}

@keyframes spinner {
	to {
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes spinner {
	to {
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes spinner {
	to {
		-moz-transform: rotate(360deg), scale(1);
		-ms-transform: rotate(360deg), scale(1);
		-o-transform: rotate(360deg), scale(1);
		-webkit-transform: rotate(360deg), scale(1);
		transform: rotate(360deg), scale(1);
	}
}

.input-texto {
	border: 2px solid #dbdbdb;
	height: 34px;
	line-height: 20px;
	text-indent: 5px;
}

.input-texto:focus {
	border-color: #ed7e56;
	outline: none;
}

.botao {
	height: 2rem;
	padding: 0 .5rem;
	background-color: rgba(0, 0, 0, 0.1);
	font-size: .8rem;
	border-radius: .3rem;
	cursor: pointer;
	line-height: 1.9;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
}

button, input, textarea {
	font-family: inherit;
}

.botao:hover {
	background-color: #bbb;
}

.botao-colorido {
	background-color: #2C9700;
	color: white;
}

.botao-colorido:hover {
	background-color: #288900;
}

.botao-colorido-desabilitado {
	background-color: #568443;
	color: white;
}

.botao-colorido-desabilitado:hover {
	background-color: #4A703A;
}

.botao-sair {
	background-color: #f30800;
	color: white;
}

.botao-sair:hover {
	background-color: #da0a03;
}

.botao:active {
	-moz-transform: translateY(2px);
	-ms-transform: translateY(2px);
	-o-transform: translateY(2px);
	-webkit-transform: translateY(2px);
	transform: translateY(2px);
}

.botao-ico {
	text-indent: -999px;
	width: 44px;
}

.pagina-titulo {
	float: left;
	font-weight: 100;
	font-size: 1.4rem;
	margin: .5rem 0 0 1rem;
}

.botao-info-matricula {
	color: #3F4DB5;
	padding: .3rem;
	margin: .5rem 0 0 .5rem;
	display: inline-block;
	border-radius: .3rem;
	font-size: 1.5rem;
}

.botao-info-painel-valores {
	color: #3F4DB5;
	padding: .3rem;
	display: inline;
	border-radius: .3rem;
	font-size: 1.0rem;
}

/* Classe para ocultar itens na tela de forma acessível */
.oculto {
	border: 0 !important;
	clip: rect(1px 1px 1px 1px);
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px !important;
	overflow: hidden;
	padding: 0 !important;
	position: absolute !important;
	width: 1px !important;
	z-index: -99999;
}
/* Classe para mostrar elemento apenas na versão mobile */
.mostrar-mobile {
	display: none;
}

.anim-fadeIn {
	-moz-animation: fadeIn 1s 1;
	-o-animation: fadeIn 1s 1;
	-webkit-animation: fadeIn 1s 1;
	animation: fadeIn 1s 1;
}

@keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-moz-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

/* ----------------- */
/* [ JQUERY MOBILE ] */
/* ----------------- */
.ui-content {
	background-color: #FFF;
	padding: 0;
}

#ConteudoPrincipal > .ui-content {
	overflow-y: scroll;
}

.ui-popup-screen.in {
	background: black;
}

.ui-popup.ui-body-inherit {
	border-color: #FFF;
	background: #FFF;
}

.ui-panel-inner {
	padding: 0;
}

.ui-header .ui-title {
	color: #FFF;
	font-weight: normal;
	margin: 0 3rem;
}

.header-logo {
	background-color: rgba(0, 0, 0, 0.3);
	width: 100%;
	padding: 5px;
	height: 50px;
}

.header-logo img {
	height: 40px;
	width: 200px;
}


/* ---------- */
/* [ ÍCONES ] */
/* ---------- */
@font-face {
	font-family: 'sagresmatricula';
	src: url('fonts/sagresmatricula.eot?nautp5');
	src: url('fonts/sagresmatricula.eot?nautp5#iefix') format('embedded-opentype'), url('fonts/sagresmatricula.ttf?nautp5') format('truetype'), url('fonts/sagresmatricula.woff?nautp5') format('woff'), url('fonts/sagresmatricula.svg?nautp5#sagresmatricula') format('svg');
	font-weight: normal;
	font-style: normal;
}

[class^="icone-"], [class*=" icone-"] {
	font-family: 'sagresmatricula';
	speak: none;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
	text-transform: none;
	line-height: 1;
	/* Better Font Rendering =========== */
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

.icone-alerta:before {
	content: "\e602";
}

.icone-ancora:before {
	content: "\29";
}

.icone-aprovado:before {
	content: "\26";
}

.icone-asterisco:before {
	content: "\e604";
}

.icone-atualizar:before {
	content: "\65";
}

.icone-baixo-1:before {
	content: "\e606";
}

.icone-baixo-2:before {
	content: "\e607";
}

.icone-bandeira:before {
	content: "\e609";
}

.icone-blocos:before {
	content: "\72";
}

.icone-bloqueio:before {
	content: "\e60a";
}

.icone-busca:before {
	content: "\e60b";
}

.icone-cadeado:before {
	content: "\e60c";
}

.icone-cadeado-aberto:before {
	content: "\e60d";
}

.icone-calendario:before {
	content: "\e60f";
}

.icone-check:before {
	content: "\32";
}

.icone-check2:before {
	content: "\e611";
}

.icone-cima-1:before {
	content: "\e612";
}

.icone-cima-2:before {
	content: "\e613";
}

.icone-circ-ajuda:before {
	content: "\e616";
}

.icone-circ-mais:before {
	content: "\e618";
}

.icone-circ-alerta:before {
	content: "\e617";
}

.icone-circ-info:before {
	content: "\e61b";
}

.icone-codigo:before {
	content: "\e61f";
}

.icone-compartilhar:before {
	content: "\e621";
}

.icone-comunidade:before {
	content: "\e622";
}

.icone-config2:before {
	content: "\e624";
}

.icone-dinheiro:before {
	content: "\e600";
}

.icone-dir-2:before {
	content: "\e627";
}

.icone-download:before {
	content: "\e62e";
}

.icone-dropbox:before {
	content: "\37";
}

.icone-editar:before {
	content: "\e62f";
}

.icone-equipe:before {
	content: "\e630";
}

.icone-esq-2:before {
	content: "\e632";
}

.icone-estrela:before {
	content: "\2e";
}

.icone-estrela-linha:before {
	content: "\6b";
}

.icone-etc:before {
	content: "\e634";
}

.icone-facebook:before {
	content: "\33";
}

.icone-filtro:before {
	content: "\6d";
}

.icone-globo:before {
	content: "\e66e";
}

.icone-gplus:before {
	content: "\35";
}

.icone-hierarquia:before {
	content: "\e63a";
}

.icone-ideia:before {
	content: "\e63c";
}

.icone-impressora:before {
	content: "\e640";
}

.icone-inicio:before {
	content: "\63";
}

.icone-link:before {
	content: "\46";
}

.icone-linkedin:before {
	content: "\34";
}

.icone-lista:before {
	content: "\e644";
}

.icone-livro:before {
	content: "\e645";
}

.icone-lixeira:before {
	content: "\e647";
}

.icone-local:before {
	content: "\e649";
}

.icone-magica:before {
	content: "\70";
}

.icone-mais:before {
	content: "\e64b";
}

.icone-marcador:before {
	content: "\e64d";
}

.icone-marcador1:before {
	content: "\2f";
}

.icone-menos:before {
	content: "\e64e";
}

.icone-mensagem:before {
	content: "\e64f";
}

.icone-menu:before {
	content: "\e650";
}

.icone-mobile:before {
	content: "\e651";
}

.icone-montar:before {
	content: "\28";
}

.icone-notificacao:before {
	content: "\e652";
}

.icone-nuvem:before {
	content: "\47";
}

.icone-ocultar:before {
	content: "\4d";
}

.icone-ordenar:before {
	content: "\e61a";
}

.icone-pin:before {
	content: "\23";
}

.icone-pin-linha:before {
	content: "\24";
}

.icone-popup:before {
	content: "\e657";
}

.icone-portal:before {
	content: "\e601";
}

.icone-postar:before {
	content: "\e658";
}

.icone-raio:before {
	content: "\2a";
}

.icone-reciclar:before {
	content: "\e65b";
}

.icone-relogio:before {
	content: "\e65c";
}

.icone-relogio-cheio:before {
	content: "\e65e";
}

.icone-renovar:before {
	content: "\e65f";
}

.icone-reprovado:before {
	content: "\27";
}

.icone-smile1:before {
	content: "\3a";
}

.icone-smile2:before {
	content: "\3b";
}

.icone-smile3:before {
	content: "\3c";
}

.icone-social:before {
	content: "\e661";
}

.icone-telefone:before {
	content: "\e664";
}

.icone-texto:before {
	content: "\e665";
}

.icone-toga:before {
	content: "\e60e";
}

.icone-twitter:before {
	content: "\36";
}

.icone-upload:before {
	content: "\e667";
}

.icone-usuario:before {
	content: "\e668";
}

.icone-usuarios:before {
	content: "\e669";
}

.icone-ver:before {
	content: "\4c";
}

.icone-x:before {
	content: "\e66c";
}


/* --------------- */
/* PÁGINA DE LOGIN */
/* --------------- */
.login-body {
	background: #05314D;
	color: #EFEFEF;
}

.login-body .ui-content {
	overflow: hidden;
	background-color: rgba(0, 0, 0, 0);
}

.login-body .ui-header .ui-title {
	font-weight: normal;
	font-size: 1.6em;
	margin: 0 auto;
}

.login-body .ui-header, .ui-footer {
	border: none;
	height: auto;
}

.login-logo {
	background: url(./images/logo-matricula.png) no-repeat center center;
	width: 400px;
	background-size: auto 100%;
	text-indent: -999px;
	height: 80px;
	margin: 40px auto !important;
}

.login-form {
	text-align: center;
	padding: .3rem;
}

.login-input {
	background: rgba(255, 255, 255, 0.8);
	border: none;
}

.login-botao {
	background: #DC4C18;
	color: white;
}

.login-input, .login-botao {
	border-radius: .2rem;
	height: 34px;
	line-height: 20px;
	width: 50%;
	margin: 0 auto;
	font-size: .9rem;
	min-height: 2.5rem;
	padding-left: 5px;
}

.login-body .ui-footer .ui-title {
	background: url(./images/logo-trends.png) no-repeat center center;
	background-size: 100%;
	opacity: .8;
	width: 120px;
	text-indent: -999px;
	margin: 40px auto !important;
}

.login-body .ui-footer .ui-title:hover {
	opacity: 1;
}

/* ------ */
/* HEADER */
/* ------ */
.topo.ui-header {
	background: #005186;
	border: none;
	height: 50px;
	overflow: hidden;
}

.ui-header {
	border: none;
}

.header-titulo {
	color: white;
	float: left;
	line-height: 50px;
	padding-left: 235px;
}

.header-info-user {
	float: right;
}

.header-info {
	float: left;
	margin: 15px 15px 0 0;
	-moz-transition: .1s;
	-o-transition: .1s;
	-webkit-transition: .1s;
	transition: .1s;
}

.header-info.sessao-expirando {
	margin: 5px 15px 0 0;
}

.header-usuario {
	display: block;
	font-size: 14px;
	color: #efefef;
	max-width: 10rem;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
}

.header-sessao {
	display: none;
	color: #FF7A00;
	font-size: .75rem;
	line-height: 22px;
	text-align: right;
}

.header-sessao span {
	font-size: .9rem;
	margin: 1px 0 0 5px;
}

.header-info.sessao-expirando .header-sessao {
	display: block;
}

.header-img {
	float: left;
}

.header-button {
	height: 50px;
	padding: 0 15px;
	float: left;
	color: #efefef;
	text-align: center;
	font-size: .8rem;
	line-height: 50px;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
}

.header-button:hover {
	background: rgba(0,0,0,0.2);
}

#social{
    cursor:default;
}

#social:hover{
    background: rgba(0,0,0,0);
    cursor:default;
}

.header-button.botao-ico {
	padding: 0;
	width: 50px;
	text-indent: 0;
	line-height: 53px;
}

.header-button .icone {
	font-size: 1.15rem;
}

.header-mobile {
	display: none;
}

.introducao-link {
	cursor: pointer;
	padding: 0 1.2rem;
	line-height: 2.4;
	background-color: rgba(0, 150, 136, 0.7);
	height: 2.45rem;
	font-size: 1rem;
	margin: .5rem;
	position: relative;
	color: #fff;
}

.introducao-link:hover {
	opacity: .8;
}

.introducao-link-fechar {
	position: absolute;
	height: 2.45rem;
	width: 2.45rem;
	text-align: center;
	color: #333;
	right: 0;
	top: 0;
	background-color: rgba(249, 249, 249, 0.3);
	line-height: 2.4;
}

.tooltip-lateral + .introjs-tooltipReferenceLayer > .introjs-helperNumberLayer { 
	left: 6px;
}

/* ------------------ */
/* [ PAINEL LATERAL ] */
/* ------------------ */
.painel {
	background: #005186;
	float: left;
	width: 225px;
}

.menu-item {
	color: #efefef;
	display: block;
	padding: 10px 7px;
	position: relative;
	font-size: .9rem;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
}

.menu-item:hover, .menu-item-ativo {
	background-color: rgba(0, 0, 0, 0.2);
	color: #ff9122;
}

.menu-item .icone {
	float: left;
	margin: 2px 5px;
}

.menu-item-ativo::after {
	right: 0;
	top: 0;
	border: solid transparent;
	content: " ";
	height: 0;
	width: 0;
	position: absolute;
	pointer-events: none;
	border-color: rgba(255, 255, 255, 0);
	border-right-color: #fff;
	border-width: 19px;
}

.desabilitar-menu-item {
	opacity: 0.5;
}

.desabilitar-menu-item a {
	cursor: default;
	pointer-events: none;
}

.progresso-div {
	margin: 10px 10px 20px 10px;
}

.progresso {
	background: rgba(0, 0, 0, 0.3);
	height: 12px;
	position: relative;
	margin-right: 46px;
	border-radius: 8px;
}

.progresso-cor {
	height: 12px;
	max-width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 8px;
	background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAEAQMAAACTPww9AAAABlBMVEUAAAD///+l2Z/dAAAAAnRSTlNNADNE/HAAAAAZSURBVHheBcCBEAAADALARxpSSEMKrXNeZQbIAeHbwdu4AAAAAElFTkSuQmCC');
	background-position: 0 0;
	background-repeat: repeat;
	-moz-transition: .5s linear;
	-o-transition: .5s linear;
	-webkit-transition: .5s linear;
	transition: .5s linear;
}

.progresso-azul {
	background-color: #007BE4;
}

.progresso-amarelo {
	background-color: #FF7A00;
}

.progresso-titulo {
	font-size: .75rem;
	color: #efefef;
}

.progresso-label {
	color: #333;
	font-size: .75rem;
	width: 34px;
	height: 24px;
	position: absolute;
	right: -46px;
	top: -6px;
	background-color: #DDD;
	line-height: 24px;
	text-align: center;
	border-radius: 3px;
}

.progresso-label::before {
	content: "";
	width: 0;
	height: 0;
	border-top: 6px solid rgba(0, 0, 0, 0);
	border-bottom: 6px solid rgba(0, 0, 0, 0);
	border-right: 6px solid #DDD;
	left: -6px;
	position: absolute;
	top: 6px;
}

.painel-valores {
	overflow: hidden;
	color: #FFF;
	font-size: 0.8rem;
	padding: .5rem;
	position: relative;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
}

.painel-valores.atualizando-valores {
	opacity: .5;
}

.painel-valores .icone-dinheiro {
	color: #4CAF50;
	float: left;
	margin: .5rem .5rem 0 0;
	line-height: 1.4;
	font-size: 1.3rem;
	background-color: rgba(0, 0, 0, 0.2);
	width: 2rem;
	text-align: center;
	border-radius: 50%;
	height: 2rem;
}

.painel-valores .icone-atualizar {
	color: #FFF;
	font-size: 1.3rem;
	top: 35%;
	right: .5rem;
	position: absolute;
}

.painel-valores.atualizando-valores .icone-atualizar {
	cursor: default;
}

.painel-valores .icone-atualizar:hover {
    cursor: pointer;
}

.painel-valores.atualizando-valores .icone-atualizar {
	-moz-animation: girando .8s infinite linear;
	-o-animation: girando .8s infinite linear;
	-webkit-animation: girando .8s infinite linear;
	animation: girando .8s infinite linear;
}

.painel-valores-resumo{
  width: 15% !important;
  overflow: unset !important; 
}

@keyframes girando {
	0% {
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-moz-keyframes girando {
	0% {
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

@-webkit-keyframes girando {
	0% {
		-moz-transform: rotate(0);
		-ms-transform: rotate(0);
		-o-transform: rotate(0);
		-webkit-transform: rotate(0);
		transform: rotate(0);
	}

	100% {
		-moz-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		-o-transform: rotate(360deg);
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

.painel-valores .valor {
	font-size: 1.2rem;
	font-weight: 100;
}

.painel-botoes {
	padding: 60px 10px 10px 10px;
	text-align: center;
}

.painel-botoes .botao {
	margin: 5px;
}

.painel-botoes .botao-colorido {
	width: 90%;
}

.painel-botoes .botao.botao-sair {
	width: 90%;
	margin: 5px auto;
}

/* -------------------- */
/* [ SELEÇÃO DE CURSO ] */
/* -------------------- */
.tela-pre-matricula {
	padding: 1rem;
}

.tela-pre-matricula h2 {
	font-size: 1rem;
	font-weight: normal;
	color: #666;
	padding: 2rem .5rem .5rem 0;
}

.tela-pre-matricula h2:first-child {
	padding-top: 0;
}

.selecao-curso {
	float: left;
	margin: .5rem 1rem;
	position: relative;
}

.selecao-curso .botao-cursos {
	height: 34px;
	width: 150px;
	background-color: #ECECEC;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
	padding: 0 .3rem;
	text-align: left;
	overflow: hidden;
	white-space: nowrap;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
  cursor: pointer;
}

.selecao-curso .submenu {
	width: 300px;
}

.selecao-curso .submenu .selecao-curso-item, .selecao-habilitacao-item {
	display: block;
	width: 100%;
}

.ui-mobile label.selecao-curso-item, label.selecao-habilitacao-item {
	background: #eee;
	display: inline-block;
	font-size: .8rem;
	height: 2.2rem;
	margin: 0;
	padding: .5rem;
	position: relative;
	width: 280px;
	white-space: nowrap;
	overflow: hidden;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
}

.ui-mobile label.selecao-curso-item.selecionado, label.selecao-habilitacao-item.selecionado {
	background: #2C9700;
	color: white;
}

.ui-mobile label.selecao-curso-item:hover, label.selecao-habilitacao-item:hover {
	opacity: .8;
}

.selecao-curso-radio, .selecao-habilitacao-radio {
	cursor: pointer;
	opacity: 0;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	height: 100%;
}

/* ---------- */
/* [ FILTRO ] */
/* ---------- */
.botao-icone {
	height: 34px;
	width: 34px;
	background: #ECECEC;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
}

.botao-icone:hover, .botao-icone:focus {
	background: #eee;
	cursor: pointer;
}

.ativo, .ativo:hover, .botao-cursos:focus, .botao-cursos.ativo, .botao-cursos.ativo:hover {
	background-color: #00395E !important;
	color: white;
	outline: none;
}

.botao-dropdown {
	float: left;
	margin: .5rem;
	position: relative;
}

.botao-ordenar {
	margin-left: 0;
}

.oferta-filtro-input {
	display: inline-block;
	position: relative;
}

.oferta-filtro-input .input-texto {
	margin: .5rem 1rem 0 0;
	border-width: 0 0 2px;
	width: 12rem;
}

.oferta-filtro-input .icone {
	color: #B7B7B7;
	pointer-events: none;
	display: block;
	position: absolute;
	right: 1rem;
	top: .9rem;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
}

.oferta-filtro-input .input-texto:focus + .icone {
	color: #ed7e56;
	-moz-animation: busca 1s infinite;
	-o-animation: busca 1s infinite;
	-webkit-animation: busca 1s infinite;
	animation: busca 1s infinite;
}

@-webkit-keyframes busca {
	0% {
		-moz-transform: translate(-4px, -4px);
		-ms-transform: translate(-4px, -4px);
		-o-transform: translate(-4px, -4px);
		-webkit-transform: translate(-4px, -4px);
		transform: translate(-4px, -4px);
	}

	25% {
		-moz-transform: translate(4px, -4px);
		-ms-transform: translate(4px, -4px);
		-o-transform: translate(4px, -4px);
		-webkit-transform: translate(4px, -4px);
		transform: translate(4px, -4px);
	}

	50% {
		-moz-transform: translate(4px, 4px);
		-ms-transform: translate(4px, 4px);
		-o-transform: translate(4px, 4px);
		-webkit-transform: translate(4px, 4px);
		transform: translate(4px, 4px);
	}

	75% {
		-moz-transform: translate(-4px, 4px);
		-ms-transform: translate(-4px, 4px);
		-o-transform: translate(-4px, 4px);
		-webkit-transform: translate(-4px, 4px);
		transform: translate(-4px, 4px);
	}

	100% {
		-moz-transform: translate(-4px, -4px);
		-ms-transform: translate(-4px, -4px);
		-o-transform: translate(-4px, -4px);
		-webkit-transform: translate(-4px, -4px);
		transform: translate(-4px, -4px);
	}
}

@-moz-keyframes busca {
	0% {
		-moz-transform: translate(-4px, -4px);
		-ms-transform: translate(-4px, -4px);
		-o-transform: translate(-4px, -4px);
		-webkit-transform: translate(-4px, -4px);
		transform: translate(-4px, -4px);
	}

	25% {
		-moz-transform: translate(4px, -4px);
		-ms-transform: translate(4px, -4px);
		-o-transform: translate(4px, -4px);
		-webkit-transform: translate(4px, -4px);
		transform: translate(4px, -4px);
	}

	50% {
		-moz-transform: translate(4px, 4px);
		-ms-transform: translate(4px, 4px);
		-o-transform: translate(4px, 4px);
		-webkit-transform: translate(4px, 4px);
		transform: translate(4px, 4px);
	}

	75% {
		-moz-transform: translate(-4px, 4px);
		-ms-transform: translate(-4px, 4px);
		-o-transform: translate(-4px, 4px);
		-webkit-transform: translate(-4px, 4px);
		transform: translate(-4px, 4px);
	}

	100% {
		-moz-transform: translate(-4px, -4px);
		-ms-transform: translate(-4px, -4px);
		-o-transform: translate(-4px, -4px);
		-webkit-transform: translate(-4px, -4px);
		transform: translate(-4px, -4px);
	}
}

@keyframes busca {
	0% {
		-moz-transform: translate(-4px, -4px);
		-ms-transform: translate(-4px, -4px);
		-o-transform: translate(-4px, -4px);
		-webkit-transform: translate(-4px, -4px);
		transform: translate(-4px, -4px);
	}

	25% {
		-moz-transform: translate(4px, -4px);
		-ms-transform: translate(4px, -4px);
		-o-transform: translate(4px, -4px);
		-webkit-transform: translate(4px, -4px);
		transform: translate(4px, -4px);
	}

	50% {
		-moz-transform: translate(4px, 4px);
		-ms-transform: translate(4px, 4px);
		-o-transform: translate(4px, 4px);
		-webkit-transform: translate(4px, 4px);
		transform: translate(4px, 4px);
	}

	75% {
		-moz-transform: translate(-4px, 4px);
		-ms-transform: translate(-4px, 4px);
		-o-transform: translate(-4px, 4px);
		-webkit-transform: translate(-4px, 4px);
		transform: translate(-4px, 4px);
	}

	100% {
		-moz-transform: translate(-4px, -4px);
		-ms-transform: translate(-4px, -4px);
		-o-transform: translate(-4px, -4px);
		-webkit-transform: translate(-4px, -4px);
		transform: translate(-4px, -4px);
	}
}

.submenu {
	position: absolute;
	right: 0;
	z-index: 99;
	background: #FFF;
	border: 2px solid #00395E;
}

#filtroMenu {
	width: 250px;
}

#ordenarMenu {
	width: 140px;
}

.submenu-linha {
	display: block;
	font-size: .8rem;
	padding: .4rem;
}

.submenu-icones {
	overflow: hidden;
	text-align: center;
}

.submenu-icones a {
	display: inline-block;
	padding: 5px;
	cursor: pointer;
	font-size: .8rem;
	text-align: left;
	width: 48%;
	overflow: hidden;
	height: 2.5rem;
	line-height: 2.2;
}

.submenu-icones a:hover, .submenu-icones a:focus {
	background: #efefef;
}

.submenu-icones a.txt-maior {
	line-height: 1.2;
	display: block;
	width: 100%;
	border-top: 1px solid #CCC;
}

.submenu-icones .icone {
	float: left;
	font-size: 1.4rem;
	line-height: 1.8rem;
	margin-right: .4rem;
}

.submenu-icones .filtro-ativo, .submenu-icones .filtro-ativo:hover {
	background: #BF4000;
	color: #fff;
}

.submenu-icones .filtro-ativo .icone {
	color: inherit;
}

.submenu-subtitulo {
	font-weight: normal;
	padding: 5px;
	font-size: .8rem;
	background-color: #00395E;
	color: white;
}

.submenu-number {
	width: 40px;
	height: 25px;
	border: none;
	border-bottom: 3px solid #CCC;
	text-align: center;
}

.submenu-number:focus {
	border-color: #BF4000;
	outline: none;
}

.submenu-link {
	color: #333;
	text-decoration: none;
}

.submenu-link:hover, .submenu-link:focus {
	background: #BF4000;
	color: white;
}

/* -------------------------- */
/* [ PROTOCOLO DE MATRÍCULA ] */
/* -------------------------- */

.box {
	border: 1px solid #ebebeb;
	width: 97%;
	margin: 0 auto;
	margin-top: 10px;
	background-color: #ffffff;
}

.box .box-title {
	padding: 10px;
	color: #666;
	background-color: #eeeeee;
}

.box .box-title h3 {
	font-weight: 400;
	display: inline-block;
}

.badge {
	color: white;
	font-size: 80%;
	padding: 2px 6px 2px 6px;
	border-radius: 2px;
	background-color: #666666;
}

.box .box-tools {
	margin: -35px 10px;
	float: right;
}

.box .box-tools a.btn, a.disciplina-adicionar {
    background-color: #0E699C;
    color: #ffffff;
    font-size: 0.8rem;
    padding: 8px;
    margin-top: -5px;
    cursor: pointer;
}

.box .box-footer a.disciplina-adicionar {
	width: 100%;
	display: inline-block;
	text-align: center;
	padding: 12px;
}

.box .box-tools a.btn:hover, a.disciplina-adicionar:hover {
    background-color: #093E6F;
}

.box .box-body, .box .box-footer {
	padding: 10px;
}

.box .box-tools a.disciplina-eletiva-excluir {
	margin-top: -9px;
}

a.disciplina-excluir, a.disciplina-eletiva-excluir {
	color: #DD3232;
	background-color: #ececec;
	padding: 10px 5px 5px 5px;
	float: right;
	width: 40px;
	height: 40px;
	text-align: center;
}

a.disciplina-excluir:hover, a.disciplina-eletiva-excluir:hover {
	color: #ffffff;
	background-color: #DD3232;
	cursor: pointer;
}

.disciplina-item {
	border: 1px solid #ebebeb;
	margin: 8px 0px 8px 0px;
	box-shadow: 0 1px 1px -1px #CCC;
	transition: 0.2s ease;
}

.disciplina-item:hover {
	box-shadow: 0 1px 1px -1px #dfdfdf;
	transition: 0.2s ease;
}

.disciplina-item.selecionado h4.disciplina-titulo {
	background-color: #999999;
	color: #FFFFFF;
}

.disciplina-item.selecionado a.disciplina-excluir {
	background-color: #333333;
}

.disciplina-item.selecionado a.disciplina-excluir:hover {
	background-color: #DD3232;
}

.disciplina-item h4.disciplina-titulo {
	font-size: .9rem;
	font-weight: normal;
	padding: 10px 8px 10px 8px;
	border-bottom: 2px solid #ebebeb;
	transition: 0.2s ease;
	cursor: pointer;
}

.disciplina-item h4.disciplina-titulo:focus {
	outline: 1px solid #F78B2D;
}

.disciplina-item.selection h4.disciplina-titulo:focus {
	color: red;
}

.disciplina-item h4.disciplina-titulo:hover {
	border-bottom: 2px solid #dfdfdf;
	transition: 0.2s ease;
}

.disciplina-form {
	background-color: #f9f9f9;
	padding: 8px;
}

.disciplina-form.oculto {
	display: none;
}

.required:after {
  content:" *";
  color: red; 
}

.disciplina-form .observacoes {
  font-size: .7rem;
  margin-top: 20px;
}

.form-control .ui-select, .form-control textarea, .form-control .ui-input-text  {
	border: 1px solid #d4d4d4;
	background-color: #ffffff;
}

.form-control .ui-select:hover, .form-control textarea:hover, .form-control .ui-input-text:hover  {
	border: 1px solid #999999;
}

.form-control .ui-select:hover {
	border: 1px solid #d4d4d4;
	cursor: default;
}

.form-control .ui-select .ui-btn {
	padding: .3em 1em;
	text-align: left;
}

.form-control.disabled .ui-select, .form-control.disabled .ui-input-text  {
	background-color: #efefef;
}

.form-control.disabled.no-hover .ui-select:hover, .form-control.disabled.no-hover .ui-input-text:hover {
	border-color: #d4d4d4;
	cursor: default;
}

.form-control label {
	margin-top: 1rem;
    color: #666;
    font-size: .7rem;
    text-transform: uppercase;
}

.fixed-bottom {
	background-color: #FFFFFF;
	position: fixed;
	bottom: 0;
	width: 100%;
}

.fixed-bottom button.btn {
	background-color: #708D55;
	color: #FFFFFF;
	display: block;
	margin: 0 auto;
	padding: 10px;
	text-align: center;
	width: 100%;
}

.fixed-bottom button.btn:hover {
	background-color: #4C7500;
}

.mb-50 {
	margin-bottom: 50px;
}

/* ------------------------ */
/* [ MATRÍCULA POR OFERTA ] */
/* ------------------------ */
.oferta-div{
  margin-bottom: 70px;
}

.oferta-item {
	margin: .5rem;
	background: white;
	font-size: .9rem;
	box-shadow: 0 1px 1px -1px #CCC;
	border: 1px solid #ebebeb;
	-moz-transition: .1s;
	-o-transition: .1s;
	-webkit-transition: .1s;
	transition: .1s;
}

.oferta-item:hover {
	box-shadow: 0 1px 1px -1px #666;
}

.oferta-item-linha {
	clear: both;
	padding: .5rem;
	position: relative;
}

.oferta-item-linha.oferta-mostrar.ui-link {
	display: block;
}

.oferta-item-linha.oferta-mostrar.ui-link:focus {
	outline: 1px solid #F78B2D;
}

.oferta-titulo-icones {
	float: right;
}

.oferta-linha-detalhes {
	margin-left: .5rem;
}

.oferta-linha-detalhes .oferta-detalhe-caixa {
	border-bottom: 2px solid;
}

.oferta-item-detalhes {
	display: none;
	position: relative;
	width: 100%;
	margin-top: 1px;
	max-height: 300px;
	overflow-y: auto;
	background: #EEE;
	box-shadow: 0 3px 3px -3px rgba(0, 0, 0, 0.5) inset;
}

.oferta-restricao {
	padding: 1rem 0 .5rem 1rem;
}

.dropdown-opcao {
	padding: 3px;
	border-top: 1px solid #CCC;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
}

.dropdown-opcao:first-child {
	border-top: none;
}

.dropdown-opcao:hover, .dropdown-opcao-ativa {
	background: rgba(0,0,0,0.04);
}

.dropdown-opcao .botao {
	margin: 2px;
}

.oferta-dropdown-turma {
	padding: .5rem;
}

.oferta-dropdown-turma .turma {
	color: #333;
	font-weight: bold;
}

.mensagem-log-matricula {
  margin-top: 1rem;
  font-weight: normal;
}

.oferta-dropdown-descricao {
	margin-top: 1rem;
	color: #666;
	font-size: .7rem;
	text-transform: uppercase;
}

.oferta-dropdown-professor {
	margin-left: .5rem;
	color: #333;
}

.oferta-dropdown-professor a {
	color: #0288d1;
}

.oferta-horario {
	margin: 7px 0 7px .5rem;
}

.oferta-item-vagas {
	margin-left: .5rem;
}

.oferta-expandida .oferta-legenda {
	display: inline-block;
}

.oferta-item-link {
	color: #0288d1;
	text-decoration: underline;
}

.oferta-codigo {
	color: #444;
	margin-right: 10px;
	min-width: 75px;
	display: inline-block;
}

.oferta-titulo, .oferta-docente {
	color: #008DB1;
}

.oferta-semestre {
	float: left;
	min-width: 1.2rem;
	height: 1.2rem;
	text-align: center;
	line-height: 1.1rem;
	margin-right: .5rem;
	background: #EFEFEF;
	color: #666;
	font-size: 0.8rem;
	border-radius: 50%;
	font-weight: 600;
}

.oferta-natureza {
	color: #444;
	margin-right: 10px;
	display: inline-block;
}

.oferta-mostrar {
	cursor: pointer;
}

.oferta-icone {
	margin-left: 10px;
	font-size: 16px;
}

.oferta-expandida .oferta-icone {
	margin: 0;
}

.oferta-expandida .icone {
	margin: 1px 5px 0 0;
}

.oferta-detalhe-caixa {
	color: white;
	padding: 5px;
	margin: 5px 5px 5px 0;
	display: inline-block;
	cursor: default;
}

.oferta-legenda {
	display: none;
	padding: 0;
	margin: 0 10px 0 0;
	float: none;
	cursor: default;
}

.oferta-subtitulo {
	display: block;
	color: #008DB1;
	text-transform: uppercase;
	margin: 5px 0 5px -10px;
	font-size: .7em;
}

.oferta-subtitulo:first-child {
	margin: -5px 0 5px 0;
}

.oferta-detalhe-codigo {
	display: inline-block;
	padding: .2rem .5rem;
	background: #ebebeb;
	color: #666;
}

.oferta-item-datas {
	margin: 0 0 .3rem .5rem;
}

.detalhe-vagas-link {
	color: #0288d1;
	text-decoration: underline;
	margin-left: 2rem;
}

.ui-popup.ui-body-inherit.popup-padrao {
	background: rgba(0,0,0,0.8);
	border: none;
	padding: 10px;
	color: #FFF;
	font-size: .85rem;
}

.ui-popup.ui-body-inherit.popup-padrao a[data-rel=back] {
	background: #C00;
	color: #FFF;
	position: absolute;
	right: -0.5rem;
	top: -0.5rem;
	padding: .3rem;
	border-radius: 50%;
	font-size: .75rem;
	cursor: pointer;
}

.detalhe-vagas-texto {
	height: 85px;
}

.detalhe-vagas-texto p {
	margin-bottom: 10px;
	text-align: center;
}

.detalhe-vagas-texto .destaque {
	font-size: 1.2rem;
	color: #FF9800;
}

.detalhe-vagas-img {
	background: #efefef;
	margin-bottom: 10px;
	height: 10px;
	width: 100%;
	position: relative;
	-moz-animation: fadeIn 1s 1;
	-o-animation: fadeIn 1s 1;
	-webkit-animation: fadeIn 1s 1;
	animation: fadeIn 1s 1;
}

.detalhe-vagas-img .classificados {
	background-color: #4CAF50;
	height: 10px;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	bottom: 0;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
}

.detalhe-vagas-img .vagas-inicio, .detalhe-vagas-img .vagas-fim {
	color: #999;
	font-size: .7rem;
	position: absolute;
	top: -18px;
}

.detalhe-vagas-img .vagas-livres {
	left: 100%;
	width: 18px;
	margin-left: -15px;
	top: -3px;
	font-size: .7rem;
	position: absolute;
	color: #FFF;
}

.detalhe-vagas-img .vagas-inicio {
	left: 0;
}

.detalhe-vagas-img .vagas-fim {
	right: 0;
}

.detalhe-vagas-img .posicao-aluno {
	position: absolute;
	background-color: #FF9800;
	color: #000;
	border-radius: 50%;
	margin-left: -12px;
	padding: 3px;
	font-size: .7rem;
	bottom: 12px;
	height: 24px;
	width: 24px;
	text-align: center;
	line-height: 17px;
	-moz-transition: .2s;
	-o-transition: .2s;
	-webkit-transition: .2s;
	transition: .2s;
	z-index: 9;
}

.detalhe-vagas-img .posicao-aluno::before {
	content: '';
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 15px 4px 0 4px;
	border-color: rgba(255, 152, 0, 0.85) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0) rgba(0, 0, 0, 0);
	left: 8px;
	top: 22px;
}

.oferta-preferencial, .oferta-sugerida {
	color: #FFF;
	padding: .2rem .5rem;
	float: right;
	border-radius: .2rem;
  margin-left: 5px;
}

.oferta-preferencial .icone, .oferta-sugerida .icone {
	float: left;
	line-height: 1.3;
}

.oferta-preferencial {
	background-color: #FF9800;
}

.oferta-sugerida {
  background-color: #DC4C18;
}


/* ---------------------- */
/* [ QUADRO DE HORÁRIOS ] */
/* ---------------------- */
.oferta-quadro-conteudo {
	position: relative;
	overflow: auto;
}

.oferta-quadro-toggle {
	height: 60px;
	margin-top: -60px;
	padding: 10px;
	position: absolute;
	top: 0;
	left: 10px;
	background: rgba(0, 0, 0, 0.85);
	text-align: center;
	border-radius: 2px 2px 0 0;
	cursor: pointer;
	line-height: 3;
}

.oferta-quadro-toggle .icone {
	float: left;
	font-size: 2rem;
	line-height: 1.4;
	margin-right: .5rem;
}

.oferta-quadro-toggle:hover {
	color: #ff9122;
}

.oferta-quadro {
	min-height: 150px;
	position: fixed;
	bottom: 0;
	right: 0;
	left: 225px;
	font-size: .8rem;
	background: rgba(0, 0, 0, 0.85);
	color: #efefef;
}

.tabela-horarios, .tabela-datas-fixas {
	margin: .5rem auto;
	width: 98%;
	border-collapse: collapse;
	table-layout: fixed;
}

.tabela-horarios td {
	border-collapse: collapse;
	text-align: center;
	line-height: 1.5;
	border-bottom: 1px dotted rgba(0, 0, 0, 0.2);
	border-right: 1px solid rgba(255, 255, 255, 0.5);
	color: white;
}

.tabela-horarios td:nth-child(0n+1) {
	border-right: none !important;
}

.tabela-horarios td:last-child {
	border-right: none !important;
}

.tabela-horarios thead th {
	font-weight: normal;
	text-transform: uppercase;
	line-height: 2;
	-ms-word-wrap: normal;
	word-wrap: normal;
	-ms-text-overflow: ellipsis;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	overflow: hidden;
}

.tabela-horarios thead .celula-horario {
	border-bottom: none;
}

.celula-horario {
	background: transparent !important;
	color: #ccc !important;
	border-left: none !important;
	font-size: .9rem;
}

.tabela-horarios tbody .celula-horario {
	border-bottom: 1px dotted rgba(255,255,255,0.2) !important;
}

.horario-vazio {
	background: rgba(255,255,255,0.7);
}

.altura-maior td {
	line-height: 2.8;
}

.altura-maior .celula-horario {
	font-size: 1rem;
}

.altura-menor td {
	line-height: 1.1;
}

.altura-menor .celula-horario {
	font-size: .8rem;
}

.linha-margem td {
	background: transparent !important;
	border: none !important;
	height: 2px !important;
}

/* -----------------------------------------*/
/* [ Cronograma das aulas com datas fixas ] */
/* -----------------------------------------*/
.oferta-quadro-subtitulo {
	clear: both;
	overflow: hidden;
	border-bottom: 2px solid #007998;
	width: 50%;
	margin: 0 .5rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 1rem;
}

.tabela-datas-fixas td {
	font-size: 0.8rem;
	min-width: 110px;
	line-height: 2.5;
	text-align: center;
}

.tabela-destaque {
	background: rgba(0, 121, 152, 0.5);
}

.tabela-agrupamento {
	border-top: 1px solid #FFF;
}

.tabela-agrupamento-resumo {
	border-top: 1px solid #ccc;
}

.tabela-datas-fixas th {
	text-transform: uppercase;
	font-size: .8rem;
	background: rgba(0, 121, 152, 0.5);
	line-height: 3;
}

.popup-cronograma .tabela-datas-fixas td {
	border-bottom: 1px solid #ddd;
	font-size: .8rem;
}

.tabela-datas-fixas tr:last-child td {
	border-bottom: none;
}

/* ----------*/
/* [ POPUP ] */
/* ----------*/
.popup-titulo {
	font-size: 1rem;
	color: #007998;
	font-weight: normal;
	padding-right: 2rem;
	line-height: 1;
}

.popup-fechar {
	float: right;
	height: 2rem;
	padding: .3rem;
	width: 2rem;
	background: rgba(0, 0, 0, 0);
	cursor: pointer;
	line-height: 1.5rem;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
}

#PopupBoleto-popup, #PopupContrato-popup {
	width: 80%;
	height: 80%;
	left: 10% !important;
	top: 10% !important;
}

.popup-pdf, .popup-pdf iframe {
	width: 100%;
	height: 100%;
}

.popup-fechar:hover, .popup-fechar:focus {
	background: rgba(0, 0, 0, 0.1);
}

.popup-cronograma .tabela-datas-fixas td.tabela-destaque {
	border-bottom: 1px solid #ddd;
	font-size: .8rem;
	width: 100%;
	background-color: rgba(0, 0, 0, 0.05);
}

.popup-detalhe-vagas {
  left: 75%; 
}

.tabela-cronograma tbody tr {
	border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
}

.ui-popup-container[id$=cronograma] {
	width: 70%;
	left: 15% !important;
}

/* ----------*/
/* [ AJUDA ] */
/* ----------*/
.pergunta {
	margin: 15px;
	padding: 2px 0;
	border-left: 2px solid #0272AE;
	-moz-transition: .3s;
	-o-transition: .3s;
	-webkit-transition: .3s;
	transition: .3s;
}

.pergunta:hover {
	background-color: #f5f5f5;
}

.pergunta-titulo {
	margin: 0 5px 5px 5px;
	display: block;
	color: #0272AE;
	font-size: 16px;
}

.pergunta-resposta {
	display: block;
	margin: 5px;
	font-size: .9em;
	line-height: 18px;
}


/* ------------------ */
/* [ PÁGINA INICIAL ] */
/* ------------------ */
.inicio-caixa-info {
	font-size: .8rem;
	line-height: 1.5;
}

.inicio-caixa-info b {
	font-size: 1rem;
}

.aviso {
	border-radius: .3rem;
	font-size: .8rem;
	padding: .5rem;
	margin: .5rem;
	text-align: center;
	-moz-animation: aparecer 1.2s 1;
	-o-animation: aparecer 1.2s 1;
	-webkit-animation: aparecer 1.2s 1;
	animation: aparecer 1.2s 1;
	-moz-transition: .5s linear;
	-o-transition: .5s linear;
	-webkit-transition: .5s linear;
	transition: .5s linear;
}

.anim-aparecer {
	-moz-animation: aparecer 1.2s 1;
	-o-animation: aparecer 1.2s 1;
	-webkit-animation: aparecer 1.2s 1;
	animation: aparecer 1.2s 1;
}

@keyframes aparecer {
	0% {
		-moz-transform: scale(.9);
		-ms-transform: scale(.9);
		-o-transform: scale(.9);
		-webkit-transform: scale(.9);
		transform: scale(.9);
	}

	50% {
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-moz-keyframes aparecer {
	0% {
		-moz-transform: scale(.9);
		-ms-transform: scale(.9);
		-o-transform: scale(.9);
		-webkit-transform: scale(.9);
		transform: scale(.9);
	}

	50% {
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes aparecer {
	0% {
		-moz-transform: scale(.9);
		-ms-transform: scale(.9);
		-o-transform: scale(.9);
		-webkit-transform: scale(.9);
		transform: scale(.9);
	}

	50% {
		-moz-transform: scale(1.1);
		-ms-transform: scale(1.1);
		-o-transform: scale(1.1);
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	100% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.aviso h2 {
	font-weight: normal;
	font-size: 1.2rem;
}

.aviso-atencao {
	background-color: #FFBD00;
	color: #333;
}

.aviso-erro {
	background-color: #BD2525;
	color: #FFF;
}

.msg-sucesso {
	background-color: #708D55;
	color: white;
}

/* ---------------------- */
/* [ RESUMO DE PROPOSTA ] */
/* ---------------------- */
.resumo-titulo {
	color: #666;
	display: block;
	font-size: 1.2rem;
	font-weight: 400;
	margin-top: 1rem;
	text-align: center;
}

.quadro-resumo .tabela-horarios tbody .celula-horario {
	border-bottom: 1px dotted rgba(255,255,255,0.2) !important;
}

.quadro-resumo .celula-horario {
	color: #666 !important;
}

.lateral-resumo .progresso-div, .lateral-resumo .painel-valores, .lateral-resumo .botao-colorido {
	display: none;
}

.quadro-resumo .oferta-quadro-subtitulo, .quadro-resumo-subtitulo {
	border-bottom: none;
	padding: 2rem 0 0 .5rem;
	display: block;
}

:not(.scroll-horario) > div.oferta-quadro-subtitulo ~ div.oferta-quadro-subtitulo {
    width: 98%;
    border-top: 1px solid #ccc;
    margin-top: 2rem;
}

.quadro-resumo .tabela-datas-fixas th,
.quadro-resumo .tabela-datas-fixas td.tabela-destaque {
	background-color: #efefef;
	font-weight: bold;
}

.comprovante-msg {
	font-size: 0.8rem;
	margin: 0.8rem;
}

.resumo-progresso {
	text-align: center;
}

.resumo-progresso .progresso-div, .resumo-progresso .painel-valores {
	display: inline-block;
	width: 30%;
	vertical-align: bottom;
}

.resumo-progresso .progresso-titulo, .resumo-progresso .painel-valores {
	color: #333;
}

.resumo-progresso .painel-valores .icone-dinheiro {
	background-color: rgba(0, 0, 0, 0.1);
}

.resumo-div-botoes {
	padding: .5rem .5rem 1rem .5rem;
	text-align: center;
}

.resumo-div-botoes .icone {
	font-size: 1rem;
}

.resumo-div-botoes > .botao .icone {
	margin-right: .5rem;
}

.resumo-compartilhar {
	background: #ddd;
	border-radius: .3rem;
	display: inline-block;
	font-size: 0;
	margin: 0 .2rem;
	text-align: left;
	vertical-align: top;
}

.resumo-compartilhar > span.icone {
	background-color: #005186;
	border-top-left-radius: .3rem;
	border-bottom-left-radius: .3rem;
	color: #fff;
	display: inline-block;
	height: 2rem;
	padding: 0 .5rem;
	float: left;
	line-height: 1.8;
	font-size: 1.2rem;
}

.resumo-compartilhar button {
	background: rgba(0, 0, 0, 0);
	border-radius: 0;
	outline: none;
}

.resumo-legenda {
	font-size: 0;
	line-height: 0;
}

.resumo-legenda .legenda {
	display: inline-block;
	margin-bottom: .5rem;
	padding: .5rem 1rem;
	text-align: center;
	width: 33%;
}

.legenda-codigo {
	display: inline-block;
	clear: both;
	text-align: center;
	color: #fff;
	line-height: 2;
	font-size: .8rem;
	padding: 0 1rem;
}

.legenda-sem-bg {
	background-color: #ccc;
	color: #333;
}

.legenda-nome {
	font-size: .9rem;
	line-height: 1.8;
}

.legenda-status {
	font-size: 0.8rem;
	line-height: 1;
}

.linha-digitavel{
  text-align: center;
  margin-top: 7px;
  font-weight: bold;
  color: #7C7C7C;
}

/* POPUP DE APRESENTAÇÃO */
.popup-apresentacao {
	margin: .5rem;
}

.popup-apresentacao .owl-carousel .owl-item {
	text-align: center;
	padding: 1rem 1rem 3rem 1rem;
	height: 330px;
}

.popup-apresentacao .owl-carousel .owl-item:nth-child(1) {
	background-color: #309630;
	color: white;
}

.popup-apresentacao .owl-carousel .owl-item:nth-child(1) h1, .popup-apresentacao .owl-carousel .owl-item:nth-child(1) .imagem {
	color: #c9ff9a;
}

.popup-apresentacao .owl-carousel .owl-item:nth-child(2) {
	background-color: #1F2D7D;
	color: white;
}

.popup-apresentacao .owl-carousel .owl-item:nth-child(2) h1, .popup-apresentacao .owl-carousel .owl-item:nth-child(2) .imagem {
	color: #2badfe;
}

.popup-apresentacao .owl-carousel .owl-item:nth-child(3) {
	background-color: #e01a0c;
	color: white;
}

.popup-apresentacao .owl-carousel .owl-item:nth-child(3) h1, .popup-apresentacao .owl-carousel .owl-item:nth-child(3) .imagem {
	color: #FFEB3B;
}

.popup-apresentacao .owl-carousel .owl-item:nth-child(4) {
	background-color: #FFC107;
	color: #333;
}

.popup-apresentacao .owl-carousel .owl-item:nth-child(4) h1, .popup-apresentacao .owl-carousel .owl-item:nth-child(4) .imagem {
	color: #A2360F;
}

.popup-apresentacao h1 {
	font-size: 1.4rem;
	font-weight: 400;
	margin-bottom: 1rem;
}

.popup-apresentacao .imagem {
	-moz-transition: .5s linear;
	-o-transition: .5s linear;
	-webkit-transition: .5s linear;
	transition: .5s linear;
	height: 128px;
	margin: 0 auto;
	font-size: 7rem;
	visibility: hidden;
}

.imagem.aparecer {
	visibility: visible;
	-moz-animation: aparecer2 1.3s 1;
	-o-animation: aparecer2 1.3s 1;
	-webkit-animation: aparecer2 1.3s 1;
	animation: aparecer2 1.3s 1;
}

@keyframes aparecer2 {
	0% {
		-moz-transform: scale(.5);
		-ms-transform: scale(.5);
		-o-transform: scale(.5);
		-webkit-transform: scale(.5);
		transform: scale(.5);
	}

	100% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-moz-keyframes aparecer2 {
	0% {
		-moz-transform: scale(.5);
		-ms-transform: scale(.5);
		-o-transform: scale(.5);
		-webkit-transform: scale(.5);
		transform: scale(.5);
	}

	100% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@-webkit-keyframes aparecer2 {
	0% {
		-moz-transform: scale(.5);
		-ms-transform: scale(.5);
		-o-transform: scale(.5);
		-webkit-transform: scale(.5);
		transform: scale(.5);
	}

	100% {
		-moz-transform: scale(1);
		-ms-transform: scale(1);
		-o-transform: scale(1);
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.popup-apresentacao p {
	display: block;
	margin: 1rem 3rem 0;
}

.popup-apresentacao p button {
	background: #fff;
	display: inline-block;
	margin-top: .5rem;
	padding: .5rem .85rem;
	text-transform: uppercase;
	border-radius: .3rem;
    cursor: pointer;
}

.popup-apresentacao .owl-theme .owl-pagination {
	z-index: 99;
	position: relative;
}

.owl-theme .owl-controls .owl-buttons .owl-prev,
.owl-theme .owl-controls .owl-buttons .owl-next {
	top: 50%;
	position: absolute;
	font-size: 3rem;
	background: transparent;
	color: #FFF;
	margin-top: -2.5rem;
}

.owl-theme .owl-controls .owl-buttons .owl-next {
	right: 0;
}

.owl-theme .owl-controls .owl-buttons .owl-prev {
	left: 0;
}

.popup-apresentacao .owl-theme .owl-controls {
	margin: -25px 0 10px 0;
}

.popup-apresentacao .owl-theme .owl-controls .owl-page span {
	background-color: #FFF;
}

.popup-apresentacao-fechar {
	font-size: .75rem;
	float: right;
	cursor: pointer;
	line-height: 2.5;
}

.popup-apresentacao-fechar .destaque {
	color: #007998;
}

/* ----------*/
/* [ CORES ] */
/* ----------*/
/* Laranja */
.cor-destaque-1 {
	color: #DC4C18;
}

.bg-destaque-1 {
	background-color: #DC4C18;
}
/* Amarelo */
.cor-destaque-2 {
	color: #F1941A;
}

.bg-destaque-2 {
	background-color: #F1941A;
}
/* Vermelho */
.cor-destaque-3 {
	color: #B70F0A;
}

.bg-destaque-3 {
	background-color: #B70F0A;
}
/* Verde */
.cor-destaque-4 {
	color: #4CAF50;
}

.bg-destaque-4 {
	background-color: #4CAF50;
}
/* Azul */
.cor-destaque-5 {
	color: #007998;
}

.bg-destaque-5 {
	background-color: #007998;
}
/* Cinza */
.cor-destaque-6 {
	color: #666;
}

.bg-destaque-6 {
	background-color: #666;
}
/* Teal */
.cor-destaque-7 {
	color: #00aba9;
}

.bg-destaque-7 {
	background-color: #00aba9;
}
/* Rosa */
.cor-destaque-8 {
	color: #AC538E;
}

.bg-destaque-8 {
	background-color: #AC538E;
}
/* Salmão */
.cor-destaque-9 {
	color: #CA6252;
}

.bg-destaque-9 {
	background-color: #CA6252;
}
/* Ciano */
.cor-destaque-10 {
	color: #1ba1e2;
}

.bg-destaque-10 {
	background-color: #1ba1e2;
}
/* Oliva */
.cor-destaque-11 {
	color: #78aa1c;
}

.bg-destaque-11 {
	background-color: #78aa1c;
}
/* Roxo */
.cor-destaque-12 {
	color: #4b0096;
}

.bg-destaque-12 {
	background-color: #4b0096;
}
/* Lilás */
.cor-destaque-13 {
	color: #76608a;
}

.bg-destaque-13 {
	background-color: #76608a;
}
/* Limão */
.cor-destaque-14 {
	color: #a4c400;
}

.bg-destaque-14 {
	background-color: #a4c400;
}
/* Azul 2 */
.cor-destaque-15 {
	color: #647687;
}

.bg-destaque-15 {
	background-color: #647687;
}

/* Preto */
.cor-destaque-16 {
	color: #000000;
}

.bg-destaque-16 {
	background-color: #000000;
}

.scroll-horario{
  overflow: auto;
  margin: 10px;
}
#scroll-horario::-webkit-scrollbar{
  width: 10px;
  border-radius: 10px;
  opacity: 0.4;
  filter: alpha(opacity=40);
  background-color: #666;
}
#scroll-horario::-webkit-scrollbar-thumb{
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: #555;
}

/* ------------------ */
/* [ RESPONSIVIDADE ] */
/* ------------------ */
/*Telas pequenas e médias, ATÉ 800*/
@media (max-width:50rem) {
	.login-body .ui-header, .login-body .ui-header h1 {
		width: 100%;
	}

	.topo.ui-header {
		height: 44px;
	}

	.header-mobile {
		display: block;
	}

	.header-mobile-icone {
		font-size: 1.5rem;
		display: block;
		color: #FFF;
		line-height: 1.6;
		height: 2.75rem;
		width: 2.75rem;
		text-align: center;
	}

	.ui-panel-page-content-open .header-mobile-icone {
		background: rgba(0,0,0,0.2);
	}

	.painel {
		width: 17rem;
	}

	.painel-info-usuario {
		background-color: rgba(0, 0, 0, 0.3);
		height: 2.75rem;
		overflow: hidden;
	}

	.painel-info-usuario img {
		width: 2.75rem;
		height: 2.75rem;
		float: left;
		margin-right: .5rem;
	}

	.painel-info-usuario .usuario, .painel-info-usuario .curso {
		display: block;
		font-size: 14px;
		color: #EFEFEF;
		max-width: 13rem;
		width: 13rem;
		white-space: nowrap;
		-ms-text-overflow: ellipsis;
		-o-text-overflow: ellipsis;
		text-overflow: ellipsis;
		overflow: hidden;
	}

	.painel-info-usuario .curso {
		color: #CCC;
	}

	.input-texto {
		height: 44px;
		line-height: 30px;
	}

	.submenu {
		right: auto;
		left: 0;
	}

	.submenu-number {
		width: 60px;
		height: 45px;
	}

	.submenu-linha {
		padding: .8rem;
	}

	.popup-apresentacao .owl-carousel .owl-item {
		height: auto;
	}

	.popup-apresentacao .owl-theme .owl-controls {
		margin: 10px;
	}

	.oferta-codigo {
		margin-right: .3rem;
		min-width: 2rem;
	}

	.oferta-titulo-icones {
		float: none;
		display: block;
		text-align: right;
	}

	.oferta-quadro-mobile-botao {
		position: absolute;
		top: 0;
		right: 0;
		width: 2.75rem;
		height: 2.75rem;
		line-height: 1.8;
		text-align: center;
		margin: 0;
    display: none;
	}

	.oferta-quadro-mobile-botao.quadro-aberto {
		background-color: rgba(0,0,0,0.2);
	}

  .topo-oferta .oferta-quadro-mobile-botao{
    display: block;
  }

	.oferta-quadro {
		background: #222;
		bottom: 0 !important;
		left: auto;
		top: 0;
		right: -17rem;
		width: 17rem;
		-moz-transition: 300ms ease-in;
		-o-transition: 300ms ease-in;
		-webkit-transition: 300ms ease-in;
		transition: 300ms ease-in;
	}

	.conteudo-principal.quadro-aberto {
		-moz-transform: translateX(-17rem);
		-ms-transform: translateX(-17rem);
		-o-transform: translateX(-17rem);
		-webkit-transform: translateX(-17rem);
		transform: translateX(-17rem);
	}

	.oferta-quadro-conteudo {
		overflow-x: hidden;
		overflow-y: auto;
	}

	.ocultar-mobile, .linha-margem td {
		display: none !important;
	}

	.mostrar-mobile {
		display: block;
	}
  .mostrar-mobile.botao{
    display: inline;
  }

  .div-quadro-horario .dia-semana {
      border-bottom: 1px solid #CCC;
      margin: .5rem auto;
      width: 90%;
      display: block;
  }

  .div-quadro-horario .tabela-horarios {
      width: 80%;
  }

  .separador-horarios {
      height: 20px;
  }

	.tabela-horarios td, tabela-datas-fixas td.tabela-mes, .tabela-datas-fixas th {
		display: block;
		width: 90%;
		margin: 0 auto;
	}


	.tabela-datas-fixas td:not(.tabela-mes) {
		display: inline-block;
		min-width: 1rem;
		padding: 0 1rem;
	}

	.tabela-horarios td {
		border: none !important;
		line-height: 2 !important;
		font-size: .9rem !important;
	}

	.tabela-horarios tbody .celula-horario {
		border: none !important;
		text-align: left;
	}

	.tabela-horarios > tbody > tr[diadasemana]::before {
		content: attr(diadasemana);
		display: block;
		border-bottom: 1px solid #CCC;
		line-height: 2;
	}

	.oferta-quadro-subtitulo {
		text-align: center;
		width: 95%;
	}

	.resumo-legenda .legenda, .resumo-progresso .progresso-div, .resumo-progresso .painel-valores {
		display: block;
		margin: .8rem auto;
		width: 90% !important;
	}

	.disciplina-adicionar {
		display: none;
	}
}
/* Telas médias, até 560px */
@media screen and (max-width: 36em ) {
	.span_10 {
		width: 100%;
	}
}

/* Telas médias, a partir de 640px */
@media screen and (min-width:40em) {
	.login-body .ui-content {
		margin: 0 auto;
		width: 50%;
	}
}

/*Telas grandes, A PARTIR DE 800px */
@media (min-width:50rem) {
	.ui-panel.ui-panel-position-left {
		left: 0;
		visibility: visible;
	}

	.fixed-bottom {
		position: relative;
		margin: 0 auto;
    margin-top: 20px;
	}

	.box-footer a.disciplina-adicionar {
    	display: none !important;
    }

	.ui-content[role="main"] {
		margin-left: 225px;
	}

	#LoginPage .ui-content[role="main"] {
		margin-left: auto;
	}

	.ui-panel-dismiss, .ui-panel-dismiss-display-push {
		display: none;
	}

    .scroll-horario {
      max-height: 285px;
    }
}


@media print {
	.no-print {
		display: none;
	}
}

.icone-atualizar-resumo{
  color: #005186 !important;
}

.texto-atualizar{
    padding-left: 40px;
    font-size: smaller;
    font-style: italic;
    color: #f7e405;
}

.texto-atualizar:hover {
    cursor: pointer;
}

.texto-atualizar-resumo{    
    padding-left: 40px;
    font-size: smaller;
    font-style: italic;
    color: #005186 !important;
}

.texto-atualizar-resumo:hover {
    cursor: pointer;
}

.painel-valores .icone-atualizar-resumo {
	color: #FFF;
	font-size: 1.3rem;
	top: 35%;
	right: -1.5rem;
	position: absolute;
}