/* --- Remote-Service iframe positioning ---------------------------- */
.remote-frontend,
.remote-frontend body {
    height: 100%;
    width: 100%;
    border: 0;
    margin: 0;
    padding: 0;
}
.remote-frontend body {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: fit-content(62px) 1fr;
    -ms-grid-columns: 100%;
    grid-template-columns: auto;
    grid-auto-rows: 0px;
    grid-gap: 0;
}
.remote-frontend .ui-layout-north {
    -ms-grid-row: 1;
    grid-row-start: 1;
}
.remote-frontend .frame-box {
    -ms-grid-row: 2;
    grid-row-start: 2;
    position: relative;
    height: 100%;
    width: 100%;
}
.remote-frontend .frame {
    height: 100%;
    width: 100%;
    border: 0;
    /* NOTE: -3px bottom margin required since top-level html element will otherwise
     *       be 3px too tall because of the iframe taking more than 100% height for
     *       some reason. */
    margin: 0 0 -3px 0;
    padding: 0;
}
