@font-face {
    font-family: 'Titillium Web';
    font-style: normal;
    font-weight: 400;
    src: local('Titillium Web'), local('TitilliumWeb-Regular'), url(https://fonts.gstatic.com/s/titilliumweb/v4/7XUFZ5tgS-tD6QamInJTcdGU7DQ8I6RFMlK0vgclk7w.woff) format('woff');
}
@font-face {
    /* Proveniente do Google */
    font-family: 'Tangerine';
    font-style: normal;
    font-weight: 400;
    src: local('Tangerine'), url(https://themes.googleusercontent.com/static/fonts/tangerine/v3/HGfsyCL5WASpHOFnouG-RD8E0i7KZn-EPnyo3HZu7kw.woff) format('woff');
}

@font-face {
    font-family: 'Average';
    font-style: normal;
    font-weight: 400;
    src: local('Average'), local('Average-Regular'), url(https://themes.googleusercontent.com/static/fonts/average/v1/PT2T4EDE8LdI8iV2yQCkMA.woff) format('woff');
}

@font-face {
    font-family: 'Life Savers';
    font-style: normal;
    font-weight: 400;
    src: local('Life Savers'), local('LifeSavers-Regular'), url(https://themes.googleusercontent.com/static/fonts/lifesavers/v3/_yRJoxB8KMO25_gswqItc4bN6UDyHWBl620a-IRfuBk.woff) format('woff');
}

html {
    font-family: 'Titillium Web';
    font-size: 16px;
}
body {
    /*
    background-color: #5fb3fd;
     */
}
#topicos {
    position: fixed;
    top:10px;
    left:-340px;
    margin-right: 50px;
    border-radius: 10px;
    min-width:100px;
    min-height:100px;
    background-color: #ffffff;
    border:1px solid black;
    box-shadow: 5px 5px 5px #000;
    transition-duration: 300ms;
}
#topicos:hover {
    position: fixed;
    top:10px;
    left:0px;
    border-radius: 10px;
    min-width:100px;
    min-height:100px;
    background-color: #ffffff;
    border:1px solid black;
    box-shadow: 5px 5px 5px #000;
}
p.topico {
    margin: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #bababa;
    border-radius: 6px;
    background-color: #f9f0df;
}
p.topico:hover {
    margin: 5px;
    padding-left: 10px;
    padding-right: 10px;
    border: 1px solid #bababa;
    border-radius: 6px;
    background-color: #f0e7d6;
    cursor: pointer;
}
#wrapper {
    min-width: 1024px;
    max-width: 1024px;
    margin: 0px auto;
    padding-top: 50px;
}
input[type='text'] {
    margin-top: 0.5rem;
    margin-right: 0px;
    margin-left: 5px;
    border: 0;
    border-bottom: 1px solid rgba(200, 200, 200, 1);
    width: 100px;
    text-decoration: none;
    text-align: left;
    font-weight: normal;
    font-size: 16px;
    color: #520136;
    outline: none; /* retira a borda ao redor do elemento no Chrome */
    background: rgba(255,255,255,0);
}

input[type='password'] {
    margin-top: 0.5rem;
    margin-right: 0px;
    margin-left: 5px;
    border: 0;
    border-bottom: 1px solid rgba(200, 200, 200, 1);
    width: 100px;
    text-decoration: none;
    text-align: left;
    font-weight: normal;
    font-size: 16px;
    color: #520136;
    outline: none; /* retira a borda ao redor do elemento no Chrome */
    background: rgba(255,255,255,0);
}

input[type='date'] {
    margin-top: 0.5rem;
    margin-right: 0px;
    margin-left: 5px;
    border: 0;
    border-bottom: 1px solid rgba(200, 200, 200, 1);
    width: 180px;
    text-decoration: none;
    text-align: left;
    font-weight: normal;
    font-size: 16px;
    color: #520136;
    outline: none; /* retira a borda ao redor do elemento no Chrome */
    background: rgba(255,255,255,0);
}
input[type='button'] {
    font-family: 'Titillium Web';
}
p {
    margin: 0 0 5px 0;
}
p.lista {
    padding-left: 70px;
}
fieldset {
    border-radius: 8px;
    background-color: #ffffff;
    box-shadow: 0px 0px 15px #FFF;
}

fieldset > fieldset {
    box-shadow: none;
}

textarea {
    font-family: 'Titillium Web';
    font-size: 16px;
    text-align: justify;
    padding: 5px;
    width: 98%;
    resize: vertical;
    min-height: 200px;
}
select {
    font-family: 'Titillium Web';
}
#numproc {
    min-width:200px;
    text-align: right;
}
#assunto {
    min-width:90%;
}
#valor {
    min-width: 150px;
}
#pagsnumequivocadas {
    min-width: 300px;
}
#consulente {
    min-width: 500px;
}
.desativado {
    color: lightgray;
}
table.lista {
    margin-left: 70px;
}
table.lista td {
    vertical-align: top;
}

.erro {
    box-shadow: 0px 0px 5px rgb(255, 0, 0);
}

.span_servico {
    display: none;
}

.span_fornecimento {
    display: inline;
}

/* ANIMAÇÕES */
@-webkit-keyframes pop-in {
    0% { opacity: .5; -moz-transform: scale(.9); -webkit-transform: scale(.9); }
    100% { opacity: 1; -moz-transform: scale(1); -webkit-transform: scale(1); }
}
@keyframes pop-in {
    0% { opacity: .5; -moz-transform: scale(.9); -webkit-transform: scale(.9); }
    100% { opacity: 1; -moz-transform: scale(1); -webkit-transform: scale(1); }
}
@-webkit-keyframes fade-in {
    0% { opacity: .5; -moz-transform: scale(1); -webkit-transform: scale(1); }
    100% { opacity: 1; -moz-transform: scale(1); -webkit-transform: scale(1); }
}
@keyframes fade-in {
    0% { opacity: .5; -moz-transform: scale(1); -webkit-transform: scale(1); }
    100% { opacity: 1; -moz-transform: scale(1); -webkit-transform: scale(1); }
}

.espacosimples {
    line-height: 100%;
}