@charset "utf-8";

/* ESTRUTURA DOS QUADROS SIMULADOS PÁGINA PRINCIPAL */

	.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;
	}

	.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;
	}

	.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
	}
	
/* ESTRUTURA DOS QUADROS RANKING ALUNOS E ESCOLAS */
	
	.box-ranking {
		position: relative;
		color: #000000;		
		text-align: center;
		padding: 10px;
		background-color: #ffffff;
		outline: 1px solid #e9eaed;
		outline-offset: -1px;
		width: 130px;
	}

	.box-ranking .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;
	}

	.box-ranking img.avatar {
		margin-bottom: 5px;
	}