html {
  line-height: 1.5;
  font-family: "Noto", sans-serif;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.87);
  print-color-adjust: exact;
  -webkit-print-color-adjust: exact;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
html button {
  color: rgba(0, 0, 0, 0.87);
}
:root {
  --topbar-height: 40px;
}
body {
  background-color: #FAFAFA;
  overflow: hidden;
  margin: 0;
  width: 100%;
}
body.loaded.unsavedChanges #navSpace:after {
  content: "\00a0*";
}
body #editorPanel {
  background-color: #141414;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
body #editorFrame {
  width: 100%;
  height: 100%;
  border: 0;
}
body .gutter {
  cursor: ew-resize;
  background-color: transparent;
}
body .tabButton {
  position: absolute;
  top: 50px;
  background-color: #141414;
  z-index: 3;
  cursor: pointer;
  align-items: center;
  width: 18px;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  display: none;
  opacity: 1;
  transition: opacity 0.45s;
}
body .tabButton i {
  margin-left: -3px;
  padding: 10px 0;
}
body .tabButton .opener {
  display: initial;
}
body .tabButton .closer {
  display: none;
}
body .tabButton.left {
  border-radius: 0 4px 4px 0;
}
body .tabButton.right {
  border-radius: 4px 0 0 4px;
  right: 100%;
  z-index: -1;
  background-color: #FAFAFA;
}
body .tabButton.right i {
  color: black;
}
body .tabButton i {
  color: white;
}
body #splitEditorMain {
  display: flex;
  top: var(--topbar-height);
  bottom: 0px;
  left: 0px;
  right: 0px;
  position: absolute;
  overflow: hidden;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.45s;
  transform: scale(0);
}
body #loadError {
  z-index: 2;
}
body #diagramOverviewContainer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  z-index: 3;
  background-color: #FAFAFA;
  pointer-events: none;
  opacity: 0;
}
body #diagramOverview {
  display: flex;
  flex-grow: 1;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  padding: 20px 40px;
  overflow-y: auto;
}
body #overviewContent {
  max-width: 1200px;
  width: 100%;
}
body #overviewTop {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body #overviewName {
  font-size: 24pt;
  user-select: text;
  margin-bottom: 10px;
}
body #overviewNotesSection {
  margin-bottom: 20px;
  padding-bottom: 20px;
  color: rgba(0, 0, 0, 0.68);
  border-bottom: 1px solid lightgray;
  max-width: 60%;
  display: none;
}
body #overviewNotesSection.populated {
  display: flex;
}
body .overviewPerspective {
  display: flex;
  padding: 20px 0 80px 0;
}
body .overviewPerspectiveArt {
  box-shadow: 0 1px 2.5px 0 rgba(0, 0, 0, 0.08), 0 1px 5px 0 rgba(0, 0, 0, 0.06);
  max-width: 392px;
  max-height: 228px;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
body .overviewPerspectiveArt:hover {
  transform: scale(1.0125);
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
body .overviewPerspectiveArtBorder {
  opacity: 0.68;
  pointer-events: none;
}
body .overviewPerspectiveInfo {
  display: flex;
  flex-grow: 1;
  flex-direction: column;
  margin-left: 20px;
}
body .overviewPerspectiveName {
  font-weight: bold;
  cursor: pointer;
}
body .overviewPerspectiveName:hover {
  text-decoration: underline;
}
body .overviewPerspectiveNotes {
  color: rgba(0, 0, 0, 0.68);
  padding-bottom: 10px;
}
body .overviewPerspectiveNotes p {
  margin-block-start: 0;
  margin-block-end: 0;
}
body .overviewPerspectiveButtonContainer {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-grow: 1;
}
body .overviewPerspectiveButtons {
  display: flex;
  justify-content: flex-end;
}
body .overviewPerspectiveButtons .button {
  padding-left: 20px;
  padding-right: 20px;
}
body .overviewPerspectiveButtons .button:first-child {
  margin-right: 10px;
}
body .buttons {
  transition: opacity 0.45s;
  visibility: hidden;
}
body .buttons i {
  cursor: default;
  opacity: 0.5;
  pointer-events: none;
}
body.initialized #topbar {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  margin-top: 0;
}
body #detailControl {
  margin-right: 20px;
  width: 160px;
  display: flex;
  pointer-events: none;
  opacity: 0;
  visibility: visible;
  align-items: center;
  transition: opacity 0.2s;
}
body #detailControl .controlLabel {
  padding-right: 10px;
}
body #detailControl #zoomOut {
  margin-right: 7px;
}
body #detailControl #zoomIn {
  margin-left: 12px;
}
body #detailControl i {
  opacity: 1;
  margin-top: 3px;
  cursor: pointer;
}
body #detailControl .mdc-slider__track-container {
  background-color: rgba(255, 255, 255, 0.25);
  height: 5px;
  border-radius: 2.5px;
  margin-top: -2.5px;
}
body #detailControl circle {
  stroke: white;
  fill: white;
}
body #detailControl .mdc-slider__track,
body #detailControl .mdc-slider__focus-ring {
  background-color: #FFFFFFD0;
}
body #detailControl .mdc-slider__thumb-container {
  margin-top: -1px;
}
body #detailControl #dotsContainer {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-evenly;
  align-items: center;
  position: absolute;
}
body #detailControl #dotsContainer .dot {
  font-size: 12px;
  color: grey;
  height: 100%;
  line-height: 50%;
  user-select: none;
}
body #detailControl #dotsContainer .dot.light {
  color: white;
}
body #contextContainer {
  display: none;
  align-items: center;
  margin-right: 20px;
  opacity: 1;
  transition: opacity 0.2s;
}
body #contextLabel {
  font-size: 14px;
  color: white;
  position: absolute;
  padding-left: 10px;
  pointer-events: none;
}
body #newContext {
  border: 1px solid #FFFFFF60;
  margin-left: -1px;
  border-radius: 0 3px 3px 0;
  height: 25px;
  font-size: 20px;
  padding: 0 2px;
  display: none;
  border-left: 1px solid transparent;
}
body #contextControl {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24' fill='%23FFFFFFD0'><path d='M480-345 240-585l56-56 184 184 184-184 56 56-240 240Z'/></svg>") no-repeat;
  background-size: 18px;
  background-position: calc(100% - 5px) 50%;
  background-repeat: no-repeat;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  font-family: "Noto", sans-serif;
  width: 180px;
  background-color: transparent;
  padding-left: 65px;
  cursor: pointer;
  padding-right: 0px;
  height: 25px;
  color: white;
  visibility: visible;
  border-radius: 3px;
}
body #contextControl optgroup {
  color: initial;
}
body .labeledControl {
  font-size: 14px;
  color: white;
  padding: 0 10px 0 8px;
  height: 23px;
  border-radius: 3px;
  border: 1px solid #FFFFFF60;
}
body #navSpace,
body #navLense {
  cursor: pointer;
  visibility: hidden;
  white-space: nowrap;
}
body #navBlock {
  white-space: nowrap;
  pointer-events: none;
  max-width: 600px;
  overflow: hidden;
}
body:not(.editing) #splitEditorMain #editorPanel,
body.editing.editorPopup #splitEditorMain #editorPanel {
  width: 0% !important;
  visibility: hidden;
}
body:not(.editing) #splitEditorMain .gutter,
body.editing.editorPopup #splitEditorMain .gutter {
  display: none !important;
}
body:not(.editing) #splitEditorMain #main,
body.editing.editorPopup #splitEditorMain #main {
  width: 100% !important;
}
body:not(.presentation).showAnnotations #blocksView {
  right: 20%;
}
body:not(.presentation).showAnnotations #annotations {
  left: 80%;
  right: 0;
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
body:not(.presentation).showAnnotations #notesTabButton .opener {
  display: none;
}
body:not(.presentation).showAnnotations #notesTabButton .closer {
  display: initial;
}
body:not(.presentation).showAnnotations:not(.overview) #diagramError,
body:not(.presentation).showAnnotations:not(.overview) .banner,
body:not(.presentation).showAnnotations:not(.overview) #historyNotice {
  width: 80%;
}
body.overview #diagramOverviewContainer {
  opacity: 1;
  pointer-events: initial;
}
body.overview #find {
  display: none;
}
body:not(.presentation) #notesTabButton {
  display: flex;
}
body:not(.editorPopup):not(.linked):not(.presentation) #editTabButton {
  display: flex;
}
body.editing:not(.presentation) .gutter {
  background-color: #141414;
}
body.editing:not(.presentation) #editTabButton .opener {
  display: none;
}
body.editing:not(.presentation) #editTabButton .closer {
  display: initial;
}
body.presentation #blocksView {
  right: 40px;
}
body.loaded #splitEditorMain {
  opacity: 1;
  transform: scale(1);
}
body.loaded.walkthrough #detailControl {
  opacity: 0.25;
}
body.loaded:not(.walkthrough) #detailControl {
  opacity: 1;
  pointer-events: initial;
}
body.loaded:not(.walkthrough).multiContext #contextContainer {
  display: flex;
}
body.loaded:not(.walkthrough).canEdit.editing #newContext {
  display: initial;
}
body.loaded:not(.walkthrough).canEdit.editing #contextControl {
  border-radius: 3px 0 0 3px;
}
body.loaded #diagramOverviewContainer {
  transition: opacity 0.45s;
}
body.loaded #twitter,
body.loaded #actionButton {
  visibility: visible;
}
body.loaded #teamMenu .closeButton {
  display: initial;
}
body.loaded #navSpace,
body.loaded #navLense {
  visibility: visible;
}
body #main {
  position: relative;
  overflow: hidden;
  transition: opacity 0.45s;
  height: 100%;
  width: 100%;
}
body .editable .editableText {
  cursor: text;
  user-select: text;
  white-space: pre-line;
}
body .editable .editableText:empty:before {
  content: attr(default);
  font-style: italic;
}
body .editable .editableAdd {
  display: none;
}
body .editable .editableAdd .editableAddLink {
  text-decoration: underline;
  cursor: pointer;
}
body.canEdit.editing .editable:not(.populated) .editableAdd {
  display: initial;
}
body.canEdit.editing .editable:not(.populated) .editableText {
  display: none;
}
body.canEdit.editing #overviewNotesSection {
  display: flex;
}
body #topbar {
  height: var(--topbar-height);
  background-color: royalblue;
  z-index: 2;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s, opacity 0.45s, margin-top 0.45s, box-shadow 0.45s;
  margin-top: -var(--topbar-height);
  line-height: 1;
}
body #topbar button:not(.button),
body #topbar span {
  color: white;
}
body #topbar > #left {
  display: flex;
  overflow: hidden;
  justify-content: flex-start;
  align-items: center;
}
body #topbar > #left #menuButton {
  margin: 0 7px 0 7px;
}
body #topbar > #left > span {
  white-space: nowrap;
}
body #topbar > #left #navLense:not(:empty):before {
  content: '>';
  font-size: 12pt;
  padding: 0 10px 0 10px;
  display: inline-block;
}
body #topbar > #left #navLense:not(:empty):after {
  content: '\00a0Perspective';
}
body #topbar > #left #navBlock {
  opacity: 0.5;
}
body #topbar > #left #navBlock:not(:empty):before {
  content: '>';
  font-size: 12pt;
  padding: 0 10px 0 10px;
  display: inline-block;
}
body #topbar > #right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}
body #topbar .button {
  font-weight: 600;
}
body #blocksTray {
  display: flex;
  flex-direction: column-reverse;
  width: 100%;
  height: 100%;
  z-index: 2;
}
body .listAvatar {
  margin-right: 3px;
  transform: translateY(2px);
}
body #annotations {
  top: 0;
  bottom: 0;
  left: 100%;
  right: 120%;
  position: absolute;
  z-index: 2;
}
body #annotations #wt_start,
body #annotations #wt_next {
  color: white;
  background-color: #2195f3;
  border: 1px solid darkgray;
  width: 100%;
  padding: 1px 20px;
}
body #annotations #wt_start:hover,
body #annotations #wt_next:hover {
  border: 1px solid lightgray;
}
body #annotations #annotationsMain {
  background-color: #FAFAFA;
  min-height: 100%;
  max-height: 100%;
  overflow: hidden;
  flex-direction: column;
  display: flex;
  align-items: center;
}
body #annotations .body {
  padding: 4px 10px 10px 10px;
  flex-grow: 1;
  text-align: left;
  user-select: text;
  cursor: text;
  overflow: auto;
  white-space: pre-line;
  word-break: break-word;
  margin-block-start: 0;
  margin-block-end: 0;
}
body #annotations .body:empty:before {
  content: attr(default);
  font-style: italic;
  color: rgba(0, 0, 0, 0.68);
}
body #annotations #notesImage {
  position: absolute;
  font-size: 96pt;
  opacity: 0.03;
  pointer-events: none;
  top: 50%;
  left: 50%;
  margin-top: -48pt;
  margin-left: -48pt;
  z-index: 0;
  display: none;
}
body #annotations #notesNotes {
  width: 100%;
  color: rgba(0, 0, 0, 0.68);
  font-size: 10pt;
  text-align: center;
  margin-top: 8px;
}
body #annotations #walkthroughStart {
  display: none;
  padding-top: 15px;
  max-width: 250px;
  width: 80%;
}
body #annotations #backClose {
  display: flex;
  justify-content: space-around;
}
body #annotations #backClose .button {
  background-color: transparent;
  color: #2195f3;
}
body #annotations #wt_stepCount {
  color: rgba(0, 0, 0, 0.68);
  font-size: 11pt;
  line-height: 22pt;
  white-space: pre;
}
body #annotations #walkthroughControls {
  display: none;
  flex-direction: column;
  padding-top: 15px;
  max-width: 250px;
  width: 80%;
}
body #annotations.walkthrough #walkthroughControls {
  display: flex;
}
body #annotations.walkthrough #notesNotes {
  display: none;
}
body #annotations.walkthrough .body {
  min-height: 25%;
}
body #annotations.canWalkthrough #walkthroughStart {
  display: flex;
}
body #scrim {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s;
  background: white;
  z-index: 2;
  top: 0;
  left: 0;
}
body #infoTip {
  background: #2195f3;
  color: white;
  display: flex;
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
  padding: 7px;
  transition: transform 0.35s;
  pointer-events: all;
  cursor: default;
}
body #infoTip i {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 7pt;
  padding-top: 2px;
  padding-right: 2px;
  opacity: 0;
  transition: opacity 0.45s;
  cursor: pointer;
}
body #infoTip:hover i {
  opacity: 0.67;
}
body #infoTip:hover i:hover {
  opacity: 1;
}
body .toolTip {
  z-index: 4;
  background: #616161;
  color: rgba(255, 255, 255, 0.87);
  padding: 6px;
  border-radius: 4px;
  text-align: left;
  position: absolute;
  font-size: 9pt;
  pointer-events: none;
  opacity: 1;
  transform: scale(0, 0);
  transform-origin: top;
  max-width: 250px;
  transition: transform 0.2s;
}
body .toolTip.visible {
  transform: scale(1, 1);
}
body .toolTip.side {
  transform-origin: left;
}
body .toolTip.left {
  transform-origin: right;
}
body .toolTip.bottom {
  transform-origin: bottom;
}
body .toolTip.hasMarkdown {
  white-space: pre-line;
  word-break: break-word;
  user-select: text;
  cursor: text;
  background-color: white;
  color: rgba(0, 0, 0, 0.87);
  max-width: 350px;
  max-height: 400px;
  overflow-x: hidden;
  overflow-y: auto;
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
  border: 1px solid lightgrey;
  pointer-events: initial;
}
body #mouseDetector {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}
body #mouseDetector.visible {
  display: initial;
}
body #mouseDetector .mdPanel {
  background-color: transparent;
  position: absolute;
  pointer-events: initial;
}
body #mouseDetector #mdLeft {
  top: 0;
  bottom: 0;
  left: 0;
}
body #mouseDetector #mdRight {
  top: 0;
  bottom: 0;
  right: 0;
}
body #mouseDetector #mdTop {
  left: 0;
  right: 0;
  top: 0;
}
body #mouseDetector #mdBottom {
  left: 0;
  right: 0;
  bottom: 0;
}
body .errorSection {
  position: absolute;
  left: 0%;
  width: 100%;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 100px;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.45s;
}
body .errorSection * {
  pointer-events: none;
}
body .errorSection i {
  font-size: 32pt;
  opacity: 0.87;
}
body .errorSection .mainError {
  font-size: 24pt;
  opacity: 0.87;
}
body .errorSection .subError {
  color: rgba(0, 0, 0, 0.5);
}
body .errorSection > span {
  text-align: center;
}
body .errorSection #architectureCenter {
  display: none;
}
body #welcomeAddPerspective {
  display: none;
}
body.canEdit.editing #welcomeAddPerspective {
  display: initial;
}
body .closeButton {
  position: absolute;
  right: 5px;
  top: 5px;
  font-size: 20pt;
  cursor: pointer;
  opacity: 0.5;
}
body #errorNotice {
  color: firebrick;
}
body #errorNotice i {
  margin-bottom: 10px;
  font-size: 28pt;
}
body #errorNotice div {
  font-size: 14pt;
}
body.loaded.canEdit.nosave #errorNotice {
  opacity: 1;
  pointer-events: initial;
}
body.darkmode {
  background-color: #141414;
}
body.darkmode #annotations,
body.darkmode #scrim,
body.darkmode .errorSection,
body.darkmode #loading,
body.darkmode #errorNotice {
  filter: invert(0.9);
}
body.darkmode .errorSection .button {
  filter: invert(1);
}
body.darkmode .blockView:not(.internalBlockView) {
  filter: invert(0.9);
}
body.darkmode .blockView:not(.internalBlockView) .icon:not(.color) {
  filter: invert(1);
}
body.darkmode .toolTip.hasMarkdown {
  filter: invert(1);
}
body.darkmode .tabButton {
  filter: invert(0.25);
}
body.darkmode .client .block .lenseBox .lenseBoxLense {
  filter: invert(1);
  box-shadow: 0 2px 5px 0 rgba(255, 255, 255, 0.16), 0 2px 10px 0 rgba(255, 255, 255, 0.12);
}
body.darkmode .blueZoomIcon {
  filter: invert(1);
  box-shadow: 0 2px 5px 0 rgba(255, 255, 255, 0.16), 0 2px 10px 0 rgba(255, 255, 255, 0.12);
}
body.darkmode #annotations {
  background-color: #EEE;
}
body.darkmode #annotations .button {
  filter: invert(1);
}
body.darkmode .client #perspectiveTray {
  background-color: black;
}
body.darkmode .client #perspectiveTray .perspectiveTab {
  border-right: 1px solid #222;
}
body.darkmode .client #perspectiveTray .perspectiveTab:first-child {
  border-left: 1px solid #222;
}
body.darkmode .client #perspectiveTray .perspectiveTab.selected {
  box-shadow: 0 2px 5px 0 rgba(255, 255, 255, 0.36), 0 2px 10px 0 rgba(255, 255, 255, 0.22);
}
body.darkmode .client #perspectiveTray #newPerspective {
  color: white;
}
body.darkmode .client #perspectiveTray #homeButton {
  color: rgba(255, 255, 255, 0.68);
}
body.darkmode .client #perspectiveTray .github {
  background-color: black;
  border-left: 1px solid #222;
}
body.darkmode .client #perspectiveTray .github svg {
  filter: invert(0.85);
}
body.darkmode #topbar {
  filter: brightness(0.85);
}
body.darkmode #actionPanel,
body.darkmode #findWidget,
body.darkmode .dialog {
  filter: invert(1);
}
body.darkmode #actionPanel .iconAddNew,
body.darkmode #findWidget .iconAddNew,
body.darkmode .dialog .iconAddNew,
body.darkmode #actionPanel .iconDiv,
body.darkmode #findWidget .iconDiv,
body.darkmode .dialog .iconDiv,
body.darkmode #actionPanel .toggleContainer,
body.darkmode #findWidget .toggleContainer,
body.darkmode .dialog .toggleContainer {
  filter: invert(1);
}
body.darkmode #overviewName,
body.darkmode #overviewPerspectiveCount,
body.darkmode .overviewPerspectiveName {
  color: rgba(255, 255, 255, 0.87);
}
body.darkmode #overviewNotesSection,
body.darkmode .overviewPerspectiveNotes {
  color: rgba(255, 255, 255, 0.68);
}
body.darkmode #diagramOverviewContainer {
  background-color: #222;
}
body.darkmode #diagramOverviewContainer a {
  color: white;
}
body.darkmode #diagramOverviewContainer .primaryButton {
  filter: brightness(0.8);
}
body.darkmode .perspectiveLink {
  color: white;
}
body .notice {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.45s;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 2;
}
body .notice i {
  pointer-events: none;
}
body .notice div {
  pointer-events: none;
}
body #loading {
  opacity: 0;
  transition: opacity 1s;
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 3;
  overflow: hidden;
  top: 0;
  pointer-events: none;
}
body #loading #curtain {
  width: 100%;
  height: 100%;
  background-color: white;
  opacity: 0.5;
}
body #loading.visible {
  opacity: 1;
  pointer-events: auto;
}
body[dialog="actionPanel"] #actionPanel {
  display: flex;
}
body[dialog="actionPanel"].loaded #actionScrim {
  display: initial;
}
body[dialog="findWidget"] #findWidget {
  display: flex;
}
body[dialog="findWidget"].loaded #actionScrim {
  display: initial;
}
body.ring #contextContainer {
  opacity: 0.5;
  pointer-events: none;
  user-select: none;
}
body.ring #contextContainer * {
  pointer-events: none;
  user-select: none;
}
button {
  margin: 0;
  background-color: transparent;
  padding: 0;
  border: 0;
  font-size: inherit;
  text-align: initial;
  cursor: pointer;
  font-family: "Noto", sans-serif;
}
.button {
  line-height: 20pt;
  font-size: 11pt;
  border: 1px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  padding: 1px 6px;
  text-decoration: none;
}
.button:focus {
  outline: 2px solid black;
}
.button:disabled {
  opacity: 0.68;
  cursor: default;
}
.primaryButton {
  color: white;
  background-color: #2195f3;
  border: 1px solid darkgray;
}
.primaryButton:hover {
  border: 1px solid lightgray;
}
.secondaryButton {
  background-color: transparent;
  border: 1px solid #2195f3;
  color: #2195f3;
}
.tertiaryButton {
  background-color: transparent;
  color: #2195f3;
}
.errorSection.visible {
  opacity: 1;
  pointer-events: initial;
}
.errorSection.visible * {
  pointer-events: initial;
}
.welcomeButton {
  padding: 0 30px 0 30px;
  margin: 10px;
}
.material-icons {
  text-rendering: optimizeLegibility;
}
.z-depth-0 {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0), 0 0 0 0 rgba(0, 0, 0, 0);
}
.z-depth-half {
  box-shadow: 0 1px 2.5px 0 rgba(0, 0, 0, 0.08), 0 1px 5px 0 rgba(0, 0, 0, 0.06);
}
.z-depth-1 {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.z-depth-1-half {
  box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}
.z-depth-2 {
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.z-depth-3 {
  box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}
.z-depth-4 {
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}
.selectable {
  user-select: text;
  cursor: text;
}
#iconImage {
  position: absolute;
  top: 0;
  pointer-events: none;
  opacity: 0;
  width: 0;
}
@media screen and (max-width: 1100px) {
  #annotations .body {
    font-size: 10pt;
  }
  body #annotations #wt_start,
  body #annotations #wt_next {
    font-size: 9pt;
    padding: 1px 6px;
  }
  body #annotations #backClose > * {
    font-size: 9pt;
  }
  body .toolTip {
    font-size: 8pt;
  }
  body #detailControl {
    margin-right: 20px;
  }
  body #topbar .cta {
    margin-right: 20px;
    padding-left: 6px;
    padding-right: 6px;
  }
  body #annotations .body {
    padding: 2px 7.5px 5px 7.5px;
  }
  body #annotations #notesNotes {
    font-size: 7pt;
  }
}
@media screen and (max-width: 450px), screen and (max-height: 450px) {
  body:not(.editing) #editTabButton {
    display: none !important;
  }
  body #navShare {
    display: none;
  }
}
@media screen and (max-width: 820px) {
  #annotations .body {
    font-size: 8pt !important;
  }
  #annotations .button {
    font-size: 8pt !important;
  }
  body #annotations #wt_stepCount {
    font-size: 8pt;
  }
  body .toolTip {
    font-size: 7pt;
  }
  body #overviewName {
    font-size: 16pt;
  }
  body #showAllComponents {
    display: none;
  }
  body #overviewNotesSection {
    max-width: 100%;
  }
  body .overviewPerspectiveArt {
    max-width: 294px;
    max-height: 171px;
    margin-bottom: 10px;
  }
  body .overviewPerspective {
    flex-direction: column;
    align-items: center;
    padding-bottom: 30px;
  }
  body .overviewPerspectiveInfo {
    margin-left: 0;
  }
  body .overviewPerspectiveButtons {
    justify-content: space-around;
  }
  body .overviewPerspectiveButtons .button {
    font-size: 9pt;
  }
  body .blockView.micro {
    transform: scale(0.1875) !important;
  }
}
@media screen and (max-width: 1050px) {
  body #topbar .cta {
    display: none !important;
  }
  #welcomeCreate {
    display: none;
  }
  #createOpen {
    display: none !important;
  }
  body #topbar {
    height: 24px;
  }
  body #splitEditorMain {
    top: 24px;
  }
  body #navSpace,
  body #navLense,
  body #navBlock {
    font-size: 9pt;
  }
  body #navSpace:not(:empty):before,
  body #navLense:not(:empty):before,
  body #navBlock:not(:empty):before {
    font-size: 9pt !important;
    padding: 0 5px !important;
  }
  body #topbar button:not(.button).material-icons {
    font-size: 12pt;
  }
  #twitter {
    width: 24px !important;
    height: 24px !important;
  }
  body #detailControl {
    width: 100px;
  }
  .mdc-slider__thumb-container {
    width: 12px;
  }
  body .labeledControl,
  body #contextLabel,
  body #controlLabel {
    font-size: 12px;
  }
  body #contextContainer {
    margin-right: 10px;
  }
  body #contextControl {
    height: 18px;
    width: 160px;
    padding-left: 55px;
  }
  body #detailControl {
    height: 16px;
    margin-right: 10px;
  }
}
#loadingMessage {
  color: rgba(0, 0, 0, 0.87);
  width: 200%;
  margin-left: -50%;
  text-align: center;
  font-size: 16px;
}
.loadIcon {
  position: absolute;
  height: 100px;
  width: 100px;
  left: 50%;
  top: 50%;
  margin-left: -50px;
  margin-top: -50px;
}
.loadIcon.corner {
  height: 20px;
  width: 20px;
  right: 5px;
  top: 5px;
  position: absolute;
  margin-left: initial;
  margin-top: initial;
  left: initial;
}
.loadIcon.corner .path {
  stroke: black;
  animation: dash 1.5s ease-in-out infinite;
}
.loadIcon.small {
  height: 50px;
  width: 50px;
  margin-left: -25px;
  margin-top: -25px;
}
.loadIcon.small .path {
  stroke: black;
  animation: dash 1.5s ease-in-out infinite;
}
.loadIcon .circular {
  animation: rotate 2s linear infinite;
  height: 100%;
  transform-origin: center center;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.loadIcon .path {
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: dash 1.5s ease-in-out infinite, color 6s ease-in-out infinite;
  stroke-linecap: round;
}
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes color {
  100%,
  0% {
    stroke: #d62d20;
  }
  40% {
    stroke: #0057e7;
  }
  66% {
    stroke: #008744;
  }
  80%,
  90% {
    stroke: #ffa700;
  }
}
.perspectiveLink {
  color: blue;
  text-decoration: underline;
  cursor: pointer !important;
}
.link {
  color: #2195f3;
  text-decoration: underline;
  cursor: pointer;
}
#rotateDiv {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  z-index: 4;
  transition: opacity 0.2s;
}
#rotateDiv > div {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  color: white;
  background-color: rgba(0, 0, 0, 0.68);
  display: flex;
  justify-content: center;
  align-items: center;
}
#rotateDiv > div > i {
  font-size: 48px;
}
#fullscreenButtonContainer {
  width: 100%;
  display: none;
  justify-content: center;
  position: absolute;
  bottom: 50px;
  z-index: 4;
  pointer-events: none;
}
#goFullscreen {
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
  padding: 4px 12px;
  pointer-events: initial;
}
#actionScrim {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 2;
  top: 0;
  left: 0;
  display: none;
}
#actionPanel {
  position: fixed;
  top: 50px;
  right: 20px;
  padding: 10px 0;
  background: white;
  z-index: 3;
  display: none;
  flex-direction: column;
  border: 2px solid dimgray;
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
  opacity: 1;
}
#actionPanel .action {
  padding: 5px 15px;
  line-height: 1.5;
}
#actionPanel .action:not(.radios) {
  cursor: pointer;
}
#actionPanel .action:not(.radios):hover {
  color: black;
  background-color: #FAFAFA;
}
#actionPanel .action:not(.radios):hover.destructive {
  color: red;
}
#actionPanel .action:not(.radios).destructive {
  color: #d62d20;
}
#actionPanel a {
  color: rgba(0, 0, 0, 0.87);
  text-decoration: none;
}
#actionPanel hr {
  margin: 8px 15px;
  border-top: 1px solid lightgray;
}
#findWidget {
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
  position: fixed;
  top: 50px;
  right: 20px;
  padding: 0;
  background: white;
  z-index: 3;
  display: none;
  flex-direction: column;
  border: 2px solid dimgray;
  opacity: 1;
  width: 350px;
}
#findWidget.limited:not(.searching) #findLimitedMessage {
  display: initial;
}
#findLimitedMessage {
  display: none;
  width: 100%;
  padding: 0 5px 5px 5px;
  font-size: 14px;
  color: firebrick;
}
#contextScrim {
  z-index: 1000;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#contextDialog {
  z-index: 1000;
  display: none;
  position: absolute;
  background-color: white;
  box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
  padding: 5px 0;
  border: 2px solid dimgray;
  flex-direction: column;
}
#contextDialog .contextAction {
  padding: 5px 10px;
  cursor: pointer;
  background-color: white;
}
#contextDialog .contextAction:hover {
  color: black;
  background-color: #FAFAFA;
}
.teamDiagramContext .contextAction {
  display: none;
}
.teamDiagramContext[permission="own"] .contextAction.delete {
  display: initial;
  color: red !important;
}
.teamDiagramContext[permission="own"] .contextAction.rename {
  display: initial;
}
.teamDiagramContext[permission="own"] .contextAction.copytonew {
  display: initial;
}
.teamDiagramContext[permission="own"] .contextAction.download {
  display: initial;
}
.teamDiagramContext[permission="own"] .contextAction.manageshareablelink {
  display: initial;
}
.teamDiagramContext[permission="own"] .contextAction.lock,
.teamDiagramContext[permission="own"] .contextAction.unlock {
  display: initial;
}
.teamDiagramContext[permission="edit"] .contextAction.rename {
  display: initial;
}
.teamDiagramContext[permission="edit"] .contextAction.copytonew {
  display: initial;
}
.teamDiagramContext[permission="edit"].draft .contextAction.delete {
  display: initial;
}
body:not([teamcapabilities~="exportToHtml"]) .contextAction.download:after {
  content: "+";
  margin-left: 2px;
  color: #ff00ff;
  position: relative;
  top: -0.5em;
  font-size: 90%;
  font-weight: bold;
}
body:not([teamcapabilities~="shareLinks"]) .contextAction.manageshareablelink:after {
  content: "+";
  margin-left: 2px;
  color: #ff00ff;
  position: relative;
  top: -0.5em;
  font-size: 90%;
  font-weight: bold;
}
.plusSigil {
  content: "+";
  margin-left: 2px;
  color: #ff00ff;
  position: relative;
  top: -0.5em;
  font-size: 90%;
  font-weight: bold;
}
.toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.toggle.toggledOn .toggleTrack {
  background-color: #98c4e7;
}
.toggle.toggledOn .toggleCircle {
  margin-left: 10px;
  background-color: #2195f3;
}
.toggleContainer {
  margin-left: 40px;
  margin-right: 5px;
}
.toggleContainer .toggleTrack {
  background-color: lightgray;
  padding: 5px 10px;
  border-radius: 5px;
  transition: background-color 0.45s;
}
.toggleContainer .toggleCircle {
  position: absolute;
  border-radius: 50%;
  background-color: white;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  width: 16px;
  height: 16px;
  margin-top: -13px;
  margin-left: -6px;
  transition: margin-left 0.45s, background-color 0.45s;
}
.radioContainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.radioContainer label {
  font-size: 12pt;
  margin-left: 5px;
  cursor: pointer;
}
.radioContainer input {
  margin: 0;
  cursor: pointer;
}
#actionButton {
  margin-right: 7px;
  cursor: pointer;
  visibility: hidden;
  transition: background-color 0.2s;
  border-radius: 50%;
  background-color: transparent;
}
#actionButton:hover {
  background-color: rgba(255, 255, 255, 0.333);
}
#findInput {
  margin: 3px 1%;
  padding: 5px 1%;
  border: 1px solid dodgerblue;
  outline: 0;
  background-color: #FAFAFA;
  color: rgba(0, 0, 0, 0.87);
  font-size: 10pt;
}
#findResults {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-height: 700px;
  overflow-x: hidden;
}
#findResults .result {
  padding: 5px;
  line-height: 1;
  width: 100%;
  cursor: pointer;
}
#findResults .result.selected {
  background-color: #F0F0F0;
}
#findResults .result.selected span {
  color: black;
}
#findResults .result.selected span.highlighted {
  color: dodgerblue;
}
#findResults .result.selected span.detail {
  color: rgba(0, 0, 0, 0.68);
}
#findResults .result:hover:not(.selected) {
  background-color: #F8F8F8;
}
#findResults .result .resultName {
  padding: 0 5px;
}
#findResults .result span {
  font-size: 10pt;
  color: rgba(0, 0, 0, 0.87);
  pointer-events: none;
}
#findResults .result span.highlighted {
  color: dodgerblue;
}
#findResults .result span.detail {
  font-size: 8pt;
  color: rgba(0, 0, 0, 0.5);
}
#findResults .result span.detail.path {
  white-space: nowrap;
}
#findResults .result span.detail.subtitle {
  margin-left: 5px;
}
@media screen and (min-width: 1250px) {
  body.initialized:not(.signedIn) #loadError.welcomeMessage #architectureCenter {
    display: initial;
  }
}
@media screen and (max-width: 450px) {
  body.loaded:not(.overview):not([dialog]) #rotateDiv {
    opacity: 1;
  }
  nav #right {
    display: none !important;
  }
}
@media screen and (max-height: 500px) {
  body.loaded:not(.overview):not([dialog]) #all:not(:fullscreen) #fullscreenButtonContainer {
    display: flex;
  }
}
@media print {
  body form,
  body .dialog,
  body #scrim,
  body #actionPanel {
    display: none !important;
  }
  body #all {
    width: 1200px !important;
    height: 905px !important;
    position: absolute;
    overflow: hidden;
  }
  body nav {
    box-shadow: none !important;
  }
  body nav #right {
    display: none !important;
  }
  body nav #editorPanel {
    display: none !important;
  }
  body * {
    transition: none !important;
  }
  body .toolTip,
  body #mainMenu,
  body #rotateDiv,
  body #fullscreenButtonContainer {
    display: none !important;
  }
  body #annotations .body {
    padding-top: 29px;
  }
  body .tabButton {
    display: none !important;
  }
}
@page {
  size: landscape;
}
.mdc-slider__thumb {
  transform: scale(0.7);
}
