/* Overlay */

.mvda-popup-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

/* Popup Box */

.mvda-popup{
    width: 900px;
    max-width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 16px;
    position: relative;
    padding: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,.25);
}

/* Close Button */

.mvda-popup-close{
    position:absolute;
    top:15px;
    right:20px;
    border:none;
    background:none;
    font-size:30px;
    cursor:pointer;
}

/* Content */

.mvda-popup-content{
    min-height:200px;
}