@media (min-width: 850px) {

    /* Create off-center division on wide screens*/
    .wide {
        width: 60%;
    }

    .narrow {
        width: 40%;
    }

    .video_overlay {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        max-height: 100%;
        max-width: 42vw;
        right: 60px;
        float: right;
    }

    .video_overlay img {
        position: absolute;
        top: 50%;
        left: 50%;
        margin: 0 -50% 0 0;
        transform: translate(-50%, -50%);
    }

    .flipped .video_overlay
    {
        right: auto;
        left: 60px;
    }
}

/* Keep centered */
.flipped .product_info_table {
    float: none;
}

