body {
    background-color: gainsboro !important;
    display: flex;
    flex-direction: column;
    /* justify-content: space-between; */
    align-items: center;
    overflow: scroll;
    overflow-x: hidden;
    min-height: 100vh;
}

body::-webkit-scrollbar,
div::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    transition: 0.3s;
}

body::-webkit-scrollbar-track,
div::-webkit-scrollbar-track {
    background-color: #f1f1f1;
}

/* quero a mesma cor no corner  */
body::-webkit-scrollbar-corner,
div::-webkit-scrollbar-corner {
    background-color: #f1f1f1;
}


body::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb {
    background: #cdcdcd !important;
    border-radius: unset;
}

body::-webkit-scrollbar-thumb:hover,
div::-webkit-scrollbar-thumb:hover {
    background: #888888 !important;
    cursor: grab;
}

header {
    display: none;
}

main {
    width: 97vw;
    margin-top: 2vh;
}

footer {
    margin-top: auto;
    align-self: flex-end;
    width: 100vw;
    max-width: 100vw;
    height: 5vh;
    max-height: 5vh;
    color: white;
    background-color: #229544;
    text-align: center;
    font-size: 0.8em;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.2);
}

footer p {
    margin: 0;
}

.nav-app {
    display: flex;
    border: none;
    justify-content: center;
    margin: 20px auto 0 auto;
}

.btn-square {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: aliceblue;
    width: 25px;
    scale: 1;
}

.btn-square:hover {
    background-color: rgb(210, 215, 221);
    color: #239645;
    scale: 0.9;
}

#dialogoverlay {
    display: block;
    opacity: .8;
    position: fixed;
    top: 0px;
    left: 0px;
    background: #FFF;
    width: 100%;
    z-index: 10;
}

#dialogbox {
    display: none;
    position: fixed;
    background: #000;
    border-radius: 7px;
    width: 550px;
    z-index: 10000000000000;
    overflow-y: auto;
    box-sizing: border-box;
}

#dialogbox {
    background: #008037;
    margin: 8px;
    color: #FFF !important;
    font-family: Nunito, sans-serif;
}

#dialogbox #dialogboxhead {
    border-color: hsla(0, 0%, 100%, .075);
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.25rem;
    border-bottom: 0.5px solid #6b9366cb;
    border-top-left-radius: 0.375rem;
    border-top-right-radius: 0.375rem;
}

#dialogbox #dialogboxbody {
    position: relative;
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    padding: 1.5rem;
    box-sizing: border-box;
}

#dialogbox #dialogboxbody .py-3 {
    text-align: center;
}

#dialogbox #dialogboxbody .py-3 h5 {
    margin-bottom: 0.5rem !important;
    font-weight: 400;
    margin-top: 1.5rem !important;
    font-size: 1.5rem;
    font-family: Nunito, sans-serif;
    line-height: 1.3;
    margin-block-start: 1.67em;
    margin-block-end: 1.67em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
}

#dialogbox #dialogboxbody .py-3 p {
    display: block;
    margin-block-start: 1em;
    margin-block-end: 1em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    box-sizing: border-box;
    margin-top: 0;
    margin-bottom: 1rem;
}

#dialogbox #dialogboxhead .close {
    padding: 1.25rem;
    margin: -1rem -1rem -1rem auto;
    cursor: pointer;
    background-color: transparent;
    border: 0;
    appearance: none;
    float: right;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1;
    text-shadow: none;
    opacity: .5;
}

#dialogbox #dialogboxhead .close:hover {
    color: hsla(0, 0%, 100%, .6);
}

#dialogbox #dialogboxfoot {
    padding: 10px;
    text-align: right;
}


.bg-titulo {

    background-color: #93d482;
    text-align: center;
    font-family: -apple-system;
    border-radius: 10px;
}

.bg-subtitulo {

    background-color: #c0dfb8;
    text-align: center;
    font-family: -apple-system;
    border-radius: 10px;

}

.card-fluid{
    -webkit-animation: fluid 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: fluid 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    transition: ease 0.6ms;
  }
  
  @-webkit-keyframes fluid {
    0% {
      -webkit-transform: translateY(-1000px);
      transform: translateY(-1000px);
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  
  @keyframes fluid {
    0% {
      -webkit-transform: translateY(-1000px);
      transform: translateY(-1000px);
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }

  .sidenav {
    -webkit-animation: show 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: show 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    transition: ease 0.6ms;
}

@-webkit-keyframes show {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes show {
    0% {
        -webkit-transform: translateX(-1000px);
        transform: translateX(-1000px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

div .mt-4{
    padding-top: 40px;
}

/* style do projeto contrato pdf BB */

#alert-pdf-bb{
    display: flex;
    padding: 7px;
    background-color:#fcfcfc;
    margin: 20px; 
    border: 2px solid #578f67;
    border-radius: 10px;
    box-shadow: 1px 2px 3px rgba(7, 7, 7, 0.301);
    transition: 1s;
}

#alert-pdf-bb{
    flex-direction: column;
}

#alert-pdf-bb:hover{
    box-shadow: 1px 2px 7px rgba(7, 7, 7, 0.425);
}

#alert-pdf-bb h5{
  text-align: center;
  color:#008037;
}

#alert-pdf-bb p{
    text-align: center;
    color:#008037;
}

#vlr-campos-pdf-contrato-bb{
    padding: 6px;
    border-radius: 2px;
    /* border: 1px solid rgba(0, 0, 0, 0.219); */
    background-color: #ffffff;
}

#tb-pdf-contrato-bb-id{
    width: 100%;
    text-align: center;
}

thead > tr > th{
    position: sticky;
    top: 0;
}

#tb-pdf-contrato-bb-id th{
    background-color: #259e49;
    /* border: 1px solid rgb(199, 199, 199); */
    color: white;
    padding: 10px;
    font-size: 10px;
}

#tb-pdf-contrato-bb-id td{
    font-size: 10px;
    background-color: #f3f3f3;
    padding: 14px;
    border: 1px solid rgb(199, 199, 199);
    transition: 0.5s;
}

#tb-pdf-contrato-bb-id td:hover{
    background-color: #259e49;
    color: white;
    box-shadow: 2px 2px px rgba(0, 0, 0, 0.466);
}

#vlr-campos-pdf-contrato-bb{
    overflow: auto;
    /* height: 150px; */
}

#vlr-campos-pdf-contrato-bb::-webkit-scrollbar{
    height: 20px;
}

#vlr-campos-pdf-contrato-bb::-webkit-scrollbar-thumb{
    background-color: #b1b1b1;
}

#vlr-campos-pdf-contrato-bb::-webkit-scrollbar-track{
    background-color: #ffffff;
}

#confirma-pdf-contrato-bb{
    padding: 5px;
    background: #ffffff;
    border: none;
    border-radius: 3px;
    transition: 0.5s;
    color: #000000 !important;
    text-transform: capitalize !important;
    background-image: linear-gradient(to top left, rgb(194, 194, 194), rgba(179, 179, 179, 0.815) 30%, rgb(224, 224, 224));
    box-shadow: inset 2px 2px 3px rgba(209, 209, 209, 0.87), inset -2px -2px 3px #0202024f;
}

#processar-tabela-dados-pdf-class{
    border: 0;
    line-height: 1.8;
    padding: 0 20px;
    font-size: 1rem;
    text-align: center;
    color: rgb(255, 255, 255) !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.473);
    border-radius: 6px;
    background-color: #52cc81;
    background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(209, 209, 209, 0.87), inset -2px -2px 3px #0202024f;
    text-transform: capitalize !important;
}

#processar-tabela-dados-pdf-class:hover{
    background-color: #c4c4c4;
    box-shadow: inset 2px 2px 3px rgba(207, 207, 207, 0.87), inset -2px -2px 3px rgba(87, 87, 87, 0.815);
    color: rgb(255, 255, 255) !important;
}

/* #pdffile[type='file']{
    display: none;
} */

.file-arquivo-pdf-personalizado{
    border: 0;
    line-height: 1.8;
    padding: 0 20px;
    font-size: 1rem;
    text-align: center;
    color: rgb(255, 255, 255) !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.473);
    border-radius: 6px;
    background-color: #52cc81;
    background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(209, 209, 209, 0.87), inset -2px -2px 3px #0202024f;
    text-transform: capitalize !important;
}

.file-arquivo-pdf-personalizado:hover{
    background-color: #c4c4c4;
    box-shadow: inset 2px 2px 3px rgba(207, 207, 207, 0.87), inset -2px -2px 3px rgba(87, 87, 87, 0.815);
    color: rgb(255, 255, 255) !important;
}

#btn-process-pdf-data-bb{
    border: 0;
    line-height: 1.8;
    padding: 0 20px;
    font-size: 1rem;
    text-align: center;
    color: rgb(255, 255, 255) !important;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.473);
    border-radius: 6px;
    background-color: #52cc81;
    background-image: linear-gradient(to top left, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2) 30%, rgba(0, 0, 0, 0));
    box-shadow: inset 2px 2px 3px rgba(209, 209, 209, 0.87), inset -2px -2px 3px #0202024f;
    text-transform: capitalize !important;
}

#btn-process-pdf-data-bb:hover{
    background-color: #c4c4c4;
    box-shadow: inset 2px 2px 3px rgba(207, 207, 207, 0.87), inset -2px -2px 3px rgba(87, 87, 87, 0.815);
    color: rgb(255, 255, 255) !important;
}

.input-tr-editar{
    border: none;
    outline: none;
    background: none;
    font-size: 15px;
}