/* estils de farmavet */
/* animacion alerta */
@keyframes animacion-color-success {
    0% {
        opacity: 0;
        background-color: black;
        top: 0px;
        transform: translate(0, -100%);
    }
    20% {
        opacity: 0;
        background-color: black;
        top: 0px;
        transform: translate(0, -100%);
    }
    100% {
        opacity: 1;
        background-color: green;
        top: 114px;
        transform: translate(0, 0%);
    }
}
@keyframes animacion-color-warning {
    0% {
        opacity: 0;
        background-color: black;
        top: 0px;
        transform: translate(0, -100%);
    }
    20% {
        opacity: 0;
        background-color: black;
        top: 0px;
        transform: translate(0, -100%);
    }
    100% {
        opacity: 1;
        background-color: orangered;
        top: 114px;
        transform: translate(0, 0%);
    }
}
@keyframes animacion-color-danger {
    0% {
        opacity: 0;
        background-color: black;
        top: 0px;
        transform: translate(0, -100%);
    }
    20% {
        opacity: 0;
        background-color: black;
        top: 0px;
        transform: translate(0, -100%);
    }
    100% {
        opacity: 1;
        background-color: darkred;
        top: 114px;
        transform: translate(0, 0%);
    }
}
@keyframes animacion-color-info {
    0% {
        opacity: 0;
        background-color: black;
        top: 0px;
        transform: translate(0, -100%);
    }
    20% {
        opacity: 0;
        background-color: black;
        top: 0px;
        transform: translate(0, -100%);
    }
    100% {
        opacity: 1;
        background-color: dodgerblue;
        top: 114px;
        transform: translate(0, 0%);
    }
}
@keyframes animacion-desaparece {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
/* The element to apply the animation to */
.mensaje-alerta{
    width: 800px;
    /*height: 100px;*/
    background-color: black;
    position: fixed;
    top: 114px;
    transform: translate(0, 0%);
    left: calc(50% - (400px));
    color: white;
    padding: 30px 30px;
    text-align: center;
    border-radius: 0 0 10px 10px;
    z-index: 1050;
    box-shadow: 0px 3px 10px rgba(0,0,0,0.3);
}
.btn-cerrar{
    color: white;
    position: absolute;
    top: 0;
    right: 10px;
    font-size: 20px;
}
.mensaje-success {
    animation-name: animacion-color-success;
    animation-duration: 3s;
    background-color: green;
}
.mensaje-warning {
    animation-name: animacion-color-warning;
    animation-duration: 3s;
    background-color: orangered;
}
.mensaje-danger {
    animation-name: animacion-color-danger;
    animation-duration: 3s;
    background-color: darkred;
}
.mensaje-info {
    animation-name: animacion-color-info;
    animation-duration: 3s;
    background-color: dodgerblue;
}
.mensaje-cerrar {
    animation-name: animacion-desaparece;
    animation-duration: 2s;
    opacity: 0;
}
/* fi animacion alerta */

.u-header__logo-img{
    width: 135px;
}
.navbar-brand{
    padding-top: 0px;
    padding-bottom: 0px;
}
.radiolist label{
    margin-right: 20px;
}
.help-block{
    color: darkred;
    font-style: italic;
}
.dark-theme .nav-item .nav-link, .light-theme .nav-item .hs-sub-menu .nav-link {
    color: rgba(0, 0, 0, 0.8);
} 