* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1rem;
}

html, body {
    height: 100%;
}

body {
    background-color: #24d9de;
}

#sistema {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#topo {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    background: url(../../img/fundoTopo.gif) repeat;
    line-height: 177px;
    height: 177px;
}

    #topo img {
        width: 777px;
        height: 177px;
    }

.no-margin-bottom {
    margin-bottom: 0px !important;
}

.min-margin-bottom {
    margin-bottom: 10px !important;
}

#corpo {
    width: 777px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    background-color: #FFF;
}

    #corpo #conteudo {
        width: 98%;
    }

    #corpo #conteudo div.row {
        text-align: center;
        margin-bottom: 30px;
    }

#rodape {
    width: 793px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: space-between;
    background: url(../../img/fundoBottom.gif) repeat;
    line-height: 31px;
    height: 31px;
}

    #rodape #esquerda {
        width: 8px;
    }

    #rodape #direta {
        width: 8px;
    }

#erro{
    padding: 30px;
}

    #erro div:not(:last-child) {
        padding-bottom: 30px;
    }

.badge {
    padding: 10px;
    font-size: 1.1rem;
    border-radius: 3px;
}

.candidatos label, label strong {
    font-size: 0.9rem;
}

input[type="checkbox"]{
  display:none;
}

input[type="checkbox"]:hover + label:before{
  opacity: .5;
}

.candidatos label {
    display: inline-block;
    position: relative;
    padding-left: 40px;
    line-height: 40px;
    cursor: pointer;
}

    .candidatos label:before {
        z-index: 15;
        content: '';
        position: absolute;
        left: 0;
        top: 6px;
        transition: all 0.5s ease;
        cursor: pointer;
        width: 20px;
        border-width: 2px;
        border-style: solid;
        border-color: #444;
        height: 20px;
        line-height: 20px;
    }
input[type="checkbox"]:checked + label{
  color:#000;
}

    input[type="checkbox"]:checked + label:before {
        border-color: transparent;
        border-left-color: #2ecc71;
        border-bottom-color: #2ecc71;
        transform: rotate(-50deg);
        width: 22px;
        height: 12px;
        line-height: 12px;
        top: 3px;
    }

@media (max-width: 767px) {
    #topo img {
        width: 94%;
    }

    #corpo {
        width: 94%;
    }

    #rodape {
        width: 98%;
    }

    #erro {
        padding: 15px;
    }

        #erro div:not(:last-child) {
            padding-bottom: 15px;
        }
}

@media (max-width: 446px) {
    #topo {
        line-height: 130px;
        height: 130px;
    }

        #topo img {
            height: 130px;
        }
}

@media (max-width: 537px) {
    .candidatos label, label strong {
        font-size: 0.8rem;
    }
}

@media (max-width: 390px) {
    .candidatos label, label strong {
        font-size: 0.75rem;
    }
}
