.v2-video-player-shell,
.v2-video-player-shell * {
    box-sizing: border-box;
}

.v2-video-player-shell {
    width: 100%;
    min-width: 0;
}

.v2-video-player {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 675px;
    overflow: hidden;
    margin: 0 auto;
    border: 12px solid #202124;
    border-radius: 12px;
    background: #96fc04;
}

.v2-video-player__media {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    border-radius: 0;
    background: #202124;
    object-fit: cover;
    object-position: center;
}

.v2-video-player__play {
    position: absolute;
    right: 22px;
    bottom: 22px;
    width: 75px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    cursor: pointer;
}

.v2-video-player__play[hidden] {
    display: none;
}

.v2-video-player__play img {
    width: 75px;
    height: 75px;
    max-width: none;
    display: block;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .v2-video-player {
        height: auto;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 767px) {
    .v2-video-player-shell {
        width: 100vw;
        margin-left: calc(50% - 50vw);
    }

    .v2-video-player {
        width: calc(100% - 15px);
        height: 456px;
        border-width: 12px;
        background: #202124;
    }

    .v2-video-player__media {
        border-radius: 8px;
        object-fit: cover;
        object-position: center;
    }

    .v2-video-player__play {
        right: 12px;
        bottom: 12px;
        width: 54px;
        height: 54px;
    }

    .v2-video-player__play img {
        width: 54px;
        height: 54px;
    }
}
