.nx_video_overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000000e3;
    visibility: hidden;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nx_video_overlay.show {
    visibility: visible;
    opacity: 1;
    z-index: 999;
    transition: opacity 500ms;
}

.nx_video_popup {
    margin: 70px auto;
    border-radius: 5px;
    position: relative;
}

.nx_video_popup h2 {
    margin-top: 0;
    color: #333;
    font-family: Tahoma, Arial, sans-serif;
}

.nx_video_popup .close {
    position: absolute;
    top: -15px;
    right: -17px;
    transition: all 200ms;
    text-decoration: none;
    color: #fff;
    z-index: 1;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    text-align: center;
    border-radius: 100%;
    color: #fff;
    border: 1px solid #fff;
    background: #000;
    align-items: center;
    box-sizing: border-box;
}

.nx_video_popup .close:hover {
    opacity: 0.8;
}

.nx_video_popup video {
    /* height: 70vh; */
    /* height: 500px; */
    width: 100%;
    border-radius: 4px;
}

.nx_video__content-card>div {
    line-height: 0;
    width: 100%;
}

.nx_video__content-card>div .elementor-button {
    width: 100% !important;
    display: block;
}

body.single-product .nx_video__content-card>div:nth-child(2) {
    display: none !important;
}

@media screen and (min-width:375px) {
    .nx_video_popup {
        width: 320px;
    }
}