.dialog-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10050;

    background: #f9f9f9;
    border: 0;
    box-shadow: none;
    border-radius: 0;

    height: 90%;
    max-width: 1020px;
    overflow: hidden;
}
.dialog-popup-container {
    height: 100%;
}
.dialog-popup-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    line-height: 60px;
    font-size: 30px;
    width: 60px;
    height: 60px;
    background-color: #7f8c8d;
    text-align: center;
    cursor: pointer;
}
.dialog-popup-close:after{
    content: url('/usites/partnersite/i/popup-close.png');
}
.dialog-popup-close:hover,
.dialog-popup-close:active {
    color: #701652;
}
.dialog-popup-caption {
    position: relative;
    background-color: #f4f7f7;
    color: #000000;
    line-height: 60px;
    padding: 0 9rem 0 3rem;
    height: 60px;
    font-size: 24px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.dialog-popup-body {
    position: relative;
    overflow: auto;
    background-color: #ffffff;
}