.statsTable {
    width: 100%;
}

.lastCol {
    text-align: right;
}

.hasNotPlayed {
    color: gray;
}

.standings tbody tr:hover {
    background-color: #cbd3da;
}

.bh4f_mobile {
    display: online;
}
.playoffline {
    border-bottom: 2px solid black;
}

@media (max-width: 991px) {
    .bh4f_mobile {
        display: none;
    }
}

.blink {
    animation-name: animation_blink;
    animation-timing-function: ease-in;
    animation-duration: 2s; 
    animation-iteration-count: infinite;            
}

@keyframes animation_blink {
    0% { opacity: 1; }
    50% { opacity: 0.1; }
    100% { opacity: 1; }    
}