/*#######################################################################################

/*
ESTILOS DAS MENSAGENS
*/

.cor1-logo {
    background-color: #3dd34d;
}

.cor2-logo {
    background-color: #eb4f39;
}

.cor3-logo {
    background-color: #e0fa1f;
}

.cor4-logo {
    background-color: #5c33cf;
}

.cor5-logo {
    background-color: #c6cfd6;
}


.logo-sm {
    width: 150px;
    max-width: 100%;
    aspect-ratio: 4/3;

    /* object-fit: contain; */
}

.logo-lg {
    width: 90%;
    max-width: 100%;
    aspect-ratio: 4/3;

    /* object-fit: contain; */
}


.caixa-notificacao {
    position: fixed;
    top: 10%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: none;
    width: 90%;
    background: #ffffff;
    border: 1px solid gray;
    border-radius: 1px;
    box-shadow: 10px 10px 10px gray;
    animation: animate;
    animation-duration: 500ms;
    text-align: center;
    padding: 12px;
    margin: 0 5px 0 5px;
}



.img-notificacao {
    width: 10px;
    height: 10px;
    margin: auto;
}

.btn-notificacao {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 5px;
    width: 20px;
    height: 20px;
}


/*
ESTILO GLOBAL
*/



.menu {
    background-color: #5c33cf;
}

.opcao-menu {
    display: inline;
    list-style-type: none;
    margin: 5px;
}

.opcao-menu :hover {
    border: 2px solid rgb(255, 255, 255);
    background-color: #e73008;
    color: #000000;
}


.btn-opcao-menu {
    border: 2px solid gray;
    border-radius: 5px;
    font-size: 10pt;
    background-color: #3dd34d;
    color: #ffffff;
    width: 100px;
}



.btn-global {

    border: 2px solid gray;
    border-radius: 5px;
    font-size: 15pt;
    background-color: #3dd34d;
    color: #ffffff;
    width: 100%;

}


.borda-branca {
    border: 2px solid rgb(255, 255, 255);
}

.borda-preta {
    border: 3px solid rgb(0, 0, 0);
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #d1d4e5;
    /* background-image: linear-gradient(to bottom, #d1d4e5, #291e62);
    background-attachment: fixed; */
}

.container {
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.centralizar-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.centralizar-row {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.esquerda {
    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}

.direita {
    display: flex;
    flex-direction: row;
    justify-content: right;
    align-items: center;
}

.form {
    position: fixed;
    padding: 5px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    background-color: #5c33cf;
    border-radius: 10px;
    box-shadow: 10px 10px 10px rgb(0, 0, 0);
    animation: animate;
    animation-duration: 500ms;
}

@keyframes animate {
    from {
        opacity: 1;
    }
}

.fundo {
    position: fixed;
    top: 0%;
    width: 100%;
    height: 100%;
    background: #c6cfd6;
    /* background-image: linear-gradient(to bottom, #fefefe, #33681d); */
}



.load {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: rgba(252, 252, 252, 0.671);
}


.rodape {
    background-color: #5c33cf;
}



/* TELA DE LOGIN */

.login-direita {
    background: #5c33cf;
}

.login-esquerda {
    background: #fff;
}

.btn-entrar {
    background: #3dd34d;
    color: #ffffff;
    width: 90%;
    border-radius: 5px;
    border: 2px solid gray;
    height: 35px;
}


/* TELA HOME */

#adicionar-questao {
    background: #5c33cf;
}

.caixa-botoes {

    background: #5c33cf;

}


.logo-cabecalho-pdf {
    height: auto;
    object-fit: contain;
    max-width: 100%;
    aspect-ratio: 4/3;
}


.btn-sub-menu {
    font-size: 10pt;
    border: 2px solid gray;
    border-radius: 5px;
    background-color: #3dd34d;
    color: #ffffff;
    width: 100%;
}


.img-visivel:hover {
    cursor: pointer;
    border: 3px solid rgba(0, 0, 0, 0);
    transition: -5s;
}

.img-form {
    display: none;
}

.img-questao {
    height: 150px;
    object-fit: contain;
    max-width: 100%;
    aspect-ratio: 4/3;
}

.img-alternativa {
    height: 60px;
    object-fit: contain;
    max-width: 100%;
    aspect-ratio: 4/3;
}

.img-sm {
    height: 30px;
    cursor: pointer;
}


.img-questao-simulado {
    object-fit: contain;
    max-height: 180px;
    max-width: 100%;
    aspect-ratio: 4/3;
}

.img-alternativa-simulado {
    object-fit: contain;
    max-height: 100px;
    max-width: 100%;
    aspect-ratio: 4/3;
}