/* source/index.less */
* {
  margin: 0em;
  padding: 0em;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
#mount {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  margin: auto;
  position: fixed;
  overflow: hidden;
}
@layer scroll {
  * {
    scrollbar-gutter: stable;
  }
  *::-webkit-scrollbar {
    width: 0px;
  }
  *::-webkit-scrollbar-track {
    background: transparent;
  }
  *::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
  }
  *::-webkit-scrollbar-button {
    display: none;
  }
}
@font-face {
  font-family: GermaniaOne;
  src: url("./GermaniaOne-Regular-S6B5L3D3.ttf") format("truetype");
}
@font-face {
  font-family: "button";
  src: url("./GermaniaOne-Regular-S6B5L3D3.ttf") format("truetype");
}
@font-face {
  font-family: "base";
  src: url("./GermaniaOne-Regular-S6B5L3D3.ttf") format("truetype");
}
@font-face {
  font-family: AlegreyaSans;
  src: url("./AlegreyaSans-Regular-SH637UHG.ttf") format("truetype");
}
@font-face {
  font-family: ProgressClocks;
  src: url("./progress-clocks-ZTPE4UUY.woff") format("woff");
}
@font-face {
  font-family: Acme;
  src: url("./Acme-Regular-RLZW4UX6.ttf") format("truetype");
}
@font-face {
  font-family: Aclonica;
  src: url("./Aclonica-Regular-UPTTLAKY.ttf") format("truetype");
}
@font-face {
  font-family: GrenzeGotisch;
  src: url("./GrenzeGotisch-VariableFont_wght-IUSYLSJ3.ttf") format("truetype");
}
@font-face {
  font-family: Grenze;
  src: url("./Grenze-VariableFont_wght-VDOSSC7W.ttf") format("truetype");
}
:root {
  --header-font: GermaniaOne;
  --base-font: AlegreyaSans;
  --editor-font: AlegreyaSans;
}
[gamekey=ember] {
  --fancy-font: GrenzeGotisch;
  --header-font: Grenze;
  --base-font: Acme;
  --editor-font: AlegreyaSans;
}
.material-symbols-rounded {
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* source/data/games/ember/views/Dice.less */
.Dice {
  width: 1em;
  height: 1em;
  margin: auto;
  position: relative;
}
.Dice .ItemBreakdown {
  left: -6em;
  right: -6em;
  z-index: 110;
  position: absolute;
  display: none;
}
.Dice .Label {
  left: -1.5em;
  right: -1.5em;
  z-index: 110;
  text-align: center;
  position: absolute;
  opacity: 0;
  transform: translateY(0.1em);
  transition-duration: 0.1s;
  transition-property: transform, opacity;
  pointer-events: none;
}
.Dice .Label .Title {
  font-size: 1rem;
  line-height: 1rem;
  font-family: var(--base-font);
}
.Dice .Label span {
  padding: 0em 0.2em;
  background-color: #111111;
}
.Dice[anchored=bottom] .Label {
  top: 1.25em;
}
.Dice[anchored=bottom] .ItemBreakdown {
  top: 1.25em;
}
.Dice[anchored=top] .Label {
  bottom: 1.25em;
}
.Dice[anchored=top] .ItemBreakdown {
  bottom: 1.25em;
}
.Dice[index="0"] {
  grid-area: a;
}
.Dice[index="1"] {
  grid-area: b;
}
.Dice[index="2"] {
  grid-area: c;
}
.Dice[index="3"] {
  grid-area: d;
}
.Dice[index="4"] {
  grid-area: e;
}
.Dice[index="5"] {
  grid-area: f;
}
.Dice[isPressed] .ItemBreakdown {
  display: block;
}
.Dice[isPressed] .Label {
  display: none;
}
.Dice:not([isPressed]):hover .Label {
  opacity: 1;
  transform: translateY(0em);
}
.Dice[isLabeled] .Label {
  opacity: 1;
  transform: translateY(0em);
}
.Dice[isAnimated] .DiceFace {
  animation-name: roll;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
  transform-origin: center;
}
.Dice[isAnimated][isLabeled] .Label {
  opacity: 0;
  animation-name: fade-in;
  animation-delay: 1s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
.Dice[isHighlighted] .DiceFace {
  transform: scale(1.3);
  z-index: 100;
  outline-color: #111111;
  outline-width: 0.1em;
  outline-style: solid;
}
.Dice[isAnimated][isHighlighted] .DiceFace {
  animation-name: roll-and-scale-up;
}
.Dice.Null .DiceFace {
  background-color: transparent;
  border-style: dashed !important;
  box-shadow: none;
}
@keyframes roll {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(1080deg);
  }
}
@keyframes roll-and-scale-up {
  0% {
    transform: scale(1.1) rotate(0deg);
  }
  100% {
    transform: scale(1.3) rotate(1080deg);
  }
}

/* source/data/games/ember/views/DiceFace.less */
.DiceFace {
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: auto;
  border-style: solid;
  border-width: 0.1em;
  border-radius: 0.1em;
  border-color: #111111;
  padding: 0.1em;
  box-shadow:
    inset 0 0.05em white,
    inset 0 -0.05em #bbb,
    inset 0.05em 0 #d7d7d7,
    inset -0.05em 0 #d7d7d7;
  border-radius: 10%;
  transform-origin: center;
  background-color: #e7e7e7;
  font-family: var(--base-font);
}
.DiceFace[element=fire] {
  background-color: #d54b33;
}
.DiceFace[element=earth] {
  background-color: #62C370;
}
.DiceFace[element=water] {
  background-color: #639bff;
}
.DiceFace .Icon {
  width: 95%;
  height: 95%;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  image-rendering: smooth;
}
.DiceFace .Icon path {
  width: 100%;
  height: 100%;
}
.DiceFace .SmallNumeral {
  font-size: 0.5em;
  line-height: 1em;
  position: absolute;
  bottom: 0.05em;
  right: 0.2em;
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
}
.DiceFace .Pips {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-areas: "a . c" "e g f" "d . b";
  grid-template-rows: repeat(3, 1fr);
  grid-template-columns: repeat(3, 1fr);
}
.DiceFace .Pips .Pip {
  width: 0.15em;
  height: 0.15em;
  display: block;
  align-self: center;
  justify-self: center;
  border-radius: 100%;
  background-color: black;
}
.DiceFace .Pips .Pip:nth-child(1) {
  grid-area: a;
}
.DiceFace .Pips .Pip:nth-child(2) {
  grid-area: b;
}
.DiceFace .Pips .Pip:nth-child(3) {
  grid-area: c;
}
.DiceFace .Pips .Pip:nth-child(4) {
  grid-area: d;
}
.DiceFace .Pips .Pip:nth-child(5) {
  grid-area: e;
}
.DiceFace .Pips .Pip:nth-child(6) {
  grid-area: f;
}
.DiceFace .Pips .Pip:nth-child(odd):last-child {
  grid-area: g;
}

/* source/data/games/ember/views/ItemBreakdown.less */
.ItemBreakdown,
.PassiveBreakdown {
  left: -6em;
  right: -6em;
  z-index: 110;
  position: absolute;
}
.ItemBreakdown .Contents,
.PassiveBreakdown .Contents {
  width: 16em;
  margin: auto;
  font-size: 1.25rem;
  position: relative;
  border-style: solid;
  border-width: 0.3em;
  border-radius: 0.25em;
  border-color: #111111;
  background-color: #e7e7e7;
  color: #111111;
  font-family: var(--base-font);
  overflow: hidden;
  pointer-events: none;
}
.ItemBreakdown .Contents[isSmall],
.PassiveBreakdown .Contents[isSmall] {
  width: 13em;
}
.ItemBreakdown .Contents .Icon,
.PassiveBreakdown .Contents .Icon {
  top: 0.4em;
  right: 0.4em;
  width: 3em;
  height: 3em;
  position: absolute;
  opacity: 0.3;
  mix-blend-mode: multiply;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.ItemBreakdown .Contents .Summary,
.PassiveBreakdown .Contents .Summary {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 0.809em;
  padding-right: 0.809em;
}
.ItemBreakdown .Contents .Summary .Title,
.PassiveBreakdown .Contents .Summary .Title {
  font-size: 1.4em;
  line-height: 1em;
  font-weight: bold;
  text-decoration: underline;
  font-family: var(--header-font);
  margin-bottom: 0.2em;
}
.ItemBreakdown .Contents .KeywordDefinition,
.PassiveBreakdown .Contents .KeywordDefinition {
  opacity: 0.5;
  mix-blend-mode: multiply;
  font-style: italic;
  padding-left: 0.809em;
  padding-right: 0.809em;
  padding-bottom: 0.5em;
  display: none;
}
.ItemBreakdown .Contents .KeywordDefinition[hasKeyword],
.PassiveBreakdown .Contents .KeywordDefinition[hasKeyword] {
  display: block;
}
.ItemBreakdown .Contents .KeywordDefinition .Text,
.PassiveBreakdown .Contents .KeywordDefinition .Text {
  font-size: 0.75em;
}
.ItemBreakdown .Contents .PowerCalculation,
.PassiveBreakdown .Contents .PowerCalculation {
  padding-left: 2em;
  display: none;
}
.ItemBreakdown .Contents .PowerCalculation .Powerboost,
.PassiveBreakdown .Contents .PowerCalculation .Powerboost {
  font-size: 0.75em;
}
.ItemBreakdown .Contents .PowerCalculation[isRendered],
.PassiveBreakdown .Contents .PowerCalculation[isRendered] {
  display: block;
}
.ItemBreakdown .Contents .Flavor,
.PassiveBreakdown .Contents .Flavor {
  opacity: 0.5;
  mix-blend-mode: multiply;
  font-style: italic;
  padding-left: 0.809em;
  padding-right: 0.809em;
  padding-bottom: 0.5em;
  display: none;
}
.ItemBreakdown .Contents .Flavor[isRendered],
.PassiveBreakdown .Contents .Flavor[isRendered] {
  display: block;
}
.ItemBreakdown .Contents .Flavor .Text,
.PassiveBreakdown .Contents .Flavor .Text {
  font-size: 0.5em;
}
.ItemBreakdown .Contents .Elements,
.PassiveBreakdown .Contents .Elements {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 0.809em;
  padding-right: 0.809em;
  display: none;
}
.ItemBreakdown .Contents .Elements[isRendered],
.PassiveBreakdown .Contents .Elements[isRendered] {
  display: block;
}
.ItemBreakdown .Contents .Elements[element=fire],
.PassiveBreakdown .Contents .Elements[element=fire] {
  background:
    linear-gradient(
      180deg,
      #e7e7e7 0%,
      #d54b33 100%);
}
.ItemBreakdown .Contents .Elements[element=earth],
.PassiveBreakdown .Contents .Elements[element=earth] {
  background:
    linear-gradient(
      180deg,
      #e7e7e7 0%,
      #62C370 100%);
}
.ItemBreakdown .Contents .Elements[element=water],
.PassiveBreakdown .Contents .Elements[element=water] {
  background:
    linear-gradient(
      180deg,
      #e7e7e7 0%,
      #639bff 100%);
}
.ItemBreakdown .Contents .Elements .Effectiveness,
.PassiveBreakdown .Contents .Elements .Effectiveness,
.ItemBreakdown .Contents .Elements .Ineffectiveness,
.PassiveBreakdown .Contents .Elements .Ineffectiveness {
  font-size: 0.75em;
}
.ItemBreakdown .Contents .Keyword,
.PassiveBreakdown .Contents .Keyword {
  font-weight: bold;
  position: relative;
}
.ItemBreakdown .Contents .Keyword[link]::after,
.PassiveBreakdown .Contents .Keyword[link]::after {
  content: "";
  width: 95%;
  height: 1px;
  left: 0em;
  right: 0em;
  bottom: 0em;
  margin: auto;
  position: absolute;
  border-bottom-width: 0.15em;
  border-bottom-style: dotted;
  border-bottom-color: #111111;
}
.ItemBreakdown .Contents .fire,
.PassiveBreakdown .Contents .fire,
.ItemBreakdown .Contents [element=fire],
.PassiveBreakdown .Contents [element=fire] {
  color: #732e22;
}
.ItemBreakdown .Contents .fire[link]::after,
.PassiveBreakdown .Contents .fire[link]::after,
.ItemBreakdown .Contents [element=fire][link]::after,
.PassiveBreakdown .Contents [element=fire][link]::after {
  border-bottom-color: #732e22;
}
.ItemBreakdown .Contents .earth,
.PassiveBreakdown .Contents .earth,
.ItemBreakdown .Contents [element=earth],
.PassiveBreakdown .Contents [element=earth] {
  color: #3a6a41;
}
.ItemBreakdown .Contents .earth[link]::after,
.PassiveBreakdown .Contents .earth[link]::after,
.ItemBreakdown .Contents [element=earth][link]::after,
.PassiveBreakdown .Contents [element=earth][link]::after {
  border-bottom-color: #3a6a41;
}
.ItemBreakdown .Contents .water,
.PassiveBreakdown .Contents .water,
.ItemBreakdown .Contents [element=water],
.PassiveBreakdown .Contents [element=water] {
  color: #3a5688;
}
.ItemBreakdown .Contents .water[link]::after,
.PassiveBreakdown .Contents .water[link]::after,
.ItemBreakdown .Contents [element=water][link]::after,
.PassiveBreakdown .Contents [element=water][link]::after {
  border-bottom-color: #3a5688;
}

/* source/data/games/ember/views/DiceCube.less */
.DiceCube {
  width: 1em;
  height: 1em;
  perspective: 200em;
}
.DiceCube .Cube {
  width: 1em;
  height: 1em;
  position: absolute;
  transform-style: preserve-3d;
  transform: rotate3d(0, 0, 0, 90deg) rotate3d(0, 0, 1, -90deg);
  transition-duration: 1s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.DiceCube .Cube[animation=spin] {
  animation-name: spin3d;
  animation-duration: 10s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.DiceCube .Cube[animation=roll] {
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  animation-timing-function: ease-out;
}
.DiceCube .Cube[animation=roll][faceIndex="0"],
.DiceCube .Cube[animation=roll][itemIndex="0"] {
  animation-name: roll-to-0;
}
.DiceCube .Cube[animation=roll][faceIndex="1"],
.DiceCube .Cube[animation=roll][itemIndex="1"] {
  animation-name: roll-to-1;
}
.DiceCube .Cube[animation=roll][faceIndex="2"],
.DiceCube .Cube[animation=roll][itemIndex="2"] {
  animation-name: roll-to-2;
}
.DiceCube .Cube[animation=roll][faceIndex="3"],
.DiceCube .Cube[animation=roll][itemIndex="3"] {
  animation-name: roll-to-3;
}
.DiceCube .Cube[animation=roll][faceIndex="4"],
.DiceCube .Cube[animation=roll][itemIndex="4"] {
  animation-name: roll-to-4;
}
.DiceCube .Cube[animation=roll][faceIndex="5"],
.DiceCube .Cube[animation=roll][itemIndex="5"] {
  animation-name: roll-to-5;
}
.DiceCube .Cube[animation=bounce] {
  animation-duration: 0.75s;
  animation-fill-mode: forwards;
  animation-name: bounce;
  animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.DiceCube .Cube[animation=none][faceIndex="0"] .DiceFace:not([index="0"]),
.DiceCube .Cube[animation=none][itemIndex="0"] .DiceFace:not([index="0"]),
.DiceCube .Cube[animation=none][faceIndex="0"] .InternalFace:not([index="0"]),
.DiceCube .Cube[animation=none][itemIndex="0"] .InternalFace:not([index="0"]) {
  opacity: 0;
}
.DiceCube .Cube[animation=none][faceIndex="1"] .DiceFace:not([index="1"]),
.DiceCube .Cube[animation=none][itemIndex="1"] .DiceFace:not([index="1"]),
.DiceCube .Cube[animation=none][faceIndex="1"] .InternalFace:not([index="1"]),
.DiceCube .Cube[animation=none][itemIndex="1"] .InternalFace:not([index="1"]) {
  opacity: 0;
}
.DiceCube .Cube[animation=none][faceIndex="2"] .DiceFace:not([index="2"]),
.DiceCube .Cube[animation=none][itemIndex="2"] .DiceFace:not([index="2"]),
.DiceCube .Cube[animation=none][faceIndex="2"] .InternalFace:not([index="2"]),
.DiceCube .Cube[animation=none][itemIndex="2"] .InternalFace:not([index="2"]) {
  opacity: 0;
}
.DiceCube .Cube[animation=none][faceIndex="3"] .DiceFace:not([index="3"]),
.DiceCube .Cube[animation=none][itemIndex="3"] .DiceFace:not([index="3"]),
.DiceCube .Cube[animation=none][faceIndex="3"] .InternalFace:not([index="3"]),
.DiceCube .Cube[animation=none][itemIndex="3"] .InternalFace:not([index="3"]) {
  opacity: 0;
}
.DiceCube .Cube[animation=none][faceIndex="4"] .DiceFace:not([index="4"]),
.DiceCube .Cube[animation=none][itemIndex="4"] .DiceFace:not([index="4"]),
.DiceCube .Cube[animation=none][faceIndex="4"] .InternalFace:not([index="4"]),
.DiceCube .Cube[animation=none][itemIndex="4"] .InternalFace:not([index="4"]) {
  opacity: 0;
}
.DiceCube .Cube[animation=none][faceIndex="5"] .DiceFace:not([index="5"]),
.DiceCube .Cube[animation=none][itemIndex="5"] .DiceFace:not([index="5"]),
.DiceCube .Cube[animation=none][faceIndex="5"] .InternalFace:not([index="5"]),
.DiceCube .Cube[animation=none][itemIndex="5"] .InternalFace:not([index="5"]) {
  opacity: 0;
}
.DiceCube .Cube[faceIndex="0"],
.DiceCube .Cube[itemIndex="0"] {
  transform: rotate3d(0, 0, 0, 90deg) rotate3d(0, 0, 1, -90deg);
}
.DiceCube .Cube[faceIndex="1"],
.DiceCube .Cube[itemIndex="1"] {
  transform: rotate3d(0, 1, 0, 180deg) rotate3d(0, 0, 1, 180deg);
}
.DiceCube .Cube[faceIndex="2"],
.DiceCube .Cube[itemIndex="2"] {
  transform: rotate3d(0, 1, 0, 90deg);
}
.DiceCube .Cube[faceIndex="3"],
.DiceCube .Cube[itemIndex="3"] {
  transform: rotate3d(0, 1, 0, -90deg) rotate3d(1, 0, 0, 90deg);
}
.DiceCube .Cube[faceIndex="4"],
.DiceCube .Cube[itemIndex="4"] {
  transform: rotate3d(1, 0, 0, -90deg) rotate3d(0, 1, 0, -90deg);
}
.DiceCube .Cube[faceIndex="5"],
.DiceCube .Cube[itemIndex="5"] {
  transform: rotate3d(1, 0, 0, 90deg) rotate3d(0, 1, 0, 180deg);
}
.DiceCube .Cube .DiceFace {
  position: absolute;
}
.DiceCube .Cube .DiceFace[index="0"] {
  transform: translateZ(0.5em) rotateZ(90deg);
}
.DiceCube .Cube .DiceFace[index="1"] {
  transform: translateZ(-0.5em) rotateY(180deg) rotateZ(180deg);
}
.DiceCube .Cube .DiceFace[index="2"] {
  transform: translateX(-0.5em) rotateY(-90deg);
}
.DiceCube .Cube .DiceFace[index="3"] {
  transform: translateX(0.5em) rotateY(90deg) rotateZ(-90deg);
}
.DiceCube .Cube .DiceFace[index="4"] {
  transform: translateY(-0.5em) rotateX(90deg) rotateZ(-90deg);
}
.DiceCube .Cube .DiceFace[index="5"] {
  transform: translateY(0.5em) rotateX(-90deg) rotateZ(180deg);
}
.DiceCube .Cube .InternalFace {
  width: 1em;
  height: 1em;
  position: absolute;
  border-radius: 11%;
  transform-origin: center;
  background-color: #111111;
}
.DiceCube .Cube .InternalFace[index="0"] {
  transform: translateZ(0.45em);
}
.DiceCube .Cube .InternalFace[index="1"] {
  transform: translateZ(-0.45em) rotateY(180deg);
}
.DiceCube .Cube .InternalFace[index="2"] {
  transform: translateX(-0.45em) rotateY(-90deg);
}
.DiceCube .Cube .InternalFace[index="3"] {
  transform: translateX(0.45em) rotateY(90deg);
}
.DiceCube .Cube .InternalFace[index="5"] {
  transform: translateY(0.45em) rotateX(-90deg);
}
.DiceCube .Cube .InternalFace[index="4"] {
  transform: translateY(-0.45em) rotateX(90deg);
}
@keyframes roll-to-0 {
  0% {
    transform: rotate3d(1, 1, 0, 45deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, 360deg) rotate3d(1, 0, 0, 720deg) rotate3d(0, 0, 1, 990deg);
  }
  0%, 26%, 50%, 70%, 90%, 100% {
    margin-top: 0em;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  14%, 16% {
    margin-top: -0.5em;
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  40% {
    margin-top: -0.25em;
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  60% {
    margin-top: -0.1em;
  }
  80% {
    margin-top: -0.01em;
  }
}
@keyframes roll-to-1 {
  0% {
    transform: rotate3d(1, 1, 0, 45deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, 540deg) rotate3d(1, 0, 0, 720deg) rotate3d(0, 0, 1, 1260deg);
  }
  0%, 26%, 50%, 70%, 90%, 100% {
    margin-top: 0em;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  14%, 16% {
    margin-top: -0.5em;
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  40% {
    margin-top: -0.25em;
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  60% {
    margin-top: -0.1em;
  }
  80% {
    margin-top: -0.01em;
  }
}
@keyframes roll-to-2 {
  0% {
    transform: rotate3d(1, 1, 0, 45deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, 450deg) rotate3d(1, 0, 0, 720deg) rotate3d(0, 0, 1, 1080deg);
  }
  0%, 26%, 50%, 70%, 90%, 100% {
    margin-top: 0em;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  14%, 16% {
    margin-top: -0.5em;
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  40% {
    margin-top: -0.25em;
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  60% {
    margin-top: -0.1em;
  }
  80% {
    margin-top: -0.01em;
  }
}
@keyframes roll-to-3 {
  0% {
    transform: rotate3d(1, 1, 0, 45deg);
  }
  100% {
    transform: rotate3d(0, 1, 0, 270deg) rotate3d(1, 0, 0, 810deg) rotate3d(0, 0, 1, 1080deg);
  }
  0%, 26%, 50%, 70%, 90%, 100% {
    margin-top: 0em;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  14%, 16% {
    margin-top: -0.5em;
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  40% {
    margin-top: -0.25em;
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  60% {
    margin-top: -0.1em;
  }
  80% {
    margin-top: -0.01em;
  }
}
@keyframes roll-to-4 {
  0% {
    transform: rotate3d(1, 1, 0, 45deg);
  }
  100% {
    transform: rotate3d(1, 0, 0, 630deg) rotate3d(0, 1, 0, 270deg) rotate3d(0, 0, 1, 1080deg);
  }
  0%, 26%, 50%, 70%, 90%, 100% {
    margin-top: 0em;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  14%, 16% {
    margin-top: -0.5em;
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  40% {
    margin-top: -0.25em;
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  60% {
    margin-top: -0.1em;
  }
  80% {
    margin-top: -0.01em;
  }
}
@keyframes roll-to-5 {
  0% {
    transform: rotate3d(1, 1, 0, 45deg);
  }
  100% {
    transform: rotate3d(1, 0, 0, 810deg) rotate3d(0, 1, 0, 540deg) rotate3d(0, 0, 1, 1080deg);
  }
  0%, 26%, 50%, 70%, 90%, 100% {
    margin-top: 0em;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  14%, 16% {
    margin-top: -0.5em;
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  40% {
    margin-top: -0.25em;
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  }
  60% {
    margin-top: -0.1em;
  }
  80% {
    margin-top: -0.01em;
  }
}
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    margin-top: 0em;
  }
  40%, 43% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    margin-top: -0.5em;
  }
  70% {
    transition-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    margin-top: -0.25em;
  }
  90% {
    margin-top: -0.1em;
  }
  95% {
    margin-top: -0.01em;
  }
}
@keyframes spin3d {
  from {
    transform: rotate3d(0, 0, 0, 0);
  }
  to {
    transform: rotate3d(1, 1, 0, 360deg);
  }
}

/* source/data/games/ember/scripts/modals/FirstTimeRollModal.less */
.DiceboundModal {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(178, 167, 155, 0.8);
}
.DiceboundModal .Header,
.DiceboundModal .Footer {
  font-size: 0.5em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  margin-bottom: 1em;
}
.DiceboundModal .Header .BigText,
.DiceboundModal .Footer .BigText {
  font-size: 1.3em;
  line-height: 1em;
}
.DiceboundModal .Header .SmallText,
.DiceboundModal .Footer .SmallText {
  font-size: 0.75em;
  line-height: 1em;
}
.DiceboundModal .Header .SmallText[isHoverable]:hover,
.DiceboundModal .Footer .SmallText[isHoverable]:hover {
  color: hotpink;
}
.DiceboundModal .UnitsSection {
  display: flex;
  align-items: center;
  justify-content: center;
}
.DiceboundModal .UnitsSection .Or {
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
}
.DiceboundModal .UnitsSection .Unit {
  width: 4em;
  font-size: 0.75em;
  margin: 0em 0.2em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition-duration: 0.25s;
  transition-property:
    opacity,
    filter,
    transform;
}
.DiceboundModal .UnitsSection .Unit .Thumbnail {
  width: 1em;
  height: 1em;
  position: relative;
  margin-top: 0.4em;
}
.DiceboundModal .UnitsSection .Unit .Thumbnail .UnitHealthBar {
  left: 0em;
  right: 0em;
  margin: auto;
  bottom: 0em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.DiceboundModal .UnitsSection .Unit .DraftButton {
  margin-top: 1.4em;
  width: 8em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--editor-font);
}
.DiceboundModal .UnitsSection .Unit .DraftButton span {
  font-size: 1rem;
  line-height: 1rem;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .Number {
  font-size: 0.25em;
  text-align: center;
  margin-bottom: 0.25em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .Description,
.DiceboundModal .UnitsSection .Unit .DraftableDice .Name {
  font-size: 0.5em;
  text-align: center;
  margin-bottom: 0.5em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
  height: 1em;
  line-height: 1em;
  position: relative;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .Description span,
.DiceboundModal .UnitsSection .Unit .DraftableDice .Name span {
  left: -3em;
  right: -3em;
  position: absolute;
  text-align: center;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .DiceLayout {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .DiceLayout .Dice .DiceFace {
  border-style: solid;
  border-width: 0.1em;
  border-radius: 0.1em;
  border-color: #111111;
}
.DiceboundModal .UnitsSection .Unit .EquippedDice {
  font-size: 0.5em;
}
.DiceboundModal .UnitsSection .Unit .EquippableDice {
  margin-top: 0.2em;
}
.DiceboundModal .UnitsSection .Unit .EquippableDice .Description {
  font-size: 0.25em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.DiceboundModal .UnitsSection .Unit .Status {
  left: 0em;
  right: 0em;
  bottom: -1.4em;
  position: absolute;
  line-height: 1em;
  text-align: center;
  font-size: 0.3em;
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity;
}
.DiceboundModal .UnitsSection .Unit[isLockedIn] {
  filter: grayscale(2);
  opacity: 0.75;
  transform: translateY(-0.5em);
}
.DiceboundModal .UnitsSection .Unit[isLockedIn] .Label {
  display: none;
}
.DiceboundModal .UnitsSection .Unit[isLockedIn] .Status {
  opacity: 1;
}
.DiceboundModal .DoneSection {
  padding-top: 0.5em;
  text-align: center;
}
.DiceboundModal .DoneSection button {
  font: inherit;
  font-size: 0.5em;
  padding: 0em 1em;
}
.DiceboundModal .DoneSection button:not([isEnabled]) {
  opacity: 0.5;
}
.DiceboundModal .DoneSection button:not(:last-child) {
  margin-right: 0.5em;
}
.DiceboundModal .LootablePassiveSection {
  width: 6em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.DiceboundModal .LootablePassiveSection .LootablePassive {
  width: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Unit {
  top: 0em;
  width: 1em;
  right: 0.2em;
  bottom: 0em;
  position: absolute;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Unit .UnitSprite {
  top: 0em;
  bottom: 0em;
  margin: auto;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Summary {
  font-size: 0.5em;
  padding: 0.618em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Summary .Title {
  font-size: 1em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Summary .Description {
  font-size: 0.5em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive:not(:last-child) {
  margin-bottom: 0.2em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}
.FirstTimeRollModal {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(178, 167, 155, 0.8);
  background:
    radial-gradient(
      circle 1.5em at center,
      transparent 1.4em,
      rgba(0, 0, 0, 0.8) 1.5em);
}
.FirstTimeRollModal .Header,
.FirstTimeRollModal .Footer {
  font-size: 0.5em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  margin-bottom: 1em;
}
.FirstTimeRollModal .Header .BigText,
.FirstTimeRollModal .Footer .BigText {
  font-size: 1.3em;
  line-height: 1em;
}
.FirstTimeRollModal .Header .SmallText,
.FirstTimeRollModal .Footer .SmallText {
  font-size: 0.75em;
  line-height: 1em;
}
.FirstTimeRollModal .Header .SmallText[isHoverable]:hover,
.FirstTimeRollModal .Footer .SmallText[isHoverable]:hover {
  color: hotpink;
}
.FirstTimeRollModal .UnitsSection {
  display: flex;
  align-items: center;
  justify-content: center;
}
.FirstTimeRollModal .UnitsSection .Or {
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
}
.FirstTimeRollModal .UnitsSection .Unit {
  width: 4em;
  font-size: 0.75em;
  margin: 0em 0.2em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition-duration: 0.25s;
  transition-property:
    opacity,
    filter,
    transform;
}
.FirstTimeRollModal .UnitsSection .Unit .Thumbnail {
  width: 1em;
  height: 1em;
  position: relative;
  margin-top: 0.4em;
}
.FirstTimeRollModal .UnitsSection .Unit .Thumbnail .UnitHealthBar {
  left: 0em;
  right: 0em;
  margin: auto;
  bottom: 0em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.FirstTimeRollModal .UnitsSection .Unit .DraftButton {
  margin-top: 1.4em;
  width: 8em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--editor-font);
}
.FirstTimeRollModal .UnitsSection .Unit .DraftButton span {
  font-size: 1rem;
  line-height: 1rem;
}
.FirstTimeRollModal .UnitsSection .Unit .DraftableDice .Number {
  font-size: 0.25em;
  text-align: center;
  margin-bottom: 0.25em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.FirstTimeRollModal .UnitsSection .Unit .DraftableDice .Description,
.FirstTimeRollModal .UnitsSection .Unit .DraftableDice .Name {
  font-size: 0.5em;
  text-align: center;
  margin-bottom: 0.5em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
  height: 1em;
  line-height: 1em;
  position: relative;
}
.FirstTimeRollModal .UnitsSection .Unit .DraftableDice .Description span,
.FirstTimeRollModal .UnitsSection .Unit .DraftableDice .Name span {
  left: -3em;
  right: -3em;
  position: absolute;
  text-align: center;
}
.FirstTimeRollModal .UnitsSection .Unit .DraftableDice .DiceLayout {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.FirstTimeRollModal .UnitsSection .Unit .DraftableDice .DiceLayout .Dice .DiceFace {
  border-style: solid;
  border-width: 0.1em;
  border-radius: 0.1em;
  border-color: #111111;
}
.FirstTimeRollModal .UnitsSection .Unit .EquippedDice {
  font-size: 0.5em;
}
.FirstTimeRollModal .UnitsSection .Unit .EquippableDice {
  margin-top: 0.2em;
}
.FirstTimeRollModal .UnitsSection .Unit .EquippableDice .Description {
  font-size: 0.25em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.FirstTimeRollModal .UnitsSection .Unit .Status {
  left: 0em;
  right: 0em;
  bottom: -1.4em;
  position: absolute;
  line-height: 1em;
  text-align: center;
  font-size: 0.3em;
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity;
}
.FirstTimeRollModal .UnitsSection .Unit[isLockedIn] {
  filter: grayscale(2);
  opacity: 0.75;
  transform: translateY(-0.5em);
}
.FirstTimeRollModal .UnitsSection .Unit[isLockedIn] .Label {
  display: none;
}
.FirstTimeRollModal .UnitsSection .Unit[isLockedIn] .Status {
  opacity: 1;
}
.FirstTimeRollModal .DoneSection {
  padding-top: 0.5em;
  text-align: center;
}
.FirstTimeRollModal .DoneSection button {
  font: inherit;
  font-size: 0.5em;
  padding: 0em 1em;
}
.FirstTimeRollModal .DoneSection button:not([isEnabled]) {
  opacity: 0.5;
}
.FirstTimeRollModal .DoneSection button:not(:last-child) {
  margin-right: 0.5em;
}
.FirstTimeRollModal .LootablePassiveSection {
  width: 6em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.FirstTimeRollModal .LootablePassiveSection .LootablePassive {
  width: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
}
.FirstTimeRollModal .LootablePassiveSection .LootablePassive .Unit {
  top: 0em;
  width: 1em;
  right: 0.2em;
  bottom: 0em;
  position: absolute;
}
.FirstTimeRollModal .LootablePassiveSection .LootablePassive .Unit .UnitSprite {
  top: 0em;
  bottom: 0em;
  margin: auto;
}
.FirstTimeRollModal .LootablePassiveSection .LootablePassive .Summary {
  font-size: 0.5em;
  padding: 0.618em;
}
.FirstTimeRollModal .LootablePassiveSection .LootablePassive .Summary .Title {
  font-size: 1em;
}
.FirstTimeRollModal .LootablePassiveSection .LootablePassive .Summary .Description {
  font-size: 0.5em;
}
.FirstTimeRollModal .LootablePassiveSection .LootablePassive:not(:last-child) {
  margin-bottom: 0.2em;
}
.FirstTimeRollModal .LootablePassiveSection .LootablePassive:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}
.FirstTimeRollModal .DiceCube {
  perspective: 3em;
}
.FirstTimeRollModal .DiceCube:nth-child(1) {
  margin-top: -0.25em;
}
.FirstTimeRollModal .DiceCube:nth-child(2) {
  margin-left: 0.25em;
  margin-bottom: -0.25em;
}
.FirstTimeRollModal .DiceCube:nth-child(2) .Cube {
  animation-delay: -1.2s;
}
.FirstTimeRollModal .DiceCube:nth-child(3) {
  margin-left: 0.25em;
}
.FirstTimeRollModal .DiceCube:nth-child(3) .Cube {
  animation-delay: -2.4s;
}
.FirstTimeRollModal .UnitsSection:hover .DiceCube {
  animation-name: shake-the-dice;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 0.5s;
}
@keyframes shake-the-dice {
  0% {
    transform: translateX(-0.025em) translateY(0.025em);
  }
  10% {
    transform: translateX(0) translateY(0.025em);
  }
  20% {
    transform: translateX(0.025em) translateY(0em);
  }
  30% {
    transform: translateX(0) translateY(-0.025em);
  }
  40% {
    transform: translateX(0.025em) translateY(0.025em);
  }
  50% {
    transform: translateX(-0.025em) translateY(-0.025em);
  }
  60% {
    transform: translateX(-0.025em) translateY(0.025em);
  }
  70% {
    transform: translateX(0em) translateY(-0.025em);
  }
  80% {
    transform: translateX(0.025em) translateY(0em);
  }
  90% {
    transform: translateX(-0.025em) translateY(0.025em);
  }
  100% {
    transform: translateX(0em) translateY(0em);
  }
}

/* source/data/games/ember/scripts/modals/LearnToRightClickModal.less */
.DiceboundModal {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(178, 167, 155, 0.8);
}
.DiceboundModal .Header,
.DiceboundModal .Footer {
  font-size: 0.5em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  margin-bottom: 1em;
}
.DiceboundModal .Header .BigText,
.DiceboundModal .Footer .BigText {
  font-size: 1.3em;
  line-height: 1em;
}
.DiceboundModal .Header .SmallText,
.DiceboundModal .Footer .SmallText {
  font-size: 0.75em;
  line-height: 1em;
}
.DiceboundModal .Header .SmallText[isHoverable]:hover,
.DiceboundModal .Footer .SmallText[isHoverable]:hover {
  color: hotpink;
}
.DiceboundModal .UnitsSection {
  display: flex;
  align-items: center;
  justify-content: center;
}
.DiceboundModal .UnitsSection .Or {
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
}
.DiceboundModal .UnitsSection .Unit {
  width: 4em;
  font-size: 0.75em;
  margin: 0em 0.2em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition-duration: 0.25s;
  transition-property:
    opacity,
    filter,
    transform;
}
.DiceboundModal .UnitsSection .Unit .Thumbnail {
  width: 1em;
  height: 1em;
  position: relative;
  margin-top: 0.4em;
}
.DiceboundModal .UnitsSection .Unit .Thumbnail .UnitHealthBar {
  left: 0em;
  right: 0em;
  margin: auto;
  bottom: 0em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.DiceboundModal .UnitsSection .Unit .DraftButton {
  margin-top: 1.4em;
  width: 8em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--editor-font);
}
.DiceboundModal .UnitsSection .Unit .DraftButton span {
  font-size: 1rem;
  line-height: 1rem;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .Number {
  font-size: 0.25em;
  text-align: center;
  margin-bottom: 0.25em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .Description,
.DiceboundModal .UnitsSection .Unit .DraftableDice .Name {
  font-size: 0.5em;
  text-align: center;
  margin-bottom: 0.5em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
  height: 1em;
  line-height: 1em;
  position: relative;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .Description span,
.DiceboundModal .UnitsSection .Unit .DraftableDice .Name span {
  left: -3em;
  right: -3em;
  position: absolute;
  text-align: center;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .DiceLayout {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .DiceLayout .Dice .DiceFace {
  border-style: solid;
  border-width: 0.1em;
  border-radius: 0.1em;
  border-color: #111111;
}
.DiceboundModal .UnitsSection .Unit .EquippedDice {
  font-size: 0.5em;
}
.DiceboundModal .UnitsSection .Unit .EquippableDice {
  margin-top: 0.2em;
}
.DiceboundModal .UnitsSection .Unit .EquippableDice .Description {
  font-size: 0.25em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.DiceboundModal .UnitsSection .Unit .Status {
  left: 0em;
  right: 0em;
  bottom: -1.4em;
  position: absolute;
  line-height: 1em;
  text-align: center;
  font-size: 0.3em;
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity;
}
.DiceboundModal .UnitsSection .Unit[isLockedIn] {
  filter: grayscale(2);
  opacity: 0.75;
  transform: translateY(-0.5em);
}
.DiceboundModal .UnitsSection .Unit[isLockedIn] .Label {
  display: none;
}
.DiceboundModal .UnitsSection .Unit[isLockedIn] .Status {
  opacity: 1;
}
.DiceboundModal .DoneSection {
  padding-top: 0.5em;
  text-align: center;
}
.DiceboundModal .DoneSection button {
  font: inherit;
  font-size: 0.5em;
  padding: 0em 1em;
}
.DiceboundModal .DoneSection button:not([isEnabled]) {
  opacity: 0.5;
}
.DiceboundModal .DoneSection button:not(:last-child) {
  margin-right: 0.5em;
}
.DiceboundModal .LootablePassiveSection {
  width: 6em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.DiceboundModal .LootablePassiveSection .LootablePassive {
  width: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Unit {
  top: 0em;
  width: 1em;
  right: 0.2em;
  bottom: 0em;
  position: absolute;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Unit .UnitSprite {
  top: 0em;
  bottom: 0em;
  margin: auto;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Summary {
  font-size: 0.5em;
  padding: 0.618em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Summary .Title {
  font-size: 1em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Summary .Description {
  font-size: 0.5em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive:not(:last-child) {
  margin-bottom: 0.2em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}
.LearnToRightClickModal {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(178, 167, 155, 0.8);
  animation-name: fade-in;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.LearnToRightClickModal .Header,
.LearnToRightClickModal .Footer {
  font-size: 0.5em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  margin-bottom: 1em;
}
.LearnToRightClickModal .Header .BigText,
.LearnToRightClickModal .Footer .BigText {
  font-size: 1.3em;
  line-height: 1em;
}
.LearnToRightClickModal .Header .SmallText,
.LearnToRightClickModal .Footer .SmallText {
  font-size: 0.75em;
  line-height: 1em;
}
.LearnToRightClickModal .Header .SmallText[isHoverable]:hover,
.LearnToRightClickModal .Footer .SmallText[isHoverable]:hover {
  color: hotpink;
}
.LearnToRightClickModal .UnitsSection {
  display: flex;
  align-items: center;
  justify-content: center;
}
.LearnToRightClickModal .UnitsSection .Or {
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
}
.LearnToRightClickModal .UnitsSection .Unit {
  width: 4em;
  font-size: 0.75em;
  margin: 0em 0.2em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition-duration: 0.25s;
  transition-property:
    opacity,
    filter,
    transform;
}
.LearnToRightClickModal .UnitsSection .Unit .Thumbnail {
  width: 1em;
  height: 1em;
  position: relative;
  margin-top: 0.4em;
}
.LearnToRightClickModal .UnitsSection .Unit .Thumbnail .UnitHealthBar {
  left: 0em;
  right: 0em;
  margin: auto;
  bottom: 0em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.LearnToRightClickModal .UnitsSection .Unit .DraftButton {
  margin-top: 1.4em;
  width: 8em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--editor-font);
}
.LearnToRightClickModal .UnitsSection .Unit .DraftButton span {
  font-size: 1rem;
  line-height: 1rem;
}
.LearnToRightClickModal .UnitsSection .Unit .DraftableDice .Number {
  font-size: 0.25em;
  text-align: center;
  margin-bottom: 0.25em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.LearnToRightClickModal .UnitsSection .Unit .DraftableDice .Description,
.LearnToRightClickModal .UnitsSection .Unit .DraftableDice .Name {
  font-size: 0.5em;
  text-align: center;
  margin-bottom: 0.5em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
  height: 1em;
  line-height: 1em;
  position: relative;
}
.LearnToRightClickModal .UnitsSection .Unit .DraftableDice .Description span,
.LearnToRightClickModal .UnitsSection .Unit .DraftableDice .Name span {
  left: -3em;
  right: -3em;
  position: absolute;
  text-align: center;
}
.LearnToRightClickModal .UnitsSection .Unit .DraftableDice .DiceLayout {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.LearnToRightClickModal .UnitsSection .Unit .DraftableDice .DiceLayout .Dice .DiceFace {
  border-style: solid;
  border-width: 0.1em;
  border-radius: 0.1em;
  border-color: #111111;
}
.LearnToRightClickModal .UnitsSection .Unit .EquippedDice {
  font-size: 0.5em;
}
.LearnToRightClickModal .UnitsSection .Unit .EquippableDice {
  margin-top: 0.2em;
}
.LearnToRightClickModal .UnitsSection .Unit .EquippableDice .Description {
  font-size: 0.25em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.LearnToRightClickModal .UnitsSection .Unit .Status {
  left: 0em;
  right: 0em;
  bottom: -1.4em;
  position: absolute;
  line-height: 1em;
  text-align: center;
  font-size: 0.3em;
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity;
}
.LearnToRightClickModal .UnitsSection .Unit[isLockedIn] {
  filter: grayscale(2);
  opacity: 0.75;
  transform: translateY(-0.5em);
}
.LearnToRightClickModal .UnitsSection .Unit[isLockedIn] .Label {
  display: none;
}
.LearnToRightClickModal .UnitsSection .Unit[isLockedIn] .Status {
  opacity: 1;
}
.LearnToRightClickModal .DoneSection {
  padding-top: 0.5em;
  text-align: center;
}
.LearnToRightClickModal .DoneSection button {
  font: inherit;
  font-size: 0.5em;
  padding: 0em 1em;
}
.LearnToRightClickModal .DoneSection button:not([isEnabled]) {
  opacity: 0.5;
}
.LearnToRightClickModal .DoneSection button:not(:last-child) {
  margin-right: 0.5em;
}
.LearnToRightClickModal .LootablePassiveSection {
  width: 6em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.LearnToRightClickModal .LootablePassiveSection .LootablePassive {
  width: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
}
.LearnToRightClickModal .LootablePassiveSection .LootablePassive .Unit {
  top: 0em;
  width: 1em;
  right: 0.2em;
  bottom: 0em;
  position: absolute;
}
.LearnToRightClickModal .LootablePassiveSection .LootablePassive .Unit .UnitSprite {
  top: 0em;
  bottom: 0em;
  margin: auto;
}
.LearnToRightClickModal .LootablePassiveSection .LootablePassive .Summary {
  font-size: 0.5em;
  padding: 0.618em;
}
.LearnToRightClickModal .LootablePassiveSection .LootablePassive .Summary .Title {
  font-size: 1em;
}
.LearnToRightClickModal .LootablePassiveSection .LootablePassive .Summary .Description {
  font-size: 0.5em;
}
.LearnToRightClickModal .LootablePassiveSection .LootablePassive:not(:last-child) {
  margin-bottom: 0.2em;
}
.LearnToRightClickModal .LootablePassiveSection .LootablePassive:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}
.LearnToRightClickModal .UnitsSection {
  opacity: 0;
  animation-delay: 1s;
  animation-name: fade-in;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  z-index: 10000;
}
.LearnToRightClickModal .Fill {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: black;
  background:
    radial-gradient(
      circle 2em at center,
      transparent 1.9em,
      rgba(0, 0, 0, 0.8) 2em);
  transform: scale(10);
  animation-name: zoom-in;
  animation-fill-mode: forwards;
  animation-timing-function: ease-in-out;
  animation-duration: 1s;
  animation-delay: 1s;
}
.LearnToRightClickModal.LearnToRightClickModal .Fill {
  background:
    radial-gradient(
      circle 1.5em at center,
      transparent 1.4em,
      rgba(0, 0, 0, 0.8) 1.5em);
}
.LearnToRightClickModal .Content {
  position: relative;
  z-index: 10;
}
.LearnToRightClickModal .Content .Header {
  opacity: 0;
  animation-name: fade-in;
  animation-duration: 2s;
  animation-delay: 3s;
  animation-fill-mode: forwards;
  position: absolute;
  top: -4em;
  left: -8em;
  right: -8em;
  width: 10em;
  margin: auto;
}
.LearnToRightClickModal .Content .Footer {
  opacity: 0;
  animation-name: fade-in;
  animation-duration: 2s;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  position: absolute;
  bottom: -2em;
  left: -8em;
  right: -8em;
  width: 10em;
  margin: auto;
  display: none;
}
.LearnToRightClickModal .Content .Footer[isVisible] {
  display: block;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoom-in {
  0% {
    transform: scale(10);
  }
  100% {
    transform: scale(1);
  }
}

/* source/views/components/UnitHealthBar.less */
.UnitHealthBar {
  overflow: hidden;
  background-color: #f0ead6;
  position: relative;
  border-width: 0.05em;
  border-color: #111111;
  border-style: solid;
}
.UnitHealthBar .Label {
  left: 0em;
  right: 0em;
  top: -0.5em;
  bottom: -0.5em;
  z-index: 100000;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.UnitHealthBar .Label span {
  font-size: 0.5em;
  text-stroke: 0.25em #051F29;
  -ms-text-stroke: 0.25em #051F29;
  -moz-text-stroke: 0.25em #051F29;
  -webkit-text-stroke: 0.25em #051F29;
  paint-order: stroke fill;
}
.UnitHealthBar .Bar {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.UnitHealthBar .Fill {
  width: 0%;
  height: 100%;
  z-index: 10;
  position: absolute;
  background-color: #d54b33;
  transition-property: width;
  transition-duration: 0.1s;
}
.UnitHealthBar .Fill[isBig] {
  background-color: #862b1c;
}
.UnitHealthBar .OmegaFill {
  width: 0%;
  height: 100%;
  z-index: 20;
  position: absolute;
  background-color: #f0ead6;
  animation-iteration-count: infinite;
}
.UnitHealthBar .OmegaFill[color=heal] {
  animation-duration: 1s;
  animation-name: pulse-white;
}
@keyframes pulse-white {
  0% {
    background-color: #f0ead6;
  }
  25% {
    background-color: #f0ead6;
  }
  50% {
    background-color: #d54b33;
  }
  75% {
    background-color: #f0ead6;
  }
  100% {
    background-color: #f0ead6;
  }
}
.UnitHealthBar .OmegaFill[color=hurt] {
  animation-duration: 2s;
  animation-name: pulse-red;
}
@keyframes pulse-red {
  0% {
    background-color: #d54b33;
  }
  25% {
    background-color: #d54b33;
  }
  50% {
    background-color: #f0ead6;
  }
  75% {
    background-color: #d54b33;
  }
  100% {
    background-color: #d54b33;
  }
}
.UnitHealthBar .Borders {
  top: 0em;
  left: 0em;
  bottom: 0em;
  right: 0em;
  z-index: 30;
  max-width: 100%;
  position: absolute;
  display: flex;
}
.UnitHealthBar .Borders .Border {
  flex: 1;
}
.UnitHealthBar .Borders .Border:not(:last-child) {
  border-right-width: 0.05em;
  border-right-style: solid;
  border-right-color: #111111;
}

/* source/data/games/ember/views/DiceLayout.less */
.DiceLayout {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(2, 1fr);
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas: "a c e" "b d f";
  font-size: 0.27em;
  opacity: 1;
  transition-delay: 0.5s;
  transition-duration: 1.5s;
  transition-property: opacity;
  gap: 0.1em;
  border-style: solid;
  border-width: 0.2em;
  border-radius: 0.2em;
  border-color: #111111;
  background-color: #111111;
  box-sizing: border-box;
}
.DiceLayout .DiceFace {
  border: none;
}

/* source/data/games/ember/scripts/modals/OverworldModal.less */
.DiceboundModal {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(178, 167, 155, 0.8);
}
.DiceboundModal .Header,
.DiceboundModal .Footer {
  font-size: 0.5em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  margin-bottom: 1em;
}
.DiceboundModal .Header .BigText,
.DiceboundModal .Footer .BigText {
  font-size: 1.3em;
  line-height: 1em;
}
.DiceboundModal .Header .SmallText,
.DiceboundModal .Footer .SmallText {
  font-size: 0.75em;
  line-height: 1em;
}
.DiceboundModal .Header .SmallText[isHoverable]:hover,
.DiceboundModal .Footer .SmallText[isHoverable]:hover {
  color: hotpink;
}
.DiceboundModal .UnitsSection {
  display: flex;
  align-items: center;
  justify-content: center;
}
.DiceboundModal .UnitsSection .Or {
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
}
.DiceboundModal .UnitsSection .Unit {
  width: 4em;
  font-size: 0.75em;
  margin: 0em 0.2em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition-duration: 0.25s;
  transition-property:
    opacity,
    filter,
    transform;
}
.DiceboundModal .UnitsSection .Unit .Thumbnail {
  width: 1em;
  height: 1em;
  position: relative;
  margin-top: 0.4em;
}
.DiceboundModal .UnitsSection .Unit .Thumbnail .UnitHealthBar {
  left: 0em;
  right: 0em;
  margin: auto;
  bottom: 0em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.DiceboundModal .UnitsSection .Unit .DraftButton {
  margin-top: 1.4em;
  width: 8em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--editor-font);
}
.DiceboundModal .UnitsSection .Unit .DraftButton span {
  font-size: 1rem;
  line-height: 1rem;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .Number {
  font-size: 0.25em;
  text-align: center;
  margin-bottom: 0.25em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .Description,
.DiceboundModal .UnitsSection .Unit .DraftableDice .Name {
  font-size: 0.5em;
  text-align: center;
  margin-bottom: 0.5em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
  height: 1em;
  line-height: 1em;
  position: relative;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .Description span,
.DiceboundModal .UnitsSection .Unit .DraftableDice .Name span {
  left: -3em;
  right: -3em;
  position: absolute;
  text-align: center;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .DiceLayout {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .DiceLayout .Dice .DiceFace {
  border-style: solid;
  border-width: 0.1em;
  border-radius: 0.1em;
  border-color: #111111;
}
.DiceboundModal .UnitsSection .Unit .EquippedDice {
  font-size: 0.5em;
}
.DiceboundModal .UnitsSection .Unit .EquippableDice {
  margin-top: 0.2em;
}
.DiceboundModal .UnitsSection .Unit .EquippableDice .Description {
  font-size: 0.25em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.DiceboundModal .UnitsSection .Unit .Status {
  left: 0em;
  right: 0em;
  bottom: -1.4em;
  position: absolute;
  line-height: 1em;
  text-align: center;
  font-size: 0.3em;
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity;
}
.DiceboundModal .UnitsSection .Unit[isLockedIn] {
  filter: grayscale(2);
  opacity: 0.75;
  transform: translateY(-0.5em);
}
.DiceboundModal .UnitsSection .Unit[isLockedIn] .Label {
  display: none;
}
.DiceboundModal .UnitsSection .Unit[isLockedIn] .Status {
  opacity: 1;
}
.DiceboundModal .DoneSection {
  padding-top: 0.5em;
  text-align: center;
}
.DiceboundModal .DoneSection button {
  font: inherit;
  font-size: 0.5em;
  padding: 0em 1em;
}
.DiceboundModal .DoneSection button:not([isEnabled]) {
  opacity: 0.5;
}
.DiceboundModal .DoneSection button:not(:last-child) {
  margin-right: 0.5em;
}
.DiceboundModal .LootablePassiveSection {
  width: 6em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.DiceboundModal .LootablePassiveSection .LootablePassive {
  width: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Unit {
  top: 0em;
  width: 1em;
  right: 0.2em;
  bottom: 0em;
  position: absolute;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Unit .UnitSprite {
  top: 0em;
  bottom: 0em;
  margin: auto;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Summary {
  font-size: 0.5em;
  padding: 0.618em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Summary .Title {
  font-size: 1em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Summary .Description {
  font-size: 0.5em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive:not(:last-child) {
  margin-bottom: 0.2em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}
.OverworldModal {
  width: 100%;
  height: 100%;
  flex-direction: column;
  background-color: rgba(178, 167, 155, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  overflow: hidden;
}
.OverworldModal .Header,
.OverworldModal .Footer {
  font-size: 0.5em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  margin-bottom: 1em;
}
.OverworldModal .Header .BigText,
.OverworldModal .Footer .BigText {
  font-size: 1.3em;
  line-height: 1em;
}
.OverworldModal .Header .SmallText,
.OverworldModal .Footer .SmallText {
  font-size: 0.75em;
  line-height: 1em;
}
.OverworldModal .Header .SmallText[isHoverable]:hover,
.OverworldModal .Footer .SmallText[isHoverable]:hover {
  color: hotpink;
}
.OverworldModal .UnitsSection {
  display: flex;
  align-items: center;
  justify-content: center;
}
.OverworldModal .UnitsSection .Or {
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
}
.OverworldModal .UnitsSection .Unit {
  width: 4em;
  font-size: 0.75em;
  margin: 0em 0.2em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition-duration: 0.25s;
  transition-property:
    opacity,
    filter,
    transform;
}
.OverworldModal .UnitsSection .Unit .Thumbnail {
  width: 1em;
  height: 1em;
  position: relative;
  margin-top: 0.4em;
}
.OverworldModal .UnitsSection .Unit .Thumbnail .UnitHealthBar {
  left: 0em;
  right: 0em;
  margin: auto;
  bottom: 0em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.OverworldModal .UnitsSection .Unit .DraftButton {
  margin-top: 1.4em;
  width: 8em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--editor-font);
}
.OverworldModal .UnitsSection .Unit .DraftButton span {
  font-size: 1rem;
  line-height: 1rem;
}
.OverworldModal .UnitsSection .Unit .DraftableDice .Number {
  font-size: 0.25em;
  text-align: center;
  margin-bottom: 0.25em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.OverworldModal .UnitsSection .Unit .DraftableDice .Description,
.OverworldModal .UnitsSection .Unit .DraftableDice .Name {
  font-size: 0.5em;
  text-align: center;
  margin-bottom: 0.5em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
  height: 1em;
  line-height: 1em;
  position: relative;
}
.OverworldModal .UnitsSection .Unit .DraftableDice .Description span,
.OverworldModal .UnitsSection .Unit .DraftableDice .Name span {
  left: -3em;
  right: -3em;
  position: absolute;
  text-align: center;
}
.OverworldModal .UnitsSection .Unit .DraftableDice .DiceLayout {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.OverworldModal .UnitsSection .Unit .DraftableDice .DiceLayout .Dice .DiceFace {
  border-style: solid;
  border-width: 0.1em;
  border-radius: 0.1em;
  border-color: #111111;
}
.OverworldModal .UnitsSection .Unit .EquippedDice {
  font-size: 0.5em;
}
.OverworldModal .UnitsSection .Unit .EquippableDice {
  margin-top: 0.2em;
}
.OverworldModal .UnitsSection .Unit .EquippableDice .Description {
  font-size: 0.25em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.OverworldModal .UnitsSection .Unit .Status {
  left: 0em;
  right: 0em;
  bottom: -1.4em;
  position: absolute;
  line-height: 1em;
  text-align: center;
  font-size: 0.3em;
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity;
}
.OverworldModal .UnitsSection .Unit[isLockedIn] {
  filter: grayscale(2);
  opacity: 0.75;
  transform: translateY(-0.5em);
}
.OverworldModal .UnitsSection .Unit[isLockedIn] .Label {
  display: none;
}
.OverworldModal .UnitsSection .Unit[isLockedIn] .Status {
  opacity: 1;
}
.OverworldModal .DoneSection {
  padding-top: 0.5em;
  text-align: center;
}
.OverworldModal .DoneSection button {
  font: inherit;
  font-size: 0.5em;
  padding: 0em 1em;
}
.OverworldModal .DoneSection button:not([isEnabled]) {
  opacity: 0.5;
}
.OverworldModal .DoneSection button:not(:last-child) {
  margin-right: 0.5em;
}
.OverworldModal .LootablePassiveSection {
  width: 6em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.OverworldModal .LootablePassiveSection .LootablePassive {
  width: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
}
.OverworldModal .LootablePassiveSection .LootablePassive .Unit {
  top: 0em;
  width: 1em;
  right: 0.2em;
  bottom: 0em;
  position: absolute;
}
.OverworldModal .LootablePassiveSection .LootablePassive .Unit .UnitSprite {
  top: 0em;
  bottom: 0em;
  margin: auto;
}
.OverworldModal .LootablePassiveSection .LootablePassive .Summary {
  font-size: 0.5em;
  padding: 0.618em;
}
.OverworldModal .LootablePassiveSection .LootablePassive .Summary .Title {
  font-size: 1em;
}
.OverworldModal .LootablePassiveSection .LootablePassive .Summary .Description {
  font-size: 0.5em;
}
.OverworldModal .LootablePassiveSection .LootablePassive:not(:last-child) {
  margin-bottom: 0.2em;
}
.OverworldModal .LootablePassiveSection .LootablePassive:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}
.OverworldModal .Compass {
  top: 0em;
  left: 0em;
  padding: 1em;
  z-index: 10000;
  position: absolute;
  text-align: center;
}
.OverworldModal .Compass .Subtitle {
  font-size: 0.5em;
  line-height: 1em;
  color: #817F91;
}
.OverworldModal .Compass .Title {
  font-size: 0.8em;
  line-height: 1em;
  font-family: var(--fancy-font);
}
.OverworldModal .Legend {
  right: 0em;
  bottom: 0em;
  padding: 1em;
  z-index: 10000;
  position: absolute;
}
.OverworldModal .Legend .Label {
  padding-left: 0.4em;
  margin-bottom: 0.1em;
}
.OverworldModal .Legend .Label .Value {
  font-size: 0.5em;
  line-height: 1em;
}
.OverworldModal .Legend .Item {
  display: flex;
  gap: 0.1em;
}
.OverworldModal .Legend .Item .Key,
.OverworldModal .Legend .Item .Value {
  font-size: 0.3em;
  line-height: 1em;
  color: #817F91;
}
.OverworldModal .Legend .Item .Key {
  width: 1em;
  text-align: right;
}
.OverworldModal .Images .Map,
.OverworldModal .Images .Image {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  image-rendering: pixelated;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  user-drag: none;
}
.OverworldModal .Overworld {
  width: 11em;
  height: 5em;
  position: relative;
}
.OverworldModal .Overworld .Encounter {
  width: 0.5em;
  height: 0.5em;
  margin-top: -0.25em;
  margin-left: -0.25em;
  position: absolute;
  z-index: 30;
  border-radius: 100%;
  background-color: green;
  border-style: solid;
  border-color: #2D2D2A;
  border-width: 0.05em;
  background-color: hotpink;
  display: flex;
  align-items: center;
  justify-content: center;
}
.OverworldModal .Overworld .Encounter[isSelectable] {
  border-color: #f0ead6;
}
.OverworldModal .Overworld .Encounter[isSelectable]:hover {
  cursor: pointer;
  color: #2D2D2A;
  background-color: #f0ead6;
}
.OverworldModal .Overworld .Encounter[type=merchant],
.OverworldModal .Overworld .Encounter[type=treasure],
.OverworldModal .Overworld .Encounter[type=random],
.OverworldModal .Overworld .Encounter[type=exit] {
  background-color: #639bff;
  background-color: #0099A1;
}
.OverworldModal .Overworld .Encounter[type=first-combat],
.OverworldModal .Overworld .Encounter[type=standard-combat],
.OverworldModal .Overworld .Encounter[type=elite-combat],
.OverworldModal .Overworld .Encounter[type=final-combat] {
  background-color: #d54b33;
  background-color: #B7341A;
}
.OverworldModal .Overworld .Encounter[type=campfire] {
  background-color: #62C370;
  background-color: #4A5C6C;
}
.OverworldModal .Overworld .Encounter .Text {
  font-size: 0.25em;
}
.OverworldModal .Overworld .Path {
  width: 1em;
  height: 0.15em;
  margin-top: -0.075em;
  position: absolute;
  z-index: 20;
  background-color: #2D2D2A;
  transform-origin: center left;
}
.OverworldModal .Overworld .Path[dy="-1"] {
  transform: rotate(-45deg);
  width: 1.25em;
}
.OverworldModal .Overworld .Path[dy="1"] {
  transform: rotate(45deg);
  width: 1.25em;
}

/* source/views/components/UnitSprite.less */
.UnitSprite {
  width: 4em;
  height: 3em;
  left: -1.45em;
  right: -1.5em;
  bottom: -0.5em;
  margin: auto;
  position: absolute;
  background-size: 4em auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  animation-duration: 6s;
  animation-iteration-count: infinite;
  opacity: 1;
  transition-property: filter;
  transition-duration: 0.6s;
  filter: grayscale(0%) brightness(100%) saturate(100%);
}
.UnitSprite[pixelated] {
  image-rendering: pixelated;
}
.UnitSprite[spriteSize="1x1"],
.UnitSprite[spriteSize=contained] {
  background-size: contain;
  width: 1em;
  height: 1em;
  left: 0em;
  right: 0em;
  bottom: 0em;
}
.UnitSprite[spriteSize="4x3"] {
  background-size: contain;
  width: 1.5996em;
  height: 1.2em;
  left: -1em;
  right: -1em;
  bottom: 0em;
}
.UnitSprite[spriteSize="3x3"] {
  background-size: contain;
  width: 3em;
  height: 3em;
  left: -1em;
  top: -1em;
  margin: 0;
}
.UnitSprite[spriteSize=buffered] {
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
  left: -0.5em;
  right: -0.5em;
  bottom: -0.25em;
}
.UnitSprite .Face,
.UnitSprite .Body,
.UnitSprite .Weapon,
.UnitSprite .Decal,
.UnitSprite .Sprite,
.UnitSprite .SpritePart {
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: bottom;
  mask-size: 100% auto;
  mask-repeat: no-repeat;
  mask-position: bottom;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  transform: scale(1);
  transition-property: transform;
  transition-duration: 1s;
  transform-origin: center bottom;
}
.UnitSprite .Face[isHidden],
.UnitSprite .Body[isHidden],
.UnitSprite .Weapon[isHidden],
.UnitSprite .Decal[isHidden],
.UnitSprite .Sprite[isHidden],
.UnitSprite .SpritePart[isHidden] {
  display: none;
}
.UnitSprite .Face[isBig],
.UnitSprite .Body[isBig],
.UnitSprite .Weapon[isBig],
.UnitSprite .Decal[isBig],
.UnitSprite .Sprite[isBig],
.UnitSprite .SpritePart[isBig] {
  transform: scale(1.2);
  transition-duration: 0.25s;
}
.UnitSprite[animationKey=breathing] .Face[type=body],
.UnitSprite[animationKey=breathing] .Body[type=body],
.UnitSprite[animationKey=breathing] .Weapon[type=body],
.UnitSprite[animationKey=breathing] .Decal[type=body],
.UnitSprite[animationKey=breathing] .Sprite[type=body],
.UnitSprite[animationKey=breathing] .SpritePart[type=body] {
  animation-name: bodyshake;
}
.UnitSprite[animationKey=breathing] .Face[type=head],
.UnitSprite[animationKey=breathing] .Body[type=head],
.UnitSprite[animationKey=breathing] .Weapon[type=head],
.UnitSprite[animationKey=breathing] .Decal[type=head],
.UnitSprite[animationKey=breathing] .Sprite[type=head],
.UnitSprite[animationKey=breathing] .SpritePart[type=head] {
  animation-name: headshake;
}
.UnitSprite[animationKey=bob] .Face[type=body],
.UnitSprite[animationKey=bob] .Body[type=body],
.UnitSprite[animationKey=bob] .Weapon[type=body],
.UnitSprite[animationKey=bob] .Decal[type=body],
.UnitSprite[animationKey=bob] .Sprite[type=body],
.UnitSprite[animationKey=bob] .SpritePart[type=body] {
  animation-name: bob;
}
.UnitSprite[animationKey=rockout] {
  animation-duration: 845.070423ms;
  animation-direction: alternate;
  animation-name: rockout;
  transform-origin: center bottom;
}
.UnitSprite[animationKey=rockout][affiliation=ally] {
  animation-name: unrockout;
}
.UnitSprite[animationKey=squigglevision] {
  animation-name: squigglevision;
  animation-duration: 0.5s;
}
.UnitSprite[recolor=whitedout] {
  filter: grayscale(100%) brightness(100%) saturate(0%);
}
.UnitSprite[recolor=grayscaled] {
  filter: grayscale(50%) brightness(100%) saturate(0%);
}
.UnitSprite[recolor=blackedout] {
  filter: grayscale(0%) brightness(0%);
}
.UnitSprite[isInvisible] {
  opacity: 0;
}
.LegacySpot {
  width: 0.8em;
  height: 0.8em;
  margin: auto;
  left: 0em;
  right: 0em;
  bottom: 0em;
  top: 0em;
  position: absolute;
  border-radius: 50%;
  background-color: #555;
  opacity: 0.5;
}
[pixelated] .UnitSprite {
  image-rendering: pixelated;
}
[pixelated] .WorldImage {
  image-rendering: pixelated;
}
[gamekey=hero] .CreditsScreen .Title img {
  image-rendering: pixelated;
}
[gamekey=hero] .CreditsScreen .Contributor .Name {
  text-shadow: 0.1em 0.1em 0.1em #000;
}
[gamekey=hero] .CreditsScreen .Contributor .Sprite {
  image-rendering: pixelated;
  background-size: contain !important;
}
@keyframes bob {
  0% {
    transform: translateY(0em);
  }
  50% {
    transform: translateY(-0.1em);
  }
  100% {
    transform: translateY(0em);
  }
}
@keyframes headshake {
  0% {
    transform: translateY(0em);
  }
  15% {
    transform: translateY(0em);
  }
  50% {
    transform: translateY(-0.025em);
  }
  60% {
    transform: translateY(-0.025em);
  }
  95% {
    transform: translateY(0em);
  }
  100% {
    transform: translateY(0em);
  }
}
@keyframes bodyshake {
  0% {
    transform: translateY(0em);
  }
  10% {
    transform: translateY(0em);
  }
  45% {
    transform: translateY(-0.025em);
  }
  55% {
    transform: translateY(-0.025em);
  }
  90% {
    transform: translateY(0em);
  }
  100% {
    transform: translateY(0em);
  }
}
@keyframes unrockout {
  0% {
    transform: rotate(-4deg);
  }
  100% {
    transform: rotate(4deg);
  }
}
@keyframes rockout {
  0% {
    transform: rotate(4deg);
  }
  100% {
    transform: rotate(-4deg);
  }
}

/* source/data/games/ember/views/hud/Huds.less */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.TutorialHuds .TutorialHud {
  z-index: 20;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8em;
  height: 4em;
  margin-top: -2em;
  margin-left: -4em;
  pointer-events: none;
  visibility: hidden;
}
.TutorialHuds .TutorialHud[isRendered] {
  visibility: visible;
}
.TutorialHuds .TutorialHud .TutorialBox {
  padding: 0.33em 0.53394em;
  text-align: center;
  pointer-events: all;
  border-radius: 0.1em;
  color: #f0ead6;
  background-color: #111111;
  color: #111111;
  background-color: #f0ead6;
}
.TutorialHuds .TutorialHud .TutorialBox .Text {
  font-size: 0.25em;
}
.TutorialHuds .TutorialHud .TutorialBox .Text [element=water] {
  color: #639bff;
}
.TutorialHuds .TutorialHud .TutorialBox .Text [element=fire] {
  color: #d54b33;
}
.TutorialHuds .TutorialHud .TutorialBox .Text [element=earth] {
  color: #62C370;
}
.TutorialHuds .TutorialHud .TutorialBox .Link {
  opacity: 0.5;
  font-size: 0.25em;
  width: 5em;
  margin: auto;
  margin-top: 0.5em;
}
.TutorialHuds .TutorialHud .TutorialBox .Link:hover {
  opacity: 1;
  color: #d54b33;
  cursor: pointer;
}
.RollingHud {
  top: 0.5em;
  left: 0em;
  right: 0em;
  z-index: 10000;
  position: absolute;
  text-align: center;
  font-style: italic;
  opacity: 0;
  transition-delay: 0s;
  transition-duration: 1s;
  transition-property: opacity;
}
.RollingHud[isVisible] {
  opacity: 1;
  transition-delay: 1s;
  transition-duration: 2s;
}
.RollingHud .Text {
  font-size: 0.3em;
}

/* source/data/games/ember/scripts/modals/InterstitialModal.less */
.DiceboundModal {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(178, 167, 155, 0.8);
}
.DiceboundModal .Header,
.DiceboundModal .Footer {
  font-size: 0.5em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  margin-bottom: 1em;
}
.DiceboundModal .Header .BigText,
.DiceboundModal .Footer .BigText {
  font-size: 1.3em;
  line-height: 1em;
}
.DiceboundModal .Header .SmallText,
.DiceboundModal .Footer .SmallText {
  font-size: 0.75em;
  line-height: 1em;
}
.DiceboundModal .Header .SmallText[isHoverable]:hover,
.DiceboundModal .Footer .SmallText[isHoverable]:hover {
  color: hotpink;
}
.DiceboundModal .UnitsSection {
  display: flex;
  align-items: center;
  justify-content: center;
}
.DiceboundModal .UnitsSection .Or {
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
}
.DiceboundModal .UnitsSection .Unit {
  width: 4em;
  font-size: 0.75em;
  margin: 0em 0.2em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition-duration: 0.25s;
  transition-property:
    opacity,
    filter,
    transform;
}
.DiceboundModal .UnitsSection .Unit .Thumbnail {
  width: 1em;
  height: 1em;
  position: relative;
  margin-top: 0.4em;
}
.DiceboundModal .UnitsSection .Unit .Thumbnail .UnitHealthBar {
  left: 0em;
  right: 0em;
  margin: auto;
  bottom: 0em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.DiceboundModal .UnitsSection .Unit .DraftButton {
  margin-top: 1.4em;
  width: 8em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--editor-font);
}
.DiceboundModal .UnitsSection .Unit .DraftButton span {
  font-size: 1rem;
  line-height: 1rem;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .Number {
  font-size: 0.25em;
  text-align: center;
  margin-bottom: 0.25em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .Description,
.DiceboundModal .UnitsSection .Unit .DraftableDice .Name {
  font-size: 0.5em;
  text-align: center;
  margin-bottom: 0.5em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
  height: 1em;
  line-height: 1em;
  position: relative;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .Description span,
.DiceboundModal .UnitsSection .Unit .DraftableDice .Name span {
  left: -3em;
  right: -3em;
  position: absolute;
  text-align: center;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .DiceLayout {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .DiceLayout .Dice .DiceFace {
  border-style: solid;
  border-width: 0.1em;
  border-radius: 0.1em;
  border-color: #111111;
}
.DiceboundModal .UnitsSection .Unit .EquippedDice {
  font-size: 0.5em;
}
.DiceboundModal .UnitsSection .Unit .EquippableDice {
  margin-top: 0.2em;
}
.DiceboundModal .UnitsSection .Unit .EquippableDice .Description {
  font-size: 0.25em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.DiceboundModal .UnitsSection .Unit .Status {
  left: 0em;
  right: 0em;
  bottom: -1.4em;
  position: absolute;
  line-height: 1em;
  text-align: center;
  font-size: 0.3em;
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity;
}
.DiceboundModal .UnitsSection .Unit[isLockedIn] {
  filter: grayscale(2);
  opacity: 0.75;
  transform: translateY(-0.5em);
}
.DiceboundModal .UnitsSection .Unit[isLockedIn] .Label {
  display: none;
}
.DiceboundModal .UnitsSection .Unit[isLockedIn] .Status {
  opacity: 1;
}
.DiceboundModal .DoneSection {
  padding-top: 0.5em;
  text-align: center;
}
.DiceboundModal .DoneSection button {
  font: inherit;
  font-size: 0.5em;
  padding: 0em 1em;
}
.DiceboundModal .DoneSection button:not([isEnabled]) {
  opacity: 0.5;
}
.DiceboundModal .DoneSection button:not(:last-child) {
  margin-right: 0.5em;
}
.DiceboundModal .LootablePassiveSection {
  width: 6em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.DiceboundModal .LootablePassiveSection .LootablePassive {
  width: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Unit {
  top: 0em;
  width: 1em;
  right: 0.2em;
  bottom: 0em;
  position: absolute;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Unit .UnitSprite {
  top: 0em;
  bottom: 0em;
  margin: auto;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Summary {
  font-size: 0.5em;
  padding: 0.618em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Summary .Title {
  font-size: 1em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Summary .Description {
  font-size: 0.5em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive:not(:last-child) {
  margin-bottom: 0.2em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}
.InterstitialModal {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(178, 167, 155, 0.8);
}
.InterstitialModal .Header,
.InterstitialModal .Footer {
  font-size: 0.5em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  margin-bottom: 1em;
}
.InterstitialModal .Header .BigText,
.InterstitialModal .Footer .BigText {
  font-size: 1.3em;
  line-height: 1em;
}
.InterstitialModal .Header .SmallText,
.InterstitialModal .Footer .SmallText {
  font-size: 0.75em;
  line-height: 1em;
}
.InterstitialModal .Header .SmallText[isHoverable]:hover,
.InterstitialModal .Footer .SmallText[isHoverable]:hover {
  color: hotpink;
}
.InterstitialModal .UnitsSection {
  display: flex;
  align-items: center;
  justify-content: center;
}
.InterstitialModal .UnitsSection .Or {
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
}
.InterstitialModal .UnitsSection .Unit {
  width: 4em;
  font-size: 0.75em;
  margin: 0em 0.2em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition-duration: 0.25s;
  transition-property:
    opacity,
    filter,
    transform;
}
.InterstitialModal .UnitsSection .Unit .Thumbnail {
  width: 1em;
  height: 1em;
  position: relative;
  margin-top: 0.4em;
}
.InterstitialModal .UnitsSection .Unit .Thumbnail .UnitHealthBar {
  left: 0em;
  right: 0em;
  margin: auto;
  bottom: 0em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.InterstitialModal .UnitsSection .Unit .DraftButton {
  margin-top: 1.4em;
  width: 8em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--editor-font);
}
.InterstitialModal .UnitsSection .Unit .DraftButton span {
  font-size: 1rem;
  line-height: 1rem;
}
.InterstitialModal .UnitsSection .Unit .DraftableDice .Number {
  font-size: 0.25em;
  text-align: center;
  margin-bottom: 0.25em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.InterstitialModal .UnitsSection .Unit .DraftableDice .Description,
.InterstitialModal .UnitsSection .Unit .DraftableDice .Name {
  font-size: 0.5em;
  text-align: center;
  margin-bottom: 0.5em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
  height: 1em;
  line-height: 1em;
  position: relative;
}
.InterstitialModal .UnitsSection .Unit .DraftableDice .Description span,
.InterstitialModal .UnitsSection .Unit .DraftableDice .Name span {
  left: -3em;
  right: -3em;
  position: absolute;
  text-align: center;
}
.InterstitialModal .UnitsSection .Unit .DraftableDice .DiceLayout {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.InterstitialModal .UnitsSection .Unit .DraftableDice .DiceLayout .Dice .DiceFace {
  border-style: solid;
  border-width: 0.1em;
  border-radius: 0.1em;
  border-color: #111111;
}
.InterstitialModal .UnitsSection .Unit .EquippedDice {
  font-size: 0.5em;
}
.InterstitialModal .UnitsSection .Unit .EquippableDice {
  margin-top: 0.2em;
}
.InterstitialModal .UnitsSection .Unit .EquippableDice .Description {
  font-size: 0.25em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.InterstitialModal .UnitsSection .Unit .Status {
  left: 0em;
  right: 0em;
  bottom: -1.4em;
  position: absolute;
  line-height: 1em;
  text-align: center;
  font-size: 0.3em;
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity;
}
.InterstitialModal .UnitsSection .Unit[isLockedIn] {
  filter: grayscale(2);
  opacity: 0.75;
  transform: translateY(-0.5em);
}
.InterstitialModal .UnitsSection .Unit[isLockedIn] .Label {
  display: none;
}
.InterstitialModal .UnitsSection .Unit[isLockedIn] .Status {
  opacity: 1;
}
.InterstitialModal .DoneSection {
  padding-top: 0.5em;
  text-align: center;
}
.InterstitialModal .DoneSection button {
  font: inherit;
  font-size: 0.5em;
  padding: 0em 1em;
}
.InterstitialModal .DoneSection button:not([isEnabled]) {
  opacity: 0.5;
}
.InterstitialModal .DoneSection button:not(:last-child) {
  margin-right: 0.5em;
}
.InterstitialModal .LootablePassiveSection {
  width: 6em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.InterstitialModal .LootablePassiveSection .LootablePassive {
  width: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
}
.InterstitialModal .LootablePassiveSection .LootablePassive .Unit {
  top: 0em;
  width: 1em;
  right: 0.2em;
  bottom: 0em;
  position: absolute;
}
.InterstitialModal .LootablePassiveSection .LootablePassive .Unit .UnitSprite {
  top: 0em;
  bottom: 0em;
  margin: auto;
}
.InterstitialModal .LootablePassiveSection .LootablePassive .Summary {
  font-size: 0.5em;
  padding: 0.618em;
}
.InterstitialModal .LootablePassiveSection .LootablePassive .Summary .Title {
  font-size: 1em;
}
.InterstitialModal .LootablePassiveSection .LootablePassive .Summary .Description {
  font-size: 0.5em;
}
.InterstitialModal .LootablePassiveSection .LootablePassive:not(:last-child) {
  margin-bottom: 0.2em;
}
.InterstitialModal .LootablePassiveSection .LootablePassive:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}
.InterstitialModal section {
  opacity: 0.8;
}
.InterstitialModal section:hover {
  opacity: 1;
}

/* source/data/games/ember/scripts/modals/LootPassiveModal.less */

/* source/data/games/ember/scripts/modals/LootModal.less */
.DiceboundModal {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(178, 167, 155, 0.8);
}
.DiceboundModal .Header,
.DiceboundModal .Footer {
  font-size: 0.5em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  margin-bottom: 1em;
}
.DiceboundModal .Header .BigText,
.DiceboundModal .Footer .BigText {
  font-size: 1.3em;
  line-height: 1em;
}
.DiceboundModal .Header .SmallText,
.DiceboundModal .Footer .SmallText {
  font-size: 0.75em;
  line-height: 1em;
}
.DiceboundModal .Header .SmallText[isHoverable]:hover,
.DiceboundModal .Footer .SmallText[isHoverable]:hover {
  color: hotpink;
}
.DiceboundModal .UnitsSection {
  display: flex;
  align-items: center;
  justify-content: center;
}
.DiceboundModal .UnitsSection .Or {
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
}
.DiceboundModal .UnitsSection .Unit {
  width: 4em;
  font-size: 0.75em;
  margin: 0em 0.2em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition-duration: 0.25s;
  transition-property:
    opacity,
    filter,
    transform;
}
.DiceboundModal .UnitsSection .Unit .Thumbnail {
  width: 1em;
  height: 1em;
  position: relative;
  margin-top: 0.4em;
}
.DiceboundModal .UnitsSection .Unit .Thumbnail .UnitHealthBar {
  left: 0em;
  right: 0em;
  margin: auto;
  bottom: 0em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.DiceboundModal .UnitsSection .Unit .DraftButton {
  margin-top: 1.4em;
  width: 8em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--editor-font);
}
.DiceboundModal .UnitsSection .Unit .DraftButton span {
  font-size: 1rem;
  line-height: 1rem;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .Number {
  font-size: 0.25em;
  text-align: center;
  margin-bottom: 0.25em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .Description,
.DiceboundModal .UnitsSection .Unit .DraftableDice .Name {
  font-size: 0.5em;
  text-align: center;
  margin-bottom: 0.5em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
  height: 1em;
  line-height: 1em;
  position: relative;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .Description span,
.DiceboundModal .UnitsSection .Unit .DraftableDice .Name span {
  left: -3em;
  right: -3em;
  position: absolute;
  text-align: center;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .DiceLayout {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.DiceboundModal .UnitsSection .Unit .DraftableDice .DiceLayout .Dice .DiceFace {
  border-style: solid;
  border-width: 0.1em;
  border-radius: 0.1em;
  border-color: #111111;
}
.DiceboundModal .UnitsSection .Unit .EquippedDice {
  font-size: 0.5em;
}
.DiceboundModal .UnitsSection .Unit .EquippableDice {
  margin-top: 0.2em;
}
.DiceboundModal .UnitsSection .Unit .EquippableDice .Description {
  font-size: 0.25em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.DiceboundModal .UnitsSection .Unit .Status {
  left: 0em;
  right: 0em;
  bottom: -1.4em;
  position: absolute;
  line-height: 1em;
  text-align: center;
  font-size: 0.3em;
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity;
}
.DiceboundModal .UnitsSection .Unit[isLockedIn] {
  filter: grayscale(2);
  opacity: 0.75;
  transform: translateY(-0.5em);
}
.DiceboundModal .UnitsSection .Unit[isLockedIn] .Label {
  display: none;
}
.DiceboundModal .UnitsSection .Unit[isLockedIn] .Status {
  opacity: 1;
}
.DiceboundModal .DoneSection {
  padding-top: 0.5em;
  text-align: center;
}
.DiceboundModal .DoneSection button {
  font: inherit;
  font-size: 0.5em;
  padding: 0em 1em;
}
.DiceboundModal .DoneSection button:not([isEnabled]) {
  opacity: 0.5;
}
.DiceboundModal .DoneSection button:not(:last-child) {
  margin-right: 0.5em;
}
.DiceboundModal .LootablePassiveSection {
  width: 6em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.DiceboundModal .LootablePassiveSection .LootablePassive {
  width: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Unit {
  top: 0em;
  width: 1em;
  right: 0.2em;
  bottom: 0em;
  position: absolute;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Unit .UnitSprite {
  top: 0em;
  bottom: 0em;
  margin: auto;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Summary {
  font-size: 0.5em;
  padding: 0.618em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Summary .Title {
  font-size: 1em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive .Summary .Description {
  font-size: 0.5em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive:not(:last-child) {
  margin-bottom: 0.2em;
}
.DiceboundModal .LootablePassiveSection .LootablePassive:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}
.LootModal {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: rgba(178, 167, 155, 0.8);
}
.LootModal .Header,
.LootModal .Footer {
  font-size: 0.5em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  margin-bottom: 1em;
}
.LootModal .Header .BigText,
.LootModal .Footer .BigText {
  font-size: 1.3em;
  line-height: 1em;
}
.LootModal .Header .SmallText,
.LootModal .Footer .SmallText {
  font-size: 0.75em;
  line-height: 1em;
}
.LootModal .Header .SmallText[isHoverable]:hover,
.LootModal .Footer .SmallText[isHoverable]:hover {
  color: hotpink;
}
.LootModal .UnitsSection {
  display: flex;
  align-items: center;
  justify-content: center;
}
.LootModal .UnitsSection .Or {
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
}
.LootModal .UnitsSection .Unit {
  width: 4em;
  font-size: 0.75em;
  margin: 0em 0.2em;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition-duration: 0.25s;
  transition-property:
    opacity,
    filter,
    transform;
}
.LootModal .UnitsSection .Unit .Thumbnail {
  width: 1em;
  height: 1em;
  position: relative;
  margin-top: 0.4em;
}
.LootModal .UnitsSection .Unit .Thumbnail .UnitHealthBar {
  left: 0em;
  right: 0em;
  margin: auto;
  bottom: 0em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.LootModal .UnitsSection .Unit .DraftButton {
  margin-top: 1.4em;
  width: 8em;
  height: 1.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--editor-font);
}
.LootModal .UnitsSection .Unit .DraftButton span {
  font-size: 1rem;
  line-height: 1rem;
}
.LootModal .UnitsSection .Unit .DraftableDice .Number {
  font-size: 0.25em;
  text-align: center;
  margin-bottom: 0.25em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.LootModal .UnitsSection .Unit .DraftableDice .Description,
.LootModal .UnitsSection .Unit .DraftableDice .Name {
  font-size: 0.5em;
  text-align: center;
  margin-bottom: 0.5em;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
  height: 1em;
  line-height: 1em;
  position: relative;
}
.LootModal .UnitsSection .Unit .DraftableDice .Description span,
.LootModal .UnitsSection .Unit .DraftableDice .Name span {
  left: -3em;
  right: -3em;
  position: absolute;
  text-align: center;
}
.LootModal .UnitsSection .Unit .DraftableDice .DiceLayout {
  background-color: transparent;
  border: none;
  font-size: 1em;
}
.LootModal .UnitsSection .Unit .DraftableDice .DiceLayout .Dice .DiceFace {
  border-style: solid;
  border-width: 0.1em;
  border-radius: 0.1em;
  border-color: #111111;
}
.LootModal .UnitsSection .Unit .EquippedDice {
  font-size: 0.5em;
}
.LootModal .UnitsSection .Unit .EquippableDice {
  margin-top: 0.2em;
}
.LootModal .UnitsSection .Unit .EquippableDice .Description {
  font-size: 0.25em;
  text-align: center;
  font-family: var(--header-font);
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.LootModal .UnitsSection .Unit .Status {
  left: 0em;
  right: 0em;
  bottom: -1.4em;
  position: absolute;
  line-height: 1em;
  text-align: center;
  font-size: 0.3em;
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity;
}
.LootModal .UnitsSection .Unit[isLockedIn] {
  filter: grayscale(2);
  opacity: 0.75;
  transform: translateY(-0.5em);
}
.LootModal .UnitsSection .Unit[isLockedIn] .Label {
  display: none;
}
.LootModal .UnitsSection .Unit[isLockedIn] .Status {
  opacity: 1;
}
.LootModal .DoneSection {
  padding-top: 0.5em;
  text-align: center;
}
.LootModal .DoneSection button {
  font: inherit;
  font-size: 0.5em;
  padding: 0em 1em;
}
.LootModal .DoneSection button:not([isEnabled]) {
  opacity: 0.5;
}
.LootModal .DoneSection button:not(:last-child) {
  margin-right: 0.5em;
}
.LootModal .LootablePassiveSection {
  width: 6em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.LootModal .LootablePassiveSection .LootablePassive {
  width: 100%;
  position: relative;
  background-color: rgba(0, 0, 0, 0.2);
}
.LootModal .LootablePassiveSection .LootablePassive .Unit {
  top: 0em;
  width: 1em;
  right: 0.2em;
  bottom: 0em;
  position: absolute;
}
.LootModal .LootablePassiveSection .LootablePassive .Unit .UnitSprite {
  top: 0em;
  bottom: 0em;
  margin: auto;
}
.LootModal .LootablePassiveSection .LootablePassive .Summary {
  font-size: 0.5em;
  padding: 0.618em;
}
.LootModal .LootablePassiveSection .LootablePassive .Summary .Title {
  font-size: 1em;
}
.LootModal .LootablePassiveSection .LootablePassive .Summary .Description {
  font-size: 0.5em;
}
.LootModal .LootablePassiveSection .LootablePassive:not(:last-child) {
  margin-bottom: 0.2em;
}
.LootModal .LootablePassiveSection .LootablePassive:hover {
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.5);
}
.LootModal .SkipButton {
  margin-top: 1em;
  display: inline-block;
  background-color: rgba(178, 167, 155, 0.8);
}
.LootModal .SkipButton .Text {
  padding: 0em 1em;
  font-size: 0.5em;
}
.LootModal .SkipButton:not([isEnabled]) {
  opacity: 0.5;
}
.LootModal .SkipButton[isEnabled] {
  opacity: 0.8;
}
.LootModal .SkipButton[isEnabled]:active,
.LootModal .SkipButton[isEnabled]:hover {
  opacity: 1;
}
.EquipmentScreen {
  display: flex;
  width: 100%;
  height: 100%;
  background-color: rgba(178, 167, 155, 0.8);
}
.EquipmentScreen .ItemsSection {
  width: 6em;
  background-color: rgba(178, 167, 155, 0.8);
  display: flex;
  flex-direction: column;
}
.EquipmentScreen .ItemsSection .SelectedItem {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.EquipmentScreen .ItemsSection .ContinueButton {
  text-align: center;
  background-color: rgba(178, 167, 155, 0.8);
  opacity: 0.8;
}
.EquipmentScreen .ItemsSection .ContinueButton:hover {
  opacity: 1;
}
.EquipmentScreen .UnitsSection {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.EquipmentScreen .UnitsSection .Unit {
  flex: 1;
  display: flex;
  align-items: center;
  font-size: 1.5em;
  padding: 0em 0.2em;
}
.EquipmentScreen .UnitsSection .Unit:nth-child(2n) {
  background-color: rgba(178, 167, 155, 0.8);
}
.EquipmentScreen .UnitsSection .Unit .Status {
  width: 1em;
}
.EquipmentScreen .UnitsSection .Unit .Status .Thumbnail {
  width: 1em;
  height: 1em;
  position: relative;
}
.EquipmentScreen .UnitsSection .Unit .Status .Thumbnail .UnitHealthBar {
  left: 0em;
  right: 0em;
  margin: auto;
  bottom: 0em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.EquipmentScreen .UnitsSection .Unit .Status .Name {
  font-size: 0.25em;
  text-align: center;
}
.EquipmentScreen .UnitsSection .Items .DiceLayout {
  background-color: transparent;
  border: none;
  font-size: 0.5em;
}
.EquipmentScreen .UnitsSection .Items .DiceLayout .Dice .DiceFace {
  border-style: solid;
  border-width: 0.1em;
  border-radius: 0.1em;
  border-color: #111111;
}

/* source/data/games/ember/scripts/modals/CookingModal.less */
.CookingModal {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
.CookingModal .FeedSection {
  padding: 0.5em;
  text-align: center;
  line-height: 1em;
}
.CookingModal .FeedSection button {
  font: inherit;
}
.CookingModal .FeedSection button:not([isEnabled]) {
  opacity: 0.5;
}
.CookingModal .UnitsSection {
  display: flex;
  align-items: center;
  justify-content: center;
}
.CookingModal .UnitsSection .Unit {
  width: 1em;
  font-size: 1.5em;
  margin: 0em 0.2em;
}
.CookingModal .UnitsSection .Unit .Sprite {
  width: 1em;
  height: 1em;
  position: relative;
}
.CookingModal .UnitsSection .Unit .UnitHealthBar {
  left: 0em;
  right: 0em;
  margin: auto;
  bottom: 0em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.CookingModal .UnitsSection .Unit .Description {
  font-size: 0.15em;
  text-align: center;
}
.CookingModal .UnitsSection .Unit .Description .Name {
  font-size: 1.25em;
}
.CookingModal .UnitsSection .Unit .Description .Status[color=red] {
  color: #d54b33;
}
.CookingModal .UnitsSection .Unit button:not([isEnabled]) {
  opacity: 0.5;
}
.CookingModal .FoodsSection {
  flex: 1;
  padding: 0.5em;
  text-align: center;
}
.CookingModal .DoneSection {
  padding: 0.5em;
  text-align: center;
}
.CookingModal .DoneSection button {
  font: inherit;
  font-size: 0.75em;
  padding: 0em 1em;
}

/* source/data/games/ember/views/hud/ContinuePrompt.less */
.EmberStatus {
  position: absolute;
  top: 1em;
  left: 0em;
  right: 0em;
  font-size: 0.3em;
  text-align: center;
}
.EmberStatus [number="0"] {
  color: #d54b33;
}

/* source/views/components/Frame.less */
.Frame {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  width: 16em;
  height: 9em;
  margin: auto;
  position: absolute;
  color: #f0ead6;
  font-family: var(--base-font);
  background-color: #29202e;
  overflow: hidden;
}

/* source/data/games/ember/views/screens/LoadingScreen.less */
.EmberLoadingScreen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
}
.EmberLoadingScreen .ProgressBar {
  width: 3em;
  height: 0.1em;
  overflow: hidden;
  border-radius: 0.1em;
  opacity: 0;
  animation-name: fade-in;
  animation-duration: 0.25s;
  animation-delay: 0.25s;
  animation-fill-mode: forwards;
}
.EmberLoadingScreen .ProgressBar .Fill {
  width: 100%;
  height: 100%;
  border-radius: 0.1em;
  background-color: #f0ead6;
}

/* source/data/games/ember/views/screens/TitleScreen.less */
.Ember.TitleScreen {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: auto 100%;
  background-position: center right;
  background-image: url("./titlescreen.lowres-KXIGWILF.png");
}
.Ember.TitleScreen .Contents {
  top: 0em;
  right: 0em;
  bottom: 0em;
  width: 55%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-bottom: 1.5em;
}
.Ember.TitleScreen .Contents .Title {
  height: 1.5em;
  margin-bottom: 0.3em;
}
.Ember.TitleScreen .Contents .Buttons {
  padding-left: 0.15em;
}
.Ember.TitleScreen .Contents .Buttons .Button {
  font-size: 0.4em;
  color: #feebcc;
}
.Ember.TitleScreen .Contents .Buttons .Button:hover {
  opacity: 1;
  color: #ff8232;
  cursor: pointer;
}

/* source/views/components/Portrait.less */
.Portrait {
  position: relative;
}
.Portrait .PortraitLayer {
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto 100%;
  mask-position: center bottom;
  mask-repeat: no-repeat;
  mask-size: auto 100%;
}

/* source/data/games/ember/views/screens/EmbarkScreen.less */
.EmberEmbarkScreen {
  width: 100%;
  height: 100%;
  position: relative;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center top;
  background-image: url("./embarkscreen3.lowres-D72LTQ2E.png");
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.EmberEmbarkScreen .Blackout {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  z-index: 100;
  position: absolute;
  opacity: 1;
  animation-delay: 0.1s;
  animation-duration: 1s;
  animation-name: fadeout;
  animation-fill-mode: forwards;
  pointer-events: none;
  background-color: #000;
}
.EmberEmbarkScreen .Header .Text {
  font-size: 1em;
  text-stroke: 0.25em #000;
  -ms-text-stroke: 0.25em #000;
  -moz-text-stroke: 0.25em #000;
  -webkit-text-stroke: 0.25em #000;
  paint-order: stroke fill;
  display: none;
}
.EmberEmbarkScreen .Units {
  z-index: 10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.2em;
  margin: 0.5em 0em;
}
.EmberEmbarkScreen .Units .Unit {
  perspective: 10em;
}
.EmberEmbarkScreen .Units .Unit .Card {
  width: 2.75em;
  height: 4.75em;
  transform: rotateY(0deg);
  transform-style: preserve-3d;
  transition-property: transform, box-shadow;
  transition-duration: 0.25s;
  box-shadow: 0em 0.2em 0.4em #000;
}
.EmberEmbarkScreen .Units .Unit .Card .CardBack {
  width: 2.75em;
  height: 4.75em;
  position: absolute;
  transform: translateZ(-1px) rotateY(180deg);
  overflow: hidden;
  background-color: #000;
  background-repeat: no-no-repeat;
  background-image: url("./cardback.lowres-7CO3ME75.png");
  background-size: cover;
  border-radius: 0.1em;
}
.EmberEmbarkScreen .Units .Unit .Card .CardFront {
  width: 2.75em;
  height: 4.75em;
  position: absolute;
  border-color: #000;
  border-style: solid;
  border-width: 0.1em;
  border-radius: 0.1em;
  overflow: hidden;
  background-color: #000;
  background-size: 4em auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-image: url("./cardbackground-3HMXKEEM.png");
}
.EmberEmbarkScreen .Units .Unit .Card .CardFront .Number {
  top: 0em;
  right: 0em;
  color: #817F91;
}
.EmberEmbarkScreen .Units .Unit .Card .CardFront .Title {
  left: 0em;
  right: 0em;
  bottom: 0em;
  color: #FFF;
}
.EmberEmbarkScreen .Units .Unit .Card .CardFront .Title,
.EmberEmbarkScreen .Units .Unit .Card .CardFront .Number {
  z-index: 10000;
  position: absolute;
  padding: 0.1em 0.2em;
  text-align: center;
}
.EmberEmbarkScreen .Units .Unit .Card .CardFront .Title .Text,
.EmberEmbarkScreen .Units .Unit .Card .CardFront .Number .Text {
  text-stroke: 0.25em #000;
  -ms-text-stroke: 0.25em #000;
  -moz-text-stroke: 0.25em #000;
  -webkit-text-stroke: 0.25em #000;
  paint-order: stroke fill;
  line-height: 1em;
  font-size: 0.33em;
  font-family: var(--fancy-font);
}
.EmberEmbarkScreen .Units .Unit .Card .CardFront .Portrait {
  left: -4em;
  right: -4em;
  bottom: 0em;
  margin: auto;
  width: 4em;
  height: 100%;
  position: absolute;
}
.EmberEmbarkScreen .Units .Unit .Details {
  margin-top: 1em;
  text-align: center;
  font-size: 0.2em;
  opacity: 0;
  transition-duration: 1s;
  transition-delay: 1s;
  transition-property: opacity;
}
.EmberEmbarkScreen .Units .Unit .Details .Description {
  opacity: 0.5;
}
.EmberEmbarkScreen .Units .Unit .Details .LearnMoreButton {
  display: none;
  opacity: 0.5;
}
.EmberEmbarkScreen .Units .Unit .Details .LearnMoreButton:hover {
  opacity: 1;
  cursor: pointer;
}
.EmberEmbarkScreen .Units .Unit:not([isSelectable]) .Portrait {
  filter: brightness(0) drop-shadow(0.15em -0.1em #B7341A) drop-shadow(-0.1em -0.1em #B7341A);
}
.EmberEmbarkScreen .Units .Unit:not([isRevealed]) .Card {
  transform: rotateY(180deg);
}
.EmberEmbarkScreen .Units .Unit:not([isRevealed]) .Card:hover {
  cursor: pointer;
  box-shadow: 0em 0.4em 0.6em #000;
  transform: translateY(-0.2em) rotateY(180deg);
}
.EmberEmbarkScreen .Units .Unit[isRevealed] .Card {
  transform: rotateY(0deg);
}
.EmberEmbarkScreen .Units .Unit[isRevealed] .Details {
  opacity: 1;
}
.EmberEmbarkScreen .EmbarkButton {
  width: 2em;
  padding: 0.1em;
  border-radius: 0.1em;
  border-style: solid;
  border-width: 0.05em;
  border-color: #434C5A;
  color: #f0ead6;
  background-color: #14181C;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition-delay: 1.5s;
  transition-duration: 1s;
  transition-property: opacity;
  pointer-events: none;
}
.EmberEmbarkScreen .EmbarkButton .Text {
  font-size: 0.3em;
}
.EmberEmbarkScreen .EmbarkButton:hover {
  cursor: pointer;
  background-color: #1F242F;
}
.EmberEmbarkScreen .EmbarkButton[isVisible] {
  opacity: 1;
  pointer-events: all;
}
.WaitForClickScreen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
}
.WaitForClickScreen .Button {
  font-size: 20px;
  line-height: 33px;
  cursor: pointer;
  padding: 0.4em 0.8em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #B7341A;
  text-shadow: 0px 1px 0px #d04d33;
  box-shadow: inset 0 0 1px rgba(255, 255, 255, 0.21);
  border-radius: 3px;
}
.WaitForClickScreen .Button svg {
  margin-right: 5px;
}
.WaitForClickScreen .Button:active {
  margin-top: 4px;
}

/* source/views/Mount.less */
.Mount {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  display: flex;
  position: absolute;
  background-color: #111111;
}
.Mount .FrameSection {
  width: 100%;
  height: 100%;
  position: relative;
}
.Mount:not([isDev=true]) .DevHellButton,
.Mount:not([isDev=true]) .ProductionButton {
  display: none;
}
.Mount[isDev=true] .DevHellButton,
.Mount[isDev=true] .ProductionButton {
  display: block;
}
.Mount[isDev=true][isInProtoMode=true] .Frame {
  overflow: visible;
  background-color: transparent;
}
.PreloadedImages {
  position: absolute;
  pointer-events: none;
  top: 100%;
  left: 100%;
}
.BlankScreen {
  width: 100%;
  height: 100%;
  background-color: #000000;
}
.LoadingScreen {
  width: 100%;
  height: 100%;
}
.LoadingScreen .Text {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  opacity: 0;
}
.LoadingScreen .Base {
  font-family: var(--base-font);
}
.LoadingScreen .Header {
  font-family: var(--header-font);
}
.LoadingScreen .ProgressBar {
  top: 0em;
  left: 0em;
  bottom: 0em;
  position: absolute;
  background-color: #d54b33;
}
.PartyScreen {
  display: flex;
  height: 100%;
}
.PartyScreen .ItemSection {
  width: 4em;
  background-color: blue;
}
.PartyScreen .ItemSection .ItemStub {
  font-size: 0.5em;
  padding: 0em 0.5em;
}
.PartyScreen .ItemSection .ItemStub:hover {
  cursor: pointer;
  background-color: black;
}
.PartyScreen .UnitSection {
  flex: 1;
  position: relative;
}
.PartyScreen .UnitSection .SelectedUnit .Name {
  padding: 0.25em;
  text-align: center;
}
.PartyScreen .UnitSection .SelectedUnit .Items {
  top: 0em;
  right: 0em;
  bottom: 0em;
  margin: auto;
  display: flex;
  position: absolute;
  justify-content: center;
  flex-direction: column;
}
.PartyScreen .UnitSection .SelectedUnit .Items .Item {
  height: 1em;
  padding: 1em;
  font-size: 0.25em;
  text-align: right;
}
.PartyScreen .UnitSection .UnitList {
  left: 0em;
  right: 0em;
  bottom: 0.25em;
  display: flex;
  position: absolute;
  justify-content: center;
}
.PartyScreen .UnitSection .UnitList .UnitStub {
  width: 1em;
  height: 1em;
  margin: 0em 1em;
  font-size: 0.5em;
  line-height: 1em;
  text-align: center;
  border-radius: 0.1em;
  background-color: blue;
}
.PartyScreen .UnitSection .UnitList .UnitStub:hover {
  cursor: pointer;
  background-color: orange;
}
.MissionScreen {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  display: flex;
  overflow: hidden;
  font-family: editor;
}
.MissionScreen .MissionsList {
  width: 6em;
  overflow-y: scroll;
  background-color: #002721;
}
.MissionScreen .MissionsList::-webkit-scrollbar {
  display: none;
}
.MissionScreen .MissionsList .MailClient {
  font-size: 0.5em;
  padding: 0.3236em;
}
.MissionScreen .MissionsList .Filters {
  display: flex;
  gap: 0.5em;
  font-size: 0.4em;
  padding: 0.3236em;
  cursor: pointer;
}
.MissionScreen .MissionsList .Filters .SelectedFilter {
  border-bottom: orange 5px solid;
}
.MissionScreen .MissionsList .Mission {
  font-size: 0.66em;
  padding: 0.3em 0.2em;
  display: flex;
  gap: 0.25em;
  border-top: #141716 2px solid;
  cursor: pointer;
  background-color: #206649;
  opacity: 1;
  transition-property: opacity, background-color;
  transition-duration: 0.25s;
}
.MissionScreen .MissionsList .Mission .CompanyLogo {
  width: 0.99em;
  height: 0.99em;
  background-color: black;
  border-radius: 50%;
}
.MissionScreen .MissionsList .Mission .Sender {
  font-size: 0.4em;
}
.MissionScreen .MissionsList .Mission .Title {
  font-size: 0.33em;
  opacity: 0.66;
}
.MissionScreen .MissionsList .Mission .Date {
  font-size: 0.3em;
  white-space: nowrap;
}
.MissionScreen .MissionsList .Mission .Important {
  font-size: 0.5em;
  text-align: center;
}
.MissionScreen .MissionsList .Mission[isFinished] {
  background-color: #002721;
}
.MissionScreen .MissionsList .Mission:not([isFinished]) {
  border-left: orange 3px solid;
}
.MissionScreen .MissionsList .Mission:hover {
  background-color: #141716;
  transition-duration: 0s;
}
.MissionScreen .MissionsList .Mission[isSelected] {
  background-color: #141716;
  font-weight: bold;
}
.MissionScreen .MissionsList .Mission:not([isReachable]) {
  opacity: 0.5;
  background-color: transparent;
}
.MissionScreen .MissionsList .Mission:not([isDisplayed]) {
  opacity: 0;
}
.MissionScreen .SelectedMission {
  flex: 1;
  display: flex;
  flex-direction: column;
  background-color: #141716;
}
.MissionScreen .SelectedMission .Details {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0.53394em;
  gap: 0.5em;
  overflow: auto;
}
.MissionScreen .SelectedMission .Details .EmailHeader {
  display: flex;
  gap: 0.5em;
  align-items: center;
}
.MissionScreen .SelectedMission .Details .EmailHeader .CompanyLogo {
  width: 1.5em;
  height: 1.5em;
  background-color: black;
  border-radius: 50%;
}
.MissionScreen .SelectedMission .Details .EmailHeader .SenderAndDate {
  display: flex;
  justify-content: space-between;
  gap: 0.25em;
}
.MissionScreen .SelectedMission .Details .EmailHeader .SenderAndDate .Sender {
  font-size: 0.33em;
}
.MissionScreen .SelectedMission .Details .EmailHeader .SenderAndDate .Date {
  font-size: 0.2em;
  white-space: nowrap;
}
.MissionScreen .SelectedMission .Details .EmailHeader .Title {
  font-size: 0.4em;
  opacity: 0.66;
}
.MissionScreen .SelectedMission .Details .Subtitle {
  font-size: 0.33em;
  opacity: 0.66;
}
.MissionScreen .SelectedMission .Details .Title {
  font-size: 0.66em;
  margin-bottom: 0.33em;
}
.MissionScreen .SelectedMission .Details .Briefing {
  font-size: 0.33em;
}
.MissionScreen .SelectedMission .Details .Briefing:not(:last-child) {
  margin-bottom: 1em;
}
.MissionScreen .SelectedMission .Commands {
  display: flex;
  padding: 0.53394em;
  justify-content: flex-end;
}
.MissionScreen .SelectedMission .Commands .GoButton {
  width: 3em;
  text-align: center;
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
  background-color: #25af6c;
}
.MissionScreen .SelectedMission .Commands .GoButton:hover {
  background-color: #1c2e27;
}
.OverworldScreen {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  overflow: hidden;
  font-size: 1.15em;
}
.OverworldScreen .Map,
.OverworldScreen .Image {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  image-rendering: pixelated;
  -webkit-user-drag: none;
  -moz-user-drag: none;
  -ms-user-drag: none;
  user-drag: none;
  opacity: 0.3;
}
.OverworldScreen .OverworldPrompt {
  top: 0em;
  left: 0em;
  right: 0em;
  padding: 0.2em;
  text-align: center;
  position: absolute;
  font-family: var(--header-font);
  text-stroke: 0.25em #111111;
  -ms-text-stroke: 0.25em #111111;
  -moz-text-stroke: 0.25em #111111;
  -webkit-text-stroke: 0.25em #111111;
  paint-order: stroke fill;
}
.OverworldScreen .Player {
  width: 0.4em;
  height: 0.4em;
  margin-top: -0.4em;
  margin-left: -0.4em;
  position: absolute;
  background-color: gray;
  transition-property: top, left;
  transition-timing-function: ease-in;
  transition-duration: 3000ms;
}
.OverworldScreen .Location {
  width: 0.8em;
  height: 0.4em;
  margin-left: -0.4em;
  margin-top: -0.4em;
  position: absolute;
  z-index: 10;
  text-align: center;
  color: black;
  font-family: serif;
  background-color: #0b6e4f;
  border-radius: 100%;
  transition-property: opacity, filter;
  transition-duration: 0.5s;
  opacity: 0;
  filter: grayscale(1);
}
.OverworldScreen .Location .Text {
  bottom: -1.2em;
  left: -2em;
  right: -2em;
  height: 1em;
  position: absolute;
  line-height: 1em;
  white-space: nowrap;
  text-align: center;
  font-size: 0.2em;
}
.OverworldScreen .Location .Text .Title,
.OverworldScreen .Location .Text .Subtitle {
  background-color: #0b6e4f;
  color: #f0ead6;
}
.OverworldScreen .Location .Text .Subtitle {
  font-size: 0.8em;
}
.OverworldScreen .Location .Icon {
  width: 3em;
  height: 4em;
  left: -4em;
  right: -4em;
  margin: auto;
  bottom: -0.2em;
  position: absolute;
  font-size: 0.75em;
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.5s;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  pointer-events: none;
}
.OverworldScreen .Location[isDisplayed] {
  opacity: 1;
}
.OverworldScreen .Location[isReachable] {
  filter: grayscale(0);
}
.OverworldScreen .Location[isFinished] {
  opacity: 0.5;
}
.OverworldScreen .Location[isFinished] .Icon {
  opacity: 0;
}
.OverworldScreen .Location[isReachable]:not([isFinished]):hover {
  cursor: pointer;
  background-color: #f0ead6;
  color: #000;
}
.OverworldScreen .Location[isReachable]:not([isFinished]):hover .Title,
.OverworldScreen .Location[isReachable]:not([isFinished]):hover .Subtitle {
  background-color: #f0ead6;
  color: #000;
}
.OverworldScreen .Route {
  width: 0.3em;
  height: 0.3em;
  margin-left: -0.15em;
  margin-top: -0.15em;
  position: absolute;
  z-index: 9;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./red-route-53NYROCG.png");
  image-rendering: pixelated;
  transition-property: opacity, filter;
  transition-duration: 0.5s;
  opacity: 0;
  filter: grayscale(1);
}
.OverworldScreen .Route[isDisplayed] {
  opacity: 1;
}
.OverworldScreen .Route[isReachable] {
  filter: grayscale(0);
}
.CreditsScreen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.CreditsScreen .Letter {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./endgamerejectionletter-TBFDHRKG.png");
}
.CreditsScreen .Names {
  font-size: 0.33em;
  color: black;
  z-index: 99;
  width: 12em;
  position: absolute;
  font-family: serif;
  padding: 1em;
}
.CreditsScreen[gameSlug=pirates] {
  background-size: cover;
  background-position: center;
  background-image: url("./overworld.map-XATJFB6I.png");
}
.CreditsScreen[gameSlug=pirates] .Title {
  background-image: url("./TitleVector-DMYG26UQ.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 70%;
}
.CreditsScreen[gameSlug=pirates] .Title span {
  display: none;
}
.CreditsScreen .Content {
  position: relative;
  animation-delay: 8s;
  animation-duration: 50s;
  animation-name: scroll;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}
.CreditsScreen .Content .Title {
  width: 16em;
  height: 9em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--header-font);
  text-align: center;
  -webkit-text-stroke: 0.03em #111111;
  text-shadow: 0.03em 0.03em #111111;
  animation-delay: 4s;
  animation-duration: 3s;
  animation-name: coolfadein;
  animation-fill-mode: forwards;
  opacity: 0;
}
.CreditsScreen .Content .Title span {
  font-size: 2em;
}
.CreditsScreen .Content .Title img {
  height: 6em;
}
@keyframes coolfadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.CreditsScreen .Content .Header {
  font-size: 0.5em;
}
.CreditsScreen .Content .Credits {
  text-align: center;
  margin-top: 2em;
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
}
.CreditsScreen .Content .Credits .Contributors {
  font-size: 0.5em;
}
.CreditsScreen .Content .Credits .Contributors .ContributorsLine {
  display: flex;
  width: 12em;
  margin-bottom: 1em;
  justify-content: center;
}
.CreditsScreen .Content .Credits .Contributors .ContributorsLine .Contributor {
  width: 8em;
  display: flex;
  margin: 0em 1em;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.CreditsScreen .Content .Credits .Contributors .ContributorsLine .Contributor .Sprite {
  width: 100%;
  height: 8em;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  margin-bottom: -1em;
  margin-top: -2em;
}
.CreditsScreen .Content .Credits .Contributors .ContributorsLine .Contributor .Position {
  font-size: 0.5em;
}
.CreditsScreen .Content .SpecialThanks {
  width: 16em;
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-shadow: 0.03em 0.03em #111111;
}
.CreditsScreen .Content .SpecialThanks .Name {
  font-size: 0.25em;
}
.CreditsScreen .Content .FinalScreen {
  width: 100%;
  height: 9em;
  margin-top: 12em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.CreditsScreen .Content .CallToAction {
  width: 16em;
  margin-top: 6em;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.CreditsScreen .Content .CallToAction .BoxButNotThatBox {
  background-image: url("./dialoguebox-LBV4WHUN.png");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
  width: 10em;
  height: 2em;
  padding: 0.5em 1em;
  margin-top: 1em;
}
.CreditsScreen .Content .CallToAction .BoxButNotThatBox label {
  font-size: 0.5em;
  line-height: 1em;
  display: block;
  text-align: left;
}
.CreditsScreen .Content .CallToAction .BoxButNotThatBox .Inputs {
  font-size: 0.5em;
  display: flex;
}
.CreditsScreen .Content .CallToAction .BoxButNotThatBox .Inputs input {
  display: flex;
  justify-content: center;
  font: inherit;
  font-size: 0.5em;
  width: 100%;
  border: none;
  height: 2em;
  line-height: 2em;
}
.CreditsScreen .Content .CallToAction .BoxButNotThatBox .Inputs input[type=email] {
  padding-left: 1em;
  background-color: #f0EAD6;
  border-top-left-radius: 1em;
  border-bottom-left-radius: 1em;
}
.CreditsScreen .Content .CallToAction .BoxButNotThatBox .Inputs input[type=submit] {
  width: 8em;
  font-size: 0.5em;
  cursor: pointer;
  color: #f0EAD6;
  background-color: #c1666b;
  border-top-right-radius: 1em;
  border-bottom-right-radius: 1em;
}
.CreditsScreen .Content .CallToAction .BoxButNotThatBox .Inputs input[type=submit]:hover {
  background-color: #ae464c;
}
@keyframes scroll {
  0% {
    top: 0em;
  }
  100% {
    top: -24em;
  }
}
.TitleScreen {
  width: 100%;
  height: 100%;
}
.TitleScreen.Test {
  display: flex;
  align-items: center;
  justify-content: center;
}
.TitleScreen .Splash {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  text-align: center;
  position: absolute;
  background-color: #000;
  opacity: 1;
  animation-duration: 3s;
  animation-delay: 9s;
  animation-name: fade-out-and-die;
  animation-fill-mode: forwards;
}
.TitleScreen .Splash .Logo1,
.TitleScreen .Splash .Logo2 {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  margin: auto;
  height: 1em;
  width: 100%;
  position: absolute;
  font-size: 0.5em;
}
.TitleScreen .Splash .Logo1 {
  opacity: 0;
  animation-delay: 1s;
  animation-duration: 3s;
  animation-name: fade-in-out;
  animation-fill-mode: forwards;
}
.TitleScreen .Splash .Logo2 {
  opacity: 0;
  animation-duration: 5s;
  animation-delay: 5s;
  animation-name: fade-in-out;
  animation-fill-mode: forwards;
}
.TitleScreen .Splash .Logo2 .Small {
  font-size: 0.66em;
}
.TitleScreen .Splash[isSplashing=false] {
  display: none;
}
@keyframes fade-in-out {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade-out-and-die {
  0% {
    opacity: 1;
  }
  99% {
    opacity: 0;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.TitleScreen .Main {
  width: 100%;
  height: 100%;
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.TitleScreen .Main .Title {
  font-size: 2em;
  color: #9F4A54;
  line-height: 1em;
  font-family: var(--header-font);
}
.TitleScreen .Main .Subtitle {
  font-size: 0.5em;
  margin-bottom: 1em;
}
.TitleScreen .Main .Button {
  font-size: 0.8em;
  color: #9F4A54;
}
.TitleScreen .Main .Button:hover {
  color: #482226;
}
.TitleScreen .Main .Button[isDead] {
  color: #482226;
}
.TitleScreen .Main .Button[isShaky] {
  animation-name: shake;
  animation-duration: 0.5s;
  animation-play-state: running;
  animation-iteration-count: infinite;
}
@keyframes shake {
  0% {
    margin-left: 0.1em;
    margin-top: 0em;
  }
  10% {
    margin-left: 0em;
    margin-top: 0.1em;
  }
  20% {
    margin-left: -0.1em;
    margin-top: -0.1em;
  }
  30% {
    margin-left: 0.1em;
    margin-top: 0.1em;
  }
  40% {
    margin-left: -0.1em;
    margin-top: 0.1em;
  }
  50% {
    margin-left: -0.1em;
    margin-top: 0em;
  }
  60% {
    margin-left: 0em;
    margin-top: -0.1em;
  }
  70% {
    margin-left: 0.1em;
    margin-top: -0.1em;
  }
  80% {
    margin-left: -0.1em;
    margin-top: -0.1em;
  }
  90% {
    margin-left: -0.1em;
    margin-top: 0.1em;
  }
  100% {
    margin-left: 0em;
    margin-top: 0em;
  }
}
.TitleScreen .Main .Button[isShaky]::after {
  content: "?";
}
.TitleScreen .Main .Button[isShaky]:hover {
  animation-play-state: paused;
}
.TitleScreen .Main .Button[isShaky]:hover::after {
  content: "!";
}
.TitleScreen .Main .Button.Smaller {
  font-size: 0.4em;
}
.TitleScreen .Main .DevHellButton {
  bottom: 0em;
  right: 0em;
  font-size: 0.5em;
  opacity: 0.5;
  position: absolute;
}
.TitleScreen .Main .DevHellButton:hover {
  opacity: 1;
}
.TitleScreen .Main .ProductionButton {
  bottom: 0em;
  left: 0em;
  font-size: 0.5em;
  opacity: 0.5;
  position: absolute;
}
.TitleScreen .Main .ProductionButton:hover {
  opacity: 1;
}
.ErrorScreen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* source/views/components/Camera.less */
.Camera {
  position: absolute;
  isolation: isolate;
}

/* source/views/components/Cursor.less */
.Cursor {
  width: 1em;
  height: 1em;
  z-index: 65;
  position: absolute;
  transition-duration: 0s;
  transition-property: top left;
}
.Cursor .Spot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #555;
}
.Cursor .Sprite {
  top: 0.5em;
  left: 0.5em;
  position: absolute;
  background-size: 0.2em;
  background-repeat: no-repeat;
  background-position:
    top left,
    top right,
    bottom left,
    bottom right;
  background-image:
    url("./cursor-top-left-KA57O3X3.png"),
    url("./cursor-top-right-4TPTYY7C.png"),
    url("./cursor-bottom-left-UHHLFWBB.png"),
    url("./cursor-bottom-right-C4DL6KIM.png");
  animation-name: Cursor;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  transition-duration: 0.125s;
  transition-property: width height margin-left margin-top;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  margin-left: -0.5em;
}
.Cursor .Sprite[isHovered=true] {
  width: 1.2em;
  height: 1.2em;
  margin-top: -0.6em;
  margin-left: -0.6em;
  animation-name: none;
}
@keyframes Cursor {
  0% {
    transform: scale(1);
  }
  90% {
    transform: scale(1);
  }
  95% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

/* source/views/components/UnitTemplateSprite.less */
.PlaceholderSpot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #555;
}

/* source/views/components/UnitExperienceBar.less */
.UnitExperienceBar {
  overflow: hidden;
  background-color: #f0ead6;
  position: relative;
  border-width: 0.05em;
  border-color: #000222;
  border-style: solid;
  opacity: 0;
  transition-duration: 0.5s;
  transition-property: opacity;
}
.UnitExperienceBar[isVisible=true] {
  opacity: 1;
}
.UnitExperienceBar .Fill {
  width: 0%;
  height: 100%;
  z-index: 10;
  position: absolute;
  background-color: #62C370;
  transition-property: width;
  transition-duration: 0.1s;
}

/* source/views/components/Unit.less */
.Stage .UnitItem,
.DevBattleEditorScreen .UnitItem {
  position: absolute;
}
.Stage .UnitItem .ItemBreakdown,
.DevBattleEditorScreen .UnitItem .ItemBreakdown {
  z-index: 8000;
  display: none;
}
.Stage .UnitItem[isRightClicked] .ItemBreakdown,
.DevBattleEditorScreen .UnitItem[isRightClicked] .ItemBreakdown {
  display: block;
}
.Stage .Unit,
.DevBattleEditorScreen .Unit {
  width: 1em;
  height: 1em;
  position: absolute;
}
.Stage .Unit:not([isInBounds]) .UnitSprite,
.DevBattleEditorScreen .Unit:not([isInBounds]) .UnitSprite {
  opacity: 0.5;
}
.Stage .Unit:not([isInBounds]) .UnitHealthBar,
.DevBattleEditorScreen .Unit:not([isInBounds]) .UnitHealthBar {
  opacity: 0;
}
.Stage .Unit .Gab,
.DevBattleEditorScreen .Unit .Gab {
  left: -2em;
  right: -2em;
  bottom: 1.1em;
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.Stage .Unit .Gab .Text,
.DevBattleEditorScreen .Unit .Gab .Text {
  height: 1em;
  font-size: 0.5em;
  background-color: orange;
}
.Stage .Unit .ClickableArea,
.DevBattleEditorScreen .Unit .ClickableArea {
  width: 1em;
  height: 1em;
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  z-index: 9000;
  position: absolute;
}
.Stage .Unit .ArmorCount,
.DevBattleEditorScreen .Unit .ArmorCount {
  z-index: 1000;
  bottom: 0.13em;
  position: absolute;
  text-align: center;
}
.Stage .Unit .ArmorCount .Text,
.DevBattleEditorScreen .Unit .ArmorCount .Text {
  font-size: 0.2em;
  text-stroke: 0.5em #111111;
  -ms-text-stroke: 0.5em #111111;
  -moz-text-stroke: 0.5em #111111;
  -webkit-text-stroke: 0.5em #111111;
  paint-order: stroke fill;
}
.Stage .Unit .DiceSection,
.DevBattleEditorScreen .Unit .DiceSection {
  z-index: 1001;
  bottom: 0.13em;
  position: absolute;
  transform: scale(0.33);
  transform-origin: center bottom;
  transition-duration: 0.1s;
  transition-property: transform;
  transition-timing-function: ease-out;
}
.Stage .Unit .DiceSection .Dice,
.DevBattleEditorScreen .Unit .DiceSection .Dice,
.Stage .Unit .DiceSection .DiceCube,
.DevBattleEditorScreen .Unit .DiceSection .DiceCube {
  font-size: 0.75em;
}
.Stage .Unit[affiliation=good] .DiceSection,
.DevBattleEditorScreen .Unit[affiliation=good] .DiceSection {
  left: 0.125em;
  transform-origin: bottom left;
}
.Stage .Unit[affiliation=good] .ArmorCount,
.DevBattleEditorScreen .Unit[affiliation=good] .ArmorCount {
  left: 0.4em;
  right: 0em;
}
.Stage .Unit[affiliation=bad] .DiceSection,
.DevBattleEditorScreen .Unit[affiliation=bad] .DiceSection {
  right: 0.125em;
  transform-origin: bottom right;
}
.Stage .Unit[affiliation=bad] .ArmorCount,
.DevBattleEditorScreen .Unit[affiliation=bad] .ArmorCount {
  right: 0.4em;
  left: 0em;
}
.Stage .Unit[phase=rolling]:not([isLockedIn]) .DiceSection,
.DevBattleEditorScreen .Unit[phase=rolling]:not([isLockedIn]) .DiceSection {
  transform: scale(1);
}
.Stage .Unit .ReadyLabel,
.DevBattleEditorScreen .Unit .ReadyLabel,
.Stage .Unit .ReadyingLabel,
.DevBattleEditorScreen .Unit .ReadyingLabel {
  text-stroke: 0.5em #111111;
  -ms-text-stroke: 0.5em #111111;
  -moz-text-stroke: 0.5em #111111;
  -webkit-text-stroke: 0.5em #111111;
  paint-order: stroke fill;
  font-size: 0.25em;
  transform: rotate(45deg);
  top: 0em;
  left: -2em;
  right: -2em;
  bottom: 0em;
  z-index: 2000;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}
.Stage .Unit[affiliation=good][isHovered]:not([isLockedIn]) .ReadyingLabel[isVisible],
.DevBattleEditorScreen .Unit[affiliation=good][isHovered]:not([isLockedIn]) .ReadyingLabel[isVisible] {
  opacity: 1;
  font-size: 0.125em;
}
.Stage .Unit[phase=rolling][affiliation=good][isLockedIn] .ReadyLabel,
.DevBattleEditorScreen .Unit[phase=rolling][affiliation=good][isLockedIn] .ReadyLabel {
  opacity: 1;
  transition-duration: 1s;
  transition-delay: 0.35s;
  transition-property: opacity;
}
.Stage .Unit .UnitElement,
.DevBattleEditorScreen .Unit .UnitElement {
  opacity: 0;
  left: 0em;
  bottom: 0em;
  position: absolute;
  width: 0.23em;
  height: 0.23em;
  border-width: 0.05em;
  border-color: #2D2D2A;
  border-style: solid;
}
.Stage .Unit .UnitElement[element=fire],
.DevBattleEditorScreen .Unit .UnitElement[element=fire] {
  transform: rotate(45deg);
}
.Stage .Unit .UnitElement[element=water],
.DevBattleEditorScreen .Unit .UnitElement[element=water] {
  border-radius: 100%;
}
.Stage .Unit .UnitHealthBar,
.DevBattleEditorScreen .Unit .UnitHealthBar {
  bottom: 0em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
  left: 0em;
  right: 0em;
  margin: auto;
  max-width: 0.75em;
}
.Stage .Unit .UnitHealthBar .Label span,
.DevBattleEditorScreen .Unit .UnitHealthBar .Label span {
  font-size: 0.1em;
}
.Stage .Unit .UnitExperienceBar,
.DevBattleEditorScreen .Unit .UnitExperienceBar {
  left: 0em;
  right: 0em;
  margin: auto;
  bottom: 0.1em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.Stage .Unit .UnitLevel,
.DevBattleEditorScreen .Unit .UnitLevel {
  left: 0em;
  right: 0em;
  z-index: 999;
  bottom: 1em;
  font-size: 0.15em;
  position: absolute;
  text-align: center;
  text-stroke: 0.5em #111111;
  -ms-text-stroke: 0.5em #111111;
  -moz-text-stroke: 0.5em #111111;
  -webkit-text-stroke: 0.5em #111111;
  paint-order: stroke fill;
}
.Stage .Unit .Selection,
.DevBattleEditorScreen .Unit .Selection {
  left: 0em;
  right: 0em;
  bottom: 0.1em;
  margin: auto;
  width: 0.8em;
  height: 0.8em;
  z-index: -1;
  position: absolute;
  border-radius: 0.1em;
  background-color: #f0ead6;
  opacity: 0;
}
.Stage .Unit .Selection[isHovered],
.DevBattleEditorScreen .Unit .Selection[isHovered] {
  opacity: 0.9;
}
.Stage .Unit .Selection[isSelected],
.DevBattleEditorScreen .Unit .Selection[isSelected] {
  opacity: 1;
}
.Stage .Unit .PredictiveDamage,
.DevBattleEditorScreen .Unit .PredictiveDamage {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  z-index: 10;
  margin: auto;
  width: 3em;
  height: 3em;
  position: absolute;
  line-height: 3em;
  font-size: 0.25em;
  text-align: center;
  font-family: var(--standard-font);
  text-stroke: 0.5em #111111;
  -ms-text-stroke: 0.5em #111111;
  -moz-text-stroke: 0.5em #111111;
  -webkit-text-stroke: 0.5em #111111;
  paint-order: stroke fill;
}
[gamekey=ember] .UnitHealthBar {
  height: 0.12em !important;
  border-radius: 0.2em;
  border-width: 0.03em;
  border-color: #051F29;
  background-color: #080809;
}
[gamekey=ember] .UnitHealthBar .Border:not(:last-child) {
  border-right-width: 0.03em;
  border-right-color: #051F29;
}
[gamekey=ember] .UnitHealthBar .Fill {
  background-color: #24AA69;
}
[gamekey=ember] .UnitHealthBar .Fill .OmegaFill[color=heal] {
  animation-duration: 1s;
  animation-name: pulse-ember-neutral-heal;
}
@keyframes pulse-ember-neutral-heal {
  0% {
    background-color: #f0ead6;
  }
  25% {
    background-color: #f0ead6;
  }
  50% {
    background-color: #61DEA1;
  }
  75% {
    background-color: #f0ead6;
  }
  100% {
    background-color: #f0ead6;
  }
}
[gamekey=ember] .UnitHealthBar .Fill .OmegaFill[color=hurt] {
  animation-duration: 2s;
  animation-name: pulse-ember-neutral-hurt;
}
@keyframes pulse-ember-neutral-hurt {
  0% {
    background-color: #61DEA1;
  }
  25% {
    background-color: #61DEA1;
  }
  50% {
    background-color: #f0ead6;
  }
  75% {
    background-color: #61DEA1;
  }
  100% {
    background-color: #61DEA1;
  }
}
[gamekey=ember] .UnitHealthBar .Fill {
  background-color: #E86C3B;
}
[gamekey=ember] .UnitHealthBar .OmegaFill[color=heal] {
  animation-duration: 1s;
  animation-name: pulse-ember-good-heal;
}
@keyframes pulse-ember-good-heal {
  0% {
    background-color: #f0ead6;
  }
  25% {
    background-color: #f0ead6;
  }
  50% {
    background-color: #FF954C;
  }
  75% {
    background-color: #f0ead6;
  }
  100% {
    background-color: #f0ead6;
  }
}
[gamekey=ember] .UnitHealthBar .OmegaFill[color=hurt] {
  animation-duration: 2s;
  animation-name: pulse-ember-good-hurt;
}
@keyframes pulse-ember-good-hurt {
  0% {
    background-color: #FF954C;
  }
  25% {
    background-color: #FF954C;
  }
  50% {
    background-color: #f0ead6;
  }
  75% {
    background-color: #FF954C;
  }
  100% {
    background-color: #FF954C;
  }
}
[gamekey=ember] .Unit[affiliation=good] .UnitHealthBar .Fill {
  background-color: #E86C3B;
}
[gamekey=ember] .Unit[affiliation=good] .UnitHealthBar .OmegaFill[color=heal] {
  animation-duration: 1s;
  animation-name: pulse-ember-good-heal;
}
@keyframes pulse-ember-good-heal {
  0% {
    background-color: #f0ead6;
  }
  25% {
    background-color: #f0ead6;
  }
  50% {
    background-color: #FF954C;
  }
  75% {
    background-color: #f0ead6;
  }
  100% {
    background-color: #f0ead6;
  }
}
[gamekey=ember] .Unit[affiliation=good] .UnitHealthBar .OmegaFill[color=hurt] {
  animation-duration: 2s;
  animation-name: pulse-ember-good-hurt;
}
@keyframes pulse-ember-good-hurt {
  0% {
    background-color: #FF954C;
  }
  25% {
    background-color: #FF954C;
  }
  50% {
    background-color: #f0ead6;
  }
  75% {
    background-color: #FF954C;
  }
  100% {
    background-color: #FF954C;
  }
}
[gamekey=ember] .Unit[affiliation=bad] .UnitHealthBar .Fill {
  background-color: #2CD1C9;
}
[gamekey=ember] .Unit[affiliation=bad] .UnitHealthBar .Fill .OmegaFill[color=heal] {
  animation-duration: 1s;
  animation-name: pulse-ember-bad-heal;
}
@keyframes pulse-ember-bad-heal {
  0% {
    background-color: #f0ead6;
  }
  25% {
    background-color: #f0ead6;
  }
  50% {
    background-color: #ACFFE5;
  }
  75% {
    background-color: #f0ead6;
  }
  100% {
    background-color: #f0ead6;
  }
}
[gamekey=ember] .Unit[affiliation=bad] .UnitHealthBar .Fill .OmegaFill[color=hurt] {
  animation-duration: 2s;
  animation-name: pulse-ember-bad-hurt;
}
@keyframes pulse-ember-bad-hurt {
  0% {
    background-color: #ACFFE5;
  }
  25% {
    background-color: #ACFFE5;
  }
  50% {
    background-color: #f0ead6;
  }
  75% {
    background-color: #ACFFE5;
  }
  100% {
    background-color: #ACFFE5;
  }
}
[gamekey=book] .UnitHealthBar {
  background-color: #0c1a23;
  border-color: #000111;
}
[gamekey=book] .UnitHealthBar .Border:not(:last-child) {
  border-right-color: #000111;
}
[gamekey=book] .UnitHealthBar .Fill {
  background-color: #FF5311;
}
[gamekey=book] .UnitHealthBar .OmegaFill[color=heal] {
  animation-duration: 1s;
  animation-name: pulse-horror-bad-heal;
}
@keyframes pulse-horror-bad-heal {
  0% {
    background-color: #0c1a23;
  }
  25% {
    background-color: #0c1a23;
  }
  50% {
    background-color: #FF5311;
  }
  75% {
    background-color: #0c1a23;
  }
  100% {
    background-color: #0c1a23;
  }
}
[gamekey=book] .UnitHealthBar .OmegaFill[color=hurt] {
  animation-duration: 2s;
  animation-name: pulse-horror-good-hurt;
}
@keyframes pulse-horror-good-hurt {
  0% {
    background-color: #FF5311;
  }
  25% {
    background-color: #FF5311;
  }
  50% {
    background-color: #0c1a23;
  }
  75% {
    background-color: #FF5311;
  }
  100% {
    background-color: #FF5311;
  }
}
[gamekey=book] .UnitHealthBar[affiliation=good] .Fill {
  background-color: #99d7e0;
}
[gamekey=book] .UnitHealthBar[affiliation=good] .OmegaFill[color=heal] {
  animation-duration: 1s;
  animation-name: pulse-horror-good-heal;
}
@keyframes pulse-horror-good-heal {
  0% {
    background-color: #0c1a23;
  }
  25% {
    background-color: #0c1a23;
  }
  50% {
    background-color: #99d7e0;
  }
  75% {
    background-color: #0c1a23;
  }
  100% {
    background-color: #0c1a23;
  }
}
[gamekey=book] .UnitHealthBar[affiliation=good] .OmegaFill[color=hurt] {
  animation-duration: 2s;
  animation-name: pulse-horror-good-hurt;
}
@keyframes pulse-horror-good-hurt {
  0% {
    background-color: #99d7e0;
  }
  25% {
    background-color: #99d7e0;
  }
  50% {
    background-color: #0c1a23;
  }
  75% {
    background-color: #99d7e0;
  }
  100% {
    background-color: #99d7e0;
  }
}
[gamekey=hero] .UnitHealthBar {
  border-color: #000111;
}
[gamekey=hero] .UnitHealthBar .Border:not(:last-child) {
  border-right-color: #000111;
}
[gamekey=hero] .Unit[affiliation=good] .UnitHealthBar .Fill {
  background-color: #4086d0;
}
[gamekey=hero] .Unit[affiliation=good] .UnitHealthBar .OmegaFill[color=heal] {
  animation-duration: 1s;
  animation-name: pulse-hero-good-heal;
}
@keyframes pulse-hero-good-heal {
  0% {
    background-color: #f0ead6;
  }
  25% {
    background-color: #f0ead6;
  }
  50% {
    background-color: #5b9add;
  }
  75% {
    background-color: #f0ead6;
  }
  100% {
    background-color: #f0ead6;
  }
}
[gamekey=hero] .Unit[affiliation=good] .UnitHealthBar .OmegaFill[color=hurt] {
  animation-duration: 2s;
  animation-name: pulse-hero-good-hurt;
}
@keyframes pulse-hero-good-hurt {
  0% {
    background-color: #5b9add;
  }
  25% {
    background-color: #5b9add;
  }
  50% {
    background-color: #f0ead6;
  }
  75% {
    background-color: #5b9add;
  }
  100% {
    background-color: #5b9add;
  }
}
[gamekey=hero] .Unit[affiliation=bad] .UnitHealthBar .Fill {
  background-color: #d13b32;
}
[gamekey=hero] .Unit[affiliation=bad] .UnitHealthBar .OmegaFill[color=heal] {
  animation-duration: 1s;
  animation-name: pulse-hero-bad-heal;
}
@keyframes pulse-hero-bad-heal {
  0% {
    background-color: #f0ead6;
  }
  25% {
    background-color: #f0ead6;
  }
  50% {
    background-color: #de574f;
  }
  75% {
    background-color: #f0ead6;
  }
  100% {
    background-color: #f0ead6;
  }
}
[gamekey=hero] .Unit[affiliation=bad] .UnitHealthBar .OmegaFill[color=hurt] {
  animation-duration: 2s;
  animation-name: pulse-hero-bad-hurt;
}
@keyframes pulse-hero-bad-hurt {
  0% {
    background-color: #de574f;
  }
  25% {
    background-color: #de574f;
  }
  50% {
    background-color: #f0ead6;
  }
  75% {
    background-color: #de574f;
  }
  100% {
    background-color: #de574f;
  }
}
[gamekey=school] .UnitHealthBar,
[gamekey=pirates] .UnitHealthBar {
  border-color: #000111;
  background-color: #080809;
}
[gamekey=school] .UnitHealthBar .Border:not(:last-child),
[gamekey=pirates] .UnitHealthBar .Border:not(:last-child) {
  border-right-color: #000111;
}
[gamekey=school] .UnitHealthBar .Fill,
[gamekey=pirates] .UnitHealthBar .Fill {
  background-color: #48bf5e;
}
[gamekey=school] .UnitHealthBar .OmegaFill[color=heal],
[gamekey=pirates] .UnitHealthBar .OmegaFill[color=heal] {
  animation-duration: 1s;
  animation-name: pulse-pirates-neutral-heal;
}
@keyframes pulse-pirates-neutral-heal {
  0% {
    background-color: #f0ead6;
  }
  25% {
    background-color: #f0ead6;
  }
  50% {
    background-color: #7eed93;
  }
  75% {
    background-color: #f0ead6;
  }
  100% {
    background-color: #f0ead6;
  }
}
[gamekey=school] .UnitHealthBar .OmegaFill[color=hurt],
[gamekey=pirates] .UnitHealthBar .OmegaFill[color=hurt] {
  animation-duration: 2s;
  animation-name: pulse-pirates-neutral-hurt;
}
@keyframes pulse-pirates-neutral-hurt {
  0% {
    background-color: #7eed93;
  }
  25% {
    background-color: #7eed93;
  }
  50% {
    background-color: #f0ead6;
  }
  75% {
    background-color: #7eed93;
  }
  100% {
    background-color: #7eed93;
  }
}
[gamekey=school] .Unit[affiliation=good] .UnitHealthBar .Fill,
[gamekey=pirates] .Unit[affiliation=good] .UnitHealthBar .Fill {
  background-color: #bf4b3f;
}
[gamekey=school] .Unit[affiliation=good] .UnitHealthBar .OmegaFill[color=heal],
[gamekey=pirates] .Unit[affiliation=good] .UnitHealthBar .OmegaFill[color=heal] {
  animation-duration: 1s;
  animation-name: pulse-pirates-good-heal;
}
@keyframes pulse-pirates-good-heal {
  0% {
    background-color: #f0ead6;
  }
  25% {
    background-color: #f0ead6;
  }
  50% {
    background-color: #da7368;
  }
  75% {
    background-color: #f0ead6;
  }
  100% {
    background-color: #f0ead6;
  }
}
[gamekey=school] .Unit[affiliation=good] .UnitHealthBar .OmegaFill[color=hurt],
[gamekey=pirates] .Unit[affiliation=good] .UnitHealthBar .OmegaFill[color=hurt] {
  animation-duration: 2s;
  animation-name: pulse-pirates-good-hurt;
}
@keyframes pulse-pirates-good-hurt {
  0% {
    background-color: #da7368;
  }
  25% {
    background-color: #da7368;
  }
  50% {
    background-color: #f0ead6;
  }
  75% {
    background-color: #da7368;
  }
  100% {
    background-color: #da7368;
  }
}
[gamekey=school] .Unit[affiliation=bad] .UnitHealthBar .Fill,
[gamekey=pirates] .Unit[affiliation=bad] .UnitHealthBar .Fill {
  background-color: #48bf5e;
}
[gamekey=school] .Unit[affiliation=bad] .UnitHealthBar .OmegaFill[color=heal],
[gamekey=pirates] .Unit[affiliation=bad] .UnitHealthBar .OmegaFill[color=heal] {
  animation-duration: 1s;
  animation-name: pulse-ember-bad-heal;
}
@keyframes pulse-ember-bad-heal {
  0% {
    background-color: #f0ead6;
  }
  25% {
    background-color: #f0ead6;
  }
  50% {
    background-color: #7edb8f;
  }
  75% {
    background-color: #f0ead6;
  }
  100% {
    background-color: #f0ead6;
  }
}
[gamekey=school] .Unit[affiliation=bad] .UnitHealthBar .OmegaFill[color=hurt],
[gamekey=pirates] .Unit[affiliation=bad] .UnitHealthBar .OmegaFill[color=hurt] {
  animation-duration: 2s;
  animation-name: pulse-pirates-bad-hurt;
}
@keyframes pulse-pirates-bad-hurt {
  0% {
    background-color: #7edb8f;
  }
  25% {
    background-color: #7edb8f;
  }
  50% {
    background-color: #f0ead6;
  }
  75% {
    background-color: #7edb8f;
  }
  100% {
    background-color: #7edb8f;
  }
}
[gamekey=school] .Unit[affiliation=orange] .UnitHealthBar .Fill,
[gamekey=pirates] .Unit[affiliation=orange] .UnitHealthBar .Fill {
  background-color: #b46d3d;
}
[gamekey=school] .Unit[affiliation=orange] .UnitHealthBar .OmegaFill[color=heal],
[gamekey=pirates] .Unit[affiliation=orange] .UnitHealthBar .OmegaFill[color=heal] {
  animation-duration: 1s;
  animation-name: pulse-pirates-orange-heal;
}
@keyframes pulse-pirates-orange-heal {
  0% {
    background-color: #f0ead6;
  }
  25% {
    background-color: #f0ead6;
  }
  50% {
    background-color: #9d5f4a;
  }
  75% {
    background-color: #f0ead6;
  }
  100% {
    background-color: #f0ead6;
  }
}
[gamekey=school] .Unit[affiliation=orange] .UnitHealthBar .OmegaFill[color=hurt],
[gamekey=pirates] .Unit[affiliation=orange] .UnitHealthBar .OmegaFill[color=hurt] {
  animation-duration: 2s;
  animation-name: pulse-pirates-orange-hurt;
}
@keyframes pulse-pirates-orange-hurt {
  0% {
    background-color: #9d5f4a;
  }
  25% {
    background-color: #9d5f4a;
  }
  50% {
    background-color: #f0ead6;
  }
  75% {
    background-color: #9d5f4a;
  }
  100% {
    background-color: #9d5f4a;
  }
}
[gamekey=school] .Unit[affiliation=purple] .UnitHealthBar .Fill,
[gamekey=pirates] .Unit[affiliation=purple] .UnitHealthBar .Fill {
  background-color: #49416e;
}
[gamekey=school] .Unit[affiliation=purple] .UnitHealthBar .OmegaFill[color=heal],
[gamekey=pirates] .Unit[affiliation=purple] .UnitHealthBar .OmegaFill[color=heal] {
  animation-duration: 1s;
  animation-name: pulse-pirates-purple-heal;
}
@keyframes pulse-pirates-purple-heal {
  0% {
    background-color: #f0ead6;
  }
  25% {
    background-color: #f0ead6;
  }
  50% {
    background-color: #645c85;
  }
  75% {
    background-color: #f0ead6;
  }
  100% {
    background-color: #f0ead6;
  }
}
[gamekey=school] .Unit[affiliation=purple] .UnitHealthBar .OmegaFill[color=hurt],
[gamekey=pirates] .Unit[affiliation=purple] .UnitHealthBar .OmegaFill[color=hurt] {
  animation-duration: 2s;
  animation-name: pulse-pirates-purple-hurt;
}
@keyframes pulse-pirates-purple-hurt {
  0% {
    background-color: #645c85;
  }
  25% {
    background-color: #645c85;
  }
  50% {
    background-color: #f0ead6;
  }
  75% {
    background-color: #645c85;
  }
  100% {
    background-color: #645c85;
  }
}
[gamekey=school] .Unit[affiliation=blue] .UnitHealthBar .Fill,
[gamekey=pirates] .Unit[affiliation=blue] .UnitHealthBar .Fill {
  background-color: #3577A9;
}
[gamekey=school] .Unit[affiliation=blue] .UnitHealthBar .OmegaFill[color=heal],
[gamekey=pirates] .Unit[affiliation=blue] .UnitHealthBar .OmegaFill[color=heal] {
  animation-duration: 1s;
  animation-name: pulse-pirates-blue-heal;
}
@keyframes pulse-pirates-blue-heal {
  0% {
    background-color: #f0ead6;
  }
  25% {
    background-color: #f0ead6;
  }
  50% {
    background-color: #5c97c4;
  }
  75% {
    background-color: #f0ead6;
  }
  100% {
    background-color: #f0ead6;
  }
}
[gamekey=school] .Unit[affiliation=blue] .UnitHealthBar .OmegaFill[color=hurt],
[gamekey=pirates] .Unit[affiliation=blue] .UnitHealthBar .OmegaFill[color=hurt] {
  animation-duration: 2s;
  animation-name: pulse-pirates-blue-hurt;
}
@keyframes pulse-pirates-blue-hurt {
  0% {
    background-color: #5c97c4;
  }
  25% {
    background-color: #5c97c4;
  }
  50% {
    background-color: #f0ead6;
  }
  75% {
    background-color: #5c97c4;
  }
  100% {
    background-color: #5c97c4;
  }
}

/* source/views/Stage.less */
.Stage {
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
  position: absolute;
  background-color: #000;
  transition-property: background-color, filter;
  transition-duration: 0.5s;
}
.Stage[isBlurred] {
  filter: blur(2px);
  transition-duration: 0.2s;
}
.Stage .Spot {
  width: 1em;
  height: 1em;
  z-index: 9999999;
  position: absolute;
  opacity: 0.5;
}
.Stage .Spot .Sprite {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  margin: auto;
  width: 0.6em;
  height: 0.6em;
  position: absolute;
  border-radius: 100%;
  background-color: orange;
}
.Stage .Particle {
  position: absolute;
  text-align: center;
  width: 1em;
  height: 1em;
  z-index: 99999999;
  font-family: var(--standard-font);
  animation-name: FloatUp33;
  animation-duration: 500ms;
  animation-fill-mode: forwards;
}
.Stage .Particle[type=image] {
  width: 0.5em;
  height: 0.5em;
  margin-left: 0.25em;
  margin-top: 0.25em;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.Stage .Particle .Texting {
  font-size: 0.25em;
  text-stroke: 0.4em #111111;
  -ms-text-stroke: 0.4em #111111;
  -moz-text-stroke: 0.4em #111111;
  -webkit-text-stroke: 0.4em #111111;
  paint-order: stroke fill;
}
@keyframes FloatUp33 {
  0% {
    margin-top: 0em;
  }
  100% {
    margin-top: -0.5em;
  }
}
.Stage .RoomDarkness {
  top: 0em;
  left: 0em;
  z-index: 55;
  position: absolute;
  background-color: #202020;
}
.Stage .Darkness,
.Stage .WorldImagePolygon {
  top: 0em;
  left: 0em;
  z-index: 55;
  position: absolute;
  background-color: #000;
}
.Stage .Darkness[type=night],
.Stage .WorldImagePolygon[type=night] {
  opacity: 0.5;
}
.Stage .Darkness[type=shadow],
.Stage .WorldImagePolygon[type=shadow] {
  opacity: 0.5;
  background-color: #481e4d;
}
.Stage .Waters .Water {
  width: 1em;
  height: 1em;
  z-index: 5;
  position: absolute;
}
.Stage .Waters .Water .Wave {
  left: 0em;
  right: 0em;
  bottom: -0.05em;
  height: 100%;
  position: absolute;
  background-color: #00abe3;
}
.Stage .Waters .Water .Foam {
  width: 100%;
  height: 0.1em;
  background-color: #f0ead6;
}
.Stage .Wall {
  position: absolute;
  width: 1em;
  height: 1em;
  background-image: url("./rails-BYECPYVP.png");
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 6;
}
.Stage .Blocks .Block {
  width: 1em;
  height: 1em;
  z-index: 100;
  position: absolute;
  background-position: bottom;
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
}
.Stage .WorldImageLinedPolygon {
  position: absolute;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}
.Stage .WorldImageLinedPolygon polyline {
  stroke: black;
  stroke-width: 0.05em;
  fill: none;
}
.Stage .WorldImage {
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  animation-duration: 2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
  transition-property: opacity;
  transition-duration: 1s;
}
.Stage .WorldImage .EncounterImage {
  position: absolute;
}
.Stage .WorldBlock {
  width: 1em;
  height: 1em;
  z-index: 1;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
}
.Stage .UnitActionRangeTile {
  width: 1em;
  height: 1em;
  z-index: 46;
  position: absolute;
}
.Stage .UnitActionRangeTile .Sprite {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  width: 0.9em;
  height: 0.9em;
  margin: auto;
  position: absolute;
  border-radius: 0.1em;
}
.Stage .UnitActionRangeTile .Sprite[type=act],
.Stage .UnitActionRangeTile .Sprite[type="enemy action"],
.Stage .UnitActionRangeTile .Sprite[type="act - can not target"] {
  background-color: #882808;
}
.Stage .UnitActionRangeTile .Sprite[type="support action"] {
  background-color: #0B6E4F;
}
.Stage .UnitActionRangeTile .Sprite[type="support action"][isNonPlayer] {
  background-color: #882808;
}
.Stage .UnitActionRangeTile .Sprite[type=move],
.Stage .UnitActionRangeTile .Sprite[type=wait],
.Stage .UnitActionRangeTile .Sprite[type="move through"] {
  background-color: #406898;
}
.Stage .UnitActionRangeTile[isBloodlust] .Sprite {
  width: 1em;
  height: 1em;
  border-radius: 0em;
  background-color: transparent !important;
  background-image: url("./warning-redo-1-YV7RWIRR.png");
  background-size: contain;
  opacity: 0;
  animation-name: fadein, spin;
  animation-duration: 1000ms, 12000ms;
  animation-iteration-count: 1, infinite;
  animation-timing-function: ease, linear;
  animation-fill-mode: forwards;
}
.Stage .AttackArrow {
  width: 1em;
  height: 1em;
  z-index: 10000000000065;
  position: absolute;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  animation-iteration-count: infinite;
}
.Stage .AttackArrow[role=damage] {
  animation-duration: 0.5s;
  animation-name: DamageArrow;
  background-image: url("./interact-icons-attack-RSFJZL7H.png");
}
.Stage .AttackArrow[role=support] {
  animation-duration: 2s;
  animation-name: SupportArrow;
  background-image: url("./interact-icons-support-EOEX35XT.png");
}
.Stage .AttackArrow[role=reposition] {
  animation-duration: 2s;
  animation-name: SupportArrow;
  background-image: url("./interact-icons-reposition-ZQOF2DKW.png");
}
.Stage .AttackArrow[role=harvest] {
  animation-duration: 2s;
  animation-name: SupportArrow;
  background-image: url("./interact-icons-harvest-C35AYGL7.png");
}
.Stage .AttackArrow[role=kindle] {
  animation-duration: 2s;
  animation-name: SupportArrow;
  background-image: url("./interact-icons-kindle-EF3XEL27.png");
}
@keyframes DamageArrow {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.1, 0.9);
  }
  100% {
    transform: scale(1.1, 0.9);
  }
}
@keyframes SupportArrow {
  0% {
    transform: scale(0.7, 0.7);
  }
  50% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.Stage .MoveArrow .Move {
  width: 1em;
  height: 1em;
  z-index: 47;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes shift-left {
  0% {
    margin-left: -0.2em;
  }
  100% {
    margin-left: 0em;
  }
}
@keyframes shift-right {
  0% {
    margin-right: -0.2em;
  }
  100% {
    margin-right: 0em;
  }
}
@keyframes squigglevision {
  0% {
    filter: url(#squiggly-0);
  }
  12.5% {
    filter: url(#squiggly-1);
  }
  25% {
    filter: url(#squiggly-2);
  }
  37.5% {
    filter: url(#squiggly-3);
  }
  50% {
    filter: url(#squiggly-4);
  }
  62.5% {
    filter: url(#squiggly-5);
  }
  75% {
    filter: url(#squiggly-6);
  }
  87.5% {
    filter: url(#squiggly-7);
  }
  100% {
    filter: url(#squiggly-8);
  }
}
@keyframes rustling {
  0% {
    transform: scale(0.975);
  }
  100% {
    transform: scale(1.025);
  }
}
@keyframes bleed {
  0% {
    opacity: 0;
    background-color: black;
  }
  20% {
    opacity: 1;
    background-color: black;
  }
  100% {
    opacity: 1;
    background-color: #882808;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
[gamekey=book] .Particle {
  position: absolute;
  text-align: center;
  width: 1em;
  height: 1em;
  z-index: 99999999;
}
[gamekey=book] .Particle .Text {
  font-size: 0.25em;
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
}
[gamekey=pirates] .AttackArrow[role=damage] {
  background-image: url("./attackarrow-HHYZB6CT.png");
}
[gamekey=pirates] .AttackArrow[role=support] {
  background-image: url("./supportarrow-5RCHC2NT.png");
}
[gamekey=pirates] .AttackArrow[role=reposition] {
  background-image: url("./supportarrow-5RCHC2NT.png");
}

/* source/views/components/EncounterArea.less */
.EncounterArea {
  z-index: 45;
  opacity: 0.3;
  position: absolute;
  background-color: white;
}
.EncounterArea[isHovered=true] {
  background-color: #bfbfbf;
}

/* source/views/components/SkillPreviewUI.less */
.Preview {
  width: 2em;
  height: 1em;
  pointer-events: none;
}
.Preview .Stage {
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
  position: relative;
  background-color: #000;
  font-size: 0.1em;
}
.Preview .Stage .WorldImage {
  background-position: top-left;
  background-size: contain;
  image-rendering: pixelated;
  position: absolute;
}
.Preview .Stage .WorldImage .EncounterImage {
  position: absolute;
}

/* source/data/games/ember/views/Passive.less */
.Passive {
  width: 0.618em;
  height: 0.618em;
  position: relative;
  background-color: orange;
  border-radius: 100%;
}
.Passive .PassiveBreakdown {
  left: -6em;
  right: -6em;
  z-index: 110;
  position: absolute;
  display: none;
}
.Passive .PassiveNumeral {
  font-size: 0.5em;
  line-height: 1em;
  position: absolute;
  bottom: 0.05em;
  right: 0.2em;
  text-stroke: 0.2em #111111;
  -ms-text-stroke: 0.2em #111111;
  -moz-text-stroke: 0.2em #111111;
  -webkit-text-stroke: 0.2em #111111;
  paint-order: stroke fill;
}
.Passive .Label {
  left: -1.5em;
  right: -1.5em;
  z-index: 110;
  text-align: center;
  position: absolute;
  opacity: 0;
  transform: translateY(0.1em);
  transition-duration: 0.1s;
  transition-property: transform, opacity;
  pointer-events: none;
}
.Passive .Label .Title {
  font-size: 1rem;
  line-height: 1rem;
  font-family: var(--base-font);
}
.Passive .Label span {
  padding: 0em 0.2em;
  background-color: #111111;
}
.Passive[anchored=bottom] .Label {
  top: 1.25em;
}
.Passive[anchored=bottom] .PassiveBreakdown {
  top: 1.25em;
}
.Passive[anchored=top] .Label {
  bottom: 1.25em;
}
.Passive[anchored=top] .PassiveBreakdown {
  bottom: 1.25em;
}
.Passive[isPressed] .PassiveBreakdown {
  display: block;
}
.Passive[isPressed] .Label {
  display: none;
}
.Passive:not([isPressed]):hover .Label {
  opacity: 1;
  transform: translateY(0em);
}
.Passive[isLabeled] .Label {
  opacity: 1;
  transform: translateY(0em);
}

/* source/views/components/DialogueLog.less */
.MinimizedDialogueLog {
  right: 0.5em;
  bottom: 0.5em;
  z-index: 1000;
  width: 5.15em / 2;
  position: absolute;
  background-color: #2D2D2A;
  padding: 0.125em 0.25em;
  border-radius: 0.1em;
}
.MinimizedDialogueLog .Text {
  font-size: 0.25em;
  text-align: right;
}
.MinimizedDialogueLog .MaximizeButton {
  top: 0em;
  bottom: 0em;
  margin: auto;
  width: 0.5em;
  height: 0.5em;
  left: -0.625em;
  position: absolute;
  border-radius: 1em;
  background-color: #2D2D2A;
}
.MinimizedDialogueLog .MaximizeButton:hover {
  background-color: #f0ead6;
}
.DialogueLog {
  top: 0em;
  bottom: 0em;
  right: 0.5em;
  width: 5.15em;
  z-index: 1000;
  position: absolute;
  overflow-y: scroll;
  background-color: #2D2D2A;
  padding: 0.5em;
  padding-bottom: 3em;
}
.DialogueLog [isWhitespace] {
  height: 1em;
  opacity: 0;
}
.DialogueLog .Text {
  font-size: 0.25em;
}
.DialogueLog .MinimizeButton {
  top: 0.25em;
  width: 0.75em;
  height: 0.75em;
  left: -1em;
  position: absolute;
  border-radius: 1em;
  background-color: #2D2D2A;
}
.DialogueLog .MinimizeButton:hover {
  background-color: #f0ead6;
}
.Underlined {
  font-weight: bold;
  position: relative;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-underline-offset: 0.1em;
  text-decoration-skip-ink: none;
}
.Underlined:hover {
  color: #d54b33;
  cursor: pointer;
}

/* source/views/ChapterUI.less */
.ChapterUI {
  overflow: hidden;
  transition-delay: 0.2s;
  transition-duration: 0.6s;
  transition-property: opacity;
}
.ChapterUI[isInModal] {
  opacity: 0.2;
  transition-duration: 0.2s;
}
.ChapterUI .Black {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  background-color: black;
}
.ChapterUI .BossStatuses {
  left: 4.8em;
  right: 4.8em;
  bottom: 0.5em;
  z-index: 20;
  position: absolute;
}
.ChapterUI .BossStatuses .BossStatus {
  position: relative;
  animation-duration: 2.5s;
  animation-name: BossEntrance;
  animation-fill-mode: forwards;
}
.ChapterUI .BossStatuses .BossStatus[isDead] {
  animation-duration: 2s;
  animation-name: BossDeath;
  animation-fill-mode: forwards;
}
@keyframes BossEntrance {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes BossDeath {
  0% {
    top: -0.1em;
    left: -0.1em;
  }
  2% {
    top: 0em;
    left: 0.1em;
  }
  4% {
    top: -0.2em;
    left: -0.1em;
  }
  6% {
    top: 0em;
    left: -0.1em;
  }
  8% {
    top: 0.1em;
    left: 0em;
  }
  10% {
    top: -0.1em;
    left: -0.1em;
  }
  12% {
    top: -0.1em;
    left: 0.1em;
  }
  14% {
    top: 0.1em;
    left: 0.1em;
  }
  16% {
    top: -0.1em;
    left: 0em;
  }
  18% {
    top: 0em;
    left: -0.1em;
  }
  20% {
    top: 0em;
    left: 0em;
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.ChapterUI .BossStatuses .BossStatus .Label {
  display: flex;
  align-items: baseline;
}
.ChapterUI .BossStatuses .BossStatus .Label .Title {
  font-size: 0.3em;
  line-height: 1em;
  text-stroke: 0.5em #111111;
  -ms-text-stroke: 0.5em #111111;
  -moz-text-stroke: 0.5em #111111;
  -webkit-text-stroke: 0.5em #111111;
  paint-order: stroke fill;
}
.ChapterUI .BossStatuses .BossStatus .Label .Subtitle {
  opacity: 0;
  line-height: 1em;
  font-size: 0.2em;
  margin-left: 0.5em;
  text-stroke: 0.5em #111111;
  -ms-text-stroke: 0.5em #111111;
  -moz-text-stroke: 0.5em #111111;
  -webkit-text-stroke: 0.5em #111111;
  paint-order: stroke fill;
}
.ChapterUI .BossStatuses .BossStatus .HealthBar .UnitHealthBar {
  height: 0.25em !important;
  width: 100% !important;
}
.ChapterUI .BossStatuses .BossStatus .HealthBar .UnitHealthBar .Label {
  font-size: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}
.ChapterUI .ChapterPrompt {
  top: 0em;
  right: 0em;
  width: 4em;
  z-index: 20;
  padding: 0.5em;
  position: absolute;
}
.ChapterUI .ChapterPrompt .Text {
  text-align: right;
  font-size: 0.5em;
}
.ChapterUI .ElementalTriangle {
  width: 2em;
  height: 2em;
  top: 0.25em;
  z-index: 20;
  margin: auto;
  right: 0.25em;
  position: absolute;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./wpn-triangle-5SMODWDU.png");
  image-rendering: pixelated;
}
.ChapterUI .ElementalTriangle .Sword,
.ChapterUI .ElementalTriangle .Spear,
.ChapterUI .ElementalTriangle .Axe {
  width: 0.6em;
  height: 0.6em;
  margin: auto;
  position: absolute;
  border-radius: 100%;
}
.ChapterUI .ElementalTriangle .Sword .Icon,
.ChapterUI .ElementalTriangle .Spear .Icon,
.ChapterUI .ElementalTriangle .Axe .Icon {
  width: 1.2em;
  height: 1.2em;
  margin-top: -0.3em;
  margin-left: -0.3em;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: pixelated;
}
.ChapterUI .ElementalTriangle .Sword {
  top: 0.1em;
  left: 0.05em;
  right: 0em;
}
.ChapterUI .ElementalTriangle .Sword .Icon {
  content: ".";
  background-image: url("./weapon.sword-JGIDI7OU.png");
}
.ChapterUI .ElementalTriangle .Spear {
  bottom: 0.35em;
  left: 0.15em;
}
.ChapterUI .ElementalTriangle .Spear .Icon {
  content: ".";
  background-image: url("./weapon.spear-QXTZENN6.png");
}
.ChapterUI .ElementalTriangle .Axe {
  bottom: 0.35em;
  right: 0.15em;
}
.ChapterUI .ElementalTriangle .Axe .Icon {
  content: ".";
  background-image: url("./weapon.hammer-HFUEKYBV.png");
}
.ChapterUI .EncounterName {
  left: 0em;
  right: 0em;
  bottom: 0em;
  width: 70%;
  z-index: 20;
  margin: auto;
  position: absolute;
  font-size: 1em;
  text-align: center;
  font-family: var(--header-font);
  text-overflow: ellipsis;
  text-shadow: 0.05em 0.05em #000222;
  opacity: 0;
  animation-delay: 1s;
  animation-duration: 3s;
  animation-name: FadeIn;
  animation-fill-mode: forwards;
}
.ChapterUI .Prompt {
  z-index: 20;
  position: absolute;
  padding: 0.25em 0.4045em;
  border-radius: 0.5em;
  background-size: 120% 120%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./splashbox-UGPH4V5Q.png");
  opacity: 1;
  transition-duration: 0.5s;
  transition-property: opacity;
  top: 0.5em;
  right: 0.5em;
  text-align: right;
  animation-name: drop-from-top;
}
.ChapterUI .Prompt[isHidden] {
  opacity: 0;
  transition-duration: 0s;
}
.ChapterUI .Prompt .Text {
  font-size: 0.3em;
}
.ChapterUI .Prompt .Text span.blue {
  color: #639bff;
}
.ChapterUI .Prompt .Text span.red {
  color: #d54b33;
}
.ChapterUI .Prompt .Text span.green {
  color: #62C370;
}
.ChapterUI .TutorialPrompt {
  margin: auto;
  width: 5em;
  z-index: 20;
  position: absolute;
  opacity: 1;
  transition-property: opacity;
  transition-duration: 0.5s;
  animation-duration: 1s;
  padding: 0.1em 0.1618em;
  background-image: url("./splashbox-UGPH4V5Q.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.ChapterUI .TutorialPrompt[size=thin] {
  width: 4em;
}
.ChapterUI .TutorialPrompt[size=small] {
  width: 8em;
  font-size: 0.4em;
}
@keyframes drop-from-top {
  0% {
    top: -5rem;
  }
  100% {
    top: 1rem;
  }
}
.ChapterUI .TutorialPrompt[isHidden] {
  opacity: 0;
  transition-duration: 0s;
  animation-name: none;
}
.ChapterUI .TutorialPrompt[position=left] {
  top: 0em;
  bottom: 0em;
  left: 1rem;
  text-align: right;
}
.ChapterUI .TutorialPrompt[position=right] {
  top: 0em;
  bottom: 0em;
  right: 1rem;
  text-align: left;
}
.ChapterUI .TutorialPrompt[position=topright],
.ChapterUI .TutorialPrompt[position=upright] {
  top: 1rem;
  right: 1rem;
  text-align: right;
  animation-name: drop-from-top;
}
.ChapterUI .TutorialPrompt[position=bottomright],
.ChapterUI .TutorialPrompt[position=downright] {
  bottom: 0.25rem;
  right: 0.25rem;
  text-align: left;
}
.ChapterUI .TutorialPrompt[position=topleftish] {
  top: 1rem;
  left: 3em;
  text-align: left;
  animation-name: drop-from-top;
}
.ChapterUI .TutorialPrompt[position=up],
.ChapterUI .TutorialPrompt[position=center] {
  top: 1rem;
  left: 0em;
  right: 0em;
  text-align: left;
  animation-name: drop-from-top;
}
.ChapterUI .TutorialPrompt .Text {
  font-size: 0.3em;
}
.ChapterUI .TutorialPrompt .Text .blue {
  color: #639bff;
}
.ChapterUI .TutorialPrompt .Text .red {
  color: #d54b33;
}
.ChapterUI .TutorialPrompt .Text .green {
  color: #62C370;
}
.ChapterUI .Button {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 100%;
  border-style: solid;
  border-width: 0.05em;
  border-color: #434C5A;
  filter: drop-shadow(0em 0.05em 0em #434C5A);
  color: #f0ead6;
  background-color: #14181C;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: opacity;
  transition-duration: 2s, 0.5s;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
}
.ChapterUI .Button[isUsable] {
  opacity: 1;
  pointer-events: all;
}
.ChapterUI .Button[isVisible] {
  opacity: 1;
  pointer-events: all;
}
.ChapterUI .Button:hover {
  background-color: #1F242F;
}
.ChapterUI .Button:active {
  filter: none;
  margin-top: 0.05em;
}
.ChapterUI .Button[isActive] {
  filter: none;
  margin-top: 0.05em;
  background-color: #2C3A48;
}
.ChapterUI .Button .Text {
  font-size: 0.5em;
  line-height: 1em;
  margin-top: 0.2em;
}
.ChapterUI .Button .Text .Big {
  font-size: 1.25em;
}
.ChapterUI .Button .Shortcut {
  padding: 5px;
  font-size: 0.15em;
  display: none;
}
.ChapterUI .Button .Charge {
  width: 50%;
  height: 5px;
  bottom: 0em;
  position: absolute;
  background-color: #a48686;
}
.ChapterUI .EndTurnButton {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 100%;
  border-style: solid;
  border-width: 0.05em;
  border-color: #434C5A;
  filter: drop-shadow(0em 0.05em 0em #434C5A);
  color: #f0ead6;
  background-color: #14181C;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: opacity;
  transition-duration: 2s, 0.5s;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  left: 0.5em;
  top: 0.25em;
  width: 2em;
  height: 2em;
  z-index: 19;
}
.ChapterUI .EndTurnButton[isUsable] {
  opacity: 1;
  pointer-events: all;
}
.ChapterUI .EndTurnButton[isVisible] {
  opacity: 1;
  pointer-events: all;
}
.ChapterUI .EndTurnButton:hover {
  background-color: #1F242F;
}
.ChapterUI .EndTurnButton:active {
  filter: none;
  margin-top: 0.05em;
}
.ChapterUI .EndTurnButton[isActive] {
  filter: none;
  margin-top: 0.05em;
  background-color: #2C3A48;
}
.ChapterUI .EndTurnButton .Text {
  font-size: 0.5em;
  line-height: 1em;
  margin-top: 0.2em;
}
.ChapterUI .EndTurnButton .Text .Big {
  font-size: 1.25em;
}
.ChapterUI .EndTurnButton .Shortcut {
  padding: 5px;
  font-size: 0.15em;
  display: none;
}
.ChapterUI .EndTurnButton .Charge {
  width: 50%;
  height: 5px;
  bottom: 0em;
  position: absolute;
  background-color: #a48686;
}
.ChapterUI .EndTurnButton .Text {
  font-size: 0.5em;
}
.ChapterUI .EndTurnButton[isReady]:hover {
  background-color: #FF954C;
  border-color: #B7341A;
  color: #B7341A;
  filter: drop-shadow(0em 0.05em 0em #B7341A);
}
.ChapterUI .RerollButton {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 100%;
  border-style: solid;
  border-width: 0.05em;
  border-color: #434C5A;
  filter: drop-shadow(0em 0.05em 0em #434C5A);
  color: #f0ead6;
  background-color: #14181C;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: opacity;
  transition-duration: 2s, 0.5s;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  top: 0.25em;
  left: 2em;
  width: 1em;
  height: 1em;
  z-index: 20;
}
.ChapterUI .RerollButton[isUsable] {
  opacity: 1;
  pointer-events: all;
}
.ChapterUI .RerollButton[isVisible] {
  opacity: 1;
  pointer-events: all;
}
.ChapterUI .RerollButton:hover {
  background-color: #1F242F;
}
.ChapterUI .RerollButton:active {
  filter: none;
  margin-top: 0.05em;
}
.ChapterUI .RerollButton[isActive] {
  filter: none;
  margin-top: 0.05em;
  background-color: #2C3A48;
}
.ChapterUI .RerollButton .Text {
  font-size: 0.5em;
  line-height: 1em;
  margin-top: 0.2em;
}
.ChapterUI .RerollButton .Text .Big {
  font-size: 1.25em;
}
.ChapterUI .RerollButton .Shortcut {
  padding: 5px;
  font-size: 0.15em;
  display: none;
}
.ChapterUI .RerollButton .Charge {
  width: 50%;
  height: 5px;
  bottom: 0em;
  position: absolute;
  background-color: #a48686;
}
.ChapterUI .RerollButton .Text {
  font-size: 0.3em;
}
.ChapterUI .UndoButton {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 100%;
  border-style: solid;
  border-width: 0.05em;
  border-color: #434C5A;
  filter: drop-shadow(0em 0.05em 0em #434C5A);
  color: #f0ead6;
  background-color: #14181C;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: opacity;
  transition-duration: 2s, 0.5s;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  top: 2em;
  left: 0.25em;
  width: 1em;
  height: 1em;
  z-index: 20;
}
.ChapterUI .UndoButton[isUsable] {
  opacity: 1;
  pointer-events: all;
}
.ChapterUI .UndoButton[isVisible] {
  opacity: 1;
  pointer-events: all;
}
.ChapterUI .UndoButton:hover {
  background-color: #1F242F;
}
.ChapterUI .UndoButton:active {
  filter: none;
  margin-top: 0.05em;
}
.ChapterUI .UndoButton[isActive] {
  filter: none;
  margin-top: 0.05em;
  background-color: #2C3A48;
}
.ChapterUI .UndoButton .Text {
  font-size: 0.5em;
  line-height: 1em;
  margin-top: 0.2em;
}
.ChapterUI .UndoButton .Text .Big {
  font-size: 1.25em;
}
.ChapterUI .UndoButton .Shortcut {
  padding: 5px;
  font-size: 0.15em;
  display: none;
}
.ChapterUI .UndoButton .Charge {
  width: 50%;
  height: 5px;
  bottom: 0em;
  position: absolute;
  background-color: #a48686;
}
.ChapterUI .UndoButton .Text {
  font-size: 0.3em;
}
.ChapterUI .ContinueButton {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  border-radius: 100%;
  border-style: solid;
  border-width: 0.05em;
  border-color: #434C5A;
  filter: drop-shadow(0em 0.05em 0em #434C5A);
  color: #f0ead6;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: opacity;
  transition-duration: 2s, 0.5s;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  width: 3em;
  right: 0.5em;
  top: 0.5em;
  z-index: 20;
  padding: 0.1em;
  background-color: #14181C;
  color: #9CA9B4;
  border-radius: 0.1em;
}
.ChapterUI .ContinueButton[isUsable] {
  opacity: 1;
  pointer-events: all;
}
.ChapterUI .ContinueButton[isVisible] {
  opacity: 1;
  pointer-events: all;
}
.ChapterUI .ContinueButton:hover {
  background-color: #1F242F;
}
.ChapterUI .ContinueButton:active {
  filter: none;
  margin-top: 0.05em;
}
.ChapterUI .ContinueButton[isActive] {
  filter: none;
  margin-top: 0.05em;
  background-color: #2C3A48;
}
.ChapterUI .ContinueButton .Text {
  font-size: 0.5em;
  line-height: 1em;
  margin-top: 0.2em;
}
.ChapterUI .ContinueButton .Text .Big {
  font-size: 1.25em;
}
.ChapterUI .ContinueButton .Shortcut {
  padding: 5px;
  font-size: 0.15em;
  display: none;
}
.ChapterUI .ContinueButton .Charge {
  width: 50%;
  height: 5px;
  bottom: 0em;
  position: absolute;
  background-color: #a48686;
}
.ChapterUI .EndTurnGlow {
  z-index: 18;
  left: 0.5em;
  top: 0.25em;
  width: 2em;
  height: 2em;
  position: absolute;
}
.ChapterUI .EndTurnGlow .Animation {
  top: -5em;
  bottom: -4.5em;
  left: -5em;
  right: -5em;
  margin: auto;
  width: 5.25em;
  height: 3.5em;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 94%;
  pointer-events: none;
}
.ChapterUI .EndTurnGlow[isVisible][isReady] .Animation {
  animation-delay: 1000ms, 1199ms;
  animation-duration: 200ms, 800ms;
  animation-iteration-count: 1, infinite;
  animation-name: embering-fadein, embering-active;
}
@keyframes embering-fadein {
  0% {
    background-image: url("./fireanim-embering-intro-0000-IFDNZBXE.png");
  }
  25% {
    background-image: url("./fireanim-embering-intro-0001-XBRLR7VP.png");
  }
  50% {
    background-image: url("./fireanim-embering-intro-0002-6URM2ISF.png");
  }
  75% {
    background-image: url("./fireanim-embering-intro-0003-B5ZQ2MZI.png");
  }
  100% {
    background-image: url("./fireanim-embering-intro-0003-B5ZQ2MZI.png");
  }
}
@keyframes embering-active {
  0% {
    background-image: url("./fireanim-embering-0000-AYU3A6Y5.png");
  }
  10% {
    background-image: url("./fireanim-embering-0001-WMWQ4OOH.png");
  }
  20% {
    background-image: url("./fireanim-embering-0002-RBNCUAI7.png");
  }
  30% {
    background-image: url("./fireanim-embering-0003-Z5TYRHUG.png");
  }
  40% {
    background-image: url("./fireanim-embering-0004-BILHAFOO.png");
  }
  50% {
    background-image: url("./fireanim-embering-0005-ESB6IQUI.png");
  }
  60% {
    background-image: url("./fireanim-embering-0006-3PCEGVZR.png");
  }
  70% {
    background-image: url("./fireanim-embering-0007-VCYQWAVN.png");
  }
  80% {
    background-image: url("./fireanim-embering-0008-F6IVCA6V.png");
  }
  90% {
    background-image: url("./fireanim-embering-0009-DB3MUSJW.png");
  }
  100% {
    background-image: url("./fireanim-embering-0000-AYU3A6Y5.png");
  }
}
.ChapterUI .UnitSummary .UnitDetails,
.ChapterUI .UnitSummary .TerrainDetails {
  bottom: 0em;
  width: 3em;
  z-index: 20;
  position: absolute;
}
.ChapterUI .UnitSummary .UnitDetails[position=left],
.ChapterUI .UnitSummary .TerrainDetails[position=left] {
  left: 0em;
}
.ChapterUI .UnitSummary .UnitDetails[position=right],
.ChapterUI .UnitSummary .TerrainDetails[position=right] {
  right: 0em;
}
.ChapterUI .UnitSummary .UnitDetails[position=right] .Portrait,
.ChapterUI .UnitSummary .TerrainDetails[position=right] .Portrait {
  transform: scaleX(-1);
}
.ChapterUI .UnitSummary .UnitDetails .Profile,
.ChapterUI .UnitSummary .TerrainDetails .Profile {
  width: 3em;
  bottom: 0em;
  position: absolute;
  background-color: orange;
  transition-duration: 0.25s;
  transition-property: bottom;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Label,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Label {
  font-size: 0.5em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Portrait,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Summary .Portrait {
  height: 3em;
  width: 2em;
  bottom: 0em;
  left: 0em;
  right: 0em;
  margin: auto;
  z-index: 0;
  position: absolute;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Properties,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Summary .Properties {
  z-index: 2;
  left: 0em;
  right: 0em;
  bottom: 0.2em;
  position: absolute;
  text-align: center;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Properties .Text,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Summary .Properties .Text {
  background-color: #14181C;
  color: #9CA9B4;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Properties .Name,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Summary .Properties .Name {
  font-size: 0.3em;
  font-family: var(--header-font);
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Properties .Class,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Summary .Properties .Class {
  font-size: 0.2em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Properties .Flavor,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Summary .Properties .Flavor {
  width: 80%;
  margin: auto;
  font-size: 0.15em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Properties .Flavor .Text,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Summary .Properties .Flavor .Text {
  font-style: italic;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Properties .UnitHealthBar,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Summary .Properties .UnitHealthBar {
  width: 80% !important;
  height: 0.25em !important;
  margin: auto;
  margin-top: 0.05em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Facts,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Summary .Facts {
  display: none;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Stats {
  top: 0em;
  width: 3em;
  height: 3em;
  position: absolute;
  color: #20273b;
  background-color: #dcb54c;
  background-color: #14181C;
  color: #9CA9B4;
  padding: 0.1em 0.2em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Health,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Stats .Health {
  font-size: 0.4em;
  margin-bottom: 0.3em;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Element,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Stats .Element {
  font-size: 0.3em;
  margin: 0.75em 0em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Element .Line,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Stats .Element .Line {
  display: flex;
  align-items: center;
  margin-bottom: 0.1em;
  height: 1.1em;
  line-height: 1.1em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Element .Versus,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Stats .Element .Versus {
  font-size: 0.75em;
  margin-left: 0.5em;
  margin-top: 0.2em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Element .Icon,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Stats .Element .Icon {
  height: 1em;
  width: 1em;
  display: inline-block;
  align-self: baseline;
  margin-right: 0.25em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Element .Effectiveness,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Stats .Element .Effectiveness {
  font-size: 0.5em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Element .Effectiveness .Icon,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Stats .Element .Effectiveness .Icon {
  margin-left: 0.5em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Description,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Stats .Description {
  font-size: 0.15em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Stat,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Stats .Stat {
  display: flex;
  align-items: baseline;
  font-size: 0.15em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Stat .Label,
.ChapterUI .UnitSummary .TerrainDetails .Profile .Stats .Stat .Label {
  flex: 1;
}
.ChapterUI .UnitSummary .UnitDetails .Passives,
.ChapterUI .UnitSummary .TerrainDetails .Passives {
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}
.ChapterUI .UnitSummary .UnitDetails .Passives[side=bottom-right],
.ChapterUI .UnitSummary .TerrainDetails .Passives[side=bottom-right] {
  bottom: 0.2em;
  right: 4.7em;
  flex-direction: row-reverse;
}
.ChapterUI .UnitSummary .UnitDetails .Passives[side=bottom-right] .Passive:not(:last-child),
.ChapterUI .UnitSummary .TerrainDetails .Passives[side=bottom-right] .Passive:not(:last-child) {
  margin-left: 0.1em;
}
.ChapterUI .UnitSummary .UnitDetails .Passives[side=bottom-left],
.ChapterUI .UnitSummary .TerrainDetails .Passives[side=bottom-left] {
  bottom: 0.2em;
  left: 4.7em;
  flex-direction: row;
}
.ChapterUI .UnitSummary .UnitDetails .Passives[side=bottom-left] .Passive:not(:last-child),
.ChapterUI .UnitSummary .TerrainDetails .Passives[side=bottom-left] .Passive:not(:last-child) {
  margin-right: 0.1em;
}
.ChapterUI .UnitSummary .UnitDetails .Actions,
.ChapterUI .UnitSummary .TerrainDetails .Actions {
  position: absolute;
  display: flex;
  align-items: flex-end;
  gap: 0.1em;
}
.ChapterUI .UnitSummary .UnitDetails .Actions .DiceLayout,
.ChapterUI .UnitSummary .TerrainDetails .Actions .DiceLayout {
  font-size: 0.5em;
}
.ChapterUI .UnitSummary .UnitDetails .Actions[side=bottom-right],
.ChapterUI .UnitSummary .TerrainDetails .Actions[side=bottom-right] {
  bottom: 0.2em;
  right: 3.2em;
}
.ChapterUI .UnitSummary .UnitDetails .Actions[side=bottom-left],
.ChapterUI .UnitSummary .TerrainDetails .Actions[side=bottom-left] {
  bottom: 0.2em;
  left: 3.2em;
}
.ChapterUI .UnitSummary .UnitDetails .Actions .EquippedDice[canSelect]:hover .DiceFace,
.ChapterUI .UnitSummary .TerrainDetails .Actions .EquippedDice[canSelect]:hover .DiceFace {
  border-color: transparent;
}
.ChapterUI .UnitSummary .UnitDetails .Actions .EquippedDice[canSelect][isSelected=true] .DiceFace,
.ChapterUI .UnitSummary .TerrainDetails .Actions .EquippedDice[canSelect][isSelected=true] .DiceFace {
  border-color: transparent;
}
.ChapterUI .UnitSummary .UnitDetails .Actions .Skill,
.ChapterUI .UnitSummary .TerrainDetails .Actions .Skill {
  margin-left: 0.2em;
  margin-top: 0.2em;
  position: relative;
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  color: #43967C;
  border-width: 0.05em;
  border-style: solid;
  border-color: #43967C;
  border-radius: 0.1em;
  background-color: #000000;
  box-shadow: 0em 0.05em 0em 0em #43967C;
}
.ChapterUI .UnitSummary .UnitDetails .Actions .Skill .SmallLabel,
.ChapterUI .UnitSummary .TerrainDetails .Actions .Skill .SmallLabel {
  font-size: 0.15em;
}
.ChapterUI .UnitSummary .UnitDetails .Actions .Skill .Label,
.ChapterUI .UnitSummary .TerrainDetails .Actions .Skill .Label {
  font-size: 0.2em;
  font-weight: bold;
}
.ChapterUI .UnitSummary .UnitDetails .Actions .Skill .Label .ItemName,
.ChapterUI .UnitSummary .TerrainDetails .Actions .Skill .Label .ItemName {
  font-size: 1.5em;
}
.ChapterUI .UnitSummary .UnitDetails .Actions .Skill .Number,
.ChapterUI .UnitSummary .TerrainDetails .Actions .Skill .Number {
  position: absolute;
  top: 0.2em;
  left: 0.5em;
  font-size: 0.2em;
}
.ChapterUI .UnitSummary .UnitDetails .Actions .Skill .Preview,
.ChapterUI .UnitSummary .TerrainDetails .Actions .Skill .Preview {
  bottom: 0.7em;
  left: -10em;
  right: -10em;
  margin: auto;
  position: absolute;
  border-color: #3c312c;
  border-width: 0.05em;
  border-style: solid;
  border-radius: 0.25rem;
}
.ChapterUI .UnitSummary .UnitDetails .Actions .Skill .Preview .Stage,
.ChapterUI .UnitSummary .TerrainDetails .Actions .Skill .Preview .Stage {
  border-radius: 0.025rem;
}
.ChapterUI .UnitSummary .UnitDetails .Actions .Skill:not([canSelect]),
.ChapterUI .UnitSummary .TerrainDetails .Actions .Skill:not([canSelect]) {
  opacity: 0.5;
  filter: saturate(0.5);
}
.ChapterUI .UnitSummary .UnitDetails .Actions .Skill[canSelect]:hover,
.ChapterUI .UnitSummary .TerrainDetails .Actions .Skill[canSelect]:hover {
  color: white !important;
  border-color: white !important;
  box-shadow: 0em 0.05em white !important;
}
.ChapterUI .UnitSummary .UnitDetails .Actions .Skill[canSelect][isSelected=true],
.ChapterUI .UnitSummary .TerrainDetails .Actions .Skill[canSelect][isSelected=true] {
  color: white !important;
  border-color: white !important;
  box-shadow: 0em 0.05em white !important;
}
.ChapterUI .UnitSummary .UnitDetails .Actions .Skill[canSelect]:active,
.ChapterUI .UnitSummary .TerrainDetails .Actions .Skill[canSelect]:active {
  color: white !important;
  border-color: white !important;
  box-shadow: inset 0em 0.1em #888, 0em 0.05em white !important;
  padding-top: 0.1em;
}
.ChapterUI .UnitSummary .UnitDetails .Skills[side=right],
.ChapterUI .UnitSummary .TerrainDetails .Skills[side=right] {
  right: 0.2em;
}
.ChapterUI .UnitSummary .UnitDetails .Skills[side=bottom],
.ChapterUI .UnitSummary .TerrainDetails .Skills[side=bottom],
.ChapterUI .UnitSummary .UnitDetails .Skills[side=bottom-left],
.ChapterUI .UnitSummary .TerrainDetails .Skills[side=bottom-left],
.ChapterUI .UnitSummary .UnitDetails .Skills[side=bottom-right],
.ChapterUI .UnitSummary .TerrainDetails .Skills[side=bottom-right],
.ChapterUI .UnitSummary .UnitDetails .Actions[side=bottom],
.ChapterUI .UnitSummary .TerrainDetails .Actions[side=bottom],
.ChapterUI .UnitSummary .UnitDetails .Actions[side=bottom-left],
.ChapterUI .UnitSummary .TerrainDetails .Actions[side=bottom-left],
.ChapterUI .UnitSummary .UnitDetails .Actions[side=bottom-right],
.ChapterUI .UnitSummary .TerrainDetails .Actions[side=bottom-right] {
  bottom: 0.2em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Portrait {
  width: 3em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Properties {
  width: 3em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Properties .UnitHealthBar {
  border-radius: 0.1em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Stats,
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Facts {
  display: none;
}
@keyframes FlyIn {
  0% {
    left: -16em;
  }
  100% {
    left: 0em;
  }
}
@keyframes FlyInFlyOut {
  0% {
    left: -16em;
  }
  33% {
    left: 0em;
  }
  66% {
    left: 0em;
  }
  100% {
    left: 16em;
  }
}
@keyframes FadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* source/views/components/Snow.less */
.Snow {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  z-index: 19;
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}
.Snow .SnowParticle {
  position: absolute;
  background-color: #f0ead6;
  width: 0.1em;
  height: 0.1em;
  transform: rotate(45deg);
}

/* source/views/ModalUI.less */
.ModalUI {
  width: 100%;
  height: 100%;
  z-index: 21;
  overflow: hidden;
  position: absolute;
}
.ModalUI .DialogueOptions {
  height: 0em;
  overflow: hidden;
  transition-delay: 0.5s;
  transition-duration: 1s;
  transition-property: height;
}
.ModalUI .DialogueOptions[isReady=true] {
  height: 1em;
}
.ModalUI .DialogueOptions .Option {
  font-size: 0.3em;
  background-color: rgba(16, 44, 76, 0.5);
}
.ModalUI .DialogueOptions .Option:first-of-type {
  margin-top: 1em;
}
.ModalUI .DialogueOptions .Option:last-of-type {
  margin-bottom: 2em;
}
.ModalUI .DialogueOptions .Option:hover {
  background-color: #111111;
}
.ModalUI .Presentation {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
}
.ModalUI .Demo {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  width: 6em;
  height: 4em;
  margin: auto;
  overflow: hidden;
  position: absolute;
  border-width: 0.04em;
  border-style: solid;
  border-color: white;
  border-radius: 0.25em;
}
.ModalUI .CustomViewModal {
  width: 100%;
  height: 100%;
}
.ModalUI .GameplayModal {
  width: 100%;
  height: 100%;
}
.ModalUI .CharacterSelectModal {
  width: 100%;
  height: 100%;
}
.ModalUI .CharacterSelectModal .CallToAction {
  top: 0em;
  left: 0em;
  right: 0em;
  z-index: 10;
  font-size: 0.6em;
  height: 1.5em;
  line-height: 1.5em;
  position: absolute;
  text-align: center;
  color: #fff4dc;
  background-color: #1e2136;
  transform: translateY(-100%);
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-delay: 1.5s;
  animation-name: character-select-slide-in-from-top;
}
@keyframes character-select-slide-in-from-top {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.ModalUI .CharacterSelectModal .SelectableCharacters {
  width: 100%;
  height: 100%;
  display: flex;
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter {
  flex: 1;
  position: relative;
  pointer-events: none;
  transform: translateY(100%);
  animation-duration: 0.5s, 2.5s;
  animation-fill-mode: forwards;
  animation-name: character-select-slide-in, character-select-click-lock;
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter[isDead],
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter[isHidden] {
  filter: grayscale(1);
}
@keyframes character-select-slide-in {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes character-select-click-lock {
  0% {
    pointer-events: none;
  }
  100% {
    pointer-events: auto;
  }
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter:nth-of-type(1) {
  animation-delay: 0s;
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter:nth-of-type(2) {
  animation-delay: 0.33s;
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter:nth-of-type(3) {
  animation-delay: 0.66s;
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter .Color {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  opacity: 0.5;
  position: absolute;
  transition-property: opacity;
  transition-duration: 0.33s;
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter .Portrait {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  background-size: auto 90%;
  background-repeat: no-repeat;
  background-position: center 130%;
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter .Portrait[expression=neutral] {
  opacity: 1;
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter .Portrait[expression=happy] {
  opacity: 0;
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter:hover .Portrait[expression=neutral] {
  opacity: 0;
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter:hover .Portrait[expression=happy] {
  opacity: 1;
  animation-name: character-select-bobble;
  animation-duration: 0.33s;
}
@keyframes character-select-bobble {
  0% {
    background-position: center 130%;
  }
  50% {
    background-position: center 110%;
  }
  100% {
    background-position: center 130%;
  }
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter:hover .Color {
  opacity: 0.6;
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter .Details {
  bottom: 0em;
  position: absolute;
  padding: 0.3em 0.4854em;
  text-shadow: -0.05em 0.05em rgba(17, 17, 17, 0.8);
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter .Details .Name {
  font-size: 0.75em;
  display: inline;
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter .Details .Class {
  font-size: 0.5em;
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter[isHidden] .Portrait {
  filter: grayscale(100%) brightness(0%);
}
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter[isHidden] .Name,
.ModalUI .CharacterSelectModal .SelectableCharacters .SelectableCharacter[isHidden] .Class {
  color: #2D2D2A;
  background-color: #2D2D2A !important;
  text-shadow: none;
}
.ModalUI .WaitingModal {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  background-color: #000;
}
.ModalUI .WaitingModal .Tip {
  left: 1em;
  bottom: 1em;
  width: 9em;
  position: absolute;
}
.ModalUI .WaitingModal .Tip .Text {
  line-height: 1em;
  font-size: 0.33em;
  opacity: 0;
  animation-delay: 1s;
  animation-name: fadein;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}
.ModalUI .WaitingModal .Box {
  bottom: 1em;
  right: 1em;
  position: absolute;
  animation-name: fadein;
  animation-duration: 1000ms;
  animation-fill-mode: forwards;
}
.ModalUI .WaitingModal .Box .Label {
  text-align: center;
  font-size: 0.25em;
  margin-bottom: 0.5em;
}
.ModalUI .WaitingModal .Box .Spinner {
  width: 1em;
  height: 1em;
  background-color: #f0ead6;
  animation-name: spinning;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
}
@keyframes spinning {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ModalUI .TransitionModal {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  background-color: #000;
}
.ModalUI .TransitionModal[phase="0"] {
  animation-name: fadein;
  animation-duration: 1800ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.ModalUI .TransitionModal[phase="1"] {
  animation-name: fadeout;
  animation-duration: 800ms;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.ModalUI .CharacterLevelUpModal {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
}
.ModalUI .CharacterLevelUpModal .Portrait {
  height: 9em;
  pointer-events: none;
}
.ModalUI .CharacterLevelUpModal .Details {
  width: 4em;
  height: 100%;
  margin: 0em 0.6em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.ModalUI .CharacterLevelUpModal .Details .arrow::after {
  content: " to ";
}
.ModalUI .CharacterLevelUpModal .Details .HeaderSection {
  width: 100%;
  padding: 0.25em;
  background-color: #68554d;
  border-radius: 0.1em;
}
.ModalUI .CharacterLevelUpModal .Details .HeaderSection .Thumbnail {
  height: 1em;
  position: relative;
}
.ModalUI .CharacterLevelUpModal .Details .HeaderSection .Declaration {
  font-family: var(--header-font);
  text-align: center;
  line-height: 1em;
  font-size: 0.6em;
}
.ModalUI .CharacterLevelUpModal .Details .HeaderSection .Level {
  text-align: center;
  line-height: 1em;
  font-size: 0.3em;
}
.ModalUI .CharacterLevelUpModal .Details .PerksSection {
  width: 100%;
  padding: 0.25em;
  margin-top: 0.5em;
  text-align: center;
  background-color: #68554d;
  border-radius: 0.1em;
}
.ModalUI .CharacterLevelUpModal .Details .PerksSection .Label {
  font-size: 0.3em;
  font-weight: bold;
  margin-bottom: 0.25em;
}
.ModalUI .CharacterLevelUpModal .Details .PerksSection .BigText {
  font-size: 0.4em;
}
.ModalUI .CharacterLevelUpModal .Details .PerksSection .Text {
  font-size: 0.3em;
}
.ModalUI .CharacterLevelUpModal .Details .PerksSection .SmallText {
  font-size: 0.2em;
}
.ModalUI .CharacterLevelUpModal .Details .PerksSection .UnitJobs {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}
.ModalUI .CharacterLevelUpModal .Details .PerksSection .UnitJobs .UnitJob:not(:first-child) {
  margin-left: 0.25em;
}
.ModalUI .CharacterLevelUpModal .Details .PerksSection .UnitJobs .UnitJob:hover {
  cursor: pointer;
  border-radius: 0.1em;
  background-color: #a48686;
}
.ModalUI .CharacterLevelUpModal .Details .PerksSection .UnitJob {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0.125em 0em;
}
.ModalUI .CharacterLevelUpModal .Details .PerksSection .UnitJob .Thumbnail {
  width: 1em;
  height: 1em;
  position: relative;
  margin-bottom: 0.25em;
}
.ModalUI .ChapterSuccessModal {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
}
.ModalUI .ChapterSuccessModal .FadesIn {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
}
.ModalUI .ChapterSuccessModal .FadesIn[isShown=true] {
  opacity: 1 !important;
}
.ModalUI .ChapterSuccessModal[isShown=true] {
  opacity: 1 !important;
}
.ModalUI .ChapterSuccessModal .Portrait {
  height: 9em;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
}
.ModalUI .ChapterSuccessModal .Portrait[isShown=true] {
  opacity: 1 !important;
}
.ModalUI .ChapterSuccessModal .Box {
  width: 5em;
  height: 7em;
  margin: 0em 0.6em;
  pointer-events: none;
}
.ModalUI .ChapterSuccessModal .Box .HeaderSection {
  margin-bottom: 1em;
}
.ModalUI .ChapterSuccessModal .Box .HeaderSection .Declaration {
  font-family: var(--header-font);
  text-align: center;
  line-height: 1em;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
}
.ModalUI .ChapterSuccessModal .Box .HeaderSection .Declaration[isShown=true] {
  opacity: 1 !important;
}
.ModalUI .ChapterSuccessModal .Box .HeaderSection .Objectives {
  text-align: center;
  line-height: 1em;
  font-size: 0.5em;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
}
.ModalUI .ChapterSuccessModal .Box .HeaderSection .Objectives[isShown=true] {
  opacity: 1 !important;
}
.ModalUI .ChapterSuccessModal .Box .AllySection,
.ModalUI .ChapterSuccessModal .Box .EnemySection {
  margin-bottom: 0.5em;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
}
.ModalUI .ChapterSuccessModal .Box .AllySection[isShown=true],
.ModalUI .ChapterSuccessModal .Box .EnemySection[isShown=true] {
  opacity: 1 !important;
}
.ModalUI .ChapterSuccessModal .Box .AllySection .Label,
.ModalUI .ChapterSuccessModal .Box .EnemySection .Label {
  font-size: 0.3em;
}
.ModalUI .ChapterSuccessModal .Box .AllySection .Units,
.ModalUI .ChapterSuccessModal .Box .EnemySection .Units {
  display: flex;
  justify-content: center;
  background-color: #68554d;
  border-radius: 0.1em;
  padding: 0.1em;
}
.ModalUI .ChapterSuccessModal .Box .AllySection .Units .Unit,
.ModalUI .ChapterSuccessModal .Box .EnemySection .Units .Unit {
  width: 1em;
  height: 1em;
  position: relative;
}
.ModalUI .ChapterSuccessModal .Box .AllySection .Units .Unit[isAnimated],
.ModalUI .ChapterSuccessModal .Box .EnemySection .Units .Unit[isAnimated] {
  opacity: 0;
  animation-name: fadein;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.ModalUI .ChapterSuccessModal .Box .AllySection .Units .Unit:not(:first-child),
.ModalUI .ChapterSuccessModal .Box .EnemySection .Units .Unit:not(:first-child) {
  margin-left: 0.1em;
}
.ModalUI .ChapterSuccessModal .Box .AllySection .Units .Unit:not(:first-child)[isTight],
.ModalUI .ChapterSuccessModal .Box .EnemySection .Units .Unit:not(:first-child)[isTight] {
  margin-left: -0.5em;
}
.ModalUI .ChapterSuccessModal .Box .AllySection .Units .Unit .UnitSprite,
.ModalUI .ChapterSuccessModal .Box .EnemySection .Units .Unit .UnitSprite {
  transition-duration: 1s;
}
.ModalUI .ChapterSuccessModal .Box .AllySection .Units .Unit .UnitExperienceBar,
.ModalUI .ChapterSuccessModal .Box .EnemySection .Units .Unit .UnitExperienceBar {
  left: 0em;
  right: 0em;
  bottom: 0.1em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.ModalUI .ChapterSuccessModal .Box .EnemySection .Unit .Weapon {
  display: none;
}
.ModalUI .CharacterDraftModal {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ModalUI .CharacterDraftModal .Box {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  margin: auto;
  text-align: center;
}
.ModalUI .CharacterDraftModal .Box .Cards {
  display: flex;
  justify-content: center;
}
.ModalUI .CharacterDraftModal .Box .Cards .Card {
  width: 4em;
  height: 5em;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 0.3em 0.4854em;
  transform: scale(1);
  transform-origin: center;
  transition-duration: 0.25s;
  transition-property: transform;
  border-radius: 0.2em;
  background-color: rgba(99, 155, 255, 0.85);
}
.ModalUI .CharacterDraftModal .Box .Cards .Card:hover {
  transform: scale(1.1);
  transition-duration: 0.125s;
}
.ModalUI .CharacterDraftModal .Box .Cards .Card:not(:last-child) {
  margin-right: 0.5em;
}
.ModalUI .CharacterDraftModal .Box .Cards .Card .Thumbnail {
  height: 1em;
  width: 1em;
  font-size: 1em;
  position: relative;
}
.ModalUI .CharacterDraftModal .Box .Cards .Card .Name {
  font-size: 0.5em;
  text-transform: capitalize;
  margin-bottom: 0.5em;
}
.ModalUI .CharacterDraftModal .Box .Cards .Card .Stat,
.ModalUI .CharacterDraftModal .Box .Cards .Card .Fact {
  font-size: 0.3em;
  display: flex;
  align-items: baseline;
  margin-top: 0.25em;
}
.ModalUI .CharacterDraftModal .Box .Cards .Card .Stat .Label,
.ModalUI .CharacterDraftModal .Box .Cards .Card .Fact .Label {
  flex: 1;
}
.ModalUI .TutorialDemoModal {
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
}
.ModalUI .TutorialDemoModal .MainSection {
  width: 6em;
  font-size: 1.5em;
  height: auto;
  padding: 0.3em 0.4854em;
  border-style: solid;
  border-width: 0.05em;
  border-radius: 0.3em;
  border-color: #000000;
  background-color: #FFF6DF;
}
.ModalUI .TutorialDemoModal .MainSection .Description {
  font-size: 0.33em;
  text-align: center;
  color: #000000;
  margin-bottom: 0.5em;
}
.ModalUI .TutorialDemoModal .MainSection .Preview {
  position: relative;
  border-color: #3c312c;
  border-width: 0.05em;
  border-style: solid;
  border-radius: 0.33rem;
}
.ModalUI .TutorialDemoModal .MainSection .Preview .Stage {
  border-radius: 0.033rem;
}
.ModalUI .CharacterSplashModal {
  display: flex;
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
}
.ModalUI .CharacterSplashModal .Splash {
  flex: 1;
  position: relative;
}
.ModalUI .CharacterSplashModal .Splash .Color {
  left: 0em;
  right: 0em;
  bottom: 2em;
  width: 4em;
  height: 4em;
  margin: auto;
  position: absolute;
  transform: rotate(-20deg);
  transform-origin: center;
  border-radius: 0.1em;
  display: none;
}
.ModalUI .CharacterSplashModal .Splash .Portrait {
  left: 0em;
  right: 0em;
  bottom: 0em;
  height: 8em;
  position: absolute;
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: center 130%;
}
.ModalUI .CharacterSplashModal .Details {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
.ModalUI .CharacterSplashModal .Details .HeaderSection {
  text-align: center;
  margin-bottom: -0.05em;
  z-index: 10;
  padding: 0.2em 0.6em;
  border-style: solid;
  border-width: 0.05em;
  border-color: #FFF6DF;
  border-top-left-radius: 0.3em;
  border-top-right-radius: 0.3em;
  display: none;
}
.ModalUI .CharacterSplashModal .Details .HeaderSection .Name {
  font-size: 0.66em;
  line-height: 1em;
  color: #FFF6DF;
}
.ModalUI .CharacterSplashModal .Details .MainSection {
  width: 6em;
  padding: 0.3em 0.4854em;
  border-style: solid;
  border-width: 0.05em;
  border-radius: 0.3em;
  border-color: #000000;
  background-color: #FFF6DF;
}
.ModalUI .CharacterSplashModal .Details .MainSection .Description {
  font-size: 0.33em;
  text-align: center;
  color: #000000;
  margin-bottom: 0.5em;
}
.ModalUI .CharacterSplashModal .Details .MainSection .Preview {
  height: 2em;
  position: relative;
  border-color: #3c312c;
  border-width: 0.05em;
  border-style: solid;
  border-radius: 0.33rem;
}
.ModalUI .CharacterSplashModal .Details .MainSection .Preview .Stage {
  border-radius: 0.033rem;
}
.ModalUI .Banner {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  z-index: 999;
  width: 16em;
  height: 9em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
}
.ModalUI .DeclarationModal {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  z-index: 999;
  width: 16em;
  height: 9em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
  background-color: #d54b33;
}
.ModalUI .DeclarationModal .Text {
  font-family: var(--header-font);
  text-transform: uppercase;
  text-align: center;
  font-size: 3em;
}
.ModalUI .ChapterStartModal {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  z-index: 999;
  width: 16em;
  height: 9em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
  background-color: #000;
  text-align: center;
  opacity: 1;
  animation-name: fadeout;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 3s;
  text-stroke: 0px;
  -ms-text-stroke: 0px;
  -moz-text-stroke: 0px;
  -webkit-text-stroke: 0px;
}
.ModalUI .ChapterStartModal .Chapter {
  font-size: 0.5em;
  font-family: var(--header-font);
  opacity: 0;
  animation-name: fadein;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1s;
}
.ModalUI .ChapterStartModal .Title {
  font-size: 1em;
  font-family: var(--header-font);
  font-weight: bold;
  opacity: 0;
  animation-name: fadein;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1s;
}
.ModalUI .ChapterStartModal .InWhich {
  font-size: 0.25em;
  margin-top: 1em;
  margin-bottom: 1em;
  text-transform: lowercase;
  opacity: 0;
  animation-name: fadein;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 3s;
}
.ModalUI .ChapterStartModal .Subtitle {
  font-size: 0.5em;
  opacity: 0;
  animation-name: fadein;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  text-transform: lowercase;
}
.ModalUI .ChapterStartModal .Subtitle.First {
  animation-delay: 3.5s;
}
.ModalUI .ChapterStartModal .Subtitle.Second {
  animation-delay: 4.5s;
}
.ModalUI .ChapterSuccessClassicModal {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  z-index: 999;
  width: 16em;
  height: 9em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
  text-align: center;
  background-color: rgba(45, 45, 42, 0.5);
  opacity: 0;
  animation-name: fadein;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 0s;
}
.ModalUI .ChapterSuccessClassicModal .DeclarationModal {
  font-size: 3em;
  font-family: var(--header-font);
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  align-items: center;
  justify-content: center;
  left: -16em;
  animation-name: FlyIn;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 0.5s;
}
.ModalUI .ChapterFailureModal {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  z-index: 999;
  width: 16em;
  height: 9em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
  text-align: center;
  background-color: #111111;
  opacity: 0;
  animation-name: fadein;
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-delay: 0.5s;
}
.ModalUI .ChapterFailureModal .Declaration {
  font-size: 3em;
  line-height: 1em;
  font-family: var(--header-font);
}
.ModalUI .ChapterFailureModal .Predeclaration {
  font-size: 0.5em;
  line-height: 1em;
  font-family: var(--header-font);
}
.ModalUI .ChapterFailureModal .Declaration,
.ModalUI .ChapterFailureModal .Predeclaration {
  opacity: 0;
  animation-name: fadein;
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-delay: 4s;
}
.ModalUI .TurnStartModal {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  z-index: 999;
  width: 16em;
  height: 9em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-stroke: 0.35em #111111;
  -ms-text-stroke: 0.35em #111111;
  -moz-text-stroke: 0.35em #111111;
  -webkit-text-stroke: 0.35em #111111;
  paint-order: stroke fill;
  animation-name: FlyInFlyOut;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.ModalUI .TurnStartModal .Message {
  font-size: 3em;
  text-align: center;
  line-height: 1em;
  font-family: var(--header-font);
}
.ModalUI .ContractModal {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  gap: 1em;
  background-color: #000;
}
.ModalUI .ContractModal .FormInput {
  display: flex;
  justify-content: center;
}
.ModalUI .ContractModal input {
  background: #000;
  border: none;
  font-family: var(--header-font);
  color: red;
  font-size: 0.5em;
}
.ModalUI .ContractModal img {
  height: 100%;
  border: 1px solid black;
}

/* source/views/components/DialogueBox.less */
.Dialogue {
  width: 100%;
  height: 100%;
  z-index: 20;
  overflow: hidden;
  position: absolute;
}
.Dialogue .BlackBar {
  left: 0em;
  right: 0em;
  height: 1em;
  z-index: 100;
  position: absolute;
  background-color: #000;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  display: none;
}
.Dialogue .BlackBar[position=top] {
  top: 0em;
  animation-name: flyin-top;
}
@keyframes flyin-top {
  0% {
    top: -1em;
  }
  100% {
    top: 0em;
  }
}
.Dialogue .BlackBar[position=bottom] {
  bottom: 0em;
  animation-name: flyin-bottom;
}
@keyframes flyin-bottom {
  0% {
    bottom: -1em;
  }
  100% {
    bottom: 0em;
  }
}
.Dialogue[blackout=true] {
  background-color: black;
}
.Dialogue .Boxes {
  left: 0em;
  right: 0em;
  bottom: 0.2em;
  z-index: 9999;
  position: absolute;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.Dialogue .Box {
  width: 8em;
  height: 2em;
  padding: 0.3em 0.4854em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background-color: #FFF6DF;
  border-radius: 0.3em;
  border-width: 0.08em;
  border-color: #000000;
  border-style: solid;
}
.Dialogue .Box .Name {
  width: 3em;
  top: -0.75em;
  height: 0.75em;
  line-height: 0.75em;
  position: absolute;
  border-style: solid;
  border-color: #000000;
  border-width: 0.08em;
  border-bottom-width: 0em;
  border-top-left-radius: 0.3em;
  border-top-right-radius: 0.3em;
  background-color: #FFF6DF;
  text-align: center;
}
.Dialogue .Box .Name[position=""],
.Dialogue .Box .Name[position="1"],
.Dialogue .Box .Name[position="2"] {
  left: 0.75em;
}
.Dialogue .Box .Name[position="3"],
.Dialogue .Box .Name[position="4"] {
  right: 0.75em;
}
.Dialogue .Box .Name .Color {
  height: 0.68em;
  line-height: 0.68em;
  border-style: solid;
  border-width: 0.08em;
  border-bottom-width: 0em;
  border-top-left-radius: 0.2em;
  border-top-right-radius: 0.2em;
  background-color: #B7341A;
}
.Dialogue .Box .Name .Text {
  display: block;
  font-size: 0.4em;
}
.Dialogue .Box .Name .Text.Bolder {
  font-weight: bold;
}
.Dialogue .Box .Name .Text.Smaller {
  font-size: 0.2em;
}
.Dialogue .Box .Words {
  color: #000000;
  font-size: 0.3em;
  text-align: center;
  font-family: var(--base-font);
  margin: auto;
  width: 70%;
}
.Dialogue .Box .Words .Character {
  display: inline;
  position: relative;
}
.Dialogue .Box .Words .Character[isTinyText] {
  font-size: 0.5em;
}
.Dialogue .Box .Words .Character[isQuivering] {
  animation-name: quivering;
  animation-iteration-count: infinite;
  animation-timing-function: ease;
  animation-duration: 0.5s;
}
.Dialogue .Box .Words .isInvisible {
  opacity: 0;
}
.Dialogue .Scene {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  z-index: 200;
  position: absolute;
}
.Dialogue .PortraitContainer {
  bottom: 0em;
  position: absolute;
  transition-property: filter;
  transition-duration: 0.25s;
}
.Dialogue .PortraitContainer .PortraitLayer {
  bottom: 0em;
  height: 8em;
  width: 8em;
  position: absolute;
}
.Dialogue .PortraitContainer[position="1"] {
  left: 0.5em;
}
.Dialogue .PortraitContainer[position="2"] {
  left: 3em;
}
.Dialogue .PortraitContainer[position="3"] {
  right: 3em;
}
.Dialogue .PortraitContainer[position="4"] {
  right: 0.5em;
}
.Dialogue .PortraitContainer[direction=left] {
  transform: scaleX(-1);
}
.Dialogue .PortraitContainer[isSpeaking=true][flourish=shift][direction=left] {
  animation-name: shift-left;
  animation-duration: 0.25s;
}
.Dialogue .PortraitContainer[isSpeaking=true][flourish=shift][direction=right] {
  animation-name: shift-right;
  animation-duration: 0.25s;
}
.Dialogue .PortraitContainer:not([isSpeaking=true]) {
  filter: brightness(70%);
}
.Dialogue .PortraitContainer[isBlackedOut] {
  filter: grayscale(100%) brightness(0%);
}
[gamekey=book] .Dialogue .Portrait {
  height: 8em;
  top: auto;
  bottom: 0em;
  margin: auto;
  z-index: 99999;
}
[gamekey=book] .Dialogue .BlackBar {
  display: none;
}
[gamekey=book] .Dialogue .Box {
  color: #FFF6DF;
  border-color: #FFF6DF;
  background-color: #000;
}
[gamekey=book] .Dialogue .Box .Words {
  color: #FFF6DF;
  width: 95%;
}
[gamekey=book] .Dialogue .Box .Name {
  border: none;
}
[gamekey=book] .Dialogue .Box .Name .Color {
  height: 0.75em;
  line-height: 0.75em;
  background-color: #000 !important;
}
[gamekey=hero] .Dialogue .BlackBar {
  display: none;
}
[gamekey=book] .Dialogue[blackout=true] .Box,
[gamekey=pirates] .Dialogue[blackout=true] .Box {
  background-color: transparent;
}
[gamekey=book] .Dialogue[blackout=true] .Box .Words,
[gamekey=pirates] .Dialogue[blackout=true] .Box .Words {
  color: #FFF;
}
[animation=blinking] {
  animation-name: bl2inking;
  animation-duration: 3.2s;
  animation-iteration-count: infinite;
  animation-timing-function: steps(1, end);
}
@keyframes bl2inking {
  0% {
    opacity: 0;
  }
  96% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes quivering {
  0% {
    left: -0.025em;
    top: 0.025em;
  }
  10% {
    left: 0;
    top: 0.025em;
  }
  20% {
    left: 0.025em;
    top: 0em;
  }
  30% {
    left: 0;
    top: -0.025em;
  }
  40% {
    left: 0.025em;
    top: 0.025em;
  }
  50% {
    left: -0.025em;
    top: -0.025em;
  }
  60% {
    left: -0.025em;
    top: 0.025em;
  }
  70% {
    left: 0em;
    top: -0.025em;
  }
  80% {
    left: 0.025em;
    top: 0em;
  }
  90% {
    left: -0.025em;
    top: 0.025em;
  }
  100% {
    left: 0em;
    top: 0em;
  }
}

/* source/views/components/PauseMenu.less */
.PauseMenu {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  z-index: 99999999999;
}
.PauseMenu .Grayout {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.15);
}
.PauseMenu .PlayerOptions {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  width: 6em;
  height: 5em;
  margin: auto;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border-radius: 0.5em;
  transform: rotate(-4deg);
  background-color: #68554d;
}
.PauseMenu .PlayerOptions .Header {
  margin: 0.3em auto;
}
.PauseMenu .PlayerOptions .Option {
  font-size: 0.4em;
  margin: 0em auto;
  font-family: var(--base-font);
  width: 100%;
}
.PauseMenu .PlayerOptions .Option:hover {
  cursor: pointer;
  background-color: #3c312c;
}
.PauseMenu .PlayerOptions hr {
  width: 3em;
  margin: 0.2em auto;
  border: none;
  border-top: 1px solid #f0ead6;
}
.PauseMenu .Dev {
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  display: flex;
  justify-content: center;
}
.PauseMenu .Dev .Options {
  padding: 1em;
  font-size: 0.5em;
}
.PauseMenu .Dev .Options .Option {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  margin-bottom: 0.618em;
  cursor: pointer;
  border-radius: 2px;
  background-color: #a48686;
}
.PauseMenu .Dev .Options .Option:hover {
  background-color: #c5b2b2;
}
.PauseMenu .Dev .Options .Option[isEnabled=false] {
  background-color: #d54b33;
}
.PauseMenu .Dev .Options .Option[isEnabled=true] {
  background-color: #62C370;
}
[gamekey=pirates] .PlayerOptions {
  background-color: #BB7B3F;
  color: #FFF6DF;
}
[gamekey=pirates] .PlayerOptions .Option:hover {
  background-color: #6D3905;
}

/* source/views/dev/panes/SceneReadout.less */
.SceneReadout {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  background-color: hsl(220, 13%, 24%);
  color: hsl(220, 13%, 66%);
  white-space: pre-wrap;
  font-size: 1em;
  font-family:
    "Fira Code",
    AlegreyaSans,
    sans-serif;
}
.SceneReadout .Title {
  color: hsl(220, 13%, 86%);
  font-variant: small-caps;
  padding-bottom: 1em;
}
.SceneReadout .Conditonal {
  padding-left: 1em;
}
.SceneReadout .Conditonal .Condition {
  color: hsl(286, 60%, 67%);
}
.SceneReadout .Conditonal .StringArgument {
  color: hsl(95, 38%, 62%);
}
.SceneReadout .Dialog {
  padding-left: 2em;
  text-indent: -1em;
}
.SceneReadout .Dialog .Cue {
  color: hsl(29, 54%, 61%);
}
.SceneReadout .Dialog .UnknownCue {
  color: hsl(355, 65%, 65%);
}
.SceneReadout .Dialog .ExpressionTag {
  color: hsl(355, 65%, 65%);
}
.SceneReadout .Dialog .ExpressionValue {
  color: hsl(95, 38%, 62%);
}
.SceneReadout .Dialog .Connector {
  color: hsl(286, 60%, 67%);
}
.SceneReadout .Dialog .Command {
  color: hsl(207, 82%, 66%);
}
.SceneReadout .Dialog .Parameter {
  color: hsl(95, 38%, 62%);
}
.SceneReadout .Comment {
  color: hsla(220, 13%, 66%, 0.6);
  font-style: italic;
  padding-left: 1em;
  height: 1.5em;
}
.SceneReadout .Code {
  height: 1.5em;
  padding-left: 1em;
  font-style: italic;
  color: hsla(220, 13%, 66%, 0.6);
}
.SceneReadout .Code .Hover {
  text-decoration-line: underline;
  text-decoration-style: dotted;
}
.SceneReadout .Code .Hidden {
  width: 5em;
  opacity: 0;
  font-size: 0.1em;
}

/* source/views/dev/panes/DevInspectorUI.less */
.DevInspector {
  width: 18em;
  padding: 0.5em;
  font-family: AlegreyaSans, sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
  border-left-width: 1px;
  border-left-color: hsl(220, 13%, 10.8%);
  border-left-style: solid;
  background-color: hsl(220, 13%, 18%);
  color: hsl(220, 13%, 66%);
}
.DevInspector.Nulled {
  display: flex;
  align-items: center;
  justify-content: center;
}
.DevScriptInspector {
  width: 18em;
  padding: 0.5em;
  font-family: AlegreyaSans, sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
  border-left-width: 1px;
  border-left-color: hsl(220, 13%, 10.8%);
  border-left-style: solid;
  background-color: hsl(220, 13%, 18%);
  color: hsl(220, 13%, 66%);
  width: 32em;
}
.DevScriptInspector.Nulled {
  display: flex;
  align-items: center;
  justify-content: center;
}
.DevScriptInspector .ScriptInput {
  width: 100%;
  font: inherit;
  resize: none;
  padding: 0.5em 0.5em;
  border-style: none;
  background-color: hsl(220, 13%, 24%);
  color: hsl(220, 13%, 86%);
}
.DevScriptInspector .ScriptInput:hover {
  background-color: hsl(220, 13%, 18%);
}
.DevSpotInspector {
  width: 18em;
  padding: 0.5em;
  font-family: AlegreyaSans, sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
  border-left-width: 1px;
  border-left-color: hsl(220, 13%, 10.8%);
  border-left-style: solid;
  background-color: hsl(220, 13%, 18%);
  color: hsl(220, 13%, 66%);
}
.DevSpotInspector.Nulled {
  display: flex;
  align-items: center;
  justify-content: center;
}
.DevSpotInspector:not([isSelected]) {
  color: hsla(220, 13%, 66%, 0.2);
}
.DevSpotInspector:not([isSelected]) input {
  background-color: hsla(220, 13%, 24%, 0.2);
  color: hsla(220, 13%, 86%, 0.2);
}
.DevSpotInspector .Header {
  display: flex;
  align-items: baseline;
}
.DevSpotInspector .Header .Name {
  font-size: 2em;
}
.DevTileInspector {
  width: 18em;
  padding: 0.5em;
  font-family: AlegreyaSans, sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
  border-left-width: 1px;
  border-left-color: hsl(220, 13%, 10.8%);
  border-left-style: solid;
  background-color: hsl(220, 13%, 18%);
  color: hsl(220, 13%, 66%);
}
.DevTileInspector.Nulled {
  display: flex;
  align-items: center;
  justify-content: center;
}
.DevTileInspector:not([isSelected]) {
  color: hsla(220, 13%, 66%, 0.2);
}
.DevTileInspector:not([isSelected]) input {
  background-color: hsla(220, 13%, 24%, 0.2);
  color: hsla(220, 13%, 86%, 0.2);
}
.DevTileInspector .Button {
  background-color: hsl(220, 13%, 24%);
}
.DevTileInspector .Button:hover {
  background-color: hsl(220, 13%, 18%);
}
.DevTileInspector .Block .Header {
  display: flex;
  align-items: baseline;
  font-size: 2em;
}
.DevUnitInspector {
  width: 18em;
  padding: 0.5em;
  font-family: AlegreyaSans, sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
  border-left-width: 1px;
  border-left-color: hsl(220, 13%, 10.8%);
  border-left-style: solid;
  background-color: hsl(220, 13%, 18%);
  color: hsl(220, 13%, 66%);
}
.DevUnitInspector.Nulled {
  display: flex;
  align-items: center;
  justify-content: center;
}
.DevUnitInspector input {
  width: 3em;
  font: inherit;
  padding-left: 0.2em;
  border-style: solid;
  border-radius: 0px;
  border-width: 1px;
  border-color: hsl(220, 13%, 10.8%);
  background-color: hsl(220, 13%, 24%);
  color: hsl(220, 13%, 86%);
}
.DevUnitInspector:not([isSelected]) {
  color: hsla(220, 13%, 66%, 0.2);
}
.DevUnitInspector:not([isSelected]) input {
  background-color: hsla(220, 13%, 24%, 0.2);
  color: hsla(220, 13%, 86%, 0.2);
}
.DevUnitInspector .Header {
  display: flex;
  align-items: baseline;
}
.DevUnitInspector .Header .Name {
  font-size: 2em;
}
.DevUnitInspector .Header .Key {
  margin-left: 0.5em;
  opacity: 0.5;
}
.DevVertexInspector {
  width: 18em;
  padding: 0.5em;
  font-family: AlegreyaSans, sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
  border-left-width: 1px;
  border-left-color: hsl(220, 13%, 10.8%);
  border-left-style: solid;
  background-color: hsl(220, 13%, 18%);
  color: hsl(220, 13%, 66%);
}
.DevVertexInspector.Nulled {
  display: flex;
  align-items: center;
  justify-content: center;
}
.DevVertexInspector:not([isSelected]) {
  color: hsla(220, 13%, 66%, 0.2);
}
.DevVertexInspector:not([isSelected]) input {
  background-color: hsla(220, 13%, 24%, 0.2);
  color: hsla(220, 13%, 86%, 0.2);
}
.DevVertexInspector .Header {
  display: flex;
  align-items: baseline;
}
.DevVertexInspector .Header .Name {
  font-size: 2em;
}
.DevSavestateInspector {
  width: 18em;
  padding: 0.5em;
  font-family: AlegreyaSans, sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
  border-left-width: 1px;
  border-left-color: hsl(220, 13%, 10.8%);
  border-left-style: solid;
  background-color: hsl(220, 13%, 18%);
  color: hsl(220, 13%, 66%);
}
.DevSavestateInspector.Nulled {
  display: flex;
  align-items: center;
  justify-content: center;
}
.DevSavestateInspector .SubObject {
  margin-left: 1em;
}
.DevSavestateInspector .SubObject .ObjectLabel {
  font-size: 2em;
}
.DevSavestateInspector .DivergencePair {
  margin-left: 1em;
}
.DevSavestateInspector .DivergencePair:not([isHighlighted]) {
  color: hsl(220, 13%, 66%);
}
.DevSavestateInspector .DivergencePair[isHighlighted] {
  color: hsla(220, 13%, 66%, 0.5);
}
.DevSavestateInspector .DivergencePair .Label {
  flex: 1;
  line-height: 1em;
  margin-right: 0.2em;
}
.DevSavestateInspector .DivergencePair .Label span {
  border-bottom-width: 1px;
  border-bottom-color: hsl(220, 13%, 10.8%);
  border-bottom-style: dashed;
}
.DevSavestateInspector .DivergencePair .EndstateValue {
  margin-left: 1em;
  white-space: pre;
}
.DevEncounterInspector {
  width: 18em;
  padding: 0.5em;
  font-family: AlegreyaSans, sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
  border-left-width: 1px;
  border-left-color: hsl(220, 13%, 10.8%);
  border-left-style: solid;
  background-color: hsl(220, 13%, 18%);
  color: hsl(220, 13%, 66%);
}
.DevEncounterInspector.Nulled {
  display: flex;
  align-items: center;
  justify-content: center;
}
.DevEncounterInspector:not([isSelected]) {
  color: hsla(220, 13%, 66%, 0.2);
}
.DevEncounterInspector:not([isSelected]) input {
  background-color: hsla(220, 13%, 24%, 0.2);
  color: hsla(220, 13%, 86%, 0.2);
}
.DevEncounterInspector .Header {
  display: flex;
  align-items: baseline;
}
.DevEncounterInspector .Header .Name {
  font-size: 2em;
}
.EditableProperty {
  display: flex;
  align-items: center;
  margin-bottom: 0.1em;
  height: 1.5em;
}
.EditableProperty .Label {
  flex: 1;
  line-height: 1em;
  margin-right: 0.2em;
}
.EditableProperty .Label span {
  border-bottom-width: 1px;
  border-bottom-color: hsl(220, 13%, 10.8%);
  border-bottom-style: dashed;
}
.EditableProperty .Value {
  width: 8em;
}
.EditableProperty:hover {
  background-color: hsl(220, 13%, 22%);
}
.EditableProperty input {
  width: 3em;
  font: inherit;
  padding-left: 0.2em;
  border-style: solid;
  border-radius: 0px;
  border-width: 1px;
  border-color: hsl(220, 13%, 10.8%);
  background-color: hsl(220, 13%, 24%);
  color: hsl(220, 13%, 86%);
}
.EditableProperty:not([isGrayedOut]) {
  color: hsl(220, 13%, 66%);
}
.EditableProperty[isGrayedOut] {
  color: hsla(220, 13%, 66%, 0.5);
}

/* source/views/dev/panes/DevNavigatorUI.less */
.DevSavestateNavigator {
  width: 18em;
  padding: 0.5em;
  font-family: AlegreyaSans, sans-serif;
  overflow-y: hidden;
  overflow-x: hidden;
  border-left-width: 1px;
  border-left-color: hsl(220, 13%, 10.8%);
  border-left-style: solid;
  background-color: hsl(220, 13%, 18%);
  color: hsl(220, 13%, 66%);
}
.DevSavestateNavigator:not([isSelected]) {
  color: hsla(220, 13%, 66%, 0.2);
}
.DevSavestateNavigator:not([isSelected]) input {
  background-color: hsla(220, 13%, 24%, 0.2);
  color: hsla(220, 13%, 86%, 0.2);
}
.DevSavestateNavigator .SavestateLink {
  display: flex;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-size: 1em;
  color: hsl(220, 13%, 66%);
}
.DevSavestateNavigator .SavestateLink[isShown=false] {
  display: none;
}
.DevSavestateNavigator .SavestateLink:hover {
  background-color: hsl(220, 13%, 24%);
}
.DevSavestateNavigator .SavestateLink .Save {
  width: 3em;
  padding-left: 0.5em;
  font-size: 0.8em;
  margin-top: auto;
  margin-bottom: auto;
  opacity: 0.5;
  transition: opacity 500ms, transform 200ms;
}
.DevSavestateNavigator .SavestateLink .Save[isClicked=true] {
  opacity: 0.8;
}
.DevSavestateNavigator .SavestateLink .Name {
  padding-left: 0.5em;
  font-size: 1em;
}
.DevSavestateNavigator .SavestateLink .Memo {
  font-family: inherit;
  margin-left: 1.5em;
  padding-left: 0.5em;
}
.DevNavigatorPane {
  width: 18em;
  overflow-y: hidden;
  font-family: AlegreyaSans, sans-serif;
  border-right-width: 1px;
  border-right-color: hsl(220, 13%, 10.8%);
  border-right-style: solid;
  background-color: hsl(220, 13%, 18%);
  color: hsl(220, 13%, 66%);
}
.DevNavigatorPane .Folder {
  background-color: hsl(220, 13%, 18%);
}
.DevNavigatorPane .Folder:nth-child(even) {
  background-color: hsl(220, 13%, 15%);
}
.DevNavigatorPane .Folder .Title {
  padding: 0.5em;
}
.DevNavigatorPane .Folder .Title:hover {
  background-color: hsl(220, 13%, 24%);
}
.DevNavigatorPane .Folder .Title:before {
  content: "";
  font-size: 0.3em;
  border: 1em solid transparent;
  border-top: 1em solid white;
  margin-left: 0.5em;
  margin-right: 0.5em;
  margin-bottom: 0.75em;
  display: inline-block;
  vertical-align: bottom;
}
.DevNavigatorPane .Folder .Items[isExpanded=false] {
  display: none;
}
.DevNavigatorPane .Search {
  height: 2em;
  width: 100%;
  padding-left: 0.2em;
  display: block;
  font: inherit;
  border: none;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: hsl(220, 13%, 10.8%);
  background-color: hsl(220, 13%, 24%);
  color: hsl(220, 13%, 86%);
}
.DevNavigatorPane .NavItem {
  display: flex;
  padding-left: 0em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-right: 0.809em;
  font-size: 1em;
  color: hsl(220, 13%, 66%);
  background-color: hsl(220, 13%, 18%);
}
.DevNavigatorPane .NavItem:nth-child(even) {
  background-color: hsl(220, 13%, 15%);
}
.DevNavigatorPane .NavItem:hover {
  background-color: hsl(220, 13%, 24%);
}
.DevNavigatorPane .NavItem[isSelected] {
  background-color: hsl(220, 13%, 26%);
}
.DevNavigatorPane .NavItem[isShown=false] {
  display: none;
}
.DevNavigatorPane .NavItem .Column {
  margin-left: 1em;
}
.DevNavigatorPane .NavItem .Column.Name {
  flex: 1;
  width: auto;
}
.DevNavigatorPane .NavItem .Column.Image {
  width: 1em;
  height: 1em;
  position: relative;
}
.DevNavigatorPane .NavItem .Column.Image img {
  width: 4em;
  left: -1.5em;
  bottom: -0.5em;
  position: absolute;
}
.DevNavigatorPane .NavItem .Column.Image .Thumbnail {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  background-color: hsl(220, 13%, 24%);
}
.DevNavigatorPane .NavItem .Column.Number {
  width: 2em;
}
.DevNavigatorPane .NavItem .Column.String {
  width: 4em;
}

/* source/views/dev/panes/DevObjectsListUI.less */
.DevObjectsList {
  width: 18em;
  font-family: AlegreyaSans, sans-serif;
  overflow-y: auto;
  overflow-x: hidden;
  border-left-width: 1px;
  border-left-color: hsl(220, 13%, 10.8%);
  border-left-style: solid;
  background-color: hsl(220, 13%, 18%);
  color: hsl(220, 13%, 66%);
}
.DevObjectsList .Search {
  height: 2em;
  width: 100%;
  padding-left: 0.2em;
  display: block;
  font: inherit;
  border: none;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: hsl(220, 13%, 10.8%);
  background-color: hsl(220, 13%, 24%);
  color: hsl(220, 13%, 86%);
}
.DevObjectsList .Folder .Title {
  padding: 0.5em;
}
.DevObjectsList .Folder .Title:before {
  content: "";
  font-size: 0.3em;
  border: 1em solid transparent;
  border-top: 1em solid white;
  margin-left: 0.5em;
  margin-right: 0.5em;
  margin-bottom: 0.75em;
  display: inline-block;
  vertical-align: bottom;
}
.DevObjectsList .Folder .Title:hover {
  background-color: hsl(220, 13%, 24%);
}
.DevObjectsList .Folder .Items {
  padding-left: 1em;
}
.DevObjectsList .Folder .Items[isExpanded=false] {
  display: none;
}
.DevObjectsList .Folder .Items .CatchButton {
  padding: 0.5em 0.5em;
  font-size: 1em;
  color: hsl(220, 13%, 66%);
}
.DevObjectsList .Folder .Items .CatchButton:hover {
  background-color: hsl(220, 13%, 24%);
}
.DevObjectsList .SpotLink {
  padding: 0.5em;
  font-size: 1em;
  color: hsl(220, 13%, 66%);
}
.DevObjectsList .SpotLink:hover {
  background-color: hsl(220, 13%, 24%);
}
.DevObjectsList .SpotLink[isHovered=true] {
  background-color: hsl(220, 13%, 24%);
}
.DevObjectsList .SpotLink[isShown=false] {
  display: none;
}
.DevObjectsList .SpotLink .Name {
  font-size: 1em;
}
.DevObjectsList .SpotLink .Key {
  margin-left: 0.5em;
  opacity: 0.5;
}
.DevObjectsList .UnitLink {
  display: flex;
  padding: 0.5em;
  font-size: 1em;
  color: hsl(220, 13%, 66%);
}
.DevObjectsList .UnitLink:hover {
  background-color: hsl(220, 13%, 24%);
}
.DevObjectsList .UnitLink[isHovered=true] {
  background-color: hsl(220, 13%, 24%);
}
.DevObjectsList .UnitLink .Name {
  font-size: 1em;
}
.DevObjectsList .UnitLink .Key {
  margin-left: 0.5em;
  opacity: 0.5;
}
.DevObjectsList .UnitLink[isShown=false] {
  display: none;
}
.DevObjectsList .ScriptLink {
  display: flex;
  padding: 0.5em;
  font-size: 1em;
  color: hsl(220, 13%, 66%);
}
.DevObjectsList .ScriptLink:hover {
  background-color: hsl(220, 13%, 24%);
}
.DevObjectsList .ScriptLink .Name {
  font-size: 1em;
}
.DevObjectsList .ScriptLink[isShown=false] {
  display: none;
}
.DevObjectsList .EncounterLink {
  display: flex;
  padding: 0.5em;
  font-size: 1em;
  color: hsl(220, 13%, 66%);
}
.DevObjectsList .EncounterLink:hover {
  background-color: hsl(220, 13%, 24%);
}
.DevObjectsList .EncounterLink[isHovered=true] {
  background-color: hsl(220, 13%, 24%);
}
.DevObjectsList .EncounterLink[isShown=false] {
  display: none;
}
.DevObjectsList .EncounterLink .Name {
  font-size: 1em;
}
.DevObjectsList .EncounterLink .Key {
  margin-left: 0.5em;
  opacity: 0.5;
}

/* source/views/dev/panes/DevPanes.less */
.DevPanes {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  display: flex;
  position: absolute;
  flex-direction: column;
}
.DevPanes .DevHeader {
  font-family: AlegreyaSans, sans-serif;
  padding-left: 0.25em;
  padding-right: 0.25em;
  color: hsla(220, 13%, 66%, 0.6);
  border-bottom-width: 1px;
  border-bottom-color: hsl(220, 13%, 10.8%);
  border-bottom-style: solid;
  background-color: hsl(220, 13%, 15%);
  display: flex;
  align-items: center;
}
.DevPanes .DevHeader .Dropdown {
  overflow: hidden;
}
.DevPanes .DevHeader .Dropdown .Dropbutton {
  border: none;
  outline: none;
  padding: 0.25em 0.25em;
  background-color: inherit;
  font-family: AlegreyaSans, sans-serif;
  margin: 0;
}
.DevPanes .DevHeader .Dropdown .DropdownContent {
  display: none;
  position: absolute;
  background-color: hsl(220, 13%, 18%);
  min-width: 16em;
  box-shadow: 0em 0.5em 1em 0em rgba(0, 0, 0, 0.2);
  z-index: 100;
}
.DevPanes .DevHeader .Dropdown .DropdownContent .HorizontalBreak {
  width: 100%;
  height: 0.2em;
  border-bottom: 1px solid hsl(220, 13%, 24%);
}
.DevPanes .DevHeader .Dropdown .DropdownContent .Option {
  color: hsl(220, 13%, 66%);
  padding: 0.25em 0.25em;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  text-align: left;
}
.DevPanes .DevHeader .Dropdown .DropdownContent .Option .Legend {
  color: hsla(220, 13%, 66%, 0.6);
  padding: 0.25em;
  text-align: right;
  float: right;
}
.DevPanes .DevHeader .Dropdown .DropdownContent .Option:hover {
  background-color: hsl(220, 13%, 24%);
}
.DevPanes .DevHeader .Dropdown[isFileMenuActive=true]:hover .Dropbutton {
  background-color: hsl(220, 13%, 24%);
}
.DevPanes .DevHeader .Dropdown[isFileMenuActive=true]:hover .DropdownContent {
  display: block;
}
.DevPanes .DevBody {
  flex: 1;
  display: flex;
  overflow: hidden;
  position: relative;
}
.DevPanes .DevBody .TabbedPane {
  width: 18em;
  overflow-y: auto;
  overflow-x: hidden;
  font-family: AlegreyaSans, sans-serif;
  border-right-width: 1px;
  border-right-color: hsl(220, 13%, 10.8%);
  border-right-style: solid;
  background-color: hsl(220, 13%, 18%);
  color: hsl(220, 13%, 66%);
}
.DevPanes .DevBody .TabbedPane .DevPaneTabs {
  overflow: hidden;
  border: none;
  background-color: hsl(220, 13%, 15%);
}
.DevPanes .DevBody .TabbedPane .DevPaneTabs .Tab {
  background-color: inherit;
  display: inline-block;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0.25em;
  transition: 0.3s;
}
.DevPanes .DevBody .TabbedPane .DevPaneTabs .Tab[isSelected=true] {
  background-color: hsl(220, 13%, 24%);
}
.DevPanes .DevBody .TabbedPane .DevPaneTabs .Tab:hover {
  background-color: hsl(220, 13%, 24%);
}
.DevPanes .DevBody .TabbedPane .DevPaneTabs .Tab:active {
  background-color: hsl(220, 13%, 18%);
}
.DevPanes .DevBody .DevPlaySection {
  flex: 1;
  display: flex;
  position: relative;
  flex-direction: column;
}
.DevPanes .DevBody .DevPlaySection .DevPreview {
  flex: 1;
  overflow: hidden;
  position: relative;
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter {
  height: 2em;
  font-family: AlegreyaSans, sans-serif;
  padding-left: 0.25em;
  padding-right: 0.25em;
  color: hsl(220, 13%, 66%);
  background-color: hsl(220, 13%, 15%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader.DevPlayFooter,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter.DevPlayFooter {
  border-top-width: 1px;
  border-top-color: hsl(220, 13%, 10.8%);
  border-top-style: solid;
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader.DevPlayHeader,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter.DevPlayHeader {
  border-bottom-width: 1px;
  border-bottom-color: hsl(220, 13%, 10.8%);
  border-bottom-style: solid;
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .StopButton,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .StopButton,
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .PausePlayButton,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .PausePlayButton {
  font-size: 2em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .StopButton span,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .StopButton span,
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .PausePlayButton span,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .PausePlayButton span {
  font-size: inherit;
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .StopButton:hover,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .StopButton:hover,
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .PausePlayButton:hover,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .PausePlayButton:hover {
  color: hsl(220, 13%, 24%);
  cursor: pointer;
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .StopButton .Label,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .StopButton .Label,
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .PausePlayButton .Label,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .PausePlayButton .Label {
  font-size: 0.5em;
  line-height: 1em;
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader:not([inProtoMode]) .Mode,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter:not([inProtoMode]) .Mode {
  color: hsl(355, 65%, 65%);
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .Spacer,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .Spacer {
  flex: 1;
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .Divider,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .Divider {
  margin: 0em 0.5em;
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .Printing,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .Printing {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .Printing:not(:first-child),
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .Printing:not(:first-child) {
  margin-left: 0.5em;
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .Printing[isActive],
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .Printing[isActive] {
  color: hsl(355, 65%, 65%);
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .Printing.Tip[isActive],
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .Printing.Tip[isActive] {
  color: hsl(95, 38%, 62%);
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .Printing:hover,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .Printing:hover {
  color: white;
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .Printing .Label[isUnderlined],
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .Printing .Label[isUnderlined] {
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: 1px;
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader .Printing .material-symbols-rounded,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .Printing .material-symbols-rounded {
  font-size: 1.3em;
  line-height: 1em;
}

/* source/views/dev/screens/DevScreens.less */
.DevScreen {
  width: 100%;
  height: 100%;
  padding: 1em;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #f0ead6;
  background-color: #29202e;
  font-family: var(--editor-font);
}
.DevScreen section {
  width: 100%;
  max-width: 20em;
  border-radius: 0.5em;
}
.DevScreen section:not(:first-of-type) {
  margin-left: 1em;
}
.DevScreen page {
  display: block;
  margin: auto;
  max-width: 1200px;
}
.DevScreen .Header {
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.33em;
}
.DevScreen .Header .Link {
  color: #f0ead6;
}
.DevScreen .Header .Link:hover {
  color: #d54b33;
}
.DevScreen .Description {
  text-align: center;
  margin-bottom: 0.5em;
}
.DevScreen .Divider {
  width: 5em;
  margin: 1em auto;
  border-top-style: dashed;
  border-top-color: #f0ead6;
  border-top-width: 0.1em;
}
.DevScreen .Button {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  overflow: hidden;
  border-radius: 0.25em;
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
  background-color: #68554d;
}
.DevScreen .Button:hover {
  background-color: #d54b33;
}
.DevScreen .Button[size=big] {
  height: 3em;
}
.DevScreen .Button .Icon {
  height: 1em;
  min-width: 2em;
  padding: 0.5em;
  line-height: 1em;
  display: flex;
  align-items: center;
}
.DevScreen .Button .Icon .material-symbols-rounded {
  font-size: 1.1em;
  line-height: 1em;
}
.DevScreen .Button .Label {
  flex: 1;
  line-height: 1em;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
}
.DevScreen .Button .Label:not(:first-child) {
  padding-left: 0em;
}
.DevScreen .Button .Label:not(:last-child) {
  padding-right: 0em;
}
.DevScreen .Button .Badge {
  height: 100%;
  min-width: 2em;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.DevScreen .Button .Badge[color=green] {
  color: #f0ead6;
  background-color: #62C370;
}
.DevScreen .Button .Badge[color=red] {
  color: #f0ead6;
  background-color: #d54b33;
}
.DevHellScreen {
  width: 100%;
  height: 100%;
  padding: 1em;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #f0ead6;
  background-color: #29202e;
  font-family: var(--editor-font);
  display: flex;
  align-items: center;
  justify-content: center;
}
.DevHellScreen section {
  width: 100%;
  max-width: 20em;
  border-radius: 0.5em;
}
.DevHellScreen section:not(:first-of-type) {
  margin-left: 1em;
}
.DevHellScreen page {
  display: block;
  margin: auto;
  max-width: 1200px;
}
.DevHellScreen .Header {
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.33em;
}
.DevHellScreen .Header .Link {
  color: #f0ead6;
}
.DevHellScreen .Header .Link:hover {
  color: #d54b33;
}
.DevHellScreen .Description {
  text-align: center;
  margin-bottom: 0.5em;
}
.DevHellScreen .Divider {
  width: 5em;
  margin: 1em auto;
  border-top-style: dashed;
  border-top-color: #f0ead6;
  border-top-width: 0.1em;
}
.DevHellScreen .Button {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  overflow: hidden;
  border-radius: 0.25em;
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
  background-color: #68554d;
}
.DevHellScreen .Button:hover {
  background-color: #d54b33;
}
.DevHellScreen .Button[size=big] {
  height: 3em;
}
.DevHellScreen .Button .Icon {
  height: 1em;
  min-width: 2em;
  padding: 0.5em;
  line-height: 1em;
  display: flex;
  align-items: center;
}
.DevHellScreen .Button .Icon .material-symbols-rounded {
  font-size: 1.1em;
  line-height: 1em;
}
.DevHellScreen .Button .Label {
  flex: 1;
  line-height: 1em;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
}
.DevHellScreen .Button .Label:not(:first-child) {
  padding-left: 0em;
}
.DevHellScreen .Button .Label:not(:last-child) {
  padding-right: 0em;
}
.DevHellScreen .Button .Badge {
  height: 100%;
  min-width: 2em;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.DevHellScreen .Button .Badge[color=green] {
  color: #f0ead6;
  background-color: #62C370;
}
.DevHellScreen .Button .Badge[color=red] {
  color: #f0ead6;
  background-color: #d54b33;
}
.DevListScreen {
  width: 100%;
  height: 100%;
  padding: 1em;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #f0ead6;
  background-color: #29202e;
  font-family: var(--editor-font);
}
.DevListScreen section {
  width: 100%;
  max-width: 20em;
  border-radius: 0.5em;
}
.DevListScreen section:not(:first-of-type) {
  margin-left: 1em;
}
.DevListScreen page {
  display: block;
  margin: auto;
  max-width: 1200px;
}
.DevListScreen .Header {
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.33em;
}
.DevListScreen .Header .Link {
  color: #f0ead6;
}
.DevListScreen .Header .Link:hover {
  color: #d54b33;
}
.DevListScreen .Description {
  text-align: center;
  margin-bottom: 0.5em;
}
.DevListScreen .Divider {
  width: 5em;
  margin: 1em auto;
  border-top-style: dashed;
  border-top-color: #f0ead6;
  border-top-width: 0.1em;
}
.DevListScreen .Button {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  overflow: hidden;
  border-radius: 0.25em;
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
  background-color: #68554d;
}
.DevListScreen .Button:hover {
  background-color: #d54b33;
}
.DevListScreen .Button[size=big] {
  height: 3em;
}
.DevListScreen .Button .Icon {
  height: 1em;
  min-width: 2em;
  padding: 0.5em;
  line-height: 1em;
  display: flex;
  align-items: center;
}
.DevListScreen .Button .Icon .material-symbols-rounded {
  font-size: 1.1em;
  line-height: 1em;
}
.DevListScreen .Button .Label {
  flex: 1;
  line-height: 1em;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
}
.DevListScreen .Button .Label:not(:first-child) {
  padding-left: 0em;
}
.DevListScreen .Button .Label:not(:last-child) {
  padding-right: 0em;
}
.DevListScreen .Button .Badge {
  height: 100%;
  min-width: 2em;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.DevListScreen .Button .Badge[color=green] {
  color: #f0ead6;
  background-color: #62C370;
}
.DevListScreen .Button .Badge[color=red] {
  color: #f0ead6;
  background-color: #d54b33;
}
.DevListScreen .Unit {
  display: flex;
  padding-left: 0em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-right: 0.809em;
  font-size: 0.4em;
  background-color: #68554d;
}
.DevListScreen .Unit:nth-child(even) {
  background-color: #3c312c;
}
.DevListScreen .Unit .Column {
  margin-left: 1em;
}
.DevListScreen .Unit .Column.Name {
  flex: 1;
  width: auto;
}
.DevListScreen .Unit .Column.Image {
  width: 1em;
  height: 1em;
  position: relative;
}
.DevListScreen .Unit .Column.Image img {
  width: 4em;
  left: -1.5em;
  bottom: -0.5em;
  position: absolute;
}
.DevListScreen .Unit .Column.Number {
  width: 2em;
}
.DevListScreen .Unit .Column.String {
  width: 4em;
}
.DevImportListScreen {
  width: 100%;
  height: 100%;
  padding: 1em;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #f0ead6;
  background-color: #29202e;
  font-family: var(--editor-font);
}
.DevImportListScreen section {
  width: 100%;
  max-width: 20em;
  border-radius: 0.5em;
}
.DevImportListScreen section:not(:first-of-type) {
  margin-left: 1em;
}
.DevImportListScreen page {
  display: block;
  margin: auto;
  max-width: 1200px;
}
.DevImportListScreen .Header {
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.33em;
}
.DevImportListScreen .Header .Link {
  color: #f0ead6;
}
.DevImportListScreen .Header .Link:hover {
  color: #d54b33;
}
.DevImportListScreen .Description {
  text-align: center;
  margin-bottom: 0.5em;
}
.DevImportListScreen .Divider {
  width: 5em;
  margin: 1em auto;
  border-top-style: dashed;
  border-top-color: #f0ead6;
  border-top-width: 0.1em;
}
.DevImportListScreen .Button {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  overflow: hidden;
  border-radius: 0.25em;
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
  background-color: #68554d;
}
.DevImportListScreen .Button:hover {
  background-color: #d54b33;
}
.DevImportListScreen .Button[size=big] {
  height: 3em;
}
.DevImportListScreen .Button .Icon {
  height: 1em;
  min-width: 2em;
  padding: 0.5em;
  line-height: 1em;
  display: flex;
  align-items: center;
}
.DevImportListScreen .Button .Icon .material-symbols-rounded {
  font-size: 1.1em;
  line-height: 1em;
}
.DevImportListScreen .Button .Label {
  flex: 1;
  line-height: 1em;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
}
.DevImportListScreen .Button .Label:not(:first-child) {
  padding-left: 0em;
}
.DevImportListScreen .Button .Label:not(:last-child) {
  padding-right: 0em;
}
.DevImportListScreen .Button .Badge {
  height: 100%;
  min-width: 2em;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.DevImportListScreen .Button .Badge[color=green] {
  color: #f0ead6;
  background-color: #62C370;
}
.DevImportListScreen .Button .Badge[color=red] {
  color: #f0ead6;
  background-color: #d54b33;
}
.DevImportListScreen .PreloadedImages .Image {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0.5em 0.809em;
  font-size: 0.5em;
  background-color: #68554d;
}
.DevImportListScreen .PreloadedImages .Image .Body {
  background-size: 4em auto;
  background-repeat: no-repeat;
  background-position: bottom;
}
.DevImportListScreen .PreloadedImages .Image:nth-child(even) {
  background-color: #3c312c;
}
.DevTestListScreen {
  width: 100%;
  height: 100%;
  padding: 1em;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #f0ead6;
  background-color: #29202e;
  font-family: var(--editor-font);
}
.DevTestListScreen section {
  width: 100%;
  max-width: 20em;
  border-radius: 0.5em;
}
.DevTestListScreen section:not(:first-of-type) {
  margin-left: 1em;
}
.DevTestListScreen page {
  display: block;
  margin: auto;
  max-width: 1200px;
}
.DevTestListScreen .Header {
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.33em;
}
.DevTestListScreen .Header .Link {
  color: #f0ead6;
}
.DevTestListScreen .Header .Link:hover {
  color: #d54b33;
}
.DevTestListScreen .Description {
  text-align: center;
  margin-bottom: 0.5em;
}
.DevTestListScreen .Divider {
  width: 5em;
  margin: 1em auto;
  border-top-style: dashed;
  border-top-color: #f0ead6;
  border-top-width: 0.1em;
}
.DevTestListScreen .Button {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  overflow: hidden;
  border-radius: 0.25em;
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
  background-color: #68554d;
}
.DevTestListScreen .Button:hover {
  background-color: #d54b33;
}
.DevTestListScreen .Button[size=big] {
  height: 3em;
}
.DevTestListScreen .Button .Icon {
  height: 1em;
  min-width: 2em;
  padding: 0.5em;
  line-height: 1em;
  display: flex;
  align-items: center;
}
.DevTestListScreen .Button .Icon .material-symbols-rounded {
  font-size: 1.1em;
  line-height: 1em;
}
.DevTestListScreen .Button .Label {
  flex: 1;
  line-height: 1em;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
}
.DevTestListScreen .Button .Label:not(:first-child) {
  padding-left: 0em;
}
.DevTestListScreen .Button .Label:not(:last-child) {
  padding-right: 0em;
}
.DevTestListScreen .Button .Badge {
  height: 100%;
  min-width: 2em;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.DevTestListScreen .Button .Badge[color=green] {
  color: #f0ead6;
  background-color: #62C370;
}
.DevTestListScreen .Button .Badge[color=red] {
  color: #f0ead6;
  background-color: #d54b33;
}
.DevTestListScreen .Buttons {
  display: flex;
  padding: 0.2em;
  gap: 0.2em;
}
.DevTestListScreen .Buttons .Button {
  padding: 0.2em;
  font-size: 1em;
  background-color: #68554d;
}
.DevTestListScreen .Buttons .Button:hover {
  background-color: #a48686;
}
.DevTestListScreen .TestSection {
  width: 100%;
  display: flex;
  gap: 0.2em;
  padding: 0em 0.2em;
}
.DevTestListScreen .Tests {
  gap: 0.2em;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.DevTestListScreen .Tests .Test,
.DevTestListScreen .Tests .SavestateTest {
  padding: 0.2em 0.8em;
  display: flex;
  align-items: center;
  cursor: pointer;
  border-radius: 0.05em;
  background-color: #68554d;
}
.DevTestListScreen .Tests .Test:hover,
.DevTestListScreen .Tests .SavestateTest:hover {
  background-color: #a48686;
}
.DevTestListScreen .Tests .Test[status=good],
.DevTestListScreen .Tests .SavestateTest[status=good] {
  background-color: #09814A;
}
.DevTestListScreen .Tests .Test[status=good]:hover,
.DevTestListScreen .Tests .SavestateTest[status=good]:hover {
  background-color: #0cb165;
}
.DevTestListScreen .Tests .Test[status=bad],
.DevTestListScreen .Tests .SavestateTest[status=bad] {
  background-color: #9F4A54;
}
.DevTestListScreen .Tests .Test[status=bad]:hover,
.DevTestListScreen .Tests .SavestateTest[status=bad]:hover {
  background-color: #b7656e;
}
.DevTestListScreen .Tests .Test[isLoading=true],
.DevTestListScreen .Tests .SavestateTest[isLoading=true] {
  background-color: #d0c0c0;
}
.DevTestListScreen .Tests .Test[isLoading=true]:hover,
.DevTestListScreen .Tests .SavestateTest[isLoading=true]:hover {
  background-color: #e6dddd;
}
.DevTestListScreen .Tests .Test .Description,
.DevTestListScreen .Tests .SavestateTest .Description {
  white-space: preserve;
  opacity: 0.5;
  flex: 1;
}
.DevTestListScreen .Tests .Test:hover .Description,
.DevTestListScreen .Tests .SavestateTest:hover .Description {
  opacity: 1;
}
.DevTestScreen {
  width: 100%;
  height: 100%;
  padding: 1em;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #f0ead6;
  background-color: #29202e;
  font-family: var(--editor-font);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.DevTestScreen section {
  width: 100%;
  max-width: 20em;
  border-radius: 0.5em;
}
.DevTestScreen section:not(:first-of-type) {
  margin-left: 1em;
}
.DevTestScreen page {
  display: block;
  margin: auto;
  max-width: 1200px;
}
.DevTestScreen .Header {
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.33em;
}
.DevTestScreen .Header .Link {
  color: #f0ead6;
}
.DevTestScreen .Header .Link:hover {
  color: #d54b33;
}
.DevTestScreen .Description {
  text-align: center;
  margin-bottom: 0.5em;
}
.DevTestScreen .Divider {
  width: 5em;
  margin: 1em auto;
  border-top-style: dashed;
  border-top-color: #f0ead6;
  border-top-width: 0.1em;
}
.DevTestScreen .Button {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  overflow: hidden;
  border-radius: 0.25em;
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
  background-color: #68554d;
}
.DevTestScreen .Button:hover {
  background-color: #d54b33;
}
.DevTestScreen .Button[size=big] {
  height: 3em;
}
.DevTestScreen .Button .Icon {
  height: 1em;
  min-width: 2em;
  padding: 0.5em;
  line-height: 1em;
  display: flex;
  align-items: center;
}
.DevTestScreen .Button .Icon .material-symbols-rounded {
  font-size: 1.1em;
  line-height: 1em;
}
.DevTestScreen .Button .Label {
  flex: 1;
  line-height: 1em;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
}
.DevTestScreen .Button .Label:not(:first-child) {
  padding-left: 0em;
}
.DevTestScreen .Button .Label:not(:last-child) {
  padding-right: 0em;
}
.DevTestScreen .Button .Badge {
  height: 100%;
  min-width: 2em;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.DevTestScreen .Button .Badge[color=green] {
  color: #f0ead6;
  background-color: #62C370;
}
.DevTestScreen .Button .Badge[color=red] {
  color: #f0ead6;
  background-color: #d54b33;
}
.DevTestScreen[status=good] {
  background-color: #09814A;
}
.DevTestScreen[status=good] .Message::before {
  content: "Success";
}
.DevTestScreen[status=bad] {
  background-color: #9F4A54;
}
.DevTestScreen[status=bad] .Message::before {
  content: "Failure: ";
}
.DevTestScreen .Message {
  opacity: 0.75;
}
.DevTestScreen .DifferenceComparison {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
}
.DevTestScreen .DifferenceComparison .Column {
  width: 50%;
  height: 100%;
  padding: 0.5em;
}
.DevUiListScreen {
  width: 100%;
  height: 100%;
  padding: 1em;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #f0ead6;
  background-color: #29202e;
  font-family: var(--editor-font);
}
.DevUiListScreen section {
  width: 100%;
  max-width: 20em;
  border-radius: 0.5em;
}
.DevUiListScreen section:not(:first-of-type) {
  margin-left: 1em;
}
.DevUiListScreen page {
  display: block;
  margin: auto;
  max-width: 1200px;
}
.DevUiListScreen .Header {
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.33em;
}
.DevUiListScreen .Header .Link {
  color: #f0ead6;
}
.DevUiListScreen .Header .Link:hover {
  color: #d54b33;
}
.DevUiListScreen .Description {
  text-align: center;
  margin-bottom: 0.5em;
}
.DevUiListScreen .Divider {
  width: 5em;
  margin: 1em auto;
  border-top-style: dashed;
  border-top-color: #f0ead6;
  border-top-width: 0.1em;
}
.DevUiListScreen .Button {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  overflow: hidden;
  border-radius: 0.25em;
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
  background-color: #68554d;
}
.DevUiListScreen .Button:hover {
  background-color: #d54b33;
}
.DevUiListScreen .Button[size=big] {
  height: 3em;
}
.DevUiListScreen .Button .Icon {
  height: 1em;
  min-width: 2em;
  padding: 0.5em;
  line-height: 1em;
  display: flex;
  align-items: center;
}
.DevUiListScreen .Button .Icon .material-symbols-rounded {
  font-size: 1.1em;
  line-height: 1em;
}
.DevUiListScreen .Button .Label {
  flex: 1;
  line-height: 1em;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
}
.DevUiListScreen .Button .Label:not(:first-child) {
  padding-left: 0em;
}
.DevUiListScreen .Button .Label:not(:last-child) {
  padding-right: 0em;
}
.DevUiListScreen .Button .Badge {
  height: 100%;
  min-width: 2em;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.DevUiListScreen .Button .Badge[color=green] {
  color: #f0ead6;
  background-color: #62C370;
}
.DevUiListScreen .Button .Badge[color=red] {
  color: #f0ead6;
  background-color: #d54b33;
}
.DevUiListScreen .UIs .UI {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 0.5em 0.809em;
  background-color: #68554d;
}
.DevUiListScreen .UIs .UI:nth-child(even) {
  background-color: #3c312c;
}
.DevUiListScreen .UIs .UI:hover {
  cursor: pointer;
  background-color: #d54b33;
}
.Mockup .PlaceholderStage {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  background-color: black;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("./screenshot-CU4JF7KC.png");
}
.DevChapterListScreen {
  width: 100%;
  height: 100%;
  padding: 1em;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #f0ead6;
  background-color: #29202e;
  font-family: var(--editor-font);
}
.DevChapterListScreen section {
  width: 100%;
  max-width: 20em;
  border-radius: 0.5em;
}
.DevChapterListScreen section:not(:first-of-type) {
  margin-left: 1em;
}
.DevChapterListScreen page {
  display: block;
  margin: auto;
  max-width: 1200px;
}
.DevChapterListScreen .Header {
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.33em;
}
.DevChapterListScreen .Header .Link {
  color: #f0ead6;
}
.DevChapterListScreen .Header .Link:hover {
  color: #d54b33;
}
.DevChapterListScreen .Description {
  text-align: center;
  margin-bottom: 0.5em;
}
.DevChapterListScreen .Divider {
  width: 5em;
  margin: 1em auto;
  border-top-style: dashed;
  border-top-color: #f0ead6;
  border-top-width: 0.1em;
}
.DevChapterListScreen .Button {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  overflow: hidden;
  border-radius: 0.25em;
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
  background-color: #68554d;
}
.DevChapterListScreen .Button:hover {
  background-color: #d54b33;
}
.DevChapterListScreen .Button[size=big] {
  height: 3em;
}
.DevChapterListScreen .Button .Icon {
  height: 1em;
  min-width: 2em;
  padding: 0.5em;
  line-height: 1em;
  display: flex;
  align-items: center;
}
.DevChapterListScreen .Button .Icon .material-symbols-rounded {
  font-size: 1.1em;
  line-height: 1em;
}
.DevChapterListScreen .Button .Label {
  flex: 1;
  line-height: 1em;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
}
.DevChapterListScreen .Button .Label:not(:first-child) {
  padding-left: 0em;
}
.DevChapterListScreen .Button .Label:not(:last-child) {
  padding-right: 0em;
}
.DevChapterListScreen .Button .Badge {
  height: 100%;
  min-width: 2em;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.DevChapterListScreen .Button .Badge[color=green] {
  color: #f0ead6;
  background-color: #62C370;
}
.DevChapterListScreen .Button .Badge[color=red] {
  color: #f0ead6;
  background-color: #d54b33;
}
.DevChapterListScreen .Chapters .Chapter {
  padding: 0.5em 0.809em;
  background-color: #68554d;
}
.DevChapterListScreen .Chapters .Chapter:nth-child(even) {
  background-color: #3c312c;
}
.DevChapterListScreen .Chapters .Chapter:hover {
  cursor: pointer;
  background-color: #d54b33;
}
.DevUnitListScreen {
  width: 100%;
  height: 100%;
  padding: 1em;
  overflow-x: hidden;
  overflow-y: scroll;
  color: #f0ead6;
  background-color: #29202e;
  font-family: var(--editor-font);
}
.DevUnitListScreen section {
  width: 100%;
  max-width: 20em;
  border-radius: 0.5em;
}
.DevUnitListScreen section:not(:first-of-type) {
  margin-left: 1em;
}
.DevUnitListScreen page {
  display: block;
  margin: auto;
  max-width: 1200px;
}
.DevUnitListScreen .Header {
  font-size: 2em;
  text-align: center;
  margin-bottom: 0.33em;
}
.DevUnitListScreen .Header .Link {
  color: #f0ead6;
}
.DevUnitListScreen .Header .Link:hover {
  color: #d54b33;
}
.DevUnitListScreen .Description {
  text-align: center;
  margin-bottom: 0.5em;
}
.DevUnitListScreen .Divider {
  width: 5em;
  margin: 1em auto;
  border-top-style: dashed;
  border-top-color: #f0ead6;
  border-top-width: 0.1em;
}
.DevUnitListScreen .Button {
  display: flex;
  align-items: center;
  margin-bottom: 0.5em;
  overflow: hidden;
  border-radius: 0.25em;
  color: inherit;
  text-decoration: inherit;
  cursor: pointer;
  background-color: #68554d;
}
.DevUnitListScreen .Button:hover {
  background-color: #d54b33;
}
.DevUnitListScreen .Button[size=big] {
  height: 3em;
}
.DevUnitListScreen .Button .Icon {
  height: 1em;
  min-width: 2em;
  padding: 0.5em;
  line-height: 1em;
  display: flex;
  align-items: center;
}
.DevUnitListScreen .Button .Icon .material-symbols-rounded {
  font-size: 1.1em;
  line-height: 1em;
}
.DevUnitListScreen .Button .Label {
  flex: 1;
  line-height: 1em;
  padding: 0.5em 1em;
  display: flex;
  align-items: center;
}
.DevUnitListScreen .Button .Label:not(:first-child) {
  padding-left: 0em;
}
.DevUnitListScreen .Button .Label:not(:last-child) {
  padding-right: 0em;
}
.DevUnitListScreen .Button .Badge {
  height: 100%;
  min-width: 2em;
  padding: 0.5em;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
}
.DevUnitListScreen .Button .Badge[color=green] {
  color: #f0ead6;
  background-color: #62C370;
}
.DevUnitListScreen .Button .Badge[color=red] {
  color: #f0ead6;
  background-color: #d54b33;
}
.DevUnitListScreen .Unit {
  display: flex;
  padding-left: 0em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-right: 0.809em;
  font-size: 0.4em;
  background-color: #68554d;
}
.DevUnitListScreen .Unit:nth-child(even) {
  background-color: #3c312c;
}
.DevUnitListScreen .Unit .Column {
  margin-left: 1em;
}
.DevUnitListScreen .Unit .Column.Name {
  flex: 1;
  width: auto;
}
.DevUnitListScreen .Unit .Column.Image {
  width: 1em;
  height: 1em;
  position: relative;
}
.DevUnitListScreen .Unit .Column.Image img {
  width: 4em;
  left: -1.5em;
  bottom: -0.5em;
  position: absolute;
}
.DevUnitListScreen .Unit .Column.Number {
  width: 2em;
}
.DevUnitListScreen .Unit .Column.String {
  width: 4em;
}

/* source/views/dev/editorscreens/DevEncounterEditorScreen.less */
.DevEncounterDesignScreen {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}
.DevEncounterDesignScreen .Header {
  text-align: center;
  margin: 0.33em 0em;
}
.DevEncounterDesignScreen .Camera {
  position: absolute;
  isolation: isolate;
}
.DevEncounterDesignScreen .WorldImage {
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  animation-duration: 2s;
  animation-direction: alternate;
  animation-iteration-count: infinite;
}
.DevEncounterDesignScreen .WorldImage .EncounterImage {
  position: absolute;
}
.DevEncounterDesignScreen .Encounter {
  opacity: 1;
  background-color: #f0ead6;
}
.DevEncounterDesignScreen .Encounter[isHovered=true] {
  background-color: #ceba79;
}
.DevEncounterDesignScreen .Encounter[isSelected=true] {
  background-color: #927c35;
  z-index: 100;
}
.DevEncounterDesignScreen .Encounter .Area {
  z-index: 50;
  position: absolute;
  background-color: inherit;
}
.DevEncounterDesignScreen .Encounter .Edge {
  z-index: 55;
  position: absolute;
  background-color: inherit;
}
.DevEncounterDesignScreen .Encounter .Edge[isSelected] {
  background-color: #d54b33;
}
.DevEncounterDesignScreen .Encounter .Vertex {
  z-index: 60;
  position: absolute;
  background-color: inherit;
}
.DevEncounterDesignScreen .Encounter .Vertex[isSelected] {
  background-color: #d54b33;
}

/* source/views/components/EditorModeSplash.less */
.EditorModeSplash {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes splash-in {
  0% {
    opacity: 0;
    transform: translateX(-100%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateX(0%) scale(1.5);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) scale(1);
  }
}
.EditorModeSplash .ModeText {
  opacity: 0;
  z-index: 200;
  font-size: 2em;
  font-variant: small-caps;
  animation: splash-in 1000ms;
  animation-iteration-count: 1;
}

/* source/views/dev/DevToys.less */
.DevToys .DevToy {
  position: absolute;
  z-index: 100000000;
  display: flex;
  align-items: flex-end;
}
.DevToys .DevToy .Toast {
  font-size: 1em;
  line-height: 1em;
  border-radius: 0.2em;
  padding: 0.2em 0.5em;
  width: fit-content;
  height: fit-content;
  color: #f0ead6;
  font-family: AlegreyaSans, sans-serif;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  opacity: 0.5;
}
.DevToys .DevToy .Toast.Small {
  font-size: 0.8em;
}
.DevToys .DevToy .Toast:not(:last-child) {
  margin-right: 0.2em;
}
.DevToys .DevToy .Toast[isActive] {
  opacity: 1;
}
.DevToys .DevToy .Toast .material-symbols-rounded {
  font-size: 1.3em;
  line-height: 1em;
}
.DevToys .HoveredCursor.DevToy {
  left: 0.5em;
  bottom: 0.5em;
}
.DevToys .Notification.DevToy {
  right: 0.5em;
  top: 0.5em;
}
.DevToys .Notification.DevToy .Toast {
  animation-name: toast;
  animation-duration: 0.25s;
  animation-timing-function: cubic-bezier(0.68, -0.55, 0.25, 1.35);
  opacity: 0 !important;
  transition-duration: 1s;
  transition-property: opacity;
}
.DevToys .Notification.DevToy .Toast[type=success] {
  color: #62C370;
}
.DevToys .Notification.DevToy .Toast[type=failure] {
  color: #d54b33;
}
.DevToys .Notification.DevToy .Toast[isVisible] {
  opacity: 1 !important;
  transition-duration: 0.25s;
}
@keyframes toast {
  0% {
    transform: translateX(calc(100% + 30px));
  }
  100% {
    transform: translateX(0);
  }
}

/* source/views/dev/editorscreens/DevBattleEditorScreen.less */
.DevBattleEditorScreen {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}
.DevBattleEditorScreen .Header {
  text-align: center;
  margin: 0.33em 0em;
}
.DevBattleEditorScreen .Camera {
  position: absolute;
  isolation: isolate;
}
.DevBattleEditorScreen .WorldImage {
  background-position: top-left;
  background-size: contain;
  image-rendering: pixelated;
  position: absolute;
}
.DevBattleEditorScreen .Spot {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  z-index: 60;
}
.DevBattleEditorScreen .Spot .Selection {
  left: 0em;
  right: 0em;
  bottom: 0.1em;
  margin: auto;
  width: 0.8em;
  height: 0.8em;
  z-index: -1;
  position: absolute;
  border-radius: 0.1em;
  background-color: #f0ead6;
  opacity: 0;
}
.DevBattleEditorScreen .Spot .Selection[isHovered] {
  opacity: 0.9;
}
.DevBattleEditorScreen .Spot .Selection[isSelected] {
  opacity: 1;
}
.DevBattleEditorScreen .Unit {
  width: 1em;
  height: 1em;
  position: absolute;
}

/* source/views/dev/editorscreens/DevScriptEditorScreen.less */
.DevScriptEditorScreen {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: hidden;
}
.DevScriptEditorScreen .Header {
  text-align: center;
  margin: 0.33em 0em;
}
.DevScriptEditorScreen .Camera {
  position: absolute;
  isolation: isolate;
}
.DevScriptEditorScreen .WorldImage {
  background-position: top-left;
  background-size: contain;
  image-rendering: pixelated;
  position: absolute;
}
.DevScriptEditorScreen .Spot {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  background-color: white;
  position: absolute;
  z-index: 60;
}
.DevScriptEditorScreen .Unit {
  width: 1em;
  height: 1em;
  position: absolute;
}
/*# sourceMappingURL=index.css.map */
