﻿.has-live a::after {
    content: '';
    font-family: 'Font Awesome 5 Pro';
    display: inline-block;
    margin-left: 8px;
    font-weight: 400;
    color: #f44336;
    animation-name: flash;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

@keyframes flash {
    50% {
        opacity: 0;
    }
}

.live-block:first-child {
    border-top: 1px solid #e0e0e0;
}

.live-block {
    padding-bottom: 1rem !important;
    border-bottom: 1px solid #e0e0e0;
}

    .live-block:last-child {
        border-bottom: none;
    }
.time-live {
    margin-bottom: 1rem;
    font-size: 110%;
    color: #4483C4;
    font-weight: bold;
    margin-top:1rem;
}