﻿body {
    background-color: #022148;
}

.titulo1 {
    font-size:20px;
    font-weight: 800;
}
.titulo2 {
    font-size: 18px;
    font-weight: 700;
}
.titulo3 {
    font-size: 16px;
    font-weight: 600;
}

.btn{
    padding: 15px 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.card {
    box-shadow: 0 0 1px 0 rgba(61,119,180,0.12), 0 0.25rem 12px 0 rgba(91,139,199,0.24);
    border: 0;
    border-radius: 5px;
}

.list-status {
    margin-top: 10px;
}
.list-status li {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #333;
    color: #fff;
    padding: 5px 10px;
    border-radius: 15px;
}
.list-status li.pessimo{
    background-color: #c42e2e;
}
.list-status li.ruim{
    background-color: #f27f39;
}
.list-status li.regular{
    background-color: #dddf18;
}
.list-status li.bom{
    background-color: #62ac36;
}
.list-status li.otimo{
    background-color: #375191;
}

.table .cabecalho{
    font-size: 16px;
    font-weight: 700;
    padding-top: 20px;
    padding-bottom: 20px;
}
.table .cabecalho:hover{
    background-color: #fff;
}
.table .linha {
    border-bottom: 1px solid #e2e2e2;
    transition: all .4s;
    cursor: default;
}
.table .linha:hover{
    background-color: #fafafa;
}
.table .linha .pergunta {
    font-size: 14px;
    color: #555;
    font-weight: 600;
    padding-top: 5px;
    padding-bottom: 5px;
    vertical-align: middle;
}
.table .linha .opcao {
    text-align: center;
    width: 100px;
    padding: 10px 0;
}

.custom-radio .custom-label {
    border: 1.5px solid #333;
    width: 28px;
    height: 28px;
    line-height: 24px;
    text-align: center;
    font-weight: 700;
    border-radius: 30px;
    font-size: 12px;
    margin: 0;
    cursor: pointer;
    transition: all .4s;
}
.custom-radio .custom-label .texto{
    display: none;
    text-transform: uppercase;
    font-size: 10px;
}

.custom-radio input {
    display: none;
}
.custom-radio input:checked + .custom-label {
    color: #fff;
    background-color: #333;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
}
.custom-radio input:checked + .custom-label .numero{
    display: none;
}
.custom-radio input:checked + .custom-label .texto{
    display: inline-block;
}

.custom-radio input:checked + .custom-label.pessimo {
    background-color: #c42e2e;
    border-color: #c42e2e;
}
.custom-radio input:checked + .custom-label.ruim {
    background-color: #f27f39;
    border-color: #f27f39;
}
.custom-radio input:checked + .custom-label.regular {
    background-color: #dddf18;
    border-color: #dddf18;
}
.custom-radio input:checked + .custom-label.bom {
    background-color: #62ac36;
    border-color: #62ac36;
}
.custom-radio input:checked + .custom-label.excelente {
    background-color: #375191;
    border-color: #375191;
}

@media only screen and (max-width: 992px) {
    .table .linha .pergunta {
        width: 100%;
        display: block;
        border-bottom: 0;
    }
    .table .linha .opcao{
        width: auto;
        padding-left: 10px;
        padding-right: 10px;
        display: inline-block;
    }
}