/* thumb video in product gallery */
body:not(.half-width-slider) div.product div.images .woocommerce-product-gallery__image.woocommerce-product-gallery__video {
    display: none; /* comment to see the video in gallery of one product */
    overflow: hidden;
}

body:not(.half-width-slider) div.product div.images .woocommerce-product-gallery__image.woocommerce-product-gallery__video > a {
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

body:not(.half-width-slider) div.product div.images .woocommerce-product-gallery__image.woocommerce-product-gallery__video video {
    max-width: 100%;
    height: auto;
}

/* video in lightbox of product gallery */
.woocommerce img.pswp__img video, .woocommerce-page div.pswp__img video {
    max-width: 100%;
    height: auto;
}

body:not(.half-width-slider) div.product div.images .woocommerce-product-gallery__image .woocommerce-product-gallery__video-preview {
    position: relative;
}

body:not(.half-width-slider) div.product div.images .woocommerce-product-gallery__image .woocommerce-product-gallery__video-preview:before {
    content: '';
    display: block;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    width: 40%;
    height: 40%;
    background: url(../images/play-button.svg);
    z-index: 1;
    background-size: 75%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: black;
    border-radius: 12px;
    opacity: .6;
}
