.dialog-fullscreen {
    display: table-cell;
    height: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    background-color: $fullWhite;

    .app-bar {
        @include box-shadow-multiple(0, rem(16), rem(16), rgba(0, 0, 0, 0.12), 0, rem(8), rem(8), rgba(0, 0, 0, 0.22));
    }
}

.dialog-fullscreen-content {
    padding-top: rem(16);
    height:  calc(100% - 48px);
    overflow-y: auto;

    @include breakpoint($breakpoint-m) {
        height: calc(100% - 56px);
    }
}