﻿/* Display the Dialog on full screen */

.app {
    position: absolute;
    width: 600px;
    top: 0;
    bottom: 0;
    box-sizing: border-box;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    border: 1px #808080 solid;
}

@media print {
    .app {
        border: none;
    }
}

@media only screen and (max-width:1023px) {
    .app {
        position: absolute;
        left: 0;
        width: auto;
        right: 0;
        top: 0;
        bottom: 0;
        box-sizing: border-box;
        border:none;
        margin: 0;
    }
}

.fs-basicxxx {
    border: red;
}



/* Group last buttons style - apply an extra CSS class on ALL buttons that are grouped */
.dof-group-buttons-style {
    /*content: 'btn-box';*/
}
/* if present, also insert  a section break is also inserted, value is the style of the sectionBreak */
.dof-group-buttons-section-break-style {
    /*content: 'ext';*/
}