﻿   
 

    
/* Font ROBOTO */
.roboto{
    font-family: 'Roboto', sans-serif !important; 
}



/* custom background header panel */
.custom-header-panel{
         background-color: #ba0215 !important;
    border-color: #b50014 !important;
    color: white !important;
    

}

.no-margin-form-group {
    margin: 0 !important;
}
.requerido {
    color: red;
}
.btn-orange-md {
    background: #FF791F !important;
    border-bottom: 3px solid #ae4d13 !important;
    color: white;
}

.btn-orange-md:hover {
    background: #d86016 !important;
    color: white !important;
}
        .form-group {
    margin-bottom: 20px;
}

.blinking{
    animation:blinkingText 2s infinite;
}
@keyframes blinkingText{
    0%{     color: #000;    }
    49%{    color: green; }
    50%{    color: orange; }
    99%{    color:red;  }
    100%{   color: #000;    }
}