﻿/* Copyright 2023 Epic Systems Corporation */
html {
  font: -apple-system-body;
}
@supports not (font: -apple-system-body) {
  html {
    font-size: 13pt;
  }
}
@supports (font: -apple-system-body) {
  @media (hover: hover) {
    html {
      font-size: 13pt;
    }
  }
}

body[class].graphicHeader::before {
  background: #edf3f9;
}
body[class].graphicHeader::after {
  background: #246fb5;
  mask-image: url(../images/background.svg);
  mask-position: center bottom;
  mask-size: cover;
  -webkit-mask-image: url(../images/background.svg);
  -webkit-mask-position: center bottom;
  -webkit-mask-size: cover;
}

.capturedWorkflow.constrainedCapturedWorkflow[class][class] {
  height: max-content;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.capturedWorkflow.constrainedCapturedWorkflow[class][class] #header {
  display: none;
}
.capturedWorkflow.constrainedCapturedWorkflow[class][class] #content {
  min-height: unset !important;
  justify-content: center;
  height: min-content;
}
.capturedWorkflow.constrainedCapturedWorkflow[class][class] #content #main {
  width: 85%;
  margin: 1rem auto;
  border-radius: 30px;
  min-height: unset;
  max-height: unset;
  flex-grow: unset;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.capturedWorkflow.constrainedCapturedWorkflow[class][class] #content #main .section {
  position: static;
}
.capturedWorkflow.constrainedCapturedWorkflow[class][class] #content .capturedFooterBox {
  display: none;
}
