| 1 |
/** |
| 2 |
* Product Video |
| 3 |
*/ |
| 4 |
.merchant-product-has-audio { |
| 5 |
display: block !important; |
| 6 |
} |
| 7 |
|
| 8 |
.merchant-product-has-audio .merchant-product-audio { |
| 9 |
width: 100%; |
| 10 |
margin-bottom: 20px; |
| 11 |
} |
| 12 |
|
| 13 |
.merchant-product-has-audio .merchant-product-audio + .woocommerce-product-gallery__image, |
| 14 |
.merchant-product-has-audio .merchant-product-audio + .woocommerce-product-gallery { |
| 15 |
display: none !important; |
| 16 |
} |
| 17 |
|
| 18 |
.merchant-product-has-audio .product-loop-image-wrapper, |
| 19 |
.merchant-product-has-audio .image-wrap, |
| 20 |
.merchant-product-has-audio .loop-image-wrap, |
| 21 |
.merchant-product-has-audio .ct-image-container { |
| 22 |
display: none !important; |
| 23 |
} |
| 24 |
|
| 25 |
.merchant-product-has-audio audio { |
| 26 |
display: block; |
| 27 |
width: 100%; |
| 28 |
max-width: 100%; |
| 29 |
} |
| 30 |
|
| 31 |
.merchant-product-has-audio .onsale, |
| 32 |
.merchant-product-has-audio .merchant-onsale, |
| 33 |
.merchant-product-has-audio .woocommerce-product-gallery__trigger { |
| 34 |
display: none !important; |
| 35 |
} |
| 36 |
|
| 37 |
.woocommerce-product-gallery__image.has-audio { |
| 38 |
position: relative; |
| 39 |
} |
| 40 |
|
| 41 |
.woocommerce-product-gallery__image.has-audio .merchant-product-audio { |
| 42 |
position: absolute; |
| 43 |
bottom: 50%; |
| 44 |
margin: 0 auto; |
| 45 |
width: 100%; |
| 46 |
display: -webkit-box; |
| 47 |
display: -ms-flexbox; |
| 48 |
display: flex; |
| 49 |
-webkit-box-orient: horizontal; |
| 50 |
-webkit-box-direction: normal; |
| 51 |
-ms-flex-direction: row; |
| 52 |
flex-direction: row; |
| 53 |
-webkit-box-pack: center; |
| 54 |
-ms-flex-pack: center; |
| 55 |
justify-content: center; |
| 56 |
z-index: 5; |
| 57 |
} |
| 58 |
|
| 59 |
.woocommerce-product-gallery__image.has-audio .merchant-product-audio audio { |
| 60 |
width: 90%; |
| 61 |
} |
| 62 |
|
| 63 |
.woocommerce-product-gallery__image.has-audio .merchant-product-audio-overlay { |
| 64 |
position: absolute; |
| 65 |
width: 100%; |
| 66 |
height: 100%; |
| 67 |
background: black; |
| 68 |
opacity: 0.5; |
| 69 |
z-index: 4; |
| 70 |
} |
| 71 |
|