html,
body {
  min-height: 100vh;
  overflow-x: hidden;
  background-color: #FBFBFB;
  font-family: 'Roboto', sans-serif;
  font-size: 10pt !important;
}

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

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

/*Header parent grid*/
.headerparent {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 50px 1fr;
  grid-template-areas:
    "logoname   buttons";
}

.logname {
  grid-area: logoname;
  color: #C4C4C4;
  font-size: 20pt;
  display: block;
  font-weight: bolder;
  display: block;
}

.buttons {
  grid-area: buttons;
  color: #C4C4C4;
  font-size: 12pt;
  display: flex;
  justify-content: flex-end;

}

.chpassword{
  display: inherit;
}

/**CONTENIDOS**/
.contenido {
  min-height: 100vh;
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 30px;
  padding-bottom: 30px;
}

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

/**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 {
  clear: both;
  position: relative;
  height: 120px;
  width: 100%;
  background-color: #4C5326;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 100px;
  padding-right: 100px;
  bottom: 0;
  font-family: 'Roboto', sans-serif;
}

.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;
} 