.lns_video_popup {
    position: fixed;
    display: flex;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    justify-content: stretch;
    align-items: stretch;
    z-index: 99999;
}

.lns_video_popup.lns_hidden {
    opacity: 0;
    visibility: hidden;
}

.lns_video_popup .lns_popup_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    height: 100%;
}

.lns_video_popup .lns_popup_bg {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: black;
    opacity: .4;
}

.lns_video_popup .lns_popup_content {
    position: relative;
    padding-left: 16px;
    padding-right: 16px;
    z-index: 1;
    width: 100%;
    max-width: 752px;
}

.lns_video_popup button.lns_close_popup {
    color: white;
    font-size: 24px;
    line-height: 1;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: transparent;
    border: none;
    position: absolute;
    z-index: 1;
    top: 16px;
    right: 16px;
}

body.lns_no_scroll {
    overflow: hidden;
}