.grandma-video-modal{
    display:none;
    position:fixed;
    inset:0;
    z-index:9999;
    align-items:center;
    justify-content:center;
}
.grandma-video-modal.is-open { 
    display:flex; 
}
.grandma-video-modal-backdrop {
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.75);
}
.grandma-video-modal-content {
    position:relative;
    z-index:1;
    width:min(90vw, 900px);
}
.grandma-video-modal-content {
    background: #fff;
    padding: 7px;
    border-radius: 20px;
}
.grandma-video-modal-content video {
    width:100%;
    max-height:85vh;
    display:block;
    background:#000;
    height: 480px;
    border-radius: 20px;
    object-fit: cover;
}
.grandma-video-modal-close {
    position: absolute;
    top: -50px;
    right: -20px;
    border: none;
    color: #fff;
    font-size: 33px;
    line-height: 1;
    cursor: pointer;
    background: #ab2821;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Montserrat",sans-serif;
}

.iframe-main-bnr {
    position: relative;
}
.iframe-main-bnr::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: transparent;
}
.iframe-main-bnr iframe {
    position: relative;
    z-index: 1;
}

/*** MEDIA ***/
@media only screen and (max-width: 767px) {
.grandma-video-modal-content video {
    height: 360px;
}
.grandma-video-modal-close {
    right: 0px;
}
}