.product-video {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    position: relative;
    border:0.063rem solid var(--e-global-color-af13b01,#dadada);
}

.product-video iframe {
    aspect-ratio: 16 / 9;
    height: 100%;
    width: 100%;
}

.product-video__cover {
    align-items: center;
    aspect-ratio: 16 / 9;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    position: absolute;
    top: 0;
    transition: opacity 0.1s ease-in;
    width: 100%;
    z-index: 1;
}

.product-video__cover.hide {
    display: none;
}

.product-video__cover::after {
    background-color: #ffffff;
    content: '';
    height: 100%;
    left: 0;
    opacity: 0.50;
    position: absolute;
    top: 0;
    transition: all 0.1s ease-in;
    width: 100%;
}

.product-video__cover:hover .product-video-play {
    background-color: var(--e-global-color-primary, #a6292e);
}

.product-video__cover:hover .product-video-play svg {
    color: #ffffff;
}

.product-video-play {
    align-items: center;
    background-color: var(--e-global-color-3dcc5a4, #101010);
    border-radius: 100%;
    display: flex;
    height: 6.25rem;
    justify-content: center;
    position: relative;
    transition: all 0.1s ease-in;
    width: 6.25rem;
    z-index: 1;
}

@media (max-width: 767px) {
    .product-video-play {
        height: 5rem;
        width: 5rem;
    }
}

.product-video-play svg {
    height: 3rem;
	width: 3rem;
    right: -0.2rem;
    position: relative;
    color: #ffffff;
    transition: all 0.1s ease-in;
}

@media (max-width: 767px) {
    .product-video-play svg {
        height: 2.5rem;
        width: 2.5rem;
    }
}