@font-face {
  font-family: 'TLI';
  src: url("tl_ptn.ttf");
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}
:root {
  --color-dim: #8f8f8f;
  --color-hover: #ebc850;
  --color-secondary: #5382a1;
  --color-foulborn: #ff179d;
  --color-note: #a75bdd;
  --color-standout: #d39258;
  --color-corroded: #645bff;
}
html,
body {
  background-color: #212121;
}
body {
  color: #d7d7d7;
  margin: 0;
  padding: 6em 0.5em 0.5em 0.5em;
  font-family: "TLI", monospace;
}
a,
.link {
  color: #0ff;
  cursor: pointer;
}
hr {
  border: 0;
  height: 1px;
  background: -webkit-linear-gradient(left, rgba(0,0,0,0), #aaa, rgba(0,0,0,0));
  background: -moz-linear-gradient(left, rgba(0,0,0,0), #aaa, rgba(0,0,0,0));
  background: -ms-linear-gradient(left, rgba(0,0,0,0), #aaa, rgba(0,0,0,0));
  background: -o-linear-gradient(left, rgba(0,0,0,0), #aaa, rgba(0,0,0,0));
  background: linear-gradient(left, rgba(0,0,0,0), #aaa, rgba(0,0,0,0));
}
hr.short {
  width: 50%;
}
select {
  font-family: monospace;
  background-color: transparent;
  color: #fff;
  border: 0;
  cursor: pointer;
}
select:focus {
  outline: none;
}
select optgroup {
  color: #000;
}
select option {
  color: #000;
}
.hidden,
.hiddenNoMatches {
  display: none;
}
fieldset {
  display: inline-block;
  -webkit-border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  border-radius: 0.5em;
  border: 2px solid #6d6e6d;
  margin: 0;
}
fieldset legend {
  font-weight: bold;
}
.val {
  color: #abff7f;
}
.corroded {
  color: var(--color-corroded);
  text-shadow: 0 1px 2px rgba(0,0,0,0.9), 0 -1px 2px rgba(0,0,0,0.9), -1px 0 2px rgba(0,0,0,0.9), 1px 0 2px rgba(0,0,0,0.9);
}
.strike {
  text-decoration: line-through;
  text-decoration-color: #000;
  opacity: 0.5;
}
#note {
  top: 4em;
  left: 2em;
  display: inline-block;
  position: absolute;
}
#note .currentSeason {
  color: #ef4cc2;
}
#note .rippedOn {
  color: #bd7b13;
}
#legacyNote {
  margin-left: 2em;
  position: absolute;
  left: 15em;
  top: 1em;
  font-size: 0.9em;
  opacity: 0.3;
}
.multiVal {
  background-color: #575557;
  color: #bebebe;
  -webkit-border-radius: 0 0.5em 0 0.5em;
  -moz-border-radius: 0 0.5em 0 0.5em;
  border-radius: 0 0.5em 0 0.5em;
  margin-right: 0.5em;
  margin-bottom: 0.5em;
  display: inline-block;
  padding: 0.25em 0.5em;
  white-space: nowrap;
}
/*.highlight
	background linear-gradient(90deg, #ff5f8a, #ffd36e, #7dffb3, #70a9ff, #d78cff, #ff5f8a)
	background-size 50% 100%
	background-repeat repeat
	background-clip text
	color transparent !important
	animation rainbowShift 3s linear infinite*/
.highlight {
  color: #37cdb3 !important;
}
.tooltip {
  color: var(--color-hover);
  position: relative;
  z-index: 90;
  display: inline-block;
}
.tooltip[data-title]:hover {
  cursor: default;
  text-decoration: underline;
  z-index: 91;
}
.tooltipBox {
  position: absolute;
  -webkit-border-radius: 0 0.75em 0 0.75em;
  -moz-border-radius: 0 0.75em 0 0.75em;
  border-radius: 0 0.75em 0 0.75em;
  -webkit-box-shadow: 0 0 0.5em #000;
  -moz-box-shadow: 0 0 0.5em #000;
  box-shadow: 0 0 0.5em #000;
  z-index: 92;
  padding: 0.5em;
  background: linear-gradient(to bottom, #262626 0%, #3e3e3e 90%);
  color: #c9c9c9;
  text-shadow: none;
  max-width: 30em;
}
#searchBox {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
}
#searchBox input[type="text"] {
  width: 20em;
  font-family: monospace;
  border: 0px;
  background: none;
  color: #fff;
  font-size: 1.25em;
  height: 1.4em;
  outline: 0;
}
#searchBox input[type="text"]:focus {
  outline: 0;
}
#searchBox .includeTooltipsBox {
  position: absolute;
  left: 0.5em;
  bottom: -1.5em;
  font-size: 0.9em;
  cursor: pointer;
}
#searchBox .includeTooltipsBox input {
  vertical-align: -2px;
  cursor: pointer;
}
#whereCan {
  position: absolute;
  top: 1.5em;
  right: 18.5em;
  font-size: 1.25em;
}
#filtersToggle {
  position: absolute;
  top: 0.25em;
  left: 0.25em;
  font-size: 2em;
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
}
#filtersToggle:before {
  content: "▶ ";
}
#filtersToggle.opened:before {
  content: "▼ ";
}
#filtersBox {
  position: absolute;
  top: 3em;
  left: 0.5em;
  -webkit-border-radius: 0.5em;
  -moz-border-radius: 0.5em;
  border-radius: 0.5em;
  border: 4px solid #6d6e6d;
  z-index: 99;
  background-color: #212121;
  padding: 0.5em;
  -webkit-box-shadow: 0.25em 0.25em 0.5em #000;
  -moz-box-shadow: 0.25em 0.25em 0.5em #000;
  box-shadow: 0.25em 0.25em 0.5em #000;
}
#filtersBox .filterRow label {
  cursor: pointer;
  font-size: 1.5em;
  display: inline-block;
  width: 8.25em;
  white-space: nowrap;
  text-align: right;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
}
#filtersBox .filterRow label input[type="checkbox"] {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  top: -0.05em;
  position: relative;
  margin-right: 0.4em;
}
#filtersBox .filterRow.hideFilters fieldset {
  display: none;
}
#filtersBox .filterRow fieldset {
  margin-left: 1.5em;
}
#filtersBox .filterRow fieldset:nth-child(1) {
  margin-left: 0;
}
#filtersBox .filterRow fieldset select {
  font-size: 1.25em;
  max-width: 10em;
}
table {
  border-collapse: collapse;
  margin-bottom: 3em;
}
table thead tr:first-child th {
  -webkit-border-radius: 0.75em 0.75em 0 0;
  -moz-border-radius: 0.75em 0.75em 0 0;
  border-radius: 0.75em 0.75em 0 0;
  background-color: #33497e;
  position: relative;
}
table thead tr:first-child th .resultCount {
  position: absolute;
  right: 1em;
  font-size: 0.7em;
  opacity: 0.5;
  margin-top: 0.2em;
}
table thead tr th {
  padding: 0 0.5em;
  background-color: #4679dc;
  font-size: 1.5em;
  white-space: nowrap;
}
table tbody tr.contrast {
  background-color: #383838;
}
table tbody tr.excludedByFilter,
table tbody tr.excludedBySearch {
  display: none;
}
table tbody tr td {
  padding: 0.25em 0.5em;
}
table tbody tr td:first-child {
  border-left: 2px solid #383838;
}
table tbody tr td:last-child {
  border-right: 2px solid #383838;
}
table tbody tr .name {
  font-size: 1.25em;
  white-space: nowrap;
}
table tbody tr.thing td ul {
  margin: 0 0 0 0.5em;
  padding: 0;
}
table tbody tr.thing td ul li::marker {
  color: #777;
}
table tbody tr.thing td ul ul {
  margin-left: 1em;
}
table tbody tr.thing td hr {
  margin: 0;
}
table tbody tr.thing td .dim {
  color: var(--color-dim);
}
table tbody tr.thing td .secondary {
  color: var(--color-secondary);
}
table tbody tr.thing td .note {
  color: var(--color-note);
}
table tbody tr.thing td .standout {
  color: var(--color-standout);
}
#blend tbody tr td:nth-child(1),
#blend tbody tr td:nth-child(2) {
  white-space: nowrap;
}
#destiny tbody tr td:nth-child(1) {
  white-space: nowrap;
}
#etherealPrism tbody tr td:nth-child(1),
#etherealPrism tbody tr td:nth-child(2) {
  white-space: nowrap;
}
#talent tbody tr td:nth-child(1),
#talent tbody tr td:nth-child(2),
#talent tbody tr td:nth-child(3) {
  white-space: nowrap;
}
#heroMemory tbody tr td:nth-child(1),
#heroMemory tbody tr td:nth-child(2) {
  white-space: nowrap;
}
#gear tbody tr td:nth-child(1),
#gear tbody tr td:nth-child(2),
#gear tbody tr td:nth-child(3),
#gear tbody tr td:nth-child(4) {
  white-space: nowrap;
}
#legendary tbody tr td:nth-child(1),
#legendary tbody tr td:nth-child(2) {
  white-space: nowrap;
}
#legendary tbody tr td:nth-child(3) {
  color: #888;
}
#legendary tbody tr td:nth-child(3) .name {
  color: #d7d7d7;
}
#legendary tbody tr td:nth-child(3) .graftable {
  color: #ff7900;
}
#skill tbody tr td:nth-child(1) {
  white-space: nowrap;
}
@-webkit-keyframes rainbowShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@-moz-keyframes rainbowShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@-o-keyframes rainbowShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
@keyframes rainbowShift {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
/*# sourceMappingURL=torchCodex.css.map */