.page-popup {
    z-index: 99999999;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.page-popup .background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.page-popup .content {
    position: relative;
    z-index: 999999999;
    background-color: #023f85;
    max-width: 350px;
    //max-height: 90%;
    display: flex;
    //height: 100%;
    justify-content: center;
}

@media (min-width:768px) {
    .page-popup .content {
        max-width: none !important;
    }
}

.page-popup .bodywrap {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    text-align: center;
}

.page-popup .content img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto%;
}

.page-popup .content #btn-popup-close {
    color: #000;
    margin-left: 10px;
    text-decoration: none;
    color: #FFF;
}