.span-italico {
	font-weight: 100;
    font-style: italic;
}

.rodape-referencia {
    display: flex;
    justify-content: flex-end;
    font-style: italic;
}

.container-opcao-avaliacao {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.detalhe-opcao-avaliacao {
    margin-left: 30px;
}

.detalhe-texto-avaliacao {
    margin-left: 10px;
}

.balao-normal{
    background-color: #abe0e026;
    border: 1px solid #64bcbb;
    color: #64bcbb;
	display: flex;
    flex-direction: column;
	padding: 20px 40px;
    align-items: center;
    margin-bottom: 12px;
	border-radius: 16px;
	margin-right: 12px;	
}

.balao-atencao{
    background-color: #fffada;
    border: 1px solid #bcb164;
    color: #bcb164;
    display: flex;
	flex-direction: column;
	padding: 20px 40px;
	align-items: center;
	margin-bottom: 12px;
    border-radius: 16px;
    margin-right: 12px;
}

.balao-perigo{
    background-color: #e0abab26;
    border: 1px solid #bc6464;
    color: #bc6464;
	display: flex;
	flex-direction: column;
	padding: 20px 40px;
    align-items: center;
    margin-bottom: 12px;
    border-radius: 16px;
    margin-right: 12px;
}

.span-situacao{
    background-color: #abe0e026;
    border: 1px solid #64bcbb;
    color: #64bcbb;
    padding: 6px 16px;
    border-radius: 14px;
    font-size: 12px;
    font-weight: bold;
}
 
.bg-alerta{
    background-color: #fffada;
    border: 1px solid #bcb164;
    color: #bcb164;
}

.bg-perigo{
    background-color: #f8d3cb;
    border: 1px solid #bc7564;
    color: #bc7564;
}

input[type=radio] {
    position: relative;
    cursor: pointer;
    width: 30px;
    height: 30px !important;
}

input[type=radio]:before {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    background-color:#e9e9e9;
}

input[type=radio]:checked:before {
    content: "";
    display: block;
    position: absolute;
    width: 30px;
    height: 30px;
    top: 0;
    left: 0;
    background-color: #64bcbb;
}

input[type=radio]:checked:after {
    content: "";
    display: block;
    width: 9px;
    height: 15px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 5px;
    left: 10px;
}

