html, body { height:100%; }

h2 {
  font-size: 2rem !important;
  margin: 0.75rem 1.5rem 0.75rem 0.5rem !important;
}

h4 {
  margin: 0.5rem !important;
}

#wrapper { height:100%; }

#main {
  height:100%;
  /* overflow:auto; */
  padding-bottom:15px; /* this needs to be bigger than footer height*/
}

/* Paginacion */
#paginacion {
  margin-top: 5px;
  position:relative;
}

.pagination li a {
    color: #444 !important;
}

/* Bloque indicando error */
.help-block { display: none; }
.has-error .help-block {
  display: block;
  color: #f44336;
}

.panel-heading {
  background-color: white !important;
}

.panel {
    padding: 10px;
    padding-left: 20px;
    background: white;
    border: 1px solid;
    border-color: #EEEEEE;
}

.panel-title {
    background: white;
}

/* Centrar Login */
.outer-wrapper { 
	display: table;
	width: 100%;
	height: 100%;
}

.inner-wrapper {
	display:table-cell;
	vertical-align:middle;
	padding:10px;
}

#content {
	margin: 10px;
}

/* Para el Loading, que puede estar en cualquiera */
.loading {
  position: absolute;
  z-index: 999;
  height: 2em;
  width: 2em;
  overflow: visible;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* tooltip */
.tooltipdiv {
  position: relative;
  display: inline-block;
  /* border-bottom: 1px dotted black; */
}

.tooltipdiv .tooltiptext {
  visibility: hidden;
  width: 300px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 110%;
  left: 0%;
  opacity: 0;
  transition: opacity 0.3s;
}

.tooltipdiv .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltipdiv:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Breadcrumbs */
.breadcrumb {
  background-color: transparent !important;
  padding: 0rem;
  margin-bottom: 0;
}

#header .panel {
  background: #dcdcdc;
}

.breadcrumb:last-child {
  color: #6c757d !important;
}

#header {
  width: 100%;
  /* padding-right: 15px; */
  /* padding-left: 15px; */
  margin-right: auto;
  margin-left: auto;
}

th {
  border-radius: 0px !important;
}

.col, .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Text with icon for password */
.inputWithPassword input {
  padding-right: 30px !important;
}

.inputWithPassword {
  width: 100%;
  position: relative;
}

.inputWithPassword i {
  position: absolute;
  right: 5px;
  top: 22px;
  padding: 0px 0px 0px 5px;
  color: #aaa;
  transition: 0.3s;
  cursor: pointer;
}

.inputWithPassword input:focus + i {
  color: dodgerBlue !important;
}

.inputWithPassword .material-icons {
  font-size: 20px;
}