@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
	margin: 0;
	box-sizing: border-box;
}

@charset "UTF-8";
.fadeout {
	opacity: 0;
	filter: alpha(opacity=0);
}
.loader {
	position: fixed;
	z-index: 9999;
	width: 100%;
	height: 100%;
	background: #ffff;
	text-align: center;
	-webkit-transition: opacity 1s ease;
	-moz-transition: opacity 1s ease;
	-o-transition: opacity 1s ease;
	transition: opacity 1s ease;
}

.loader-content {
	background: url("../img/loading.gif") no-repeat 50% 0%;
	display: block;
	position: relative;
	padding-top: 50px;
	top:45%;
	
}

body {
	font-family: Trebuchet MS,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Tahoma,sans-serif;
	background-color: #fff;
}

/* Caixa das questão */
div.panel{
	border: 2px solid #e0e1e1;
	border-radius: 0px 0px 10px 10px;
	-webkit-box-shadow: 3px 2px 5px -2px rgba(50, 50, 50, 0.3);
-moz-box-shadow:    3px 2px 5px -2px rgba(50, 50, 50, 0.3);
box-shadow:         3px 2px 5px -2px rgba(50, 50, 50, 0.3);
background-color: #fff;
}

/* Barra com Cod. da Questão */
div.panel-heading {
position: relative;
background-color: #fff;
min-height: 45px;
border-radius: 3px 3px 0px 0px;
border-top: 20px solid #fff;
border-bottom: 2px solid #fff;
padding: 1px;
}
/* Fim */

/* Número da Questão */
div.panel div.panel-heading span {
background: #f9fafb;
padding: 0 7px;
  padding-bottom: 0px;
padding-bottom: 2px;
margin-top: 15px;
margin-right: 5px;
margin-left: 10px;
border-radius: 4px 4px 4px 4px;
border: 1px solid rgba(0,0,0,.1) !important;
}
/* Fim */

/* Seta para Direita depois do id questão */
.fa-svelte.svelte-16yoo4m {
  display: inline-block;
  height: 1em;
  overflow: visible;
  width: 1em;
}
/* Fim */

/* Seta para Direita */
i.fa-chevron-right {
	top: -1px;
	margin-left: 5px;
	margin-right: 5px;
}
/* Fim */

/* Espaço inicio da questão */
div.panel div.panel-body {
	padding-top: 0px;
	padding-left: 15px;
	padding-bottom: 15px;
}
/* Fim */

/* Barra de baixo (Comentário, reportar) */
div.panel-bottom {
	margin-top: -30px;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	border: 2px solid #e0e1e1;
	border-radius: 0px 0px 10px 10px;
	-webkit-box-shadow: 3px 2px 5px -2px rgba(50, 50, 50, 0.3);
-moz-box-shadow:    3px 2px 5px -2px rgba(50, 50, 50, 0.3);
box-shadow:         3px 2px 5px -2px rgba(50, 50, 50, 0.3);
	background-color: #f8fafc;
}
/* Fim */

.glyphicon-chevron-right {
	font-size: 9px;
	top: 0;
	padding: 0 4px;
	padding-bottom: 7px;
	align-items: center;
}


/* Fundo dos Filtros */
div.fundo {
	background: rgb(0,50,60);
	background: linear-gradient(90deg, rgba(0,50,60,1) 0%, rgba(0,85,102,1) 47%, rgba(0,134,161,1) 100%);
	padding-bottom: 30px;
	border-radius: 2px 2px 2px 2px;
	height: 170px;
	margin-bottom: 30px;
}
/* Fim dos Filtros */


/* CHECKBOX */
.control {
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
	cursor: pointer;
	font-size: 14px;
}
label.control {
	font-weight: 400;
}
.control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.control__indicator {
	position: absolute;
	top: 2px;
	left: 0;
	height: 20px;
	width: 20px;
	background: #e6e6e6;
}
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
	background: #ccc;
}
.control input:checked ~ .control__indicator {
	background: #2aa1c0;
}
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
	background: #0e647d;
}
.control input:disabled ~ .control__indicator {
	background: #e6e6e6;
	opacity: 0.6;
	pointer-events: none;
}
.control__indicator:after {
	content: '';
	position: absolute;
	display: none;
}
.control input:checked ~ .control__indicator:after {
	display: block;
}
.control--checkbox .control__indicator:after {
	left: 8px;
	top: 5px;
	width: 3px;
	height: 8px;
	border: solid #fff;
	border-width: 0 2px 3px 0;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}
.control--checkbox input:disabled ~ .control__indicator:after {
	border-color: #7b7b7b;
}



/* Alternativas */
label.radiobtn {
	font-weight: 600;
}

.radiobtn {
	position: relative;
	display: inline-block;
	margin-right: 40px;
	margin-bottom: 20px;
	height: 10px;
}

.radiobtn input {
	position: absolute;
	opacity: 0;
	cursor: pointer;
	height: 0;
	width: 0;
}

.checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 25px;
	width: 25px;
	padding-top: 1px;
	box-sizing: border-box;
	border: solid 1px #17a2b8;
	border-radius: 50%;
	text-align: center;
	font-size: 14px;
	color: #17a2b8;
	cursor: pointer;
	transition: all 0.3s;
}

.checkmark:hover {
	background: #17a2b8;
	color: white;
}

.checkmark:before{
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	background-color: white;
	border-radius: 50%;
	top: -1px;
	left: -1px;
	transform: scale(0);
	transition: all 0.3s;
	z-index: -1;
}

.radiobtn input:checked ~ .checkmark {
	background-color: #17a2b8;
	color: white;
}

.radiobtn input:checked ~ .checkmark:hover{
	background: #17a2b8;
}

.radiobtn input:checked ~ .checkmark:before {
	transform: scale(1);
}

.alternative {
	padding-top: 0px;
	padding-left: 35px;
	color: #404040;
	cursor: pointer;
	font-weight: 500;
	font-size: 14px;
}

.alternative:hover {
	color: #404040;
}

/* Questões certas e erradas */
.correta {
	color: green;
	font-weight: bold;
}

.errada {
	color: red;
	text-decoration: line-through;
}

#mensagem {
	font-size: 14px;
	color: green;
}

/*Tamanho do alerta*/
.alert.alert-success {
	font-size: 13px;
	height: 35px;
	width: 200px;
	margin-top: 10px;
	padding-bottom: 30px;
}
.alert.alert-danger {
	font-size: 13px;
	height: 35px;
	width: 170px;
	margin-top: 10px;
	padding-bottom: 30px;
}

.escondido,
.alert {
	display: none;
}

#mensagemIncorreta {
	font-size: 14px;
	color: red;
}


/*paginacao*/
span.page-link a:hover {
	text-decoration: none;
}

div a:hover {
	text-decoration: none;
}

.far {
	font-weight: 400 !important;
}

.alert.alert-success,
.alert.alert-danger {
	margin-left: 10px;
}

.row {
	margin-right: 0 !important;
}

  /* Balão do Gabarito*/
  .balao {
  	display: inline-block;
  	color: #434343;
  	background-color: #f5f5f5 ;
  	margin-top: 10px;
  	border-bottom: 2px solid #f5f5f5;
  	border-left: 2px solid #004c5b;
    padding: 10px 10px 10px 10px;
    border-radius: 0px 0px 3px 3px;
    font-family: Trebuchet MS,Lucida Grande,Lucida Sans Unicode,Lucida Sans,Tahoma,sans-serif;
    font-size: 14px;
    font-weight: 400;
  }

  .hidden{
  	display: none;
  }
