/* Estilos para o navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    /*color: #c56060;
    /padding: 20px;*/
 }

 /* Estilos para os links do navbar */
 .navbar a {
    color: #fff;
    text-decoration: none;
    margin-right: 50px;
 }
 
 body {
   position: relative;
   min-height: 100vh;
   background-color: antiquewhite;
   background-image: '/docrapido/images/background.jpg';
}
 .content {
    margin: 20px;
    padding-bottom: 60px;
 }

 .footer {
    text-align: right;
    text-decoration: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #0a234f;
    color: #fff;
    padding: 10px;
 }
 
 img{
   position: fixed;
   height: 100%;
   width: 100%;
   object-fit: cover;
   opacity: 0.4;
   z-index: -1;
   margin: -20px;
 }

 .dados_cota {
   border-radius: 5px;
   outline: none;
   background-color: rgb(208, 218, 218);
   border: 1px solid #333;
 }
 
 .dados1{
  border-radius: 5px 5px 0px 0px;
  border: 0;
  border-top: 1px solid #333;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
 }

 .dados2{
  border-radius: 0px 0px 5px 5px;
   border: 0;
  border-bottom: 1px solid #333;
  border-left: 1px solid #333;
  border-right: 1px solid #333;
 }

 .div_show{
   flex-wrap: wrap;
 }

 .esconder{
  display: none;
 }