.body_admin {        
        padding-top: 70px;
        padding-bottom: 160px;
}

.fondo_login {
	background-image: url("./imgs/fondo.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
	background-color: #999999;
}

.texto_pie {
	color: gray;
}

.texto_error {
	color: red;
}

.table-hover thead tr:hover th, .table-hover tbody tr:hover td {
    background-color: #b0d0b0;
}

.texto_descripcion {	
	color: gray;
	font-size: 13px;
}

.fixed-footer{
	width: 100%;
	position: fixed;        
	background: #cbcbcb;
	padding: 1px 0;
	color: #fff;
	bottom: 0;
}

.centrado{
	margin-left: auto;
	margin-right: auto;
}

.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

.tab button:hover {
  background-color: #ddd;
}

.tab button.active {
  background-color: #ccc;
}

.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
} 

.tooltip {
  position: relative;
  display: inline-block;
  opacity: 1;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  
  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top: -5px;
  left: 105%;
  
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}