body {
  background-color: white;
}

/* Remove the navbar's default margin-bottom and rounded borders */ 
.navbar {
  margin-bottom: 0;
  border-radius: 0;
}

/* Set height of the grid so .sidenav can be 100% (adjust as needed) */
.row.content {height: 450px}

/* Set gray background color and 100% height */
.sidenav {
  padding-top: 20px;
  background-color: #f1f1f1;
  height: 100%;
}

/* Set black background color, white text and some padding */
footer {
  background-color: #555;
  color: white;
  padding: 15px;
  opacity:0.9!important; /*mia modifica*/
  height:33px!important; /*mia modifica*/
}

/* On small screens, set height to 'auto' for sidenav and grid */
@media screen and (max-width: 767px) {
  .sidenav {
    height: auto;
    padding: 15px;
  }
  .row.content {height:auto;} 
}

/*
*******
MIO CSS
*******
*/

/* GOOGLE FONTS (https://fonts.google.com/) */
@import url('https://fonts.googleapis.com/css?family=Inconsolata&subset=latin-ext');
.body_gestiolex {
   font-family: 'Inconsolata', monospace;
   /* font-size: 20px; */
   /* text-shadow: 1px 1px 1px #aaa; */ 
}

/* nasconde nel caso di stampa - USO class='no-print' */
@media print
{    
    button, .button, .no-print, .no-print *
    {
        display: none !important;
    }
    
  ::-webkit-input-placeholder { /* WebKit browsers */
      color: transparent;
  }
  ::-moz-placeholder { /* Mozilla Firefox 4 to 18 */
      color: transparent;
  }
  ::-moz-placeholder { /* Mozilla Firefox 19+ */
      color: transparent;
  }
  :-ms-input-placeholder { /* Internet Explorer 10+ */
      color: transparent;
  }
}

/* impagina in caso di stampa */
@page { 
    size: auto;   /* auto is the initial value */ 
    /* this affects the margin in the printer settings */ 
    margin: 25mm 25mm 25mm 25mm;
    font-size: 12pt;  
}

/* trasforma in maiuscolo la prima lettera dei campi nome, indirizzo e città (scheda persona) */ 
#nome, #form-address, #form-city {
  text-transform:capitalize;
}
/* trasforma in maiuscolo il testo del campo codice fiscale (scheda persona) */ 
#cod_fisc, #persona_provincia {
  text-transform: uppercase;
}

/* colore al focus dei campi input e texarea */
input:focus, textarea:focus {
  background-color: #e6f7ff;
}

input:not(:focus) {
  background-color: white;
}

input:invalid:not(:focus) {
  /* background-color: #ff8080 */
}