@charset "utf-8";

/* ESTRUTURA DA PÁGINA */

	.usuarios-content {
		width:520px;
		float:left;
		margin-top: 10px;
	}

	.consultas-content {
		width: 180px;
		float: right;
		margin-top: 10px;
	}

	.consultas-content .consulta-item {
		background-color: #ffffff;
		border: 1px solid #e9eaed;
		padding: 10px;
		line-height: 170%;
		border-radius:5px;
	}

	.consultas-content .consulta-item input[type=text] {
		font-size: 13px;
		width:100%;
		padding: 5px;
		height: 30px;
		background: none;
		border: 1px solid #d8d8d8;
		border-radius: 5px;
		margin-bottom: 10px;
	}

	.consultas-content .consulta-item input[type=text]:focus {
		border-color: #007aff;
		outline: 0;
	}

	.consultas-content .consulta-item form[name=metForm] input[name=icaoCode] {
		text-transform: uppercase;
	}

	.consultas-content .consulta-item input[type=submit] {
		width: 100%;
		font-size: 15px;
		color: #fff;
		background-color: #4267b2;
		border: none;
		padding: 10px;
		cursor: pointer;
		border-radius: 5px;
		transition: background-color 0.2s ease;
	}

	.consultas-content .consulta-item input[type=submit]:hover {
		background-color: #365899;
		transition: background-color 0.2s ease;
	}

/* QUADRO CURSOS */

	.dropdown {
		position:relative
	}

	.dropbtn {
		background-color: #FAFAFA;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
		text-align: center;
		padding: 10px;
		cursor: pointer;
	}

	.dropbtn img {
		margin-bottom: 7px;
	}

	.dropdown-content {
		display: none;
		position: absolute;
		min-width: 223px;
		z-index: 1;
		background-color: #FAFAFA;
		padding: 0 10px 10px 10px;
		box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	}

	.dropdown-content a {
		padding: 10px;
		display: flex;
		align-items: center;
		font-size: 14px;
		background-color: #ffffff;
		color: #666;
		border: 1px solid #e9eaed;
		border-radius: 5px;
		margin-bottom: 5px;
		user-select: none;
	}

	.dropdown-content a:last-child {
		margin-bottom: 0;
	}

	.dropdown-content a span:first-child {
		width: 22px;
	}

	.dropdown-content span.icon-chevron-right {
		margin-left: auto;
	}

	.dropdown-content a:hover {
		background-color: #F1F5F9;
		border: 1px solid #007aff;
		transition: all 0.1s ease;
	}

	.dropdown:hover .menu-principal {
		display: block
	}

	.dropdown.anac:hover .menu-principal, .dropdown.cias:hover .menu-principal {
		display: none
	}

	.dropdown.anac:hover .submenu-anac, .dropdown.cias:hover .submenu-cias {
		display: block
	}

/* FLEXBOX CURSOS E RANKING */

	.panel-content .cursos-content, .panel-content .ranking-content {
		display: flex;
		justify-content: space-between;
		flex-direction: row;
		flex-wrap: wrap;
		row-gap: 10px;
	}

/* RANKING */

	.panel-content .ranking-content .ranking-item {
		position: relative;
		text-align: center;
		padding: 10px;
		background-color: #ffffff;
		outline: 1px solid #e9eaed;
		outline-offset: -1px;
		width: 130px;
	}

	.panel-content .ranking-content .ranking-item .star {
		position: absolute;
		top: -8px;
		left: -5px;
		width: 50px;
		line-height: 50px;
		font-size: 20px;
		color: #ffffff;
		text-shadow: 1px 1px 1px #000000;
		background: url(/imagens/gold_star.png);
		background-repeat: no-repeat;
		background-size: 50px 50px;
	}

	.panel-content .ranking-content .ranking-item img.avatar {
		margin-bottom: 5px;
	}

/* PAINEL INFO */

	.panel-info {
		display: flex;
		column-gap: 10px;
		align-items: start;
		font-size: 13px;
		background-color: #F1F5F9;
		text-align: left;
		padding: 10px;
		border: 1px solid #b8d6fb;
		border-radius: 5px;
		line-height: 140%;
	}

	.panel-info img {
		width: 30px;
	}

	.panel-info a {
		color: #00529b;
	}

	.panel-info a:hover {
		text-decoration: underline;
	}