@charset "utf-8";
*{
	box-sizing:border-box;
}
html{
	width:100%;
	height:100%;
}
body {
	background-color: #E8E9EE;
	color: #8692A0;
	margin: 0;
	padding: 0;
	font-family: 'Hind', sans-serif;
	font-weight:500;
	font-size:18px;
}
h1, h2, h3, h4, h5, h6 {
}
h2{
	font-weight:normal;
	margin:0 0 30px;
	font-size:26px;
	
}
h4{
	font-size:13px;
	font-weight:normal;
	margin:5px 0;
	padding:0;
}
a{
	color:#BB0000;
	text-decoration:none;
}
a:hover{
	text-decoration:none;
}
input,
select{
	outline:none;
}
textarea{
	outline:none;
	font-family: 'Hind', sans-serif;
}
hr{
	border: 0;
    height: 1px;
    background: rgba(0,50,170,0.5);
    margin: 0 7px 20px;
}

/* GERAL */

header{
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:80px;
	background:#313940;
	padding: 20px;
	z-index:5;
	vertical-align:middle;
	font-size:16px;
	color:#fff;
}
header .sanduiche{
	display:none;
	vertical-align: middle;
	position:relative;
	width:35px;
	height:35px;
	margin-right: 30px;
	cursor:pointer;
}
header .sanduiche span{
	position:absolute;
	width:32px;
	height:3px;
	background:#e8e9ee;
	top:1px;
	left:1px;
	opacity:1;
	transition: all 0.5s;
}
header .sanduiche span.i2{
	top:15px;
	left:1px;
}
header .sanduiche span.i3{
	top:29px;
	left:1px;
}
header .sanduiche.aberto span.i1{top:15px;transform:rotate(45deg);}
header .sanduiche.aberto span.i2{opacity:0;}
header .sanduiche.aberto span.i3{top:15px;transform:rotate(-45deg);}

header img.logo{
	max-height:40px;
	vertical-align:middle;
}
header span.titulop{
	vertical-align:middle;
	margin:0 40px;
	font-size:16px;
	color:#fff;
	font-weight:bold;
}
header a.lingua{
	vertical-align:middle;
	margin:0 5px;
	font-size:13px;
	color:#fff;
	opacity:0.5;
	font-weight:bold;
}
header a.lingua.active{
	opacity:1;
}
header span.nomelogado{
    float: right;
    line-height: 21px;
    vertical-align: middle;
    margin: 7px 10px 0 10px;
    padding-right: 15px;
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    border-right: 1px solid #fff;
}
header a.botao_direito{
	vertical-align:middle;
	background-color:#252B30;
}

.boxloading{
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#000;
	background:rgba(0, 0, 0, 0.5);
	z-index:200;
}

.msgpop{
	position:fixed;
	top:50%;
	left:50%;
	margin-top:-42px;
	margin-left:-130px;
	width:260px;
	height:85px;
	text-align:left;
	padding:23px 30px 5px 80px;
	background:url('../img/msgerro.png') no-repeat 20px center #E74C3C;
	color:#fff;
	font-size:16px;
	z-index:80;
	box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.5);
	
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.msgpop:after{
	content:'';
	position:absolute;
	top:10px;
	right:10px;
	width:10px;
	height:11px;
	background:url('../img/icon_fechar_w.png') no-repeat center center;
}
.msgpop.ok{
	background:url('../img/msgok.png') no-repeat 20px center #62A639;
}


section.menu{
	position:fixed;
	left:0;
	top:80px;
	width:240px;
	height:100%;
	background:#001217;
	color:#fff;
	padding:0px 0;
	transition: transform 1s;
}
section.menu.fechado{
	transform: translateX(-240px);
}
section.menu p{
	display:block;
	width:100%;
	padding:38px 20px;
	font-size:15px;
	font-weight:500;
	color:#fff;
	margin:0;
}
section.menu a{
	position:relative;
	display:block;
	width:100%;
	padding:15px 20px 15px 60px;
	font-size:15px;
	font-weight:500;
	color:#94A2B1;
	background-image:url('../img/icon_file_grey.png');
	background-repeat:no-repeat;
	background-position:20px center ;
}
section.menu a.closed{background-image:url('../img/icon_closed_grey.png');}
section.menu a.config{background-image:url('../img/icon_config_grey.png');}
section.menu a.users{background-image:url('../img/icon_users_grey.png');}
section.menu a.sel{
	background-color:#22282D;
	color:#fff;
	background-image:url('../img/icon_file.png');
}
section.menu a.config.sel{background-image:url('../img/icon_config.png');}
section.menu a.users.sel{background-image:url('../img/icon_users.png');}
section.menu a:hover{
	color:#fff;
	background-image:url('../img/icon_file.png');
}
section.menu a.closed:hover{background-image:url('../img/icon_closed.png');}
section.menu a.config:hover{background-image:url('../img/icon_config.png');}
section.menu a.users:hover{background-image:url('../img/icon_users.png');}
section.menu a.pai{
	background-color:#22282D;
	color:#94A2B1;
	background-image:url('../img/icon_dir_grey.png');
}
section.menu a.filho{
	background-color:#22282D;
	background-image:none;
}
section.menu a:after{
	content:'';
	position:absolute;
	right:20px;
	top:18px;
	width:6px;
	height:10px;
	background:url('../img/icon_setdir_grey.png') no-repeat center center;
}
section.menu a.sel:after{background-image:url('../img/icon_setdir.png');}
section.menu a.pai:after{background-image:url('../img/icon_setcima_grey.png');width:10px;height:6px;right:18px;top:20px;}
section.menu a:hover:after{background-image:url('../img/icon_setdir.png');width:6px;height:10px;right:15px;top:18px;}
section.menu a.pai:hover:after{background-image:url('../img/icon_setdir_grey.png');width:6px;height:10px;right:15px;top:18px;}

footer{
	position:fixed;
	bottom:20px;
	left:20px;
	width:200px;
	font-size:13px;
	vertical-align:bottom;
}

section.conteudogeral{
	width:100%;
	padding:110px 20px 30px 260px;
	
}
section.conteudogeral.comsidebar{
	padding:110px 240px 30px 260px;
}

.card{
	background:#fff;
	padding:0px 20px;
	
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
.card .cabeca{
	width:100%;
	padding:20px 0;
	border-bottom:1px solid #E8E9EE;
	font-size:18px;
	
}
.card .pes{
	width:100%;
	padding:20px 0;
	border-top:1px solid #E8E9EE;
	
}
.card .corpo{
	width:100%;
	padding:15px 0;
}
.card .corpo a{
	color:#62a639;
}
.card .corpo a.botao{
	display:block;
	width:30%;
	font-size:13px;
	text-align:center;
	background:#7DC353;
	color:#fff;
	font-size:13px;
	font-weight:bold;
	padding:10px 20px;
	border:0;
	margin:30px auto 10px;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.card .corpo .imgcapa{
	width:100%;
}
.card .corpo .credito{
	font-size:13px;
}
.card .corpo .acoes{
	float:right;
	font-size:0;
	border-left:1px solid #CDD2D8;
	padding-left:5px;
}
.card .corpo .acoes.semlinha{
	border-left:0px solid #CDD2D8;
}
.card .corpo .acoes .lock{
	display:inline-block;
	vertical-align: middle;
	margin:0 0 0 5px;
	width:32px;
	height:32px;
	background:url('../img/lock32.png') no-repeat 0px 0px ;
}
.card .corpo .acoes a{
	display:inline-block;
	vertical-align: middle;
	margin:0 0 0 5px;
	width:37px;
	height:37px;
	background:url('../img/botoes_list.png') no-repeat 0px 0px ;
}
.card .corpo .acoes a.dest{background-position:0px -37px ;}
.card .corpo .acoes a.dest.sel{background-position:0px 0px ;}
.card .corpo .acoes a.status{background-position:-41px -37px ;}
.card .corpo .acoes a.status.sel{background-position:-41px 0px ;}
.card .corpo .acoes a.edit{background-position:-82px -37px ;}
.card .corpo .acoes a.edit:hover{background-position:-82px 0px ;}
.card .corpo .acoes a.del{background-position:-123px -37px ;}
.card .corpo .acoes a.del:hover{background-position:-123px 0px ;}
.card .corpo .acoes a.setaordem{
	border:1px solid #94a2b1;
	border-radius:5px;
	background:#fff;
	padding: 14px 13px 0;
}
.card .corpo .acoes a.setaordem:hover{
	
}
.card .corpo .acoes a.setaordem_null{
	border:1px solid #94a2b1;
	border-radius:5px;
	background:#fff;
	padding: 14px 13px 0;
	opacity:0.5;
	cursor:default;
}
.card .corpo .acoes p{
    font-size: 13px;
    display: inline-block;
    margin: 0 20px;
    vertical-align: middle;
}


.listacards{
	
}
.listacards .card{
	margin-bottom:10px;
}
.listacards .card a{
	font-size:20px;
	
}
.listacards .card a.lone{
	padding-top: 7px;
    display: inline-block;
}
.listacards .card.filtro{
	margin-bottom:30px;
}


.listacards .card.locked{
	opacity:0.5;
}
.listacards .card.locked a{
	color: #929292;
}

.legendalist{
	padding: 10px 20px;
    font-size: 13px;
}
.legendalist div{
	float:right;
}
.legendalist div.acoes{width: 160px;}
.legendalist div.data{width: 90px;}
.legendalist div.ordem{width: 125px;}


.sidebar{
	position: fixed;
    z-index: 2;
    right: 0;
    top: 110px;
    padding: 0 20px;
    width: 220px;
    border-left: 1px solid #BFCFD5;
}
.sidebar input.submit{
	width:100%;
	font-size:13px;
	text-align:right;
	background:url('../img/micon_check_w.png') no-repeat 15px center #7DC353;
	margin:0 0 10px;
}
.sidebar input.submit:hover{
	background:url('../img/micon_check_w.png') no-repeat 15px center #62A639;
}
.sidebar input.submit:last-child{margin:0px;}
.sidebar input.close{
	color:#7DC353;
	background:url('../img/micon_check_g.png') no-repeat 15px center #fff;
}
.sidebar input.close:hover{
	color:#fff;
	background:url('../img/micon_check_w.png') no-repeat 15px center #62A639;
}
.sidebar input.addnew{
	color:#7DC353;
	background:url('../img/micon_plus_g.png') no-repeat 15px center #fff;
}
.sidebar input.addnew:hover{
	color:#fff;
	background:url('../img/micon_plus_w.png') no-repeat 15px center #62A639;
}

.sidebar a.botdel{
	display:block;
	width:100%;
	font-size:13px;
	text-align:right;
	background:url('../img/micon_trash.png') no-repeat 15px center #E74C3C;
	color:#fff;
	font-size:13px;
	font-weight:normal;
	padding:10px 20px;
	border:0;
	margin:20px 0 0;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.sidebar a.botdel:hover{
	background-color:#CE2C1A;
}
.sidebar .stat{
	display:block;
	width:100%;
	font-size:13px;
	text-align:right;
	background:url('../img/micon_hora.png') no-repeat 15px center #fff;
	color:#85929F;
	font-size:13px;
	font-weight:normal;
	padding:10px 20px;
	border:0;
	margin:0 0 10px;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.sidebar .stat.clear{
	background:#fff;
	padding-left:10px;
}
.sidebar .stat.clear:hover{
	color:#F0BF00;
}
.sidebar .stat.clear.active{
	color:#7DC353;
}
.sidebar .stat.hora{
	margin:0 0 30px;
}
.sidebar .stat.status{background:url('../img/micon_status_off.png') no-repeat 15px center #fff;}
.sidebar .stat.status.active{
	background:url('../img/micon_status.png') no-repeat 15px center #fff;
	color:#7DC353;
}
.sidebar .stat.dest{background:url('../img/micon_dest_off.png') no-repeat 15px center #fff;}
.sidebar .stat.dest.active{
	background:url('../img/micon_dest.png') no-repeat 15px center #fff;
	color:#F0BF00;
}
.sidebar .stat i{
	float:left;
	margin:2px;
}




.botao_direito{
	float:right;
	background-color:#313940;
	width:auto;
	color:#fff;
	font-size:14px;
	font-weight:bold;
	padding:10px 20px;
	cursor:pointer;
	border:0;
	margin:0 0 0 10px;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
.botao_direito:hover{
	background-color:#7DC353;
}
.botao_direito.addnew{
	padding-left:40px;
	background-image:url('../img/micon_plus_w.png');
	background-position: 15px center;
	background-repeat:no-repeat;
}
.botao_direito.acessar{
	padding-left:80px;
	background-image:url('../img/icon_site.png');
	background-position: 15px center;
	background-repeat:no-repeat;
}


input,
textarea,
select{
	padding:10px ;
	border:1px solid #D8D8D8;
	font-size:13px;
	color: #8692A0;
	margin:0 0 10px;
	width:100%;
	
	-webkit-border-radius: 6px;
	-moz-border-radius: 6px;
	border-radius: 6px;
}
textarea{
	height:100px;
	max-width: 100%;
}
input.checkbox{
	width: auto;
    margin:6px;
}
input.submit{
	background:#313940;
	width:auto;
	color:#fff;
	font-size:14px;
	font-weight:bold;
	padding:10px 20px;
	cursor:pointer;
	border:0;
	margin:0;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
input.submit:hover{
	background:#7DC353;
}
span.opcaocheck{
	font-size:14px;
	font-style: italic;
	vertical-align: middle;
}


/* TELA LOGIN */

.page-login section.conteudogeral{
	padding:50px;
}
.page-login section.conteudogeral .card{
	width:400px;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-200px;
	margin-top:-150px;
}


/* CAMPOS DE EDICAO */

.uploadimg_ajax img{
	max-width:100%;
	max-height:350px;
	margin:0 0 15px;
}
.comsidebar a.botao_esquerdo{
	float:left;
	background-color:#313940;
	background-image:url('../img/icon_upload.png');
	background-position: 15px center;
	background-repeat:no-repeat;
	width:auto;
	color:#fff;
	font-size:14px;
	font-weight:bold;
	padding:10px 20px 10px 40px;
	cursor:pointer;
	border:0;
	margin:0;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}

.imgselectbox{
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#000;
	background:rgba(0, 0, 0, 0.5);
	z-index:200;
}
.imgselectbox .card{
	width:850px;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-425px;
	margin-top:-320px;
}
.imgselectbox .card .botao_esquerdo.plus{
	background-image:url('../img/micon_plus_w.png');
}
.imgselectbox .card a.fechar{
	float:right;
	display:block;
	width:10px;
	height:11px;
	background-image:url('../img/icon_fechar.png');
	margin-top: 5px;
}
.imgselectbox .card .ubox{
	border: 1px dashed #D7D9E1;
    padding: 30px;
    text-align: center;
    font-size: 13px;
    font-style: italic;
    color: #AAB2BD;
}
.imgselectbox .card .ubox .botao_esquerdo{
	float:none;
	display: inline-block;
}
.imgselectbox .card .ibox{
	font-size:0;
	height:310px;
	overflow:auto;
}
.imgselectbox .card .imageselect{
	position:relative;
	display:inline-block;
	border:2px solid #DEE0E4;
	margin:0 10px 10px 0;
	cursor:pointer;
	opacity:0.7;
}
.imgselectbox .card .imageselect.active{
	border:2px solid #7DC353;
	opacity:1;
}
.imgselectbox .card .imageselect.active:after{
	content:'';
	position:absolute;
	top:0;
	right:0;
	width:26px;
	height:26px;
	background:url('../img/micon_check_w.png') no-repeat center center #7DC353;
}

.arqselectbox{
	display:none;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:#000;
	background:rgba(0, 0, 0, 0.5);
	z-index:200;
}
.arqselectbox .card{
	width:850px;
	position:absolute;
	top:50%;
	left:50%;
	margin-left:-425px;
	margin-top:-320px;
}
.arqselectbox .card .botao_esquerdo.plus{
	background-image:url('../img/micon_plus_w.png');
}
.arqselectbox .card a.fechar{
	float:right;
	display:block;
	width:10px;
	height:11px;
	background-image:url('../img/icon_fechar.png');
	margin-top: 5px;
}
.arqselectbox .card .ubox{
	border: 1px dashed #D7D9E1;
    padding: 30px;
    text-align: center;
    font-size: 13px;
    font-style: italic;
    color: #AAB2BD;
}
.arqselectbox .card .ubox .botao_esquerdo{
	float:none;
	display: inline-block;
}
.arqselectbox .card .ibox{
	font-size:0;
	height:310px;
	overflow:auto;
}
.arqselectbox .card .imageselect{
	position:relative;
	display:inline-block;
	border:2px solid #DEE0E4;
	margin:0 10px 10px 0;
	cursor:pointer;
	opacity:0.7;
}
.arqselectbox .card .imageselect.active{
	border:2px solid #7DC353;
	opacity:1;
}
.arqselectbox .card .imageselect.active:after{
	content:'';
	position:absolute;
	top:0;
	right:0;
	width:26px;
	height:26px;
	background:url('../img/micon_check_w.png') no-repeat center center #7DC353;
}



.galeria{
	padding:20px;
	border:1px solid #D8D8D8;
	-webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
.galadd{
	display:none;
	padding:20px;
	border:1px solid #D8D8D8;
	margin-top:15px;
	-webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
	
	position: fixed;
	top: 100px;
	left: 10%;
	width: 80%;
	background: white;
	z-index: 9;
}
.galadd span{
	font-size: 12px;
}
.galadd .fechar{
	float: right;
    display: block;
    width: 10px;
    height: 11px;
    background-image: url('../img/icon_fechar.png');
    margin-top: 5px;
}
.galbgblack{
	display:none;
	z-index: 8;
	position:fixed;
	top:0;
	left:0;
	width:100%;
	height:100%;
	background:rgba(0, 0, 0, 0.5);
}
.galbox img{
	max-height:65px;
	margin:5px;
	cursor:pointer;
}

.calendario{
	width:262px;
	height:auto;
	padding:10px;
	background:#E8E9EE;
	border:1px solid #D8D8D8;
	
	-webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}
.calendario a.volta{
	float:left;
	margin:0;
	width:20px;
	height:20px;
	text-align:center;
	cursor:pointer;
}
.calendario a.avanca{
	float:right;
	margin:0;
	width:20px;
	height:20px;
	text-align:center;
	cursor:pointer;
}
.calendario span.ano,
.calendario span.mes{
	display: block;
	margin:0;
	text-align:center;
}
.calendario span.ano{
	font-size: 14px;
	padding-bottom:8px;
}
.calendario span.dia{
	float:left;
	margin:2px;
	width:30px;
	height:30px;
	text-align:center;
	background:#fff;
	line-height: 30px;
	cursor:pointer;
}
.calendario span.dia.none{
	background:transparent;
}
.calendario span.dia.active{
	background:#313940;
	color:#fff;
}



/* RESPONSIVE */

@media screen and (max-width: 940px) {
	
	header .sanduiche{
		display:inline-block;
	}
	section.menu{
		transform: translateX(-240px);
		z-index: 1;
	}
	section.menu.aberto{
		transform: translateX(0px);
	}
	
	section.conteudogeral,
	section.conteudogeral.comsidebar{
		padding-left: 20px;
	}
	
}
@media screen and (max-width: 768px) {
	
	header .prahome{
		display: inline-block;
		width: 40px;
		overflow: hidden;
		vertical-align: middle;
	}
	header span.nomelogado{
		max-width:160px;
	}
	
	header span.titulop{
		display:none;
	}
	
	section.conteudogeral.comsidebar{
		padding-right: 20px;
	}
	
	.sidebar{
		position: static;
		width: 100%;
		border: 0;
		padding-top: 30px;
	}
	.sidebar .stat{
		max-width: 200px;
		display: inline-block;
	}
	
	.card .corpo a.botao{
		width:100%;
	}
	
	.page-login section.conteudogeral .card{
		width: 100%;
		left: 0px;
		margin-left: 0px;
	}
	
}
@media screen and (max-width: 410px) {
	
	header span.nomelogado{
		display:none;
	}
	
	.sidebar .stat{
		max-width: 100%;
	}
	
	.page-cursos .comsidebar .card .corpo{
		font-size: 16px;
		text-align: center;
	}
}


/* Amplifiq */

.amplifiqlogo {
	float:right;
	width:90px;
	height:20px;
	background:url('../img/logo_amplifiq_frames.png');
	cursor:pointer;
	
    background-position: 0 0;
    -webkit-animation: amplifiqlogohide 0.6s steps(20) 1;
    animation: amplifiqlogohide 0.6s steps(20) 1;
}
.amplifiqlogo:hover {
    background-position: 0 -400px;
    -webkit-animation: amplifiqlogoshow 0.6s steps(20) 1;
    animation: amplifiqlogoshow 0.6s steps(20) 1;
}

/* ANIMACOES */
@-webkit-keyframes amplifiqlogoshow { 0% { background-position: 0 0; } 100% { background-position: 0 -400px; }}
@keyframes amplifiqlogoshow { 0% { background-position: 0 0; } 100% { background-position: 0 -400px; }}
@-webkit-keyframes amplifiqlogohide { 0% { background-position: 0 -400px; } 100% { background-position: 0 0; }}
@keyframes amplifiqlogohide { 0% { background-position: 0 -400px; } 100% { background-position: 0 0; }}


/* ETC */
.fleft{float: left;}
.fright{float: right;}
.clear{clear: both;}
.shirion{display: none;}