BUTTON {
  font-family: "Space", Monospace;
  font-weight: bold;
  font-size: var(--fontsize-norm);
  color: #fff;
  border: 2px solid #666;
  background-color: rgba(119, 119, 119, 0.7333333333);
  touch-action: manipulation;
  cursor: pointer;
}
BUTTON:disabled {
  cursor: auto;
  color: #666;
  background-color: rgba(34, 34, 34, 0.7333333333);
}
BUTTON:disabled:hover {
  filter: none;
}
BUTTON:hover {
  filter: brightness(150%);
}

.choosercontainer .chooserbox {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

BODY {
  font-family: "Main", Monospace;
  margin: 0;
  padding: 0;
  background-color: #000;
  color: #eee;
  user-select: none;
  -webkit-user-select: none;
  overflow: hidden;
  background-image: var(--url-bg);
  background-size: cover;
}
BODY:fullscreen, BODY::backdrop {
  background-image: var(--url-bg) !important;
  background-size: cover !important;
}
BODY.firefoxios {
  overflow-x: hidden;
  overflow-y: scroll;
}
BODY.firefoxios #__FULLSCREEN_SIZE_BOX__ {
  width: 90vw !important;
  height: 90vh !important;
}

BUTTON.closex {
  align-self: flex-start;
  border: 0;
  background: none;
  font-size: var(--fontsize-norm);
  font-weight: normal;
}

*::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2666666667);
}

*::-webkit-scrollbar {
  background: rgba(0, 0, 0, 0.2666666667);
}

* {
  scrollbar-color: rgba(255, 255, 255, 0.2666666667) rgba(0, 0, 0, 0.2666666667);
}

.inert {
  pointer-events: none;
}

#toastlist {
  position: fixed;
  z-index: 950;
  left: var(--d-toast-left);
  bottom: var(--d-toast-bottom);
  width: var(--d-toast-width);
  max-height: var(--d-toast-height);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  font-size: var(--fontsize-desc);
  pointer-events: none;
}
#toastlist .toast {
  padding: 5px 20px 5px 20px;
  background-color: rgba(0, 0, 0, 0.5333333333);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  pointer-events: none;
  animation: toastfade 20s linear;
}

#bottomedge {
  position: fixed;
  z-index: 899;
  height: 300px;
  width: var(--d-screen-width);
  top: var(--d-screen-height);
  left: 0;
}

#main {
  position: fixed;
  width: var(--d-screen-width);
  height: var(--d-screen-height);
  box-shadow: 0 0 300px 300px #000;
  background-image: var(--url-map);
  background-position: var(--d-map-left) 0;
  background-size: var(--d-map-width) var(--d-map-height);
  background-repeat: no-repeat;
  overflow: hidden;
}
#main.notools #toolbox {
  display: none;
}
#main.notools .tooldetail {
  display: none;
}
#main.noclipboard #currentclip {
  display: none;
}
#main.showhelp .toolhelp {
  display: block;
}
#main.showhelp .helpbutton {
  filter: brightness(150%);
}
#main.wordguess #shiplist, #main.wordguess #shipinfobox {
  display: none;
}
#main.wordguess #wordguess {
  display: flex;
}
#main.wordguess #intelbox .description .alientext BUTTON.aliendecode {
  display: inline-block;
}
#main.wordguess.endgame #wordguess {
  opacity: 0;
  pointer-events: none;
}

.draggable-age {
  cursor: pointer;
  display: inline-block;
  padding: 2px 4px 2px 4px;
  background-color: rgba(0, 0, 0, 0.1333333333);
  border-radius: 4px;
}

.draggable-weapon {
  display: inline-block;
  padding: 2px 4px 2px 4px;
  border-radius: 4px;
  color: #fa2;
  background-color: rgba(255, 0, 0, 0.1333333333);
  font-family: "Main", Monospace;
  font-size: var(--fontsize-desc);
  white-space: nowrap;
  cursor: pointer;
}

.draggable-coord {
  color: #bbb;
  background-color: rgba(0, 0, 0, 0.2666666667);
  font-family: "Space", Monospace;
  font-size: var(--fontsize-desc);
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2666666667);
  border-radius: 4px;
}

.draggable-heading {
  color: #fea;
  background-color: rgba(0, 0, 0, 0.2666666667);
  display: inline-block;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2666666667);
  border-radius: 4px;
  font-family: "Space", Monospace;
  font-size: var(--fontsize-desc);
  white-space: nowrap;
  cursor: pointer;
}

.draggable-channel {
  color: #bbb;
  background-color: rgba(0, 0, 0, 0.2666666667);
  font-size: var(--fontsize-desc);
  font-family: "Space", Monospace;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.2666666667);
  border-radius: 4px;
}

.draggable-keyword {
  color: #9ee;
  font-family: "Main", Monospace;
  font-weight: bold;
  font-size: var(--fontsize-desc);
  white-space: nowrap;
  cursor: pointer;
}

.draggable-launchcode {
  color: #8f8;
  background-color: rgba(0, 170, 0, 0.2666666667);
  font-size: var(--fontsize-desc);
  font-family: "Space", Monospace;
  white-space: nowrap;
  cursor: pointer;
  display: inline-block;
  padding: 3px;
  border: 1px dashed rgba(0, 255, 0, 0.2666666667);
  border-radius: 4px;
}

.draggable-intel {
  color: #aaa;
  background-color: rgba(34, 34, 34, 0.4);
  font-size: var(--fontsize-fine);
  font-family: "Main", Monospace;
  cursor: pointer;
  display: inline-block;
  padding: 3px 10px 3px 10px;
  border: 1px solid #555;
}
.draggable-intel:hover {
  filter: brightness(150%);
}

.draggable-shipname {
  font-size: calc(var(--fontsize-desc) + 1px);
  font-family: "Main", Monospace;
  cursor: pointer;
  display: inline-block;
  padding: 3px 5px 3px 5px;
  border-radius: 4px;
  cursor: pointer;
}
.draggable-shipname.fleet {
  color: #aaf;
  border: 1px solid #44a;
  background-color: rgba(0, 0, 51, 0.7333333333);
}
.draggable-shipname.fleet:hover {
  color: #eef;
  background-color: rgba(0, 0, 255, 0.7333333333);
}
.draggable-shipname.alien {
  color: #faa;
  border: 1px solid #a44;
  background-color: rgba(51, 0, 0, 0.7333333333);
}
.draggable-shipname.alien:hover {
  color: #fee;
  background-color: rgba(136, 0, 0, 0.7333333333);
}

.draggable-shipclass {
  cursor: pointer;
  display: inline-block;
  padding: 1px 3px 1px 3px;
  border-radius: 4px;
  font-family: "Main", Monospace;
  font-size: var(--fontsize-desc);
}
.draggable-shipclass.fleet {
  color: #aaf;
  background-color: rgba(0, 0, 51, 0.7333333333);
}
.draggable-shipclass.fleet:hover {
  color: #eef;
  background-color: rgba(0, 0, 255, 0.7333333333);
}
.draggable-shipclass.alien {
  color: #faa;
  background-color: rgba(51, 0, 0, 0.7333333333);
}
.draggable-shipclass.alien:hover {
  color: #fee;
  background-color: rgba(136, 0, 0, 0.7333333333);
}

.draggable-electromagnetic {
  cursor: pointer;
  font-family: "Space", Monospace;
  font-size: var(--fontsize-desc);
  white-space: nowrap;
  display: inline-block;
  padding: 2px 4px 2px 4px;
  border: 1px solid rgba(255, 255, 255, 0.2666666667);
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.1333333333), rgba(0, 0, 0, 0.5333333333), rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0.4666666667), rgba(255, 255, 255, 0.2666666667), rgba(255, 255, 255, 0.1333333333));
  border-radius: 4px;
}

SPAN.toolname {
  font-family: "Doto", Monospace;
  font-weight: bold;
  font-size: 105%;
  color: #fcf;
}
SPAN.toolname.infotoolname {
  color: #cff;
}

SPAN.enginesignature {
  display: inline-block;
  width: var(--esig-width);
  height: var(--esig-height);
  border: 1px solid rgba(0, 0, 0, 0.6666666667);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  font-size: var(--fontsize-esig);
  font-family: "Main", Monospace;
  text-align: center;
  padding-top: var(--esig-tpad);
}
SPAN.enginesignature:hover {
  color: #fff;
  text-shadow: #000 0 0 3px;
}

#main.noesigs SPAN.enginesignature {
  opacity: 0;
  pointer-events: none;
}

SPAN.codenameglyph {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  vertical-align: middle;
  padding: 2px 8px 2px 12px;
  font-family: "Doto", Monospace;
  font-size: var(--fontsize-codenameglyph);
  font-weight: normal;
  color: #d04;
  background-color: #202;
  border-radius: calc(0.5 * var(--fontsize-codenameglyph));
  cursor: pointer;
}
SPAN.codenameglyph SPAN.letter.first {
  margin-left: 0px;
}
SPAN.codenameglyph SPAN.letter SPAN.element {
  filter: drop-shadow(0 0 3px #f00);
  margin-left: calc(-0.6 * var(--fontsize-codenameglyph));
}
SPAN.codenameglyph SPAN.letter SPAN.element.first {
  margin-left: 0px;
}
SPAN.codenameglyph.suffix {
  padding-left: 2px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  border-left: 1px dashed #d04;
}
SPAN.codenameglyph.prefix {
  padding-right: 1px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-right: 1px dashed #d04;
}

SPAN.tonnage {
  font-weight: bold;
  color: #cfc;
  cursor: pointer;
}

SPAN.energy {
  color: #f9a;
  cursor: pointer;
}

SPAN.power {
  color: #faf;
  cursor: pointer;
}

SPAN.residue {
  color: #fda;
  cursor: pointer;
  white-space: nowrap;
  font-weight: bold;
}
SPAN.residue SPAN.box {
  display: inline-block;
  position: relative;
  width: 1.8em;
  height: 1.8em;
  border: 0.1em solid #fda;
  border-radius: 0.2em;
  vertical-align: middle;
}
SPAN.residue SPAN.symbol {
  display: inline-block;
  position: relative;
  width: 1.8em;
  height: 1.8em;
  text-align: center;
  margin-left: -1.8em;
  margin-right: 0.25em;
}
SPAN.residue SPAN.label {
  font-weight: normal;
}
SPAN.residue.square SPAN.box {
  height: 1.65em;
  margin-top: -0.15em;
}
SPAN.residue.circle SPAN.box {
  border-radius: 1em;
}

SPAN.ciphertable {
  color: #ccf;
  font-weight: bold;
  font-family: "Doto", Monospace;
  white-space: nowrap;
}

IMG.tpx {
  z-index: 0;
  position: fixed;
  opacity: 0;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
}

INPUT {
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2666666667);
  color: #eee;
  background-color: rgba(0, 0, 0, 0.2666666667);
  font-family: "Space", Monospace;
  font-size: var(--fontsize-desc);
}
INPUT.coordinput {
  width: 18em;
}

.clickfield {
  padding: 2px 4px 2px 7px;
  border: 1px solid rgba(255, 255, 255, 0.2666666667);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 10em;
  height: var(--clickfield-height);
  color: #eee;
  background-color: rgba(0, 0, 0, 0.2666666667);
  font-family: "Space", Monospace;
  font-size: var(--fontsize-desc);
  cursor: pointer;
}
.clickfield.coordinput {
  min-width: 22em;
}
.clickfield.channelinput {
  min-width: 17em;
}
.clickfield.headinginput {
  min-width: 20em;
}
.clickfield.classinput {
  min-width: 14em;
}
.clickfield.classinput .draggable-shipclass {
  font-family: "Space", Monospace;
}
.clickfield.specinput {
  min-width: 16.5em;
}
.clickfield.specinput .empty {
  font-size: var(--fontsize-fine);
}
.clickfield.authinput {
  min-width: 15em;
}
.clickfield .empty {
  color: rgba(255, 255, 255, 0.5333333333);
  font-style: italic;
}
.clickfield BUTTON.clearbutton {
  font-size: var(--clickfield-icon);
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5333333333);
  background: 0;
  border: none;
  padding: 0;
  margin: 0;
}
.clickfield BUTTON.clearbutton:hover {
  color: rgba(255, 255, 255, 0.8);
}

.clicktextfield {
  display: flex;
}
.clicktextfield INPUT {
  padding: 2px 7px 2px 7px;
  border: 1px solid rgba(255, 255, 255, 0.2666666667);
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 10em;
  height: var(--clickfield-height);
  color: #eee;
  background-color: rgba(0, 0, 0, 0.2666666667);
  font-family: "Main", Monospace;
  font-size: var(--fontsize-desc);
}
.clicktextfield INPUT::placeholder {
  font-family: "Space", Monospace;
  font-style: italic;
}
.clicktextfield.topicinput INPUT {
  min-width: 15em;
}
.clicktextfield BUTTON.clearbutton, .clicktextfield BUTTON.pastebutton {
  font-size: var(--clickfield-icon);
  font-weight: normal;
  color: rgba(255, 255, 255, 0.5333333333);
  background: 0;
  border: none;
  margin-left: 4px;
}
.clicktextfield BUTTON.clearbutton:hover, .clicktextfield BUTTON.pastebutton:hover {
  color: rgba(255, 255, 255, 0.8);
}
.clicktextfield BUTTON.pastebutton {
  display: none;
}
.clicktextfield.empty BUTTON.clearbutton {
  display: none;
}
.clicktextfield.empty BUTTON.pastebutton {
  display: block;
}

SPAN.fact:hover {
  filter: brightness(120%);
}

.looky {
  animation: looky-pulse 0.8s linear;
}

.biglooky {
  animation: biglooky-pulse 1s linear;
}

.choosercontainer {
  position: fixed;
  z-index: 996;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.choosercontainer .chooseroverlay {
  position: fixed;
  z-index: 997;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.choosercontainer .chooserbox {
  position: fixed;
  z-index: 998;
  padding: 10px;
  overflow-y: scroll;
  color: #eee;
  background-color: rgba(34, 34, 34, 0.7333333333);
  border: 3px solid #666;
}
.choosercontainer .chooserbox .choice {
  font-size: 20px;
  font-weight: bold;
  padding: 8px 20px 8px 20px;
}
.choosercontainer .chooserbox .choice.current {
  color: #fda;
  background-color: rgba(255, 255, 255, 0.1333333333);
}
.choosercontainer .chooserbox .choice:hover {
  color: #fff;
  background-color: rgba(119, 119, 119, 0.7333333333);
}

#main.importer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  padding: 20px;
}
#main.importer TEXTAREA {
  flex-grow: 1;
  height: 100px;
}
#main.importer .buttonrow {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-start;
  column-gap: 10px;
}

DIV.sprite {
  image-rendering: pixelated;
}
DIV.sprite.sprites_74 {
  box-sizing: content-box;
  width: 150px;
  height: 74px;
  background-image: var(--url-sprites_74);
}
DIV.sprite.sprites_100 {
  box-sizing: content-box;
  width: 100px;
  height: 100px;
  background-image: var(--url-sprites_100);
}
DIV.sprite.sprites_150 {
  box-sizing: content-box;
  width: 150px;
  height: 150px;
  background-image: var(--url-sprites_150);
}

/*# sourceMappingURL=index.css.map */
