.nh-popup {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding: 15px;
    display: none;
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 999999;
}

.nh-popup iframe {
    max-width: 100% !important;
    /*width: 100% !important;*/
    margin: 0 auto;
    display: block;
}


.nh-popup.show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
}

.nh-popup__inner {
    position: relative;
    margin: auto;
    box-shadow: 0px 0px 35px 0px rgba(0, 0, 0, 0.75);
    z-index: 99;
    background-color: #fff;
    max-height: calc(100% - 30px);
    overflow-y: auto;
    overflow-x: hidden;
    width: 90vw;
}

.nh-popup__close-icon {
    position: fixed;
    right: 20px;
    top: 20px;
    width: 25px;
    height: 25px;
    background: none;
    background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3C!--!Font Awesome Free v7.0.0 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--%3E%3Cpath d='M183.1 137.4C170.6 124.9 150.3 124.9 137.8 137.4C125.3 149.9 125.3 170.2 137.8 182.7L275.2 320L137.9 457.4C125.4 469.9 125.4 490.2 137.9 502.7C150.4 515.2 170.7 515.2 183.2 502.7L320.5 365.3L457.9 502.6C470.4 515.1 490.7 515.1 503.2 502.6C515.7 490.1 515.7 469.8 503.2 457.3L365.8 320L503.1 182.6C515.6 170.1 515.6 149.8 503.1 137.3C490.6 124.8 470.3 124.8 457.8 137.3L320.5 274.7L183.1 137.4z'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    border: none;
    pointer-events: all;
    z-index: 1001;
}

.nh-popup iframe {
    height: 100%;
    min-height: 83dvh
}

@media (max-width: 767px) {
    .nh-popup__inner {
        max-height: calc(100% - 60px);
    }

    .nh-popup__close-icon {
        top: 10px;
    }
}