/*tamaño de letra general*/
html {
  font-size: 15px;
}

body{background-color:#eee}


/*Color fuentes*/
.text-white {
    color: white;
}
.text-white-b {
    color: white;
    font-weight: bold;
}
.text-navy {
    color: navy;
}
.text-navy-b {
    color: navy;
    font-weight: bold;
}
.text-blue {
    color: blue;
}
.text-blue-b {
    color: blue;
    font-weight: bold;
}
.text-green {
    color: green;
}
.text-green-b {
    color: green;
    font-weight: bold;
}
.text-red {
    color: red;
}
.text-red-b {
    color: red;
    font-weight: bold;
}

.text-orange {
    color: orange;
}
.text-orange-b {
    color: orange;
    font-weight: bold;
}

/* <a href ... sin decoración */
a { 
    text-decoration: none;  
}

/* Bordes de todos los fieldsets ... el "!important" hace que tome este valor después de los de bootstrap por defecto*/
fieldset {
  border: 1px solid LightSteelBlue !important;    
}

/* Texto tooltip */
.tooltip-inner {
    background-color: #2f4fff;
    text-align: justify;
    max-width: 50% !important;
    opacity: 1 !important;
}

/* dataTables - Dato Filtrar */
.dataTables_filter input {
    border: 1px solid LightSteelBlue !important;
}

.paginate_button {
  border: 1px solid LightSteelBlue !important;
}

/* letra más pequeña que fs-6 de bootstrap */
.fs-7 {
  font-size: 12px; 
}
