#webinar-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.75);
    z-index:99999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:20px;
}

#webinar-popup{
    position:relative;
    max-width:900px;
    width:100%;
}

#webinar-popup img{
    width:100%;
    height:auto;
    display:block;
    border-radius:12px;
}

#webinar-popup-close{
    position:absolute;
    top:-15px;
    right:-15px;
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    cursor:pointer;
    font-size:24px !important;
    background:#fff;
    cursor:pointer;
    z-index:2;
    color: #ff6700 !important;
}

@media(max-width:768px){
    #webinar-popup{
        max-width:95%;
    }
}