#container-spinner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;

}

#spinner {
    border: 12px solid rgba(0, 82, 156, 0.5);
    border-left-color: #00529c;
    height: 100px;
    width: 100px;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

html {
    font-family: "Montserrat", sans-serif;
    margin: 0;
    font-size: 100%;
}

body {
    margin: 0;
    padding: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    background-color: #00529c;
    padding: 2%;
}

#email-juridico-perego {
    word-break: break-all;
}

@media screen and (max-width: 768px) {

    header img {
        display: none;
    }

    .aviso {
        display: flex;
        flex-direction: column !important;
        align-items: center;
        justify-content: center;
    }

    .aviso-1 {
        width: 100% !important;
        min-height: 20px;
        flex-wrap: wrap;
        padding: 10px;
    }

    .aviso-2 {
        width: 100% !important;
        background-color: #FFF3c4;
        padding: 10px;
        border-left: solid 2px #ffcd00 !important;
        flex-wrap: wrap;
    }

    .drop-area img {
        width: 100px !important;
        height: auto !important;
    }

    .botao-enviar-denuncia {
        width: 80% !important;
        height: 50px;
    }
}

@media screen and (max-width: 310px) {
    h1 {
        font-size: 2rem !important;
    }
}

img {
    height: 45px;
}

h1 {
    font-size: 2.5rem;
    padding: 0;
    margin: 0;
    color: whitesmoke;
    text-align: center;
}

.h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0071b6;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    height: 100px;
    text-align: center;
    border-radius: 10px;
    color: whitesmoke;
}

.centralizado {
    margin-left: auto;
    margin-right: auto;
}

.texto-cinza {
    color: #696c6f;
    font-weight: bold;
    font-size: 1.2rem;
}

.texto-cinza-sem-negrito {
    color: #696c6f;

    font-size: 1.2rem;

}

.texto-justificado {
    text-align: justify;
}

.aviso {
    display: flex;
    flex-direction: row;
    margin-top: 50px;
}

.aviso-1 {
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 2.5rem;
    width: 10%;
    background-color: #102641;
    color: whitesmoke;
}

.aviso-2 {
    width: 90%;
    background-color: #FFF3c4;
    padding: 10px;
    border: solid 2px #ffcd00;
    border-left: none;
}

form {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 150px;
}

.span {
    margin-top: 50px;
    display: block;
}

.item-indice {
    font-weight: bold;
    color: #00529c;
    font-size: 1.5rem;

}

.item-paragrafo {
    display: flex;
    flex-direction: row;
    font-size: 1.5rem;
}

.item-texto {
    color: #696c6f;
    font-weight: bold;
    font-size: 1.5rem;
    margin-left: 5px;
}

.opcoes {
    display: flex;
    flex-direction: column;
}

.campo-texto {
    width: 100%;
    margin-top: 5px;
    margin-left: auto;
    margin-right: auto;
    text-indent: 10px;
    font-size: 1.3rem;
}

.campo-texto-maior {
    height: 200px;
}

.bordas-campos {
    border: solid 2px;
    border-radius: 10px;
}

.campo-data {
    width: 100%;
    height: 50px;
    font-size: 1.5rem;
    text-align: center;
}

.caixa-arquivos {
    border: dashed 3px #0071b6;
    border-radius: 40px;
    min-height: 100px;
    height: auto;
    width: 100%;
}

.drop-area {
    margin: 10px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.drop-area img {
    width: 100px;
    height: auto;
}

.lista-de-arquivos {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.observacao-upload-arquivo {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    text-align: center;
}

.item-arquivo {
    margin: 0;
    text-align: center;
}

#inserir-arquivo {
    text-align: center;
}

.botao-inserir-arquivo {
    display: none;
}

.label-inserir-arquivo {
    text-align: center;
    width: 200px;
    border: solid 3px #0071b6;
    border-radius: 40px;
    padding: 10px;
}

.item-relatorio {
    margin-bottom: 10px;
}

@keyframes blink {

    0%,
    100% {
        background-color: rgb(0,82,156);
    }

    50% {
        background-color: transparent;
    }
}

.blink-animation {
    animation: blink 1s infinite;
}


.arrow-right {
    position: absolute;
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 15px solid rgb(0,82,156);
    top: 0;
    margin-top: -10px;
  }
  

.div-inserir-arquivo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
}

.div-enviar-denuncia {
    width: 100%;
}

.botao-enviar-denuncia {
    display: flex;
    padding: 20px;
    width: 40%;
    height: 50px;
    border: solid 3px #0071b6;
    border-radius: 40px;
    background-color: whitesmoke;
    color: #0071b6;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-top: 50px;
}

.botao-enviar-denuncia:hover {
    background-color: #0071b6;
    color: whitesmoke;
}

.botao-enviar-denuncia:active {
    background-color: #FFF3c4;
    color: #696c6f;
}

footer {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    height: 100px;
    background-color: #00529C;
    opacity: 0.8;
    position: fixed;
    bottom: 0;
    width: 100vw;
    left: 0;
}

footer p {
    margin: 0;
    color: white;
    text-align: center;
    width: 90%;
}


.lista-de-arquivos {
    margin-top: 10px;
}

.item-arquivo {
    margin-bottom: 5px;
    display: flex;
    align-items: center;
}

.remove-arquivo {
    margin-left: 10px;
    border: none;
    background: none;
    color: red;
    cursor: pointer;
}