.video_productpopup video {
    @media (max-width: 768px) {
        max-width: 350px;
    }
}
.video_productpopup {
    position: relative;
    text-align: center;
}
.background_video {
    width: 100%;
    position: absolute;
    height: 100%;
    background: rgba(255,255,255,0.29);
}
.video_productpopup #paused_video,
.video_productpopup #play_video {
    position: absolute;
    left: 50%;
    top: 50%;
    background: transparent;
    box-shadow: none;
    border: none;
    z-index: 1000;
    outline: none;
}
.video_productpopup #play_video::after {
    content: url(../img/PLAY.svg);
    width: 58px;
    display: block;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}
.video_productpopup #paused_video::after {
    content: url(../img/PAUSE.svg);
    width: 58px;
    display: block;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
}