html, body {
    max-width: 100%;
    overflow-x: hidden;
    background-color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 10pt !important;
  }

  th { font-size: 12px; }
  td { font-size: 11px; }


  /*HEADER*/
  .header{
    height: 100px;
    background-color: #333333;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-family: 'Roboto', sans-serif;
  }

  /*Header parent grid*/
  .headerparent{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: 
      "logoname"
      "buttons";
  }
  
  .logname{
    grid-area: logoname;
    color: #C4C4C4;
    font-size: 20pt;
    font-weight: bolder;
    display: flex;
    /* justify-content: center; */
    align-items: center;
  }

  .buttons{
    grid-area: buttons;
    color: #C4C4C4;
    font-size: 12pt;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .chpassword{
    display: none;
  }

/*BOTON LOGIN*/
.btn-secondary {
  color: #B5B1B1;
  background-color: #333333;
  border-color: #333333;
}

/**CONTENIDOS**/
.contenido {
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.menuText {
  color: #7B882B;
  font-size: 11pt;
  text-align: center;
}


/**Estilo datatable+*/
.dataTables_length{
  font-size: 10pt;
}

.dataTables_filter{
  font-size: 10pt;
}

.dataTables_info{
  font-size: 10pt;
}

.dataTables_paginate{
  font-size: 10pt;
}

.paging_full_numbers{
  font-size: 10pt;
}

a{
  cursor: pointer;
}

/**PIE DE PAGINA PRINCIPAL**/
.mainfooter{
  background-color: #4C5326;
  padding-top: 20px;
  padding-bottom: 30px;
  padding-left: 20px;
  padding-right: 20px;
  font-family: 'Roboto', sans-serif;
  position: relative;
  bottom: 0;
  width: 100%;
  height: 100px;   
}

.botonMenu {
  width: 100px;
  height: 33px;
  background: #44663E 0% 0% no-repeat padding-box;
  border: 1px solid #44663E;
  color: white;
  font-size: 10pt;
  border-radius: 10px;
  opacity: 1;
}

.botonMenu:hover {
  color: lightgrey;
} 