.tooldetail .toolframe {
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

#toolbox {
  position: fixed;
  z-index: 400;
  top: var(--d-toolbox-top);
  right: var(--d-toolbox-right);
  width: var(--d-toolbox-width);
  height: var(--d-toolbox-height);
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  row-gap: 5px;
  overflow: hidden;
  color: #a4a;
}
#toolbox .tool {
  width: var(--d-toolbox-width);
  height: var(--d-toolbutton-height);
  text-align: center;
  line-height: var(--d-toolbutton-height);
  font-size: var(--fontsize-toolbutton);
  font-family: "Doto", Monospace;
  font-weight: bold;
  background-color: rgba(136, 0, 136, 0.6666666667);
  border: 1px solid #707;
  cursor: pointer;
}
#toolbox .tool.introhidden {
  display: none;
}
#toolbox .tool.selected, #toolbox .tool:hover {
  color: #f9f;
  background-color: rgba(153, 0, 153, 0.8666666667);
}
#toolbox .tool.running {
  animation: tool-running-pulse 2s linear infinite;
}
#toolbox .tool.running .btnprogressbar {
  display: block;
}
#toolbox .tool.pending {
  animation: tool-running-pulse 2s linear infinite;
}
#toolbox .tool.useme {
  animation-duration: 3s !important;
  animation: unused-tool-pulse 3s linear infinite;
}
#toolbox .tool.infotool {
  color: #4aa;
  background-color: rgba(0, 136, 136, 0.6666666667);
  border: 1px solid #077;
}
#toolbox .tool.infotool.first {
  margin-top: var(--d-gutter1);
}
#toolbox .tool.infotool.selected, #toolbox .tool.infotool:hover {
  color: #9ff;
  background-color: rgba(0, 153, 153, 0.8666666667);
}
#toolbox .tool.infotool.useme {
  animation: unused-infotool-pulse 3s linear infinite;
}
#toolbox .tool .btnprogressbar {
  display: none;
  position: absolute;
  z-index: 410;
  width: 100%;
  height: 0;
  margin-top: -5px;
}
#toolbox .tool .btnprogressbar .btnprogressbarmover {
  display: flex;
  height: 2px;
  background-color: #e6e;
  animation: tool-progress 1s linear;
}
#toolbox .tool.hasdot {
  text-align: left;
  padding-left: 7px;
}
#toolbox .tool.hasdot .btnprogressbar {
  margin-top: -5px;
  margin-left: -6px;
}
#toolbox .tool.hasdot#telescopebtn .colordot {
  background-color: #66f;
}
#toolbox .tool.hasdot#commsbtn .colordot {
  background-color: #fe9;
}
#toolbox .tool.hasdot#headingbtn .colordot {
  background-color: #999;
}
#toolbox .tool.hasdot#weaponsbtn .colordot {
  background-color: #f84;
}
#toolbox .tool.hasdot#signaturebtn .colordot {
  background: linear-gradient(70deg, #fa0, #ff0, #f00, #ff0, #fa0);
}
#toolbox .tool.hasdot#probebtn .colordot {
  background-color: #d4d;
}
#toolbox .tool.hasdot#proximitybtn .colordot {
  background-color: #fff;
}
#toolbox .tool .colordot {
  position: absolute;
  z-index: 415;
  width: var(--toolbox-pipsize);
  height: var(--toolbox-pipsize);
  margin-top: calc((var(--d-toolbutton-height) + var(--toolbox-pipsize)) * -0.5);
  margin-left: calc(var(--d-toolbox-width) - 7px - var(--toolbox-pipsize) - 9px);
  border-radius: calc(var(--toolbox-pipsize) / 2);
}

.tooldetail {
  position: fixed;
  z-index: 430;
  top: var(--d-tooldetail-top);
  right: var(--d-tooldetail-right);
  width: var(--d-tooldetail-width);
  max-height: var(--d-tooldetail-height);
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  pointer-events: none;
  animation: fade-in 0.2s linear;
}
.tooldetail .toolframe {
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  min-height: var(--d-tooldetail-minheight);
  max-height: var(--d-tooldetail-height);
  font-size: var(--fontsize-norm);
  color: #a4a;
  background-color: rgba(68, 0, 68, 0.6666666667);
  box-shadow: 0 0 15px #a4a;
  border: 3px solid #707;
  padding: var(--d-gutter1);
}
.tooldetail .instructionrow {
  justify-content: space-between;
  column-gap: var(--d-gutter1);
}
.tooldetail .instructionrow BUTTON {
  flex-shrink: 0;
  font-size: var(--fontsize-desc);
}
.tooldetail.idle .minigameitem {
  display: none;
}
.tooldetail.minigame {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  animation: tool-running-pulse 2s linear infinite;
}
.tooldetail.minigame .toolframe {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  background-color: #008;
}
.tooldetail.minigame .titlerow {
  display: none;
}
.tooldetail.minigame.idle .minigameitem {
  display: flex;
}
.tooldetail.minigame .idleitem {
  display: none;
}
.tooldetail.running .minigameitem {
  display: none;
}
.tooldetail.pending .minigameitem {
  display: none;
}
.tooldetail .titlerow {
  flex-shrink: 0;
  align-self: stretch;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #707;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.tooldetail .titlerow .toolicon {
  flex-shrink: 0;
  margin-right: calc(var(--d-toolicon) * 0.3);
  image-rendering: auto;
}
.tooldetail .titlerow .title {
  flex-grow: 1;
  color: rgba(255, 255, 255, 0.8666666667);
  font-family: "Space", Monospace;
  font-size: var(--fontsize-title);
  font-weight: bold;
}
.tooldetail .titlerow BUTTON.closex {
  flex-shrink: 0;
  align-self: flex-start;
  margin-left: calc(var(--d-toolicon) * 0.3);
  color: #a4a;
}
.tooldetail .status {
  color: #e6e;
  font-size: var(--fontsize-desc);
}
.tooldetail .toolhelp {
  display: none;
  margin-top: 10px;
  font-size: var(--fontsize-fine);
  font-style: italic;
}
.tooldetail .controls {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  align-items: flex-start;
}
.tooldetail .controls .label {
  margin-top: 10px;
  color: #e6e;
  font-weight: bold;
}
.tooldetail .controls .buttonrow {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.tooldetail .controls BUTTON:not(.clearbutton):not(.pastebutton) {
  margin-top: 10px;
  font-size: var(--fontsize-norm);
  padding: 4px 15px 4px 15px;
  font-family: "Space", Monospace;
  font-weight: bold;
  color: #e6e;
  border: 2px solid #e6e;
  background-color: rgba(153, 0, 153, 0.8666666667);
  cursor: pointer;
}
.tooldetail.hidden, .tooldetail.introhidden {
  display: none;
}
.tooldetail.idle .runitem {
  display: none;
}
.tooldetail.idle .pendingitem {
  display: none;
}
.tooldetail.running {
  animation: tool-running-pulse 2s linear infinite;
}
.tooldetail.running .idleitem {
  display: none;
}
.tooldetail.running .pendingitem {
  display: none;
}
.tooldetail.pending {
  animation: tool-running-pulse 2s linear infinite;
}
.tooldetail.pending .runitem {
  display: none;
}
.tooldetail.pending .idleitem {
  display: none;
}

#weapons.tooldetail .toolframe {
  width: var(--d-dstrtool-width);
}

#signature.tooldetail .toolframe {
  width: var(--d-esigtool-width);
}

#comms.tooldetail .toolframe {
  width: var(--d-commtool-width);
}
#comms.tooldetail .subpanel {
  align-self: stretch;
  display: flex;
  justify-content: space-between;
}
#comms.tooldetail .subpanel .left {
  flex-grow: 1;
  margin-right: 40px;
}
#comms.tooldetail .subpanel .left, #comms.tooldetail .subpanel .right {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
#comms.tooldetail .label.hidden {
  display: none;
}
#comms.tooldetail .wordbank {
  font-size: var(--fontsize-norm);
  min-height: 150px;
  max-height: 470px;
  overflow-y: scroll;
}
#comms.tooldetail .wordbank.empty {
  font-style: italic;
}
#comms.tooldetail .wordbank.hidden {
  display: none;
}
#comms.tooldetail BUTTON.start {
  align-self: flex-start;
}
#comms.tooldetail BUTTON.helpbutton {
  align-self: flex-end;
}
#comms.tooldetail INPUT.channelinput {
  width: 10em;
}
#comms.tooldetail .pendingcount {
  margin-top: 10px;
  color: #fff;
  white-space: nowrap;
  animation: comms-pending-pulse 1s linear infinite;
}
#comms.tooldetail .pendingcount.hidden {
  display: none;
}
#comms.tooldetail.pulsepaste .gicon.pastebutton {
  animation: clipboard-clickme-pulse 1s linear infinite;
}

#find.tooldetail .toolframe {
  min-width: auto;
  max-width: none;
  max-height: none;
  height: var(--d-findtool-height);
}
#find.tooldetail .findchoices {
  display: flex;
  flex-direction: column;
}
#find.tooldetail .controls {
  display: flex;
  flex-direction: row;
  column-gap: 10px;
  justify-content: stretch;
  align-items: stretch;
  overflow: hidden;
}
#find.tooldetail .controls .leftpanel, #find.tooldetail .controls .rightpanel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  row-gap: 10px;
}
#find.tooldetail .controls .placelist {
  min-width: 14em;
  flex-grow: 1;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  overflow: scroll;
  background-color: rgba(0, 0, 0, 0.5333333333);
}
#find.tooldetail .controls .placelist .placerow {
  padding: var(--d-gutter1) var(--d-gutter1) 0 var(--d-gutter1);
  font-size: var(--fontsize-norm);
  font-weight: bold;
  cursor: pointer;
}
#find.tooldetail .controls .placelist .placerow:hover {
  filter: brightness(150%);
}
#find.tooldetail .controls .placelist .reportrow {
  padding: 0 var(--d-gutter1) 0 calc(var(--d-gutter1) + var(--d-gutter2));
  font-size: var(--fontsize-desc);
  cursor: pointer;
}
#find.tooldetail .controls .placelist .reportrow:hover {
  filter: brightness(150%);
}
#find.tooldetail .controls BUTTON:not(.clearbutton):not(.pastebutton) {
  margin-top: 6px;
  margin-right: 4px;
  padding: 2px 5px 2px 5px;
  font-size: var(--fontsize-desc);
  line-height: var(--fontsize-desc);
  font-weight: normal;
  border: 1px solid #6ee;
}
#find.tooldetail .controls BUTTON:not(.clearbutton):not(.pastebutton).selected {
  color: #fff;
  background-color: #499;
  border-color: #fff;
}
#find.tooldetail INPUT {
  width: 15em;
}

.progressbar {
  width: 100%;
  background-color: rgba(153, 0, 153, 0.8666666667);
  margin-bottom: 10px;
}
.progressbar .progressbarmover {
  height: 4px;
  background-color: #e6e;
  animation: tool-progress 1s linear;
}

.tooldetail.infotool .toolframe {
  color: #4aa;
  background-color: rgba(0, 68, 68, 0.6666666667);
  box-shadow: 0 0 15px #4aa;
  border-color: #077;
}
.tooldetail.infotool .titlerow {
  border-color: #077;
}
.tooldetail.infotool .titlerow .closex {
  padding: 0;
  color: #4aa;
}
.tooldetail.infotool .status {
  color: #6ee;
}
.tooldetail.infotool .controls .label {
  color: #6ee;
}
.tooldetail.infotool .controls BUTTON:not(.clearbutton):not(.pastebutton) {
  color: #6ee;
  border-color: #6ee;
  background-color: rgba(0, 153, 153, 0.8666666667);
}
.tooldetail.infotool .controls BUTTON:not(.clearbutton):not(.pastebutton).selected {
  color: #fff;
  background-color: #499;
  border-color: #fff;
}

#toolbox #findbtn.running {
  animation: marked-pulse 1s linear infinite;
}

#logbook.tooldetail .loglist {
  overflow-x: hidden;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.5333333333);
  padding: 0;
}
#logbook.tooldetail .loglist .logbox {
  font-size: var(--fontsize-desc);
  display: flex;
  flex-direction: column;
  padding: 15px 15px 40px 15px;
}
#logbook.tooldetail .loglist .logbox.marked {
  animation: logbook-pulse 3s linear infinite;
  background-color: rgba(255, 255, 0, 0.0666666667);
}
#logbook.tooldetail .loglist .logbox.hidden {
  display: none;
}
#logbook.tooldetail .loglist .logtitle {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-bottom: 1px solid rgba(0, 153, 153, 0.3333333333);
  padding-bottom: 5px;
  margin-bottom: 5px;
}
#logbook.tooldetail .loglist .logtitle .logtitletext {
  font-size: calc(var(--fontsize-norm) * 1.2);
  font-weight: bold;
  cursor: pointer;
}
#logbook.tooldetail .loglist .logtitle .logtitletext:hover {
  filter: brightness(150%);
}
#logbook.tooldetail .loglist .logtitle BUTTON {
  white-space: nowrap;
  font-size: var(--fontsize-fine);
  font-weight: normal;
  border-width: 1px;
}
#logbook.tooldetail .loglist .logentry .titlerow {
  display: none;
}
#logbook.tooldetail .loglist .logentry .buttonrow {
  display: none;
}
#logbook.tooldetail .loglist .logentry LI {
  margin-left: -20px;
  margin-bottom: 3px;
}
#logbook.tooldetail .loglist .logentry .goalstatus.done {
  color: rgba(102, 255, 119, 0.7333333333);
}
#logbook.tooldetail .loglist .logentry .goalhint {
  border-top: 1px solid rgba(255, 255, 255, 0.2666666667);
  padding-top: 5px;
  padding-bottom: 20px;
}
#logbook.tooldetail .loglist .logentry .alientext .decodedword {
  font-weight: bold;
}
#logbook.tooldetail .loglist .logentry .alientext .alienword {
  font-family: "Alien", Serif;
  font-style: italic;
  font-weight: bold;
}
#logbook.tooldetail .loglist .logentry BUTTON.aliendecode {
  display: none;
}

#notebook .notepanel {
  margin-top: 0;
}

BODY.phone2 #find.tooldetail .controls .findchoices {
  flex-direction: row;
  flex-wrap: wrap;
}

BODY.phone2 #signature.tooldetail .titlerow .toolicon {
  align-self: flex-start;
  margin-top: 13px;
}

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