

body.hasCustomContentPopup {
    overflow: hidden;
}
.customContentPopupBg {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 1000;

    opacity: 0;
    transform: scale(0.1);

    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

body.hasCustomContentPopup .customContentPopupBg {
    opacity: 1;
    transform: scale(1);
}

.customContentPopup {
    background-image: url("/_common/img/icons/cover_loader.gif");
    background-repeat: no-repeat;
    background-position: center center;
}
.customContentPopupHeader {
    position: absolute;
    height: 60px;
    left: 0px;
    right: 0px;
    background-color: #fff;
    box-shadow: 0 0 1px rgba(0,0,0,.9);
}
.customContentPopupTitle {
    display: flex;
    height: 60px;
    align-items: center;
    padding-left: 20px;
}
.customContentPopupTitle h2 {
    font-size: 22px !important;
    font-weight: normal !important;
    color: #191919 !important;
    margin: 0px !important;
    padding: 0px !important;
}
.customContentPopupClose {
    position: absolute;
    right: 20px;
    top: 10px;
    padding: 0px;
}
.customContentPopupClose a {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    cursor: pointer;

    background-image: url("data:image/svg+xml,%3Csvg width='46' height='46' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='layer1'%3E%3Cline stroke='%23999999' stroke-width='2' id='svg1' y2='44' x2='44' y1='1' x1='1'/%3E%3Cline stroke='%23999999' stroke-width='2' id='svg2' y2='1' x2='44' y1='44' x1='1'/%3E%3C/g%3E%3C/svg%3E");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 30px;
}
.customContentPopupClose a:hover {
    background-image: url("data:image/svg+xml,%3Csvg width='46' height='46' xmlns='http://www.w3.org/2000/svg'%3E%3Cg id='layer1'%3E%3Cline stroke='%230075f3' stroke-width='2' id='svg1' y2='44' x2='44' y1='1' x1='1'/%3E%3Cline stroke='%230075f3' stroke-width='2' id='svg2' y2='1' x2='44' y1='44' x1='1'/%3E%3C/g%3E%3C/svg%3E");
}
.customContentPopupIframe {
    padding-top: 60px;
}
.customContentPopupIframe iframe {
    width: 100%;
    height: calc( 100vh - 60px );
}