/* Menu */
.top-bar, .top-bar ul {
    background-color: rgb(190, 3, 3);
}
a.menu-special{
    color: #fff;  
}
a.menu-special:hover{
    color: #beb8b8;  
    
}
.dropdown.menu>li.is-dropdown-submenu-parent>a::after{
    border-color: #fff transparent transparent;  

}
.dropdown.menu>li.is-active>a {
    color: #bfbaba;  

}
.menu-text{
    color: #fff !important;
}
.is-active{
    background-color: #951C1C;
}

/* Body */
body{
    background: #010d19;
}

.mi-form{
    margin-top: 1rem;
    background: #ffffff;
    border-radius: 15px;
    padding-bottom: 2rem;
}
.button-redondo{
    border-radius: 25px;
}


/* Tablas */
thead tr th { 
    position: sticky;
    top: 0;
    z-index: 10;
   
}

.ocultar{
    display: none !important;
}

.loader {
    width: 68px;
    height: 68px;
    border: 5px solid #FFF;
    border-bottom-color: #FF3D00;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    background-color: rgba(44, 41, 41, 0.091);
    position: relative;
    top: 50%;
    left:  50%;
    z-index: 100;
}
@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 