/* Adicionando o Css do botão de arquivos 12-04-2021 */
.arquivo {
    display: none !important;
}

.file {
    height: 35px;
    border: 1px solid #d8d8d8;
    padding: 5px;
    font-size: 15px;
    width: 90%;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}

.btnArquivo {
    border: none;
    background-color: #00c292;
    color: #FFF;
    height: 35px;
    font-size: 15px;
    width: 10%;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    float: right;
}

/* Quando cancela o arquivo Enviado */
.btnArquivoCancel {
    border: none;
    background-color: #ea4f5e;
    color: #FFF;
    height: 35px;
    font-size: 15px;
    width: 10%;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    float: right;
}

.btnArquivoDownload {
    border: none;
    background-color: #5051af;
    color: #FFF;
    height: 35px;
    font-size: 15px;
    width: 10%;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
    float: right;
}

.btnArquivoConfirm {
    border: none;
    background-color: #00c292;
    color: #FFF;
    height: 35px;
    font-size: 15px;
    width: 10%;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    float: left;
    cursor: initial;
    padding: 7px;
}

.fileCancel {
    height: 35px;
    border: 1px solid #d8d8d8;
    padding: 5px;
    font-size: 15px;
    width: 90%;
}

.btnReprovado{
    border: none;
    background-color: #ea4f5e;
    color: #FFF;
    height: 35px;
    font-size: 15px;
    width: 10%;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    float: left;
    cursor: initial;
    padding: 7px;
}



@media (max-width: 767px) {
    .btnArquivoConfirm, .btnReprovado{
        width: 15%;
        height: 40px;
    }
    .btnArquivoCancel, .btnArquivo{
        width: 20%;
        height: 40px;
    }

    .fileCancel {
        width: 65%;
        height: 40px;
    }

    .file {
        width: 80%;
        height: 40px;
    }
}