﻿.main-conteudo {
    margin-top: 20px;
    margin-bottom: 20px;
}


.footer-divisao {
    width: 100%;
    height: 3rem;
    background-color: #0000001a;
    border: solid rgba(0, 0, 0, .15);
    border-width: 1px 0;
    box-shadow: inset 0 .5em 1.5em #0000001a, inset 0 .125em .5em #00000026;
}

#jsSpinnerGeral {
    position: fixed;
    display: none;
    width: 8rem;
    height: 8rem;
    top: 50%;
    left: 50%;
    margin-left: -4rem;
    margin-top: -4rem;
    border: 1.2rem solid #f3f3f3;
    border-radius: 50%;
    border-top: 1.2rem solid #91c11e;
    border-bottom: 1.2rem solid #91c11e;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    z-index: 50000;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.form-check-input[type=radio] {
    border-color:black!important
}