
#logo-cnrt{
    height: 40px;
}
/* ponemos en cero porque sino el logo de la cnrt lo hace muy alta a la barra y los links de la derecha se ponen "feos"*/
.navbar-brand{
    padding: 0px 10px;
}
.alert {
    border-radius: 10px;
    margin: auto;
    width: 70%;
    z-index: 100000;
} 
label.required:after {
  content: " *";
}
.entornoTestClass{
    background-image: linear-gradient(#B40404, #B40404 60%, #B40404);
}

.glyphicon.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
}
@keyframes spin {
    from { transform: scale(1) rotate(0deg);}
    to { transform: scale(1) rotate(360deg);}
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg);}
    to { -webkit-transform: rotate(360deg);}
}