
@keyframes blink {
    0%,100% { opacity: 0.25 }
    50% { opacity: 1 }
}

.content--current-games-container {
    display: flex;
    flex-direction: column;
    align-items: center;

    .content--current-game-container {
        display: inline-flex;
        flex-direction: column;
        height: 200px;
        width: 90%;
        margin-top: 3px;
        border: 2px solid gray;
        border-radius: 5px;

        .current-game--information {
            display: flex;
            height: 50%;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid gray;
            font-size: 1.5em;
            font-weight: bold;
            padding: 3px 0 3px 6px;

            .current-game--title {
                display: inline-block;
            }
            .current-game--sex {
                display: inline-block;
            }

            .current-game--live-container {
                display: flex;
                align-items: center;

                .current-game--live-dot {
                    display: inline-block;
                    height: 15px;
                    width: 15px;
                    background-color: #E52828;
                    border-radius: 50%;
                    animation: blink 3s linear infinite;
                }

                .current-game--live-label {
                    padding: 0 6px 0 6px;
                    color: #E52828;
                }
            }

        }

        .current-game--content {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
            padding: 10px 10% 10px 10%;

            .current-game--team-logo {
                display: inline-flex;
                height: 100px;
                max-width: 100px;
                width: auto;
            }

            .current-game--score {
                display: inline-flex;
                font-size: 4em;
                font-weight: bolder;
            }
        }
    }
}

.second-row-container {
    width: 90%;
    display: flex;
    flex-direction: row;
    margin: 3px 5% 0 5%;
}


.content--upcoming-games {
    width: 50%;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding-top: 5px;
    padding-bottom: 5px;
    border: 3px solid black;
}

.content--upcoming-games-container {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 5px;
    padding-bottom: 5px;
    justify-content: center;
}

.content--upcoming-games-label {
    display: inline-flex;
    width: 100%;
    font-weight: bold;
}

.content--upcoming-game-container {
    display: flex;
    flex-direction: column;
    padding: 3px 3px 3px 3px;
    border-top: 3px solid black;
}

.upcoming-game-content {
    display: inline-flex;
    flex-direction: row;
    padding: 3px 3px 3px 3px;
    justify-content: center;
    align-items: center;
}

.upcoming-game-start {
    width: auto;
    font-weight: bold;
}

.upcoming-game-title {
    display: inline-flex;
    border-bottom: 1px solid gray;
}

.upcoming-game--home-team-logo {
    display: inline-flex;
    height: 100px;
    max-width: 100px;
    width: auto;
    margin-right: 10%;
}

.upcoming-game--guest-team-logo {
    display: inline-flex;
    height: 100px;
    max-width: 100px;
    width: auto;
    margin-left: 10%;
}

.upcoming-game--versus {
    display: inline-flex;
    font-size: 4em;
    font-weight: bolder;
}

.content--video-container {
    display: inline-flex;
    width: 50%;
    height: 45vh;
}

.content--video {
    display: block;
    width: 100%;
    border: 3px solid black;
}

