* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: 'Titillium Web';
}


#loading{
    display:none;
    background-color:rgba(255,255,255,0.7);
    position:fixed;
    top:0px;
    left:0;
    width:100%;
    height:100%;
    z-index:100000;
}

.loader {
    border: 5px solid rgba(255, 255, 255, 0.0);
    border-radius: 50%;
    border-top: 5px solid #264d7d;
    width: 130px;
    height: 130px;
    -webkit-animation: spin 0.7s linear infinite;
    animation: spin 0.7s linear infinite;
    margin-top:300px;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.login-container{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top:30px;
}

.login-container form{
    width: 400px;
    max-width:95%;
    padding: 20px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    display:block
}

.infoProjeto{
    text-align:center;
    width: 400px;
    margin:0 auto;
    padding:0;
    max-width:95%;
    font-size:12px;
    padding: 0 5px
}

.titulo{
    color:#6a6f7a;
    font-size:24px;
    font-weight:bold;
    text-align:center;
    margin:0;
    padding:0
}

.subtitulo{
    color:#6a6f7a;
    font-size:22px;
    text-align:center;
    margin:0;
    padding:0
}

.tituloLogin{
    font-size:24px;
    text-align:center;
    color:#6a6f7a;
}

.form-group label{
    color:#6a6f7a;
    font-weight:bold;
    margin:0;
    padding-left:3px
}

#sendLogin{
    background-color: #D12513;
    border:none;
    padding:8px 0;
    font-weight:bold;
    font-size:17px
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    width: 100%;
    height: 100%;
    top: 0%;
    left: 0%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    cursor:default;
}

.modal-content {
    background-color: #FFF;
    color: #616161;
    width: 600px;
    max-width: 95%;
    padding: 20px;
    border-radius: 25px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.modalinfoprocessual{
    margin-top:0px;
    max-height:90%;
    overflow:auto;
}

.modaldocumentos{
    width:600px;
    margin-top:0px;
    max-height:90%;
    overflow:auto;
}

.modalcitacao{
    margin-top:-80px;
    width:auto;
    max-width:100%;
    min-width:30%
}

.closeModal{
    width:100%;
    text-align:right;
    margin:-10px 0 0 0;
    padding:0;
    z-index:2
}

.closeModal i{
    font-size:20px;
    cursor:pointer;
    margin:0;
    padding:0
}

#validarToken .tituloToken{
    font-size:20px;
    text-align:center;
    margin:-20px 0 15px 0;
    padding:0
}

#validarToken #sendToken{
    background-color: green;
    border:none;
    width:200px;
    margin:20px auto 0 auto;
}

.divCamposToken{
    display:flex;
    text-align: center;
    justify-content: center;
    align-items:center
}

.divCamposToken .inputNum{
    text-align: center;
    border: 1px solid grey;
    border-radius: 5px;
    font-size:18px;
    width:30px;
    margin-right:10px;
    height:40px
}

input[type=number]::-webkit-inner-spin-button { 
	-webkit-appearance: none;			
}

input[type=number] { 
	-moz-appearance: textfield;
	appearance: textfield;
}

#snackbar {
    visibility: hidden; 
    z-index: 300000;
    width: 200px;
    text-align: center;
    display:flex;
    width:100%;
    justify-content: center;
    position: fixed;
    bottom: 30px;
}

#snackbar p{
	background-color: #008000;
	color: #fff;
	border-radius: 2px;
	padding: 16px;                
	font-size: 17px;
	width:350px;
	margin:0 auto
}

#snackbar.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#snackbarError{
    visibility: hidden; 
    z-index: 300000;
    width: 200px;
    text-align: center;
    display:flex;
    width:100%;
    justify-content: center;
    position: fixed;
    bottom: 30px;
}

#snackbarError p{
	background-color: #ed4337;
	color: #fff;
	border-radius: 2px;
	padding: 16px;                
	font-size: 17px;
	width:350px;
	margin:0 auto
}

#snackbarError.show {
	visibility: visible;
	-webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
	animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

#modalNegociacao .modal-content .configNegociacao{
    margin:10px auto;
    width:90%;
}

#modalEtapaPagamento{
    text-align:center;
    width:100%;
    margin:0 auto;
}

#modalEtapaConfirmacao{
    text-align:center;
    width:100%;
    margin:0 auto;
    display:none;
}

#modalEtapaPagamento .row,
#modalEtapaConfirmacao .row{
    margin-top:10px;
    text-align:left
}

#divFormaEnvio{
    display:none;
    text-align: center;
    width:100%;
}

.tituloFormaEnvio{
    margin:15px 0 auto;
    font-size:13px;
    text-align:center;
    width:100%;
}

.opcoesEnvio{
    display:flex;
    justify-content: center;
    align-items: space-between;
}

.opcoesEnvio div{
    margin:0 20px;
}

.labelFormaEnvio{
    margin:0;
    font-size:13px;
}

#emailInput,
#telefoneInput{
    display: none;
}

#erroEtapaAcordo{
    color:red;
    margin:10px auto -15px;
    display:none;
}

#modalEtapaPagamento .labelNeg,
#modalEtapaConfirmacao .labelNeg{
    margin:0px;
    font-size:13px;
    padding-left:5px;
}

#modalEtapaPagamento .inputNeg{
    padding-left:10px;
    width:100%;
    background: #F2F2F2;
    border-radius: 12px;
    border:none
}

#modalEtapaConfirmacao .inputNeg{
    padding-left:10px;
    width:100%;
    background: rgba(173,216,230,0.5);
    border-radius: 12px;
    border:none;
}

#btnConfirmarNeg{
    margin-top:20px;
    height:30px;
    width:100%;
    background-color: green;
    border: none;
    border-radius: 12px;
    color: white;
}

#btnFinalizarNeg{
    height:30px;
    width:100%;
    background-color: green;
    border: none;
    border-radius: 12px;
    color: white;
}

#btnVoltarCalcular{
    height:30px;
    width:100%;
    background-color: #D3D3D3;
    border: none;
    border-radius: 12px;
    color: white;
}

.tituloReenvio{
    font-size: 20px;
    text-align:center;
}

.conteudoReenvio{
    display:flex;
    width:100%;
    align-items:center;
    justify-content:space-between
}

.conteudoReenvio .iconReenvio{
    cursor:pointer;
}

#destinatarioreenvio{
    width: 100%;
    padding-left: 10px;
    background: rgba(173,216,230,0.2);
    border-radius: 12px;
    border:none;
    height:30px;
    margin:0 10px;
}

.txtInfoProcessual{
    font-size:18px;
    margin:0px
}

.detalheProcesso{
    margin-top:20px;
}

@-webkit-keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}

	to {
		bottom: 30px;
		opacity: 1;
	}
}

@keyframes fadein {
	from {
		bottom: 0;
		opacity: 0;
	}

	to {
		bottom: 30px;
		opacity: 1;
	}
}

@-webkit-keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}

	to {
		bottom: 0;
		opacity: 0;
	}
}

@keyframes fadeout {
	from {
		bottom: 30px;
		opacity: 1;
	}

	to {
		bottom: 0;
		opacity: 0;
	}
}

.divModulos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 100px;
    gap: 20px;
}

.divModulos .btnModulo {
    width: 150px;
    cursor: pointer;
    background-color: white;
    box-shadow: 0px 0px 15px rgba(249, 3, 83, 0.2);
    border-radius: 8px;
    transition: 0.2s;
    text-align: center;
}

.divModulos .btnModulo:hover {
    box-shadow: 0px 0px 15px rgba(249, 3, 83, 0.4);
}

.divModulos .btnModulo img {
    width: 50%;
    display: block;
    margin: 10px auto;
    padding: 5px;
}

.divModulos .btnModulo p {
    background-color: #D12513;
    width: 100%;
    margin: 0;
    font-weight: bold;
    color: white;
    text-align: center;
    padding: 4px 0px;
    border-radius: 0px 0px 8px 8px;
}

.conteudoNegociacao{
    width: 80%;
    margin:0 auto;
}

.conteudoNegociacao .subtitulo{
    font-size:22px;
    margin-top:20px
}

.conteudoNegociacao #faturas,
.conteudoNegociacao #acordos{
    width:100%;
    font-size: 12px;
    overflow:none;
}


.conteudoNegociacao #faturas thead tr th,
.conteudoNegociacao #acordos thead tr th{
    text-align:center;
    vertical-align: middle;
}

.conteudoNegociacao #faturas tbody tr td,
.conteudoNegociacao #acordos tbody tr td{
    text-align:center;
    vertical-align: middle;
    width:100px;
}

.divAvancatNeg{
    font-size:16px;
    margin: 0;
}

#msgErroSelecionar{
    text-align:center;
    color:red;
    font-size:13px;
    display:none;
}

.btnAvancarNegociacao{
    height:30px;
    width:100%;
    padding-left: 20px;
    background-color: #0061B7;
    border: none;
    border-radius: 12px;
    color: white;
}

.divSemProcesso{
    background-color:#e3e3e3;
    padding: 15px 5px;
    font-size:16px;
    margin:50px auto;
    text-align:center;
    font-weight:bold;
    width:auto;
    width:600px;
    max-width: 95%;
    word-wrap: break-word;
    white-space: normal;
}

.divSemProcesso p{
    margin:0;
    padding:0;
}

.tituloProcessos{
    font-size:22px
}

.divComProcesso{
    max-width: 80%;
    margin:0 auto
}

.processo{
    background-color: white;
    font-size:14px;
    margin-top:10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius:10px;
    color:black
}

.capaprocesso{
    background-color:#e3e3e3;
    padding: 15px 5px 20px 15px;
    cursor:default;
    border-radius:10px 10px 0 0;
}

.cabecalhocapa{
    display:flex;
    align-items:center;
    justify-content:space-between;
    width:100%;
    padding:0px
}

.divInfoProcesso{
    display:flex;
    margin-top:10px
}

.divInfoProcesso .informacaoProcesso{
    display:block;
    text-align:left;
    width:20%
}

.divInfoProcesso .informacaoProcesso .p1{
    font-weight: bold;
    margin:0px;
    padding:0px;
}

.divInfoProcesso .informacaoProcesso .p2{
    margin:-5px 0px 0px;
    padding:0px;
}

.verCitacao{
    color:black;
    text-decoration:underline;
    cursor:pointer;
    width:auto
}

.txtFaturas{
    font-weight: bold;
    padding:0;
    margin:20px 0 0 0;
    width:100%;
    text-align: left;
    word-wrap: break-word;
    white-space: normal;
}

.infoProcesso{
    background-color:#d3d3d3;
    border-radius:25px;
    font-weight:bold;
    padding: 0px 15px;
    margin-left:5px
}

.iconInfoProcessual{
    text-align:right;
    font-size:18px;
    margin:0px;
    padding:0px
}

.iconInfoProcessual i{
    cursor:pointer;
    padding-right:15px;
    color: #4169E1;
}

.processo .detalhes .partesdoprocesso{
    padding: 15px
}

.tituloInfoProcesso{
    font-weight:bold
}

.partesdoprocesso table{
    width:100%;
    color:black;
}

.partesdoprocesso table tr{
    border-bottom:1px solid #d3d3d3;
    padding-top:10px;
}

.infoParteProcesso{
    width:70px;
    font-weight:600
}

.movimentacoesProcessuais{
    padding: 15px
}

.movimentacoesProcessuais .divSemMovimentacao{
    background-color:#e3e3e3;
    padding: 15px 0px 5px 0px;
    font-size:16px;
    margin-top:10px;
    text-align:center;
    font-weight:bold
}

.tbMovimentacao{
    width:100%
}

.tbMovimentacao tr{
    border-bottom:1px solid #d3d3d3;
}

.tbMovimentacao tr td{
    text-align:left;
    vertical-align: middle;
}

.theadMovimentacao{    
    font-weight:bold;
}

.theadMovimentacao .columnDataMov{
    width:150px;
}

#docPrincipal p{
    font-size:16px;
    text-align:center;
    font-weight:bold;
    width:100%;
    margin-top:-20px
}

#tableDocumentos{
    margin-top:20px;
    font-size:14px;
}

#tableDocumentos thead tr th,
#tableDocumentos tbody tr td{
    text-align:center;
    vertical-align:middle
}

.iconOpenDoc{
    cursor:pointer;
    font-size:16px;
}

#detalheCitacao{
    font-size:16px;
    color:black;
    text-align:center
}

.card {
    background: white;
    width: 650px;
    max-width: 95%;
    word-wrap: break-word;
    white-space: normal;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    position: relative;
    margin:30px auto 0;
}

.card .icon{
    width: 60px;
    height:60px;
    line-height:60px;
    font-size:55px;
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    color:green;
    border-radius: 50%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card .tituloCard{
    margin:20px 0 0 0;
    font-size:20px;
    font-weight: bold;
}

.card .tituloCard2{
    margin:10px 0;
    font-size:16px;
}

.card .tituloCard3{
    margin:10px 0;
    font-size:16px;
    font-weight:bold
}

.card ul {
    list-style-type: disc;
    font-size: 14px;
    width:75%;
    margin:10px auto 0;
}

.card ul li {
    text-align:left;
    margin-bottom: 8px;
}

#formValidarPdf{
    width:100%;
}

.picture {
    width: 400px;
    max-width:75%;
    height: 35px;
    margin: 10px auto;
    background: rgba(0,128,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: green;
    border: 2px dashed green;
    cursor: pointer;
    font-family: sans-serif;
    transition: color 300ms ease-in-out, background 300ms ease-in-out;
    outline: none;
    overflow: hidden;
}

.picture:hover {
    color: white;
    background: rgba(0,128,0,0.5);
    border: 2px dashed rgba(0,128,0,0.5);
}

.picture:focus {
    color: #777;
    background: #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

#fileToUpload{
    display:none
}

#conteudoValidarPdf{
    display:none;
}

#btnValidarPdf{
    margin:20px 5px 0;
    height:30px;
    width: 150px;
    background-color: green;
    border: none;
    border-radius: 12px;
    color: white;
}

#btnVoltarPdf{
    margin:10px 5px 0;
    height:30px;
    width: 150px;
    background-color: #AAA;
    border: none;
    border-radius: 12px;
    color: white;
}

.resonValidador{
    font-weight:bold;
    text-align:center;
    padding:0;
    margin:0 0 20px 0;
    font-size:18px;
}

.btnValidador{
    display:block;
    margin:0 auto;
    width:150px;
    padding:6px 0px;
    border-radius:8px;
    border:none;
    font-weight:bold;
}

#btnNovaValidacao{
    background-color: #28A745;
    color:white;
    transition: 0.2s;
}

#btnNovaValidacao:hover{
    background-color: #1E7E34;
}

#btnVoltarHome{
    background-color: #007BFF;
    color:white;
    transition: 0.2s;
}

#btnVoltarHome:hover{
    background-color: #0056b3;
}

/* Responsividade */
@media (max-width: 1094px){
    .titulo{
        margin-top:50px;
    }
    
    .modaltoken{
        width:95%;
    }
}

@media (max-width: 600px) {
    .divModulos {
        flex-direction: wrap;
        margin-top:20px;
    }

    .divModulos .btnModulo {
        width: 100%;
        max-width: 150px;
    }
}