.GameHub .event-wrapper .card {
    width: 100%;
    background-color: #F8F8F8;
    box-shadow: 0px 10px 20px #0000000d;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
}

    .GameHub .event-wrapper .card .video-wrapper {
        position: relative;
        display: flex;
    }

        .GameHub .event-wrapper .card .video-wrapper .sound {
            position: absolute;
            width: 24px;
            height: 24px;
            bottom: 20px;
            right: 25px;
            cursor: pointer;
            opacity: 1;
            transition: opacity 200ms ease-in-out;
        }

            .GameHub .event-wrapper .card .video-wrapper .sound svg {
                position: absolute;
                width: 100%;
                height: 100%;
                fill: #ffffff;
                top: 0;
                right: 0;
                opacity: 1;
                transition: all 200ms ease-in-out;
            }

            .GameHub .event-wrapper .card .video-wrapper .sound.muted .on {
                opacity: 0;
            }

            .GameHub .event-wrapper .card .video-wrapper .sound .off {
                opacity: 0;
            }

            .GameHub .event-wrapper .card .video-wrapper .sound.muted .off {
                opacity: 1;
            }


    .GameHub .event-wrapper .card picture img,
    .GameHub .event-wrapper .card video {
        width: 100%;
    }

    .GameHub .event-wrapper .card .video-wrapper.iframe-wrapper {
        aspect-ratio: 16/9;
    }

        .GameHub .event-wrapper .card .video-wrapper.iframe-wrapper iframe {
            height: 100%;
            width: 100%;
        }

    .GameHub .event-wrapper .card .main-wrapper {
        display: flex;
        flex-direction: column;
        padding: 20px 25px;
        background: #ffffff;
        position: relative;
    }

        .GameHub .event-wrapper .card .main-wrapper .people {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }

            .GameHub .event-wrapper .card .main-wrapper .people img,
            .GameHub .event-wrapper .card .main-wrapper .people .initials {
                width: 80px;
                height: 80px;
                box-sizing: content-box;
                border: 1px solid #F4F4F4;
                border-radius: 50%;
                margin: auto;
                object-fit: cover;
                object-position: top;
            }

        .GameHub .event-wrapper .card .main-wrapper .initials {
            display: flex;
        }

            .GameHub .event-wrapper .card .main-wrapper .initials p {
                margin: auto;
                font-size: 22px;
                line-height: 18px;
                font-weight: 500;
            }

        .GameHub .event-wrapper .card .main-wrapper .info h4 {
            font-family: Roboto;
            font-weight: bold;
            font-size: 20px;
            line-height: 22px;
            padding: 0;
            margin: 0;
            margin-bottom: 8px;
            color: #242424;
            text-transform: none;
        }

            .GameHub .event-wrapper .card .main-wrapper .info h4:last-child {
                margin-bottom: 0;
            }

        .GameHub .event-wrapper .card .main-wrapper .info p {
            font-family: Roboto;
            font-size: 16px;
            line-height: 22px;
            padding: 0;
            margin: 0;
            color: #242424;
        }

.GameHub .event-wrapper.substitution .card .main-wrapper {
    flex-direction: column !important;
}

.GameHub .event-wrapper .card .main-wrapper .substitution {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /*align-self: center;*/
    /*margin-bottom: 50px;*/
    margin-top: 10px;
}

    .GameHub .event-wrapper .card .main-wrapper .substitution .player {
        display: flex;
        margin-top: 20px;
    }

        .GameHub .event-wrapper .card .main-wrapper .substitution .player img,
        .GameHub .event-wrapper .card .main-wrapper .substitution .player .initials {
            margin: 0;
            width: 80px;
            height: 80px;
            border: 1px solid #F4F4F4;
            border-radius: 50%;
            object-fit: cover;
            object-position: top;
        }

        .GameHub .event-wrapper .card .main-wrapper .substitution .player .player-info {
            margin-left: 20px;
            text-align: left;
        }

            .GameHub .event-wrapper .card .main-wrapper .substitution .player .player-info svg {
                display: inline-block;
                width: 30px;
                height: 20px;
            }

            .GameHub .event-wrapper .card .main-wrapper .substitution .player .player-info h4 {
                padding: 0;
                margin: 0;
                text-transform: none;
                font-family: Roboto;
                font-weight: 500;
                font-size: 24px;
                line-height: 28px;
                color: #242424;
            }

            .GameHub .event-wrapper .card .main-wrapper .substitution .player .player-info p {
                padding: 0;
                margin: 0;
                font-family: Roboto;
                font-weight: normal;
                font-size: 16px;
                line-height: 18px;
                color: #242424;
            }

@media screen and (min-width: 992px) {
    .GameHub .event-wrapper .card .video-wrapper .sound {
        opacity: 0;
    }

    .GameHub .event-wrapper .card .video-wrapper:hover .sound {
        opacity: 1;
    }

    .GameHub .event-wrapper .card .video-wrapper .sound:hover svg {
        fill: #c30000;
    }
}
