/* your styles go here */
.tableFixHead
{ 
    position: sticky;
    top:0; 
    z-index:1;
}
.bg-warning-dark { background-color: #c6be1a;}
.text-orange { color: orange;}
.bg-orange { background-color: orange;}
.text-green-dark { color: green;}
.bg-green-dark { background-color: green;}
.bg-orangered { background-color: orangered;}
.bg-pink { background-color: #f46592;}
.bg-cinza { background-color: darkgray;}
.text-pink { color: #f46592;}
.text-dark-red { color: #870202;}
.table, .container-fluid { overflow-x: scroll !important; }
.day { padding: 12px;}
td, th {
/*word-wrap:break-word;*/
/*word-break:break-all;*/
    font-size: 14px;
}
@keyframes blinking {
    0% {
        background-color: #f38787;
    }
    100% {
        background-color: #ff0000;
    }
}
#blink {
    width: 30px;
    height: 30px;
    animation: blinking 0.5s infinite;
    border-radius: 50%;
    border: 3px solid white;
    margin: 0 auto;
    cursor: help;
}