.popup-dom {
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 999;
}
.popup-dom:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
}
.content-mfp {
    width: 100%;
    /*height: 300px;*/
    position: fixed;
    margin-top: 10%;
    padding: 0 8px;
    z-index: 1045;
    justify-content: center;
    display: flex;
    box-sizing: border-box;
}
.popup-content-mfp {
    position: relative;
    background: #fff;
    height: 90%;
    width: 40%;
    min-width: 450px;
    margin: 0 auto;
    padding: 20px 45px 40px 45px;
    border-radius: 7px;
    box-sizing: border-box;
}
.mp-notification {
    margin-top: 10px;
    padding: 2px;
    color: red;
}

@media all and (max-width: 480px) {
    .popup-content-mfp {
        width: 95%;
        min-width: auto;
    }
}
