deja-popup-advanced {
    width: 100%;

    .deja-popup-container {
        height: 100%;
        position: relative;
        display: flex;
        flex-direction: column;

        .dialog-overlay {
            height: 100%;
            width: 100%;
            z-index: 100;
            position: absolute;
            top: 0;
            left: 0;
            cursor: grabbing;
        }

        .mat-dialog-content {
            height: 100%;
            // width: 100%;
            flex: 1 1 auto;
            display: flex;
            flex-direction: column;

            &.frame-padding {
                padding: 24px;
                margin: 0;
                max-height: 100vh;
            }

            &.frame-full {
                padding: 0;
                margin: 0;
                overflow: hidden;
                max-height: 100vh;
            }

            .iframe-wrapper {
                width: 100%;
                height: 100%;

                iframe {
                    border: none;
                    height: 100%;
                    width: 100%;
                }
            }
        }

        .mat-dialog-actions {
            flex: 1 1 auto;
            padding-bottom: 18px;

            &.mat-dialog-actions:last-child {
                margin: 0 24px !important;
            }
        }
    }
}