#page-new-modal {
    position: fixed;
    display: none;
    place-items: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.8);
    z-index: 99999999;
    transition: all .3s ease;
}
#page-new-modal.active {
    display: grid;
}
#page-new-modal .page-modal-body {
    position: relative;
    display: block;
    width: 90%;
    height: auto;
    min-width: 200px;
    max-width: 600px;
    max-height: 90%;
    background-color: #fff;
    z-index: 1;
}
#page-new-modal .page-modal-body .page-modal-content {
    position: relative;
    z-index: 1;
}
#page-new-modal .page-modal-body .page-modal-content .content-panel {
    position: relative;
    padding: 40px;
    font-size: 16px;
    line-height: 1.5;
    color: #000;
}



#page-new-modal .page-modal-body .page-modal-close-btn {
    position: absolute;
    display: flex;
    top: -10px;
    right: -10px;
    z-index: 2;
    width:fit-content;
    padding: 5px;
    border-radius: 50%;
    background-color: #0C1C8C;
    cursor: pointer;
}
#page-new-modal .page-modal-body .page-modal-content .img-fluid {
    width: auto; max-width: 100%; height: auto;
}