/**************************************************/
/* BEGIN "marko/components/background/style.less" */
.background {
  /* Set rules to fill background */
  width: 100%;
  /* Set up proportionate scaling */
  min-height: 100%;
  height: auto;
  /* Set up positioning */
  position: fixed;
  top: 0;
  left: 0;
  user-select: none;
  -webkit-user-drag: none;
  z-index: -1;
}
.background.landscape {
  /* Set rules to fill background */
  height: 100%;
  /* Set up proportionate scaling */
  min-width: 100%;
  width: auto;
}
/* END   "marko/components/background/style.less" */
/**************************************************/
/***************************************************/
/* BEGIN "marko/components/menu-header/style.less" */
.menu-header {
  padding: 0.125em 1.5ch;
  opacity: 0.5;
  user-select: none;
}
/* END   "marko/components/menu-header/style.less" */
/***************************************************/
/*************************************************/
/* BEGIN "marko/components/menu-link/style.less" */
div.menu-link {
  width: 100%;
  padding-left: 0.5ch;
  font-size: 1.1em;
  padding-bottom: 0.125em;
  white-space: nowrap;
  cursor: pointer;
}
div.menu-link div.icon {
  display: inline-block;
  width: 3ch;
  padding: 0 0.125em;
  text-align: center;
  vertical-align: middle;
}
div.menu-link div.text {
  display: inline-block;
  max-width: 22ch;
  white-space: nowrap;
  overflow-x: hidden;
  text-overflow: ellipsis;
  vertical-align: middle;
}
div.menu-link div.text span.weak {
  opacity: 0.3333;
}
div.menu-link:hover div.text span.weak {
  opacity: 0.75;
}
div.menu-link.dark {
  opacity: 0.5;
}
div.menu-link.dark:hover {
  opacity: 1;
}
/* END   "marko/components/menu-link/style.less" */
/*************************************************/
/************************************************/
/* BEGIN "marko/components/menu-gap/style.less" */
.menu-gap {
  padding: 0.25em;
}
/* END   "marko/components/menu-gap/style.less" */
/************************************************/
/********************************************/
/* BEGIN "marko/components/menu/style.less" */
.menu {
  position: fixed;
  top: 6.5em;
  bottom: 0;
  width: 28ch;
  padding: 0.333em;
  padding-bottom: 1em;
  text-align: left;
  user-select: none;
  overflow-x: hidden;
  overflow-y: auto;
}
.menu .showhide {
  display: none;
}
@media screen and (max-width: 700px) {
  .menu.disabled .menu-link,
  .menu.disabled .menu-header,
  .menu.disabled .menu-blurb,
  .menu.disabled .menu-gap {
    display: none;
  }
  .showhide {
    display: block !important;
  }
  .menu {
    position: static;
    width: 100%;
    box-sizing: border-box;
    margin-left: -0.25ch;
    font-size: 1.25em;
  }
}
/* END   "marko/components/menu/style.less" */
/********************************************/
/**************************************************/
/* BEGIN "marko/components/menu-blurb/style.less" */
.menu-blurb {
  opacity: 0.5;
  padding: 0.25em 1.5ch;
}
.menu-blurb.error {
  color: red;
}
/* END   "marko/components/menu-blurb/style.less" */
/**************************************************/
/*********************************************/
/* BEGIN "marko/components/modal/style.less" */
div.overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding-top: 1em;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.95);
  overflow-y: scroll;
}
div.overlay h1 {
  text-align: center;
}
div.overlay h2 {
  opacity: 0.5;
  margin: 0;
  margin-top: 1em;
  border-bottom: 0.5px solid;
  padding-bottom: 0.125em;
  text-align: center;
}
div.overlay div.modal {
  width: 60ch;
  max-width: 95%;
  margin: auto;
}
div.overlay div.modal label {
  display: block;
  margin-top: 1em;
  margin-left: 0.5ch;
  font-size: 0.75em;
  opacity: 0.5;
}
div.overlay div.modal input {
  display: block;
  width: 100%;
  padding: 0 0.5ch;
  border: none;
  font-family: inherit;
  background: none;
  outline: none;
  opacity: 0.5;
  border-left: 0.25px dotted;
}
div.overlay div.modal input.big {
  font-size: 1.5em;
  padding: 0 0.3336ch;
}
div.overlay div.modal select {
  display: block;
  width: 100%;
  padding: 0 0ch;
  border: none;
  font-family: inherit;
  background: none;
  outline: none;
  opacity: 0.5;
}
div.overlay div.modal select option {
  background-color: black;
}
div.overlay div.modal select.big {
  font-size: 1.5em;
  margin: 0;
}
div.overlay div.modal select:focus {
  opacity: 1;
}
div.overlay div.modal textarea {
  display: block;
  width: 100%;
  height: 8em;
  padding: 0 0.5ch;
  border: none;
  font-family: inherit;
  background: none;
  outline: none;
  opacity: 0.5;
  resize: none;
  overflow-y: scroll;
  border-left: 0.25px dotted;
}
div.overlay div.modal textarea.tall {
  height: 24em;
}
div.overlay div.modal input:focus,
div.overlay div.modal textarea:focus {
  opacity: 1;
}
div.overlay div.modal button {
  border: 1px solid;
  background-color: rgba(0, 0, 0, 0.75);
  margin: 2em auto;
  display: block;
  padding: 0.5em 4ch;
  opacity: 0.75;
}
div.overlay div.modal button:hover {
  opacity: 1;
  cursor: pointer;
}
div.overlay div.modal div.summary {
  text-align: left;
  margin: auto;
}
div.overlay div.modal div.summary p {
  margin: 0;
  text-indent: -2ch;
  margin-left: 2ch;
}
div.overlay div.modal.nolabel input,
div.overlay div.modal.nolabel textarea {
  margin-bottom: 0.5em;
}
div.overlay div.overlay-options {
  width: 60ch;
  max-width: 95%;
  margin: auto;
  text-align: right;
}
div.overlay div.overlay-options div {
  opacity: 0.75;
  user-select: none;
  cursor: pointer;
}
div.overlay div.overlay-options div:hover {
  opacity: 1;
}
div.overlay.notification-overlay {
  padding-top: 20%;
}
div.overlay.notification-overlay div.modal {
  text-align: center;
}
/* END   "marko/components/modal/style.less" */
/*********************************************/
/*************************************************************/
/* BEGIN "marko/components/compact-list-property/style.less" */
td.compact-list-property {
  width: 20%;
  padding: 0 0.5ch;
}
td.compact-list-property div.label {
  font-size: 0.5em;
  line-height: 1em;
  padding-top: 0.5em;
}
td.compact-list-property div.value {
  font-size: 0.75em;
  padding-bottom: 0.25em;
  user-select: text;
}
td.compact-list-property div.value.weak {
  opacity: 0.3333;
}
td.compact-list-property.short {
  width: 10%;
}
td.compact-list-property.long {
  width: 30%;
}
/* END   "marko/components/compact-list-property/style.less" */
/*************************************************************/
/************************************************************/
/* BEGIN "marko/components/compact-list-options/style.less" */
td.compact-list-options {
  width: 20%;
  padding: 0 0.5ch;
}
td.compact-list-options div.content {
  font-size: 1em;
  text-align: right;
}
td.compact-list-options div.content a {
  display: inline-block;
  margin-right: 1ch;
  opacity: 0.5;
}
td.compact-list-options div.content a:hover {
  opacity: 1;
  cursor: pointer;
}
td.compact-list-options.short {
  width: 10%;
}
td.compact-list-options.long {
  width: 30%;
}
/* END   "marko/components/compact-list-options/style.less" */
/************************************************************/
/**********************************************/
/* BEGIN "marko/components/toggle/style.less" */
div.toggle div.toggle-pill {
  display: inline-block;
  margin: 0 0.5em;
}
div.toggle div.toggle-pill a.toggle-option {
  padding: 0.125em 0.5ch;
  display: inline-block;
  width: 8ch;
  text-align: center;
  outline: 0.5px dotted;
  cursor: pointer;
  opacity: 0.75;
}
div.toggle div.toggle-pill a.toggle-option.color-highlight-primary {
  outline: 1px solid;
}
div.toggle div.toggle-pill a.toggle-option:hover {
  opacity: 1;
}
div.toggle div.toggle-content {
  display: inline-block;
}
div.toggle:first-of-type {
  margin-top: 0.5ch;
}
/* END   "marko/components/toggle/style.less" */
/**********************************************/
/*********************************************************/
/* BEGIN "marko/components/compact-list-item/style.less" */
tr.compact-list-item {
  user-select: none;
  outline: 0.05px dotted;
  vertical-align: middle;
}
tr.compact-list-item.color-highlight-primary a {
  color: #FFF !important;
}
tr.compact-list-item.color-highlight-primary label {
  color: #CCC !important;
}
tr.compact-list-item.color-highlight-primary div.label {
  color: #AA8 !important;
}
tr.compact-list-item.color-highlight-primary div.value.color-text {
  color: #FFF !important;
}
/* END   "marko/components/compact-list-item/style.less" */
/*********************************************************/
/****************************************************/
/* BEGIN "marko/components/compact-list/style.less" */
table.compact-list {
  padding-top: 0.5em;
  width: 90%;
  max-width: 100ch;
  padding-right: 1em;
  margin: auto;
  border-collapse: separate;
  border-spacing: 0 0.5em;
}
/* END   "marko/components/compact-list/style.less" */
/****************************************************/
/*********************************************************/
/* BEGIN "marko/components/unknown-nick-list/style.less" */
div.unknown-nick-list {
  padding: 0.5em 0;
}
div.unknown-nick-list div.nick {
  display: inline-block;
  padding: 0.25em 0.5ch;
  margin: 2px;
  background-color: #111;
  color: #881;
}
div.unknown-nick-list div.nick:hover {
  cursor: pointer;
  background-color: #222;
  color: #CC2;
}
/* END   "marko/components/unknown-nick-list/style.less" */
/*********************************************************/












