/* ------------------------------------------------------------------------- */
/* Blue colors */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Imports */
/* ------------------------------------------------------------------------- */
/* Core */
:root {
  font-family: 'Source Sans Pro', 'Segoe UI', Arial;
  font-size: 10pt;
}
*:focus {
  outline: 1px solid #0078D7;
}
body {
  margin: 0;
  overflow: hidden;
}
iframe {
  border-width: 0;
}
input,
select,
option {
  font-family: "Source Sans Pro", "Segoe UI", Arial;
}
.accentColor {
  color: #0078D7;
}
.accentBorderColor {
  border-color: #0078D7;
}
.accentTextColor {
  background-color: #0078D7;
  color: white !important;
}
.hidden {
  display: none !important;
}
.visible {
  display: inline !important;
}
.selected {
  background-color: #0078D7 !important;
  color: white !important;
}
.arrow {
  user-select: none;
  font-weight: bold;
  color: #0078D7;
  margin-left: 2px;
  margin-right: 2px;
  cursor: pointer;
}
.level {
  border-radius: 0;
  padding-top: 2px;
  padding-left: 5px;
  padding-bottom: 2px;
}
span.hidden,
div.hidden {
  display: none;
}
span.hidden-fixed,
div.hidden-fixed {
  display: none !important;
}
span.visible {
  display: inline !important;
}
div.visible {
  display: block !important;
}
span.visible-force {
  display: inline !important;
}
div.visible-force {
  display: block !important;
}
div.heading,
h1,
h2,
h3,
h4,
h5 {
  color: #0078D7;
}
a {
  color: #0078D7;
  text-decoration: underline;
  cursor: pointer;
}
section > header {
  color: #0078D7;
  margin-top: 1em;
  font-size: 1.1em;
  font-weight: bold;
}
section > details {
  margin-left: 5px;
}
article > header {
  color: #0078D7;
  margin-top: 0.5em;
  font-size: 1.2em;
  font-weight: bold;
}
article > details {
  display: block;
  margin-left: 5px;
}
/* ------------------------------------------------------------------------- */
*::selection {
  background-color: #0078D7;
  color: white;
}
* {
  scrollbar-width: auto;
  scrollbar-color: #0078D7 transparent;
}
/* ------------------------------------------------------------------------- */
input {
  border-style: solid;
  border-width: 1px;
  border: solid #C5C5C5 1px;
  /* &.ng-invalid[readonly] {
    color: red !important;
    font-weight: bold;
  } */
}
input.ng-invalid {
  border: solid red 1px !important;
  background-color: snow;
}
select {
  background-color: transparent;
}
select > option:hover,
select > option:focus {
  background-color: gray !important;
  color: white !important;
}
select > option:active,
select > option:checked {
  background-color: #0078D7 !important;
  color: white !important;
}
input[type='button'],
.button,
button {
  border: solid transparent 0;
  border-radius: 4px;
  margin: 5px;
  cursor: pointer !important;
}
input[type='button']:hover,
.button:hover,
button:hover {
  background-color: #0090FF;
  color: white;
}
/* ------------------------------------------------------------------------- */
menu {
  padding-inline-start: 5px;
}
/* ------------------------------------------------------------------------- */
iframe {
  border-color: #0078D7;
}
/* ------------------------------------------------------------------------- */
/* Main */
#main {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
/* ------------------------------------------------------------------------- */
#alert {
  background-color: lightYellow;
  color: dimgray;
}
.alert {
  display: inline-block;
  color: dimgray;
  background-color: lightYellow;
  padding: 0;
  padding-left: 5px;
  padding-right: 5px;
}
/* ------------------------------------------------------------------------- */
.tab.active {
  border-bottom-color: #0078D7 !important;
}
.menu.disabled {
  color: gray !important;
}
.tool.active {
  border: solid #0078D7 1px !important;
  border-radius: 5px;
  background-color: #0090FF;
}
.sourceView iframe {
  border-color: #0078D7 !important;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Policies */
@keyframes showPolicies {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#policies {
  opacity: 0;
  animation-name: showPolicies;
  animation-delay: 4s;
  animation-duration: 0.5s;
  animation-iteration-count: 1;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  background-color: lightYellow;
  color: dimgray;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  padding: 10px;
  font-size: larger;
}
#policies > div {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 500px;
}
#policies table {
  margin-left: 10px;
}
#policies td:first-child {
  text-align: center;
}
#policies td:nth-child(2) {
  font-size: smaller;
}
#policies button {
  width: 80px;
  margin: 0;
}
#policies span.accepted {
  display: none;
  border-style: solid;
  border-width: 1px;
  border-radius: 2px;
  font-size: smaller;
  width: 80px;
  cursor: pointer;
}
/* ------------------------------------------------------------------------- */
/* ChangeSets */
#changes {
  padding: 5px;
  border-spacing: 0;
  width: calc(100%-4rem);
}
#changes thead > tr > th {
  text-align: left;
  font-weight: normal;
  padding-left: 2px;
}
#changes tbody {
  background-color: white;
}
#changes tbody:first-of-type > tr > td:first-of-type {
  border-top-left-radius: 8px;
}
#changes tbody:first-of-type > tr > td:last-of-type {
  border-top-right-radius: 8px;
}
#changes tbody:last-of-type > tr > td:first-of-type {
  border-bottom-left-radius: 8px;
}
#changes tbody:last-of-type > tr > td:last-of-type {
  border-bottom-right-radius: 8px;
}
#changes tbody > tr > td {
  color: black !important;
  padding-top: 4px !important;
}
#changes tbody > tr > td:first-child {
  cursor: pointer;
  width: 2px;
}
#changes tbody > tr > td:nth-child(3) {
  padding-left: 2px;
  cursor: pointer;
}
#changes tbody > tr > td:last-child {
  cursor: pointer;
}
#changes tbody > tr > td.details {
  padding: 5px;
}
#changes tbody > tr > td > * {
  color: black !important;
}
#changes img.reorderIcon {
  width: 16px;
  padding-top: 2px;
  padding-left: 2px;
  cursor: pointer;
}
#changes img.changeSetIcon {
  width: 10px;
  padding-top: 2px;
  padding-left: 2px;
  cursor: pointer;
}
#changes img.button {
  width: 10px;
  margin: 2px !important;
  cursor: pointer;
}
#changes input[type="text"] {
  background-color: transparent;
  border-width: 0;
  width: 80px;
}
#changes select.colorInput {
  text-align: left;
  background-color: transparent;
  border-width: 0;
  width: 80px;
}
/* ------------------------------------------------------------------------- */
.changeSets > .note {
  padding: 5px;
  font-size: smaller;
  opacity: 50%;
  display: block;
  animation-name: hideNote;
  animation-duration: 5s;
  animation-delay: 15s;
  animation-fill-mode: forwards;
}
/* ------------------------------------------------------------------------- */
#changeSetInfoDialog td {
  vertical-align: top;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Dialogs */
/* ------------------------------------------------------------------------- */
dialog {
  border-style: solid;
  border-width: 1px;
  border-radius: 5px;
  padding: 0;
  min-width: 300px;
}
dialog > h1.heading {
  text-align: center;
  font-size: 12px;
  font-weight: normal;
  background-color: #0078D7;
  color: white;
  margin: 0;
  padding: 5px;
}
dialog > div {
  display: block;
  margin: 10px;
  width: calc(100% - 20px);
}
dialog > div > * {
  display: inline;
}
dialog > div > p {
  display: block !important;
}
dialog > div > span {
  display: inline-block;
  vertical-align: top;
}
dialog > div label {
  display: inline-block !important;
  margin-left: 5px;
  margin-right: 5px;
  min-width: 20px;
}
dialog > div input,
dialog > div select {
  display: inline !important;
}
dialog input {
  border-style: solid;
  border-width: 1px;
}
dialog input[type=checkbox] {
  margin-top: 0;
  margin-left: 5px;
  margin-right: 5px;
}
dialog input[type=text] {
  width: calc(100% - 20px);
}
dialog input[readonly] {
  background-color: transparent;
  border-width: 0;
  outline: none;
}
dialog input[name*="fileURI"] {
  text-align: right;
  font-size: 10px;
}
dialog > table {
  margin-left: 10px;
  margin-right: 10px;
}
/* ------------------------------------------------------------------------- */
dialog .bottomRow {
  position: relative;
}
dialog .prompt {
  margin: 5px;
}
form .bottomRow {
  position: absolute;
  bottom: 0;
}
.bottomRow {
  height: 45px;
  margin: 5px;
  width: calc(100% - 15px);
}
.bottomRow .options {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  text-align: left;
  margin-top: 2px;
}
.bottomRow .options > div input[type="checkbox"] {
  vertical-align: middle;
}
.bottomRow menu.buttons {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  text-align: right;
  margin-top: 15px;
  margin-bottom: 5px;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Layout */
#canvas {
  position: absolute;
  top: 130px;
  left: 0;
  right: 0;
  bottom: 0;
}
#sidePanel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow-y: hidden;
}
#sidePanelTabs {
  position: relative;
  top: 0;
  height: 26px;
  overflow: hidden;
}
#sidePanelViews > div {
  display: none;
  position: absolute;
  top: 26px;
  bottom: 0;
  width: 100%;
}
#sidePanelViews > div.visible {
  display: block;
}
#sidePanelViews > div > div.panelView {
  position: relative;
  width: 100%;
  height: 100%;
}
#sidePanelViews > div > div.panelView > iframe {
  width: 100%;
  height: calc(100% - 4px);
}
#sidePanelView-resources > div > div {
  overflow: hidden !important;
}
#sidePanelView-changes > table {
  display: table;
}
#sidePanelView-changes > table .details > * {
  text-align: left;
  margin-left: 10px;
  margin-right: 5px;
  font-size: 12px;
}
/* ------------------------------------------------------------------------- */
#editorPanel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
#editorPanel > div {
  overflow: hidden;
}
#editorPanel iframe {
  border-width: 0;
}
/* ------------------------------------------------------------------------- */
.subPanel {
  display: block;
}
.subPanel:not(:last-child) {
  border-bottom: solid 1px #333333;
  padding-bottom: 0;
}
/* ------------------------------------------------------------------------- */
.ui-layout-column > .ui-splitbar {
  height: calc(100% - 2px);
  border-right: solid 1px #333333;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* Form Sheet */
.formSheet {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  border-width: 0;
  z-index: 40;
}
.formSheet .cancelButton {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 30px;
  opacity: 0.8;
  cursor: pointer;
  z-index: 10;
}
.formSheet .cancelButton:hover {
  opacity: 1 !important;
}
.formSheet .heading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  margin-top: 10px;
}
.formSheet .name {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  margin: 5px;
  border: solid #C5C5C5 1px;
  border-radius: 0;
}
.formSheet .uri {
  width: 98%;
  background-color: transparent;
  border-width: 0;
  text-align: right;
  font-size: 10px;
}
.formSheet .options {
  border-radius: 2px;
  margin-bottom: 10px;
  padding: 5px;
}
.formSheet #requestInfo {
  border-radius: 2px;
}
.formSheet #officeInfo {
  border-radius: 2px;
  margin-top: 16px;
  padding: 5px;
}
.formSheet .tabs {
  margin-top: 10px;
  margin-left: 2px;
  margin-right: 2px;
}
.formSheet .views {
  display: block;
  position: absolute;
  top: 75px;
  left: 0;
  bottom: 34px;
  right: 0;
  padding-right: 5px;
  overflow-x: hidden;
  overflow-y: auto;
  border: solid black 0;
}
.formSheet .views .view {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-width: 0;
}
.formSheet .views .view h1 {
  font-size: 12px;
  margin: 0;
  margin-left: 10px;
}
.formSheet .views .view h2 {
  font-size: 10px;
  margin: 0;
  margin-left: 10px;
}
.formSheet .views .view h2.centered {
  width: 120px;
  text-align: center;
}
.formSheet .views .view.hidden {
  display: none !important;
}
.formSheet .views .view .workflowBox {
  display: block;
  position: relative;
  margin: 0;
  margin-bottom: 5px;
  padding: 0;
}
.formSheet .views .view .workflowBox > h1 {
  margin-left: 10px;
}
.formSheet .views .view .workflowBox > input {
  margin-left: 12px;
  margin-bottom: 10px;
  margin-top: 10px;
  width: calc(100% - 25px);
}
.formSheet .views .view .workflowBox div.surround {
  border: dashed #0078D7 1px;
  border-radius: 5px;
  padding: 5px;
  margin-left: 10px;
  width: calc(100% - 22px);
}
.formSheet .views .view .workflowBox div.flex {
  display: flex;
}
.formSheet .views .view .workflowBox div.flex .options {
  margin-top: 10px;
  text-align: center;
}
.formSheet .views .view .workflowBox div.flex > div {
  width: 140px;
  padding-left: 5px;
  padding-bottom: 5px;
}
.formSheet .views .view .workflowBox div.flex > div > input {
  width: 100px;
}
.formSheet .views .view .workflowBox div.flex > div > select {
  display: block;
  width: 110px;
  height: 20px;
  margin-top: 5px;
  margin-left: 5px;
}
.formSheet > form {
  display: block;
  position: absolute;
  top: 70px;
  left: 10px;
  bottom: 10px;
  right: 0;
  max-width: 1000px;
  border: solid green 0;
}
.formSheet > form input[readonly] {
  background-color: transparent !important;
}
.formSheet > form textarea {
  padding: 5px;
  margin: 5px;
}
.formSheet > form > .results {
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
}
.formSheet > form > .results input.uri {
  border-width: 0 !important;
}
.formSheet > form > .results div.alerts {
  font-weight: bold;
  text-align: right;
  margin-right: 5px;
  min-height: 20px;
}
.formSheet > form > .results div.alerts .error {
  color: red !important;
}
.formSheet > form > .executeButton {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 5px;
  padding-left: 20px;
  padding-right: 20px;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* View */
.view {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.view > .docView {
  display: block;
  width: 210mm;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}
.view > .sourceView {
  display: block;
  width: 100%;
  height: 100%;
}
.view > .waiting {
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* XML                                                                       */
.xml {
  display: block;
  position: absolute;
  font-family: 'Courier New', Courier, monospace;
  font-weight: bold;
  font-size: 10px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 5px;
  overflow: auto;
}
.xml .element {
  color: #58A4C8;
}
.xml .elementContents {
  display: block;
  margin-left: 20px;
}
.xml .attributeName {
  color: #9BBBDC;
}
.xml .attributeValue {
  color: #F29766;
}
.xml .processingInstruction {
  color: #B6B6B6;
}
.xml .comment {
  color: green;
}
.xml .link {
  color: Goldenrod;
}
.xml .selection {
  display: inline;
}
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
/* ------------------------------------------------------------------------- */
