@import url(//fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900,200italic,300italic,400italic|Source+Code+Pro:300,400,600,700);.webmango :root {

  /**
   * Initial color definitions.
   */

  /**
   * Other
   */

  /**
   * Typography.
   */

  /**
   * Layout
   */

  /**
   * Transition Durations
   */ /* just takes the edge off a hard change */ /* just noticable */ /* just noticable */ /* fancy */

  /**
   * Easings
   */

  /**
   * Decorations
   */
}

.webmango .Modal {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  color: #5A5A5A;
}

.webmango .Modal:not(.isOpen) {
  display: none;
}

.webmango .Modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.webmango .Modal > .modalInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  pointer-events: auto;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  width: 80vw;
  max-height: 80vh;
  z-index: 3;
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
  -webkit-transition: all;
  transition: all;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  overflow: auto;
}

.webmango .Modal:not(.noDecoration) > .modalInner {
  background-color: #FFF;
  border-radius: 4px;
  border: 1px solid rgb(173, 173, 173);
}

.webmango .Modal.small:not(.large) > .modalInner {
  min-width: 500px;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}

.webmango .Modal > .modal-exit,
.webmango .Modal > .modal-enter {
  -webkit-transition-duration: 0s;
          transition-duration: 0s;
}

.webmango .Modal > .modal-enter-active,
.webmango .Modal > .modal-exit {
  opacity: 1;
  -webkit-transform: perspective(1200px) rotateX(0deg);
          transform: perspective(1200px) rotateX(0deg);
}

.webmango .Modal > .modal-enter,
.webmango .Modal > .modal-exit-active {
  opacity: 0.01;
  -webkit-transform: perspective(1200px) rotateX(-90deg);
          transform: perspective(1200px) rotateX(-90deg);
}

.webmango .Overlay {
  pointer-events: auto;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0.25;
  background-color: black;
  z-index: 2;
}
.webmango :root {

  /**
   * Initial color definitions.
   */

  /**
   * Other
   */

  /**
   * Typography.
   */

  /**
   * Layout
   */

  /**
   * Transition Durations
   */ /* just takes the edge off a hard change */ /* just noticable */ /* just noticable */ /* fancy */

  /**
   * Easings
   */

  /**
   * Decorations
   */
}

.webmango .DropdownMenu button {
  background: none;
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  height: 100%;
}

.webmango .DropdownMenu button:disabled {
  background: none;
  border: none;
}

.webmango .DropdownMenu button:disabled:hover,
.webmango .DropdownMenu button:hover {
  border: none;
}

.webmango .DropdownMenu button:active {
  color: currentColor;
}

.webmango .DropdownMenuContainer {
  height: 0;
  width: 0;
  display: inline-block;
}

.webmango .DropdownMenuInnerContainer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  cursor: auto;
  z-index: 2;
}

.webmango .DropdownMenu {
  pointer-events: all;
  margin-top: 10px;
  margin: 0;
  min-width: 200px;
  padding: 0;
  background: #FFF;
  border: 1px solid rgb(227, 227, 227);
  -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, .075);
          box-shadow: 0 0 60px rgba(0, 0, 0, .075);
  z-index: 2;
  position: absolute;
}

.webmango .DropdownMenu li {
  list-style-type: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.webmango .DropdownMenu li:not([role='separator']) + li {
  border-top: 1px solid rgb(247, 247, 247)
}

.webmango .DropdownMenu li[role='separator'] {
  border-bottom: 1px dashed rgb(227, 227, 227);
}

.webmango .DropdownMenu li[role='separator']:last-child,
.webmango .DropdownMenu li[role='separator']:first-child {
  display: none; /* hide any leading or trailing separator */
}

.webmango .DropdownMenu li > * {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  white-space: nowrap;
  -webkit-transition: 50ms;
  transition: 50ms;
  color: rgb(115, 115, 115);
  text-shadow: 1px 1px 0 white;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 1.5rem;
  font-weight: 600;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  border-radius: 0;
}

.webmango .DropdownMenu li .Icon {
  margin-left: -0.5rem;
  color: rgb(140, 140, 140);
}

.webmango .DropdownMenu .Control {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.webmango .DropdownMenu .Control .content {
  white-space: inherit;
}

.webmango .DropdownMenu li > *:not(:disabled):hover {
  text-decoration: none;
  background-color: rgb(175, 214, 244);
  color: #FFF;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, .05);
}

.webmango .DropdownMenu li > *:not(:disabled):hover .Icon {
  color: #FFF;
}

.webmango .DropdownMenu li > *:active {
  color: rgb(115, 115, 115);
}

.webmango .DropdownMenu li > *:disabled .Icon,
.webmango .DropdownMenu li > *:disabled {
  color: rgb(227, 227, 227);
}

.webmango .DropdownMenu.open {
  z-index: 10;
}

.webmango .DropdownMenu.closed {
  display: none;
}

.webmango .DropdownMenuContainer > .Overlay {
  opacity: 0;
}

.webmango .DropdownMenuOverlay {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  background-color: salmon;
}

.webmango .MoreTrigger {
  cursor: pointer;
}

.webmango .MoreTrigger.Icon {
  font-size: 1.4rem;
}

.webmango .MoreMenu .MoreTrigger {
  opacity: 0.7;
  line-height: 0;
  cursor: pointer;
  padding: 2px;
  border: 1px solid transparent;
  border-radius: 100%;
  margin-right: -2px;
}

.webmango .MoreMenu:hover .MoreTrigger {
  opacity: 1;
  color: rgb(115, 115, 115);
}

.webmango .MoreMenu.open .MoreTrigger {
  opacity: 1;
  color: rgb(82, 178, 246);
}

.webmango :root {

  /**
   * Initial color definitions.
   */

  /**
   * Other
   */

  /**
   * Typography.
   */

  /**
   * Layout
   */

  /**
   * Transition Durations
   */ /* just takes the edge off a hard change */ /* just noticable */ /* just noticable */ /* fancy */

  /**
   * Easings
   */

  /**
   * Decorations
   */
}

.webmango .Control {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: initial;
      -ms-flex-pack: initial;
          justify-content: initial;
}

.webmango .App .Control.noButton {
  display: inherit;
  border: inherit;
  background: inherit;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0;
  margin: 0;
  color: inherit;
  letter-spacing: inherit;
  text-shadow: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  text-transform: inherit;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.webmango .Control .content {
  white-space: pre-line;
  line-height: normal;
  vertical-align: middle;
}

.webmango .Control.noIcon .Icon {
  display: none;
}

.webmango .Control .Icon {
  font-size: 1.2rem;
  min-width: 1.2rem;
}

.webmango .Control > .Icon.left {
  margin-right: 1ch;
}

.webmango .Control > .Icon.right {
  margin-left: 1ch;
}

.webmango .Control.isOnlyIcon {
  white-space: pre-wrap;
  padding: 0.75rem;
}

.webmango .Control.isOnlyIcon > .Icon {
  /* no left/right margin if only icon */
  margin: 0;
}

.webmango .CloseLink {
  color: inherit;
}

.webmango .Control.CloseButton {
  border: none;
  padding: 0;
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.webmango .Control.button.active {
  pointer-events: none;
  border-bottom: 2px solid rgb(110, 190, 247);
}

.webmango .Control.RefreshButton .Icon {
  opacity: 0.75;
  -webkit-transition: opacity 500ms;
  transition: opacity 500ms;
}

.webmango .Control.RefreshButton[disabled] .Icon,
.webmango .Control.RefreshButton.disabled .Icon {
  opacity: 0.5;
}

.webmango .Control.RefreshButton.disabled .RefreshIcon,
.webmango .Control.RefreshButton[disabled] .RefreshIcon {
  display: none;
}

.webmango .Control.RefreshButton:not(.disabled):not(:disabled) .WaitIcon {
  display: none;
}

.webmango .Control.RefreshButton:not(.disabled):not(:disabled) .Icon:hover {
  opacity: 1;
}
.webmango :root {

  /**
   * Initial color definitions.
   */

  /**
   * Other
   */

  /**
   * Typography.
   */

  /**
   * Layout
   */

  /**
   * Transition Durations
   */ /* just takes the edge off a hard change */ /* just noticable */ /* just noticable */ /* fancy */

  /**
   * Easings
   */

  /**
   * Decorations
   */
}

.webmango .StatusMessage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: rgb(140, 140, 140);
}

.webmango .statusMessageInner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.webmango .statusMessageContent {
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
  padding: 1rem 0;
}

.webmango .StatusMessage h3 {
  font-size: 1rem;
  font-weight: 600;
  word-break: break-word;
}

.webmango .StatusMessage h3:empty,
.webmango .statusMessageContent:empty {
  display: none;
}

.webmango .StatusMessage > .IconContainer {
  font-size: 2rem;
  margin-right: 20px;
}

.webmango .App .SuccessIcon {
  fill: rgb(165, 222, 124);
}

.webmango .App .WarnIcon {
  fill: rgb(245, 190, 130);
}

.webmango .App .ErrorIcon {
  fill: rgb(247, 150, 150);
}

.webmango .ConsoleOutput {
  background-color: rgb(247, 247, 247);
  white-space: pre;
  font-size: 0.9rem;
  padding: 1rem 4ch;
  font-family: 'Source Code Pro', 'Ubuntu Mono', monospace;
  max-height: 500px;
  max-width: 300px;
  overflow: auto;
  line-height: 1.4;
}

.webmango .StatusMessage.vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.webmango .StatusMessage.big h3 {
  font-size: 1.5rem;
}

.webmango .StatusMessage.big .IconContainer {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.webmango .StatusMessage.vertical .IconContainer {
  margin-right: 0;
}

/**
 * Loading Spinner
 */

.webmango .LoaderIcon {
  position: relative;
  width: 1em;
  height: 1em;
  /* perf */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncA type="table" tableValues="0 0.9999" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: opacity(.9999);
          filter: opacity(.9999);
  -webkit-perspective: 9999px;
          perspective: 9999px;
  -webkit-transform: translate3d(0, 0, 0.1px);
          transform: translate3d(0, 0, 0.1px);
}

/*.LoaderIcon*/

.webmango .LoaderIcon:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.webmango .LoaderIcon .circular-loader {
  -webkit-animation: loaderRotate 2s linear infinite;
          animation: loaderRotate 2s linear infinite;
  height: 100%;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
}

.webmango .LoaderIcon .loader-path {
  stroke-dasharray: 150,200;
  stroke-dashoffset: -10;
  -webkit-animation: loaderDash 1.5s ease-in-out infinite, loaderColor 6s ease-in-out infinite;
          animation: loaderDash 1.5s ease-in-out infinite, loaderColor 6s ease-in-out infinite;
  stroke-linecap: round;
}

@-webkit-keyframes loaderRotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes loaderRotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-webkit-keyframes loaderDash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}

@keyframes loaderDash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124;
  }
}

@-webkit-keyframes loaderColor {
  0% {
    stroke: currentColor;
  }
  40% {
    stroke: currentColor;
  }
  66% {
    stroke: currentColor;
  }
  80%, 90% {
    stroke: currentColor;
  }
}

@keyframes loaderColor {
  0% {
    stroke: currentColor;
  }
  40% {
    stroke: currentColor;
  }
  66% {
    stroke: currentColor;
  }
  80%, 90% {
    stroke: currentColor;
  }
}

.webmango :root {

  /**
   * Initial color definitions.
   */

  /**
   * Other
   */

  /**
   * Typography.
   */

  /**
   * Layout
   */

  /**
   * Transition Durations
   */ /* just takes the edge off a hard change */ /* just noticable */ /* just noticable */ /* fancy */

  /**
   * Easings
   */

  /**
   * Decorations
   */
}

.webmango .Panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 0;
}

.webmango .Panel.Card {
  background-color: rgb(252, 252, 252);
  border-radius: 4px;
  border: 1px solid rgb(227, 227, 227);
}

.webmango .Panel > *:first-child {
  padding-top: 1rem;
}

.webmango .Panel > *:last-child {
  padding-bottom: 1rem;
}

.webmango .Panel > * {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

/* undo padding for nest panels */

.webmango .Panel > .Panel > *:first-child {
  padding-top: 0rem;
}

.webmango .Panel > .Panel > *:last-child {
  padding-bottom: 0rem;
}

.webmango .Panel > .Panel > * {
  padding-right: 0rem;
  padding-left: 0rem;
}

.webmango .Panel > .Panel {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 0;
}

.webmango .Panel > .PanelContent {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow-y: auto;
}

.webmango .PanelHeader {
  color: rgb(115, 115, 115);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
}

.webmango .PanelHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.webmango .PanelHeader:not(:last-child) {
  margin-bottom: 1rem;
}

.webmango .PanelHeader2 > * {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.webmango .PanelHeader2 > *:first-child {
  margin-right: auto;
}

.webmango .PanelHeader3 > * {
  min-width: 0;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.webmango .PanelHeader3 > *:first-child,
.webmango .PanelHeader3 > *:last-child {
  -webkit-box-flex: 0.2;
      -ms-flex: 0.2;
          flex: 0.2;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.webmango .PanelHeader3 > *:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.webmango .PanelHeader3 > *:last-child {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.webmango .PanelHeader3 > *:first-child {
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.webmango .PanelHeader h1,
.webmango .PanelHeader h2,
.webmango .PanelHeader h3,
.webmango .PanelHeader h4,
.webmango .PanelHeader h5,
.webmango .PanelHeader h6 {
  margin: 0;
}

.webmango .PanelHeader h3 {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgb(115, 115, 115)
}

.webmango .PanelContentFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.webmango .PanelContent {

}

.webmango .PanelSplitContent {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.webmango .PanelSplitContent > .PanelMain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.webmango .PanelSplitContent > .PanelSide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow-y: auto;
  -webkit-box-flex: 0.3;
      -ms-flex: 0.3;
          flex: 0.3;
  padding: 0;
}

.webmango .PanelSplitContent > * + .PanelSide {
  padding-left: 2rem;
  border-left: 1px solid rgb(227, 227, 227);
  margin-left: 1rem;
}

/**
 * Make forms in panel header layout horizontally
 */

.webmango .PanelHeader > .Form {
  margin-bottom: 10px;
}

.webmango .PanelHeader > .Form .FormItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.webmango .PanelHeader > .Form .FormItem label {
  font-weight: 400;
  margin-right: 1ch;
  margin-bottom: 0;
}


.webmango :root {

  /**
   * Initial color definitions.
   */

  /**
   * Other
   */

  /**
   * Typography.
   */

  /**
   * Layout
   */

  /**
   * Transition Durations
   */ /* just takes the edge off a hard change */ /* just noticable */ /* just noticable */ /* fancy */

  /**
   * Easings
   */

  /**
   * Decorations
   */
}

.webmango .ServerStatus {
  color: rgb(140, 140, 140);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.webmango .ServerStatus .DropdownMenu {
  color: rgb(115, 115, 115);
  padding: 0.5rem 1.5rem;
  padding-bottom: 1rem;
  margin-top: 1rem;
}

.webmango .ServerStatus h3 {
  padding: 0;
  margin: 0;
  margin-bottom: 0.5rem;
}

.webmango .ServerStatus .ServerStatusHeader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.webmango .ServerStatus .ServerStatusHeader .RefreshButton {
  margin-top: -3px;
  cursor: pointer;
  -webkit-transition: background-color 150ms;
  transition: background-color 150ms;
}

.webmango .ServerStatus .ServerStatusHeader .RefreshButton.disabled {
  cursor: default;
  color: rgb(140, 140, 140);
}

.webmango .ServerStatus .ServerStatuses {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-column-gap: 1em;
  grid-row-gap: 0.75em;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.webmango .ServerStatus .StatusIcon {
  width: 1em;
  height: 1em;
  border-radius: 100%;
  -webkit-transition: all 500ms, -webkit-transform 150ms;
  transition: all 500ms, -webkit-transform 150ms;
  transition: all 500ms, transform 150ms;
  transition: all 500ms, transform 150ms, -webkit-transform 150ms;
}

.webmango .ServerStatus .StatusIcon {
  background-color: rgb(165, 222, 124);
}

.webmango .ServerStatus .StatusTime {
  text-align: right;
}

.webmango .ServerStatus .StatusTime.notOk {
  color: rgb(247, 94, 94);
}

.webmango .ServerStatus .StatusTime.isUnknown:not(.ok) {
  color: rgb(140, 140, 140);
}

.webmango .ServerStatus .StatusIcon.notOk {
  background-color: rgb(247, 94, 94);
}

.webmango .ServerStatus .StatusIcon.isUnknown {
  background-color: rgb(140, 140, 140);
}

.webmango .ServerStatus .StatusIcon.isLoading {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.webmango .ServerStatus .StatusIcon.isSyncing.needsSync,
.webmango .ServerStatus .StatusIcon.isSyncing {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.webmango .ServerStatusTrigger {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-template-columns: auto auto;
  grid-column-gap: 1em;
  cursor: pointer;
}

.webmango .ServerStatusTrigger .triggerMessage {
  -webkit-transition: color 150ms;
  transition: color 150ms;
}

.webmango .ServerStatusTrigger .triggerMessage.notOk {
  color: rgb(247, 94, 94);
}
.webmango :root {

  /**
   * Initial color definitions.
   */

  /**
   * Other
   */

  /**
   * Typography.
   */

  /**
   * Layout
   */

  /**
   * Transition Durations
   */ /* just takes the edge off a hard change */ /* just noticable */ /* just noticable */ /* fancy */

  /**
   * Easings
   */

  /**
   * Decorations
   */
}

.webmango .Layout {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 100vw;
  min-height: 100vh;
  max-height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.webmango .Layout > header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.webmango .Layout > .LayoutMain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  z-index: 0;
  overflow: auto;
}

.webmango .Layout > .LayoutMain > main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.webmango .Layout > .LayoutMain > aside {
  min-width: 30vw;
}

.webmango .Layout > footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}


.webmango :root {

  /**
   * Initial color definitions.
   */

  /**
   * Other
   */

  /**
   * Typography.
   */

  /**
   * Layout
   */

  /**
   * Transition Durations
   */ /* just takes the edge off a hard change */ /* just noticable */ /* just noticable */ /* fancy */

  /**
   * Easings
   */

  /**
   * Decorations
   */
}/**
 * Fonts
 *//**
 * Layout
 */.webmango *,
.webmango *:before,
.webmango *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 14px;
}html,
body {
  color: #5A5A5A;
  background-color: #F7F7F9;
  overflow: hidden;
  width: 100%; height: 100%;
  margin: 0; padding: 0;
}/**
 * Typography.
 */body {
  font-weight: 400;
  line-height: 1.6em;
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 1rem;
}.webmango input,
.webmango textarea,
.webmango keygen,
.webmango select,
.webmango button {
  font-family: 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 0.9rem;
}.webmango select:-moz-focusring {
  /* remove annoying box around select text firefox */
  color: transparent;
  text-shadow: 0 0 0 #000;
}.webmango textarea::-webkit-input-placeholder,
.webmango keygen::-webkit-input-placeholder,
.webmango select::-webkit-input-placeholder,
.webmango input::-webkit-input-placeholder {
  color: rgb(115, 115, 115);
  opacity: 0.6;
  font-style: italic;
}.webmango textarea::-moz-placeholder,
.webmango keygen::-moz-placeholder,
.webmango select::-moz-placeholder,
.webmango input::-moz-placeholder {
  color: rgb(115, 115, 115);
  opacity: 0.6;
  font-style: italic;
}.webmango textarea::-ms-input-placeholder,
.webmango keygen::-ms-input-placeholder,
.webmango select::-ms-input-placeholder,
.webmango input::-ms-input-placeholder {
  color: rgb(115, 115, 115);
  opacity: 0.6;
  font-style: italic;
}.webmango textarea::placeholder,
.webmango keygen::placeholder,
.webmango select::placeholder,
.webmango input::placeholder {
  color: rgb(115, 115, 115);
  opacity: 0.6;
  font-style: italic;
}.webmango h1,
.webmango h2,
.webmango h3,
.webmango h4,
.webmango h5,
.webmango h6 {
  font-weight: 700;
  margin: 0;
  margin-top: 0.8rem;
  margin-bottom: 0.8rem;
}.webmango h1 {
  font-weight: 300;
}.webmango a,
.webmango .LinkLite {
  text-decoration: none;
  color: #3FA9F5;
  cursor: pointer;
}.webmango .LinkLite:hover,
.webmango a:hover {
  color: rgb(57, 152, 221);
  text-decoration: underline;
}.webmango a[disabled],
.webmango a[disabled]:hover,
.webmango a.disabled,
.webmango a.disabled:hover,
.webmango .LinkLite[disabled],
.webmango .LinkLite[disabled]:hover,
.webmango .LinkLite.disabled:hover,
.webmango .LinkLite.disabled {
  cursor: default;
  color: inherit;
  border: inherit;
  text-decoration: none;
}/**
 * Transitions
 */.webmango a,
.webmango .LinkLite,
.webmango button,
.webmango select,
.webmango input[type='submit'],
.webmango .button {
  -webkit-transition: 150ms cubic-bezier(0.455, 0.030, 0.515, 0.955);
  transition: 150ms cubic-bezier(0.455, 0.030, 0.515, 0.955)
}.webmango .code,
.webmango code {
  font-family: 'Source Code Pro', 'Ubuntu Mono', monospace;
  line-height: 1;
  font-size: 0.7rem;
}.webmango h1 {
  font-size: 2rem;
  line-height: 1;
}.webmango h2 {
  font-size: 1.5rem;
}.webmango h3 {
  font-size: 1.25rem;
  font-weight: 400;
}.webmango h4 {
  font-size: 1rem;
}.webmango h5 {
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}.webmango blockquote {
  margin: 0;
  margin-bottom: 2rem;
  margin-top: -1rem;
  padding: 0;
}.webmango blockquote,
.webmango .help {
  font-size: 0.9rem;
  color: rgb(115, 115, 115);
  font-style: italic;
  line-height: 1.4;
}.webmango hr {
  display: block;
  height: 0;
  opacity: 0.5;
  border: 0;
  border-top: 1px dashed rgb(227, 227, 227);
  margin: 2rem 0;
  padding: 0;
}.webmango pre {
  line-height: 1;
}.webmango code {
  font-family: 'Source Code Pro', 'Ubuntu Mono', monospace;
}/**
 * Forms
 */.webmango label {
  line-height: 1.2;
  display: block;
}.webmango select,
.webmango textarea,
.webmango input[type='text'],
.webmango input[type='number'],
.webmango input[type='password'] {
  color: rgb(115, 115, 115);
  font-weight: 300;
  margin: 0;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0.5em 1ch;
  border: 1px solid rgb(173, 173, 173);
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 0 0 #FFF, 0 2px 0 0 rgb(227, 227, 227);
          box-shadow: 0 1px 0 0 #FFF, 0 2px 0 0 rgb(227, 227, 227);
  background: #FFF;
}.webmango select:not(:disabled):hover,
.webmango select:focus,
.webmango input[type='text']:not(:disabled):hover,
.webmango input[type='text']:focus,
.webmango textarea:not(:disabled):hover,
.webmango textarea:focus,
.webmango input[type='number']:not(:disabled):hover,
.webmango input[type='number']:focus,
.webmango input[type='password']:not(:disabled):hover,
.webmango input[type='password']:focus {
  outline: 0;
  border-color: #3FA9F5;
}.webmango select.error,
.webmango textarea.error,
.webmango input[type='text'].error,
.webmango input[type='number'].error,
.webmango input[type='password'].error {
  border-color: rgb(247, 94, 94);
}.webmango select.error:hover,
.webmango textarea.error:hover,
.webmango input[type='text'].error:hover,
.webmango input[type='number'].error:hover,
.webmango input[type='password'].error:hover,
.webmango select.error:focus,
.webmango textarea.error:focus,
.webmango input[type='text'].error:focus,
.webmango input[type='number'].error:focus,
.webmango input[type='password'].error:focus {
  border-color: #F44;
}.webmango select:disabled,
.webmango select[readOnly],
.webmango textarea:disabled,
.webmango input[type='text']:disabled,
.webmango input[type='number']:disabled,
.webmango input[type='password']:disabled {
  color: #5A5A5A;
  border-color: rgb(173, 173, 173);
  background: rgb(242, 242, 242);
  opacity: 0.5;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}.webmango select {
  cursor: pointer;
}/**
 * Buttons
 */.webmango button,
.webmango .button,
.webmango label.file,
.webmango input[type='submit'] {
  cursor: pointer;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-block;
  color: rgb(140, 140, 140);
  border: 1px solid rgb(173, 173, 173);
  background-color: #FFF;
  -webkit-box-shadow: 0 1px 0 0 #FFF, 0 2px 0 0 rgb(227, 227, 227);
          box-shadow: 0 1px 0 0 #FFF, 0 2px 0 0 rgb(227, 227, 227);
  position: relative;
  text-align: center;
  padding: 0.5rem 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}.webmango .button.default:not([disabled]):hover,
.webmango button.default:not([disabled]):hover,
.webmango [type='submit'].default:not([disabled]):hover {
  color: #FFF;
  background-color: rgb(129, 199, 248);
  border-color: rgb(82, 178, 246);
}.webmango .button.default:not([disabled]),
.webmango button.default:not([disabled]),
.webmango [type='submit'].default:not([disabled]) {
  color: #FFF;
  background-color: rgb(110, 190, 247);
  border-color: #3FA9F5;
}.webmango .button.error:not([disabled]),
.webmango button.error:not([disabled]),
.webmango [type='submit'].error:not([disabled]) {
  color: rgb(247, 94, 94);
  border-color: #F44;
}.webmango .button.default.error:not([disabled]),
.webmango button.default.error:not([disabled]),
.webmango [type='submit'].default.error:not([disabled]) {
  color: #FFF;
  background-color: rgb(247, 94, 94);
  border-color: #F44;
}.webmango .button:hover,
.webmango button:hover,
.webmango label.file:hover,
.webmango label.file:hover *,
.webmango [type='submit']:hover {
  border-color: #3FA9F5;
  color: #3FA9F5;
  cursor: pointer;
  text-decoration: none;
}.webmango button:active,
.webmango .button:active,
.webmango label.file:active,
.webmango [type='submit']:active {
  color: #3FA9F5;
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
  top: 1px;
}.webmango button:focus,
.webmango .button:focus,
.webmango label.file:focus,
.webmango [type='submit']:focus {
  border-color: #3FA9F5;
  outline: none;
}.webmango button:disabled,
.webmango .button[disabled],
.webmango button:disabled:hover,
.webmango .button[disabled]:hover {
  color: rgb(189, 189, 189);
  border: rgb(232, 232, 232) 1px solid;
  -webkit-box-shadow: 0;
          box-shadow: 0;
  cursor: default;
}.webmango button.default:disabled,
.webmango .button.default[disabled],
.webmango button.default:disabled:hover,
.webmango .button.default[disabled]:hover {
  color: rgb(153, 153, 153);
  background-color: rgb(250, 250, 250);
  border-color: rgb(215, 215, 215);
}.webmango .button > svg {
  display: inline;
}.webmango .buttons {
  margin-top: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}.webmango .buttons > .default:only-child,
.webmango .buttons > [type=submit]:only-child {
  margin-left: auto;
}.webmango label.file {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  overflow: hidden;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: center;
  padding: 1ch 1.5ch;
}.webmango label.file input[type=file] {
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
  cursor: pointer;
  opacity: 0;
  margin-left: -100px; /*hide non pointer cursor part of file input*/
}.webmango .page {
  margin: auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding: 2em;
  padding-top: 0.5em;
  pointer-events: auto;
  width: -webkit-fill-available;
  width: -moz-available;
  width: stretch;
}.webmango .min {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  min-width: -webkit-min-content;
  min-width: -moz-min-content;
  min-width: min-content;
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  min-height: -webkit-min-content;
  min-height: -moz-min-content;
  min-height: min-content;
}.webmango .fit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: -webkit-fit-content;
  min-width: -moz-fit-content;
  min-width: fit-content;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  min-height: -webkit-fit-content;
  min-height: -moz-fit-content;
  min-height: fit-content;
}.webmango .center {
  text-align: center;
  padding: 2em;
}.webmango .errorText {
  color: #F44;
}.webmango .warnText {
  color: #FF931E;
}.webmango .successText {
  color: #7AC943;
}.webmango .actionText {
  color: #3FA9F5;
}.webmango .showable {
  -webkit-transition: all 250ms ease-in;
  transition: all 250ms ease-in;
  will-change: opacity, max-height;
}.webmango .showable.show {
  opacity: 1;
  max-height: 100vh;
}.webmango .showable:not(.show) {
  opacity: 0;
  max-height: 0;
  pointer-events: none;
}.webmango .infoTag {
  background: rgb(252, 252, 252);
  border-radius: 0.75rem;
  border: 1px solid rgb(227, 227, 227);
  color: rgb(115, 115, 115);
  padding: 0.25rem 0.5rem;
  display: block;
  font-size: 0.6rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: normal;
  line-height: initial;
  text-overflow: ellipsis;
  word-break: break-all;
  white-space: nowrap;
  overflow: hidden;
}/* Make the element rotate infinitely. *//*
Usage
    .myElement {
        animation: rotating 3s linear infinite;
    }
*/@-webkit-keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}@keyframes rotating {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}/* Make the element pulse (grow large and small slowly) *//* Usage
    .myElement {
        animation: pulsate 1s ease-out;
        animation-iteration-count: infinite;
        opacity: 1;
    }
*/@-webkit-keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1);transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2);transform: scale(1.2, 1.2); opacity: 0.0;}
}@keyframes pulsate {
    0% {-webkit-transform: scale(0.1, 0.1);transform: scale(0.1, 0.1); opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {-webkit-transform: scale(1.2, 1.2);transform: scale(1.2, 1.2); opacity: 0.0;}
}/* Make the element's opacity pulse*//* Usage
    .myElement {
        animation: opacityPulse 1s ease-out;
        animation-iteration-count: infinite;
        opacity: 0;
    }
*/@-webkit-keyframes opacityPulse {
    0% {opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {opacity: 0.0;}
}@keyframes opacityPulse {
    0% {opacity: 0.0;}
    50% {opacity: 1.0;}
    100% {opacity: 0.0;}
}.webmango .Resizer {
  background: rgb(227, 227, 227);
  opacity: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-clip: padding-box;
  -webkit-transition: background-color 150ms ease;
  transition: background-color 150ms ease;
  z-index: 1;
}.webmango .Resizer.horizontal {
  height: 11px;
  margin: -5px 0;
  border-top: 5px solid rgba(255, 255, 255, 0);
  border-bottom: 5px solid rgba(255, 255, 255, 0);
  cursor: row-resize;
  width: 100%;
}.webmango .Resizer.horizontal:hover {
  background-color: rgb(173, 173, 173);
}.webmango .Resizer.vertical {
  width: 11px;
  margin: 0 -5px;
  border-left: 5px solid rgba(255, 255, 255, 0);
  border-right: 5px solid rgba(255, 255, 25, 0);
  cursor: col-resize;
}.webmango .Resizer.vertical:hover {
  background-color: rgb(173, 173, 173);
}.webmango .Resizer.disabled {
  cursor: not-allowed;
}.webmango .Resizer.disabled:hover {
  border-color: transparent;
}.webmango {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}#root,
.webmango {
  min-width: 100vw;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}
.webmango :root {

  /**
   * Initial color definitions.
   */

  /**
   * Other
   */

  /**
   * Typography.
   */

  /**
   * Layout
   */

  /**
   * Transition Durations
   */ /* just takes the edge off a hard change */ /* just noticable */ /* just noticable */ /* fancy */

  /**
   * Easings
   */

  /**
   * Decorations
   */
}

.webmango .pageIcon {
  text-align: center;
  font-size: 4rem;
  display: block;
  margin: auto;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.webmango .Down {
  margin: auto;
  width: 30vw;
  background-color: rgb(252, 252, 252);
  border-radius: 4px;
  border: 1px solid rgb(227, 227, 227);
}

.webmango .Down .mainMessage {
  font-size: 1.5rem;
}

.webmango .Down p {
  color: rgb(140, 140, 140);
}

.webmango .Down h1 {
  color: rgb(115, 115, 115);
  margin-bottom: 3rem;
  line-height: 1.2;
  text-align: center;
  font-size: 2.2em;
}

.webmango .Down .ServerStatus {
  position: absolute;
  top: 10px;
  right: 10px;
}

/*# sourceMappingURL=down.bb4964eb.css.map*/