.mmpdb-modal {
    display: none;
}
.mmpdb-modal--active {
    display: block !important;
    position: fixed !important;
    z-index: 999999 !important;
    left: 0 !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    background-color: rgba(0,0,0,0.8) !important;
    overflow: hidden !important;
}
.mmpdb-modal__content {
    position: relative !important;
    z-index: 1000000 !important;
    margin: 2% auto !important;
    padding: 20px !important;
    width: 90% !important;
    height: 90% !important;
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
}
.mmpdb-modal__iframe {
    width: 100%;
    height: calc(100% - 50px);
    border: none;
}
.mmpdb-modal__close {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    background-color: #3f55b0;
    cursor: pointer;
    padding: 2px 6px 6px;
    min-width: 5px;
    font-size: 16px;
    line-height: 15px;
    /* border-radius: 50px; */
    color: #fff !important;
    text-align: center;
    border: 1px solid #fff;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease-in-out;
}
.mmpdb-modal__close:hover {
    background-color: #000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
body.modal-is-open {
    overflow: hidden;
} 

#cboxClose {
    top: 0;
    right: 30px
}