.popWindowBg {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #000;
    opacity: 0.5;
    filter: Alpha(Opacity=50);
    z-index: 9;
    display: none;
}

.popWindow {
    position: fixed;
    top: 50%;
    left: 50%;
    background: #fff;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    z-index: 9;
    display: none;
    overflow: hidden;
    border-radius: 10px;
}

.popWindowMinimize {
    position: absolute;
    left: 40px;
    top: 10px;
    font-size: 18px;
    padding: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-image: url(/assets/img/minimize.svg);
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 0 15px 15px 0;
    display: none;
}

.popWindowMinimize.active{
    background-image: url(/assets/img/restore.svg);
}

.popWindowClose {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 18px;
    padding: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-image: url(/assets/img/close.svg);
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    border-radius: 0 15px 15px 0;
    display: none;
}

.popIframe{
    margin: 40px;
}