html{
    position: relative;
    min-height: 100%;
}

/*
Gris claro (recuadros de contenido o texto) ---> #DCDCDC
Gris ( Iconos de tiempo, fecha, edición y búsqueda) ---> #979797
Gris oscuro (Footer) ---> #3F3F3F
Botones rojos (Pause) ---># F3213A
Botones de play --> #35EC35

*/

.header {
	/* background: #00F; */
    /* fallback */
    background-color: #0CEAED;
    background-repeat: repeat-y;

    /* Safari 4-5, Chrome 1-9 */
    background: -webkit-gradient(linear, left top, right top, from(#0CEAED), to(#2F2727));

    /* Safari 5.1, Chrome 10+ */
    background: -webkit-linear-gradient(left, #0CEAED, #009BD6);

    /* Firefox 3.6+ */
    background: -moz-linear-gradient(left, #0CEAED, #009BD6);

    /* IE 10 */
    background: -ms-linear-gradient(left, #0CEAED, #009BD6);

    /* Opera 11.10+ */
    background: -o-linear-gradient(left, #0CEAED, #009BD6);


	color: white;
	height: 80px;

	width: 100%; /* hacemos que la cabecera ocupe el ancho completo de la página */
	left: 0; /* Posicionamos la cabecera al lado izquierdo */
	top: 0; /* Posicionamos la cabecera pegada arriba */
	position: fixed; /* Hacemos que la cabecera tenga una posición fija */
	z-index: 1000;
}

.footer {
    padding-top: 6px;
/*
    padding-bottom: 12px;
*/
    background-color: #3F3F3F;
    width: 100%;
    bottom: 0;
    position: fixed;
    height: 40px;
    z-index: 9999;
}

body {
  /* Margin bottom by footer height */
    margin-bottom: 40px;
}

/*
.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
  line-height: 60px;
  background-color: #3F3F3F;
}
*/

.footer span {
    color:white;
}

.footer a {
    color:white;
}

/*
.footer .footer-content {
    margin-right: 16px;
}
*/
.nucleocentral {
    padding-top: 90px;
}

img.redondoVerde {
    border: 6px solid green;
    padding: 0;
    border-radius: 800px;
    overflow: hidden;
    margin: 0 auto;
}

img.redondoRojo {
    border: 6px solid red;
    padding: 0;
    border-radius: 800px;
    overflow: hidden;
    margin: 0 auto;
}

img.redondoAzul {
    border: 6px solid blue;
    padding: 0;
    border-radius: 800px;
    overflow: hidden;
    margin: 0 auto;
}

.required_fields {
    color: red;
    font-weight: bold;
}

label.error {
    color: red;
    font-weight: bold;
}

.alert.alert-error {
    color: #fff;
    background: #dc355c;;
}


ul.errorlist {
    margin: 0 0 4px;
    padding: 0;
    color: red; /* #ba2121; */
    background: #fff;
}

ul.errorlist li {
    font-weight: bold;
    /*font-size: 13px; */
    display: block;
    margin-bottom: 4px;
}

ul.errorlist li:first-child {
    margin-top: 0;
}

ul.errorlist li a {
    color: inherit;
    text-decoration: underline;
}

td ul.errorlist {
    margin: 0;
    padding: 0;
}

td ul.errorlist li {
    margin: 0;
}

#textodia {
//    font-size: 1.6em;
    float: left;
    position: absolute;
	top: 20%;
	left: 25%;
}
#textohora {
//    font-size: 1.6em;
    float: left;
    position: absolute;
	top: 20%;
	left: 25%;
}


@media only screen and (min-width: 0px) {
    #textodia {
        font-size: 1.6em;
    }
    #textohora {
        font-size: 1.6em;
    }
}

@media only screen and (min-width: 1500px) {
    #textodia {
        font-size: 2.2em;
    }
    #textohora {
        font-size: 2.2em;
    }
}

@media only screen and (min-width: 1800px) {
    #textodia {
        font-size: 2.4em;
    }
    #textohora {
        font-size: 2.4em;
    }
}

.preferencias {
    padding: 0;
    margin-top: -25px;
    margin-left: 160px;
    position: absolute;
}

.preferencias_entidad {
    padding: 0;
    margin-top: -115px;
    margin-right: 100px;
    position: relative;
}

.helptext {
    color: gray;
}

input[type="checkbox"]
{
    zoom: 1.25;         /* para el chrome */
    margin-top: -3px;
    vertical-align: middle;
}


.form-control {
//  Como estaba antes, hacia que se cortaran los selectores (select) por debajo. (Los form-control)
//    height: 28px;   /* alto = select2 */
}

.btn.dropdown-toggle{ /* alto botones boostrap-table */
    // padding: 3px 12px;
}

/* Separador botón */
.btn-espacio {
    margin-right: 10px;
}

.sidebar{
    width: 275px;
}

#page-wrapper {
    margin: 0 0 0 275px;
}


@media only screen and (max-width: 767px) {
    #page-wrapper {
        margin: 0 0 0 0;
    }
}


/* .btn-primary {
    color: #fff;
    background-color: #15aafa;
    border-color: #15aafa;
}

.btn-primary:hover {
    color: #fff;
    background-color: #2a7fff;
    border-color: #2a7fff;
} */

.btn-responsive {
    white-space: normal;
}

.control-label.label-flex {
  display: flex;
}
.control-label.label-flex > .label-flex-right {
    margin-left: auto;
}
