/* 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;
}
@font-face {
  font-family: "header";
  src: url(./PirataOne-Regular-5726RYJX.ttf) format("truetype");
}
@font-face {
  font-family: "base";
  src: url(./Leander-SJKNIGXX.ttf) format("truetype");
}
@font-face {
  font-family: "editor";
  src: url(./inter-OOC6RWOT.ttf) format("truetype");
}
.material-symbols-rounded {
  font-variation-settings:
    "FILL" 1,
    "wght" 400,
    "GRAD" 0,
    "opsz" 24;
}

/* 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 .Frame {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  width: 16em;
  height: 9em;
  margin: auto;
  position: absolute;
  color: #f0ead6;
  font-family: "base";
  background-color: #29202e;
}
.Mount:not([isDev=true]) .DevHellButton,
.Mount:not([isDev=true]) .ProductionButton {
  display: none;
}
.Mount[isDev=true] .DevHellButton,
.Mount[isDev=true] .ProductionButton {
  display: block;
}
.PreloadedImages {
  visibility: hidden;
  position: absolute;
  pointer-events: none;
}
.Screen {
  width: 100%;
  height: 100%;
}
.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: base;
}
.LoadingScreen .Header {
  font-family: header;
}
.LoadingScreen .ProgressBar {
  top: 0em;
  left: 0em;
  bottom: 0em;
  position: absolute;
  background-color: #d54b33;
}
.OverworldScreen .Location {
  width: 1em;
  height: 0.5em;
  margin-left: 1em / -2;
  margin-top: 0.5em / -2;
  position: absolute;
  border-radius: 100%;
  background-color: red;
}
.OverworldScreen .Location:hover {
  cursor: pointer;
  background-color: white;
}
.OverworldScreen .Location .Icon {
  width: 1em;
  position: absolute;
  bottom: 0.1em;
  left: -2em;
  right: -2em;
  margin: auto;
  image-rendering: pixelated;
}
.OverworldScreen .Route {
  width: 0.2em;
  height: 0.2em;
  margin-left: 0.2em / -2;
  margin-top: 0.2em / -2;
  position: absolute;
  border-radius: 100%;
  background-color: red;
  display: none;
}
.CreditsScreen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.CreditsScreen .Content {
  position: relative;
  animation-delay: 2s;
  animation-duration: 10s;
  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: header;
}
.CreditsScreen .Content .Title span {
  font-size: 3em;
}
.CreditsScreen .Content .Credits {
  font-size: 0.5em;
  text-align: center;
}
.CreditsScreen .Content .Thanks {
  width: 16em;
  height: 9em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: header;
}
@keyframes scroll {
  0% {
    top: 0em;
  }
  100% {
    top: -10.5em;
  }
}
.TitleScreen {
  width: 100%;
  height: 100%;
}
.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;
}
.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[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;
  font-family: header;
}
.TitleScreen .Main .Button {
  font-size: 0.8em;
  color: #d0999f;
}
.TitleScreen .Main .Button:hover {
  color: #9F4A54;
}
.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 .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;
}
.DevScreen {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.DevScreen .Header {
  text-align: center;
  margin: 0.33em 0em;
}
.DevHellScreen {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.DevHellScreen .Header {
  text-align: center;
  margin: 0.33em 0em;
}
.DevHellScreen .Links {
  gap: 0.2em;
  padding: 0em 0.2em;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
}
.DevHellScreen .Links .Link {
  padding: 0.33em;
  font-size: 0.5em;
  text-align: center;
  border-radius: 0.05em;
  cursor: pointer;
  background-color: #68554d;
}
.DevHellScreen .Links .Link:hover {
  background-color: #a48686;
}
.DevTestListScreen {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.DevTestListScreen .Header {
  text-align: center;
  margin: 0.33em 0em;
}
.DevTestListScreen .Tests {
  gap: 0.2em;
  padding: 0em 0.2em;
  grid-template-columns: repeat(8, 1fr);
  display: grid;
}
.DevTestListScreen .Tests .Test {
  padding-bottom: 100%;
  cursor: pointer;
  text-align: center;
  border-radius: 0.05em;
  background-color: #68554d;
}
.DevTestListScreen .Tests .Test:hover {
  background-color: #a48686;
}
.DevTestListScreen .Tests .Test[status=good] {
  background-color: #09814A;
}
.DevTestListScreen .Tests .Test[status=good]:hover {
  background-color: #0cb165;
}
.DevTestListScreen .Tests .Test[status=bad] {
  background-color: #9F4A54;
}
.DevTestListScreen .Tests .Test[status=bad]:hover {
  background-color: #b7656e;
}
.DevTestScreen {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.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;
  font-size: 0.5em;
}
.DevAudioListScreen {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.DevAudioListScreen .Header {
  text-align: center;
  margin: 0.33em 0em;
}
.DevAudioListScreen .Audios .Audio {
  padding: 0.5em 0.809em;
  font-size: 0.5em;
  background-color: #68554d;
}
.DevAudioListScreen .Audios .Audio:nth-child(even) {
  background-color: #3c312c;
}
.DevAudioListScreen .Audios .Audio:hover {
  cursor: pointer;
  background-color: #d54b33;
}
.DevEncounterDesignScreen {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.DevEncounterDesignScreen .Header {
  text-align: center;
  margin: 0.33em 0em;
}
.DevEncounterDesignScreen .Encounters .Encounter {
  padding: 0.5em 0.809em;
  font-size: 0.3em;
  background-color: #68554d;
}
.DevEncounterDesignScreen .Encounters .Encounter:nth-child(even) {
  background-color: #3c312c;
}
.DevEncounterDesignScreen .Encounters .Encounter:hover {
  cursor: pointer;
  background-color: #d54b33;
}
.DevChapterListScreen {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.DevChapterListScreen .Header {
  text-align: center;
  margin: 0.33em 0em;
}
.DevChapterListScreen .Chapters .Chapter {
  padding: 0.5em 0.809em;
  font-size: 0.3em;
  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%;
  overflow-x: hidden;
  overflow-y: scroll;
}
.DevUnitListScreen .Header {
  text-align: center;
  margin: 0.33em 0em;
}
.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/components/UnitSprite.less */
.UnitSprite {
  width: 4em;
  height: 3em;
  left: -1.45em;
  right: -1.5em;
  bottom: -0.5em;
  margin: auto;
  position: absolute;
  image-rendering: pixelated;
  background-size: 4em auto;
  background-repeat: no-repeat;
  background-position: center bottom;
  transition-property: filter;
  transition-duration: 0.6s;
}
.UnitSprite[imageSize=contained] {
  background-size: contain;
  width: 1em;
  height: 1em;
  left: 0em;
  right: 0em;
  bottom: 0em;
}
.UnitSprite[imageSize=buffered] {
  background-size: contain;
  width: 1.5em;
  height: 1.5em;
  left: -0.25em;
  right: 0em;
  bottom: -0.25em;
}
.UnitSprite .Face,
.UnitSprite .Body,
.UnitSprite .Weapon,
.UnitSprite .Decal,
.UnitSprite .Sprite {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  background-size: 4em auto;
  background-repeat: no-repeat;
  background-position: bottom;
  animation-duration: 0.75s;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}
.UnitSprite .Face[isHidden],
.UnitSprite .Body[isHidden],
.UnitSprite .Weapon[isHidden],
.UnitSprite .Decal[isHidden],
.UnitSprite .Sprite[isHidden] {
  display: none;
}
.UnitSprite:not([isGrayscaled]) {
  filter: grayscale(0) brightness(1);
}
.UnitSprite[isGrayscaled] {
  filter: grayscale(0.5) brightness(0.25);
}
.UnitSprite[isHighlighted] {
  filter: grayscale(0.5) brightness(1.75);
}
.PlaceholderSpot {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #555;
}

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

/* source/views/components/UnitHealthBar.less */
.UnitHealthBar {
  overflow: hidden;
  background-color: #f0ead6;
  position: relative;
  border-width: 0.05em;
  border-color: #000222;
  border-style: solid;
}
.UnitHealthBar .Fill {
  width: 0%;
  height: 100%;
  z-index: 10;
  position: absolute;
  background-color: #d54b33;
  transition-property: width;
  transition-duration: 0.1s;
}
.UnitHealthBar .OmegaFill {
  width: 0%;
  height: 100%;
  z-index: 20;
  position: absolute;
  background-color: #F8BD7F;
}
.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: #000222;
}

/* 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/Stage.less */
.Stage {
  width: 100%;
  height: 100%;
  z-index: 10;
  overflow: hidden;
  position: absolute;
  background-color: #000;
}
.Stage .Camera {
  position: absolute;
  isolation: isolate;
}
.Stage .RoomDarkness {
  top: 0em;
  left: 0em;
  z-index: 55;
  position: absolute;
  background-color: #202020;
}
.Stage .Darkness {
  top: 0em;
  left: 0em;
  z-index: 55;
  position: absolute;
  background-color: #000;
}
.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 .WorldImage {
  background-position: top-left;
  background-size: contain;
  image-rendering: pixelated;
  position: absolute;
}
.Stage .WorldImage .EncounterImage {
  position: absolute;
}
.Stage .Unit {
  width: 1em;
  height: 1em;
  position: absolute;
}
.Stage .Unit:not([isInBounds]) .UnitSprite {
  opacity: 0.5;
}
.Stage .Unit:not([isInBounds]) .UnitHealthBar {
  opacity: 0;
}
.Stage .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] {
  transform: rotate(45deg);
}
.Stage .Unit .UnitElement[element=water] {
  border-radius: 100%;
}
.Stage .Unit .UnitHealthBar {
  left: 0.19em;
  right: 0em;
  bottom: 0em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.Stage .Unit .UnitExperienceBar {
  left: 0.19em;
  right: 0em;
  bottom: 0.1em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.Stage .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: hsl(220, 14%, 71%);
  opacity: 0;
}
.Stage .Unit .Selection[isHovered] {
  opacity: 0.5;
}
.Stage .Unit .Selection[isSelected] {
  opacity: 0.75;
}
.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: 55;
  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;
  background-size: 400% 400%;
  animation-name: gradient;
  animation-duration: 2000ms;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
}
.Stage .UnitActionRangeTile .Sprite[type="enemy action"],
.Stage .UnitActionRangeTile .Sprite[type="invoke skill"],
.Stage .UnitActionRangeTile .Sprite[type="invoke skill - can not target"] {
  background-color: #882808;
}
.Stage .UnitActionRangeTile .Sprite[type="support action"] {
  background-color: #0B6E4F;
}
.Stage .UnitActionRangeTile .Sprite[type=move],
.Stage .UnitActionRangeTile .Sprite[type=wait],
.Stage .UnitActionRangeTile .Sprite[type="move through"] {
  background-color: #406898;
}
.Stage .Cursor {
  width: 1em;
  height: 1em;
  z-index: 55;
  position: absolute;
  transition-duration: 0s;
  transition-property: top left;
}
.Stage .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;
}
.Stage .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);
  }
}
.Stage .AttackArrow {
  width: 1em;
  height: 1em;
  z-index: 56;
  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(./attackarrow-F6TD6UMH.png);
}
.Stage .AttackArrow[role=support] {
  animation-duration: 2s;
  animation-name: SupportArrow;
  background-image: url(./supportarrow-HZ5VDY7D.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(1, 1);
  }
  50% {
    transform: scale(1.3, 0.7);
  }
  100% {
    transform: scale(1.3, 0.7);
  }
}
.Stage .MoveArrow .Move {
  width: 1em;
  height: 1em;
  z-index: 55;
  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);
  }
  25% {
    filter: url(#squiggly-1);
  }
  50% {
    filter: url(#squiggly-2);
  }
  75% {
    filter: url(#squiggly-3);
  }
  100% {
    filter: url(#squiggly-4);
  }
}

/* source/views/DevInspectorUI.less */
.DevScriptInspector {
  width: 280px;
  padding: 0.5em;
  font-family: editor;
  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%);
}
.DevScriptInspector:not([isSelected]) {
  color: hsla(220, 13%, 66%, 0.2);
}
.DevScriptInspector:not([isSelected]) input {
  background-color: hsla(220, 13%, 24%, 0.2);
  color: hsla(220, 13%, 86%, 0.2);
}
.DevScriptInspector .ScriptLink {
  display: flex;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-size: 1em;
  color: hsl(220, 13%, 66%);
}
.DevScriptInspector .ScriptLink:hover {
  background-color: hsl(220, 13%, 24%);
}
.DevScriptInspector .ScriptLink .Name {
  font-size: 1em;
}
.DevScriptInspector .ScriptLink .Key {
  margin-left: 0.5em;
  opacity: 0.5;
}
.DevUnitInspector {
  width: 280px;
  padding: 0.5em;
  font-family: editor;
  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 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 .UnitLink {
  display: flex;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-size: 1em;
  color: hsl(220, 13%, 66%);
}
.DevUnitInspector .UnitLink:hover {
  background-color: hsl(220, 13%, 24%);
}
.DevUnitInspector .UnitLink .Name {
  font-size: 1em;
}
.DevUnitInspector .UnitLink .Key {
  margin-left: 0.5em;
  opacity: 0.5;
}
.DevUnitInspector .Header {
  display: flex;
  align-items: baseline;
}
.DevUnitInspector .Header .Name {
  font-size: 2em;
}
.DevUnitInspector .Header .Key {
  margin-left: 0.5em;
  opacity: 0.5;
}
.DevUnitInspector .Header:hover .Key {
  opacity: 1;
}
.DevUnitInspector .EditableProperty {
  display: flex;
  align-items: center;
  margin-bottom: 0.1em;
  height: 1.5em;
}
.DevUnitInspector .EditableProperty .Label {
  flex: 1;
  line-height: 1em;
  margin-right: 0.2em;
}
.DevUnitInspector .EditableProperty .Label span {
  border-bottom-width: 1px;
  border-bottom-color: hsl(220, 13%, 10.8%);
  border-bottom-style: dashed;
}
.DevUnitInspector .EditableProperty .Value {
  width: 8em;
}
.DevUnitInspector .EditableProperty:hover {
  background-color: hsl(220, 13%, 22%);
}

/* source/views/DevNavigatorUI.less */
.DevSavestateNavigator {
  width: 280px;
  padding: 0.5em;
  font-family: editor;
  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%);
}
.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:hover {
  background-color: hsl(220, 13%, 24%);
}
.DevSavestateNavigator .SavestateLink .Gamename {
  padding-left: 0.5em;
  font-size: 0.5em;
  opacity: 0.5;
}
.DevSavestateNavigator .SavestateLink .Chaptername {
  padding-left: 0.5em;
  font-size: 0.5em;
  opacity: 0.5;
}
.DevSavestateNavigator .SavestateLink .Name {
  padding-left: 0.5em;
  font-size: 1em;
}
.DevNavigatorPane {
  width: 280px;
  overflow-y: auto;
  font-family: editor;
  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 .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.Number {
  width: 2em;
}
.DevNavigatorPane .NavItem .Column.String {
  width: 4em;
}

/* source/views/DevPanes.less */
.DevPanes {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  display: flex;
  position: absolute;
  flex-direction: column;
}
.DevPanes .DevHeader {
  font-family: editor;
  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: editor;
  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 .Option {
  color: hsl(220, 13%, 66%);
  padding: 0.25em 0.25em;
  text-decoration: none;
  display: block;
  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:hover .Dropbutton {
  background-color: hsl(220, 13%, 24%);
}
.DevPanes .DevHeader .Dropdown:hover .DropdownContent {
  display: block;
}
.DevPanes .DevBody {
  flex: 1;
  display: flex;
  overflow: hidden;
  position: relative;
}
.DevPanes .DevBody .TabbedPane {
  width: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  font-family: editor;
  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: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: editor;
  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 .Spacer,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter .Spacer {
  flex: 1;
}
.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;
}
.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[inProtoMode] .StopButton,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter[inProtoMode] .StopButton {
  opacity: 0.5;
}
.DevPanes .DevBody .DevPlaySection .DevPlayHeader:not([inProtoMode]) .Mode,
.DevPanes .DevBody .DevPlaySection .DevPlayFooter:not([inProtoMode]) .Mode {
  color: hsl(355, 65%, 65%);
}

/* source/views/ChapterUI.less */
.ChapterUI {
  width: 100%;
  height: 100%;
  z-index: 20;
  overflow: hidden;
  position: absolute;
}
.ChapterUI .Black {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  background-color: black;
}
.ChapterUI .ChapterPrompt {
  top: 0em;
  right: 0em;
  width: 4em;
  padding: 0.5em;
  position: absolute;
}
.ChapterUI .ChapterPrompt .Text {
  text-align: right;
  font-size: 0.5em;
}
.ChapterUI .EncounterName {
  left: 0em;
  right: 0em;
  bottom: 0em;
  width: 70%;
  margin: auto;
  position: absolute;
  font-size: 1em;
  text-align: center;
  font-family: header;
  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 .TutorialPrompt {
  margin: auto;
  width: 3.5em;
  height: 2.5em;
  position: absolute;
  opacity: 1;
  transition-property: opacity;
  transition-duration: 1s;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ChapterUI .TutorialPrompt[isHidden] {
  opacity: 0;
  transition-duration: 0s;
}
.ChapterUI .TutorialPrompt[position=left] {
  top: 0em;
  bottom: 0em;
  left: 1em;
  text-align: right;
}
.ChapterUI .TutorialPrompt[position=right] {
  top: 0em;
  bottom: 0em;
  right: 1em;
  text-align: left;
}
.ChapterUI .TutorialPrompt[position=upright] {
  top: -3.5em;
  bottom: 0em;
  right: 1em;
  width: 3.7em;
  text-align: left;
}
.ChapterUI .TutorialPrompt[position=up] {
  top: 1em;
  left: 0em;
  right: 0em;
  text-align: left;
}
.ChapterUI .TutorialPrompt .Text {
  font-size: 0.4em;
}
.ChapterUI .TutorialPrompt .Text .blue {
  color: #639bff;
}
.ChapterUI .TutorialPrompt .Text .red {
  color: #d54b33;
}
.ChapterUI .TutorialPrompt .Text .green {
  color: #62C370;
}
.ChapterUI .EscapeModal {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  z-index: 99999999999;
}
.ChapterUI .EscapeModal .Grayout {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.15);
}
.ChapterUI .EscapeModal .PlayerOptions {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  width: 7.5em;
  height: 5em;
  margin: auto;
  position: absolute;
  text-align: center;
  border-radius: 2px;
  transform: rotate(-4deg);
  background-color: #68554d;
}
.ChapterUI .EscapeModal .PlayerOptions .Header {
  margin: 0.5em auto;
}
.ChapterUI .EscapeModal .PlayerOptions .Option {
  font-size: 0.5em;
  margin: 0.2em auto;
}
.ChapterUI .EscapeModal .PlayerOptions .Option:hover {
  cursor: pointer;
  background-color: #3c312c;
}
.ChapterUI .EscapeModal .PlayerOptions hr {
  width: 3em;
  margin: 0.2em auto;
  border: none;
  border-top: 1px solid #f0ead6;
}
.ChapterUI .EscapeModal .Dev {
  position: absolute;
}
.ChapterUI .EscapeModal .Dev .Options {
  padding: 1em;
  font-size: 0.5em;
}
.ChapterUI .EscapeModal .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;
}
.ChapterUI .EscapeModal .Dev .Options .Option:hover {
  background-color: #c5b2b2;
}
.ChapterUI .EscapeModal .Dev .Options .Option[isEnabled=false] {
  background-color: #d54b33;
}
.ChapterUI .EscapeModal .Dev .Options .Option[isEnabled=true] {
  background-color: #62C370;
}
.ChapterUI .UndoButton,
.ChapterUI .EndTurnButton {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: absolute;
  color: #20273b;
  font-family: header;
  box-sizing: content-box;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: box-shadow;
  transition-duration: 2s;
  cursor: pointer;
  filter: drop-shadow(0em 0.1em 0em rgba(32, 39, 59, 0.5));
}
.ChapterUI .UndoButton:hover .Text,
.ChapterUI .EndTurnButton:hover .Text {
  transform: scale(1.5);
}
.ChapterUI .UndoButton:active,
.ChapterUI .EndTurnButton:active {
  margin-top: 0.1em;
  filter: none;
}
.ChapterUI .UndoButton .Text,
.ChapterUI .EndTurnButton .Text {
  font-size: 0.5em;
  line-height: 1em;
  margin-top: 0.2em;
  text-shadow: 0.05em 0.05em rgba(32, 39, 59, 0.5);
}
.ChapterUI .UndoButton .Text .Big,
.ChapterUI .EndTurnButton .Text .Big {
  display: block;
  font-size: 1.4em;
}
.ChapterUI .UndoButton .Shortcut,
.ChapterUI .EndTurnButton .Shortcut {
  padding: 5px;
  font-size: 0.15em;
  display: none;
}
.ChapterUI .UndoButton .Charge,
.ChapterUI .EndTurnButton .Charge {
  width: 50%;
  height: 5px;
  bottom: 0em;
  position: absolute;
  background-color: #a48686;
}
.ChapterUI .EndTurnButton {
  left: 0.25em;
  top: 0.25em;
  width: 2em;
  height: 2em;
}
.ChapterUI .EndTurnButton .Text {
  font-size: 0.6em;
}
.ChapterUI .EndTurnButton[gameKey=pirates] {
  border-radius: 0.9em;
  background-image: url(./compass2-G4VNLHLF.png);
}
.ChapterUI .EndTurnButton[gameKey=pirates] .Handle {
  top: -0.4em;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  border-radius: 100%;
  background-color: #dcb54c;
}
.ChapterUI .EndTurnButton[gameKey=default],
.ChapterUI .EndTurnButton[gameKey=dungeon],
.ChapterUI .EndTurnButton[gameKey=hero],
.ChapterUI .EndTurnButton[gameKey=war] {
  background-color: #dcb54c;
  border-radius: 100%;
}
.ChapterUI .EndTurnButton[isReady] {
  box-shadow: 0em 0em 0.6em 0.3em #dcb54c;
  background-color: #dcb54c;
  transition-property: 1s;
}
.ChapterUI .UndoButton {
  top: 1.95em;
  left: 1.95em;
  width: 1em;
  height: 1em;
}
.ChapterUI .UndoButton .Text {
  font-size: 0.4em;
}
.ChapterUI .UndoButton[gameKey=pirates] {
  border-radius: 0.4em;
  background-color: transparent;
  background-image: url(./compass-BNOGKQA7.png);
}
.ChapterUI .UndoButton[gameKey=pirates] .Handle {
  top: -0.2em;
  width: 0.3em;
  height: 0.3em;
  position: absolute;
  border-radius: 100%;
  background-color: #969cb2;
}
.ChapterUI .UndoButton[gameKey=default],
.ChapterUI .UndoButton[gameKey=dungeon],
.ChapterUI .UndoButton[gameKey=hero],
.ChapterUI .UndoButton[gameKey=war] {
  background-color: #969cb2;
  border-radius: 100%;
}
.ChapterUI .UndoButton[isReady] {
  box-shadow: 0em 0em 40px 20px #969cb2;
  background-color: #969cb2;
  transition-property: 1s;
}
.ChapterUI .UnitSummary .UnitDetails {
  bottom: 0em;
  width: 2em;
  position: absolute;
}
.ChapterUI .UnitSummary .UnitDetails[position=left] {
  left: 0em;
}
.ChapterUI .UnitSummary .UnitDetails[position=right] {
  right: 0em;
}
.ChapterUI .UnitSummary .UnitDetails[position=right] .Portrait {
  transform: scaleX(-1);
}
.ChapterUI .UnitSummary .UnitDetails .Profile {
  width: 2em;
  bottom: 0em;
  position: absolute;
  transition-duration: 0.25s;
  transition-property: bottom;
}
.ChapterUI .UnitSummary .UnitDetails .Profile:hover {
  bottom: 3em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Portrait {
  width: 100%;
  bottom: 0em;
  position: absolute;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Portrait img {
  pointer-events: none;
  width: 100%;
}
.ChapterUI .UnitSummary .UnitDetails .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 {
  background-color: #68554d;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Properties .Name {
  font-size: 0.3em;
  font-family: header;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Properties .Class {
  font-size: 0.2em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Summary .Properties .UnitHealthBar {
  width: 80% !important;
  height: 0.25em;
  margin: auto;
  margin-top: 0.05em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats {
  top: 0em;
  width: 2em;
  height: 3em;
  position: absolute;
  background-color: #68554d;
  padding: 0.1em 0.2em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Health {
  font-size: 0.4em;
  margin-bottom: 0.3em;
  font-family: header;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Element {
  font-size: 0.3em;
  margin: 0.75em 0em;
}
.ChapterUI .UnitSummary .UnitDetails .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 {
  font-size: 0.75em;
  margin-left: 0.5em;
  margin-top: 0.2em;
}
.ChapterUI .UnitSummary .UnitDetails .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 {
  font-size: 0.5em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Element .Effectiveness .Icon {
  margin-left: 0.5em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Description {
  font-size: 0.15em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Stat {
  display: flex;
  align-items: baseline;
  font-size: 0.15em;
}
.ChapterUI .UnitSummary .UnitDetails .Profile .Stats .Stat .Label {
  flex: 1;
}
.ChapterUI .UnitSummary .UnitDetails .Skills {
  display: flex;
  align-items: flex-end;
  position: absolute;
  transition-duration: 0.25s;
  transition-property: right, bottom;
}
.ChapterUI .UnitSummary .UnitDetails .Skills[side=right] {
  right: -2em;
  bottom: 1.2em;
  flex-direction: column-reverse;
}
.ChapterUI .UnitSummary .UnitDetails .Skills[side=bottom-right] {
  bottom: -2em;
  right: 2em;
  flex-direction: row-reverse;
}
.ChapterUI .UnitSummary .UnitDetails .Skills[side=bottom-left] {
  bottom: -2em;
  left: 2em;
  flex-direction: row;
}
.ChapterUI .UnitSummary .UnitDetails .Skills .Skill {
  margin-left: 0.2em;
  margin-top: 0.2em;
  position: relative;
  border-radius: 0.1em;
}
.ChapterUI .UnitSummary .UnitDetails .Skills .Skill .Label {
  font-size: 0.2em;
  position: relative;
  padding: 1em 1.618em;
}
.ChapterUI .UnitSummary .UnitDetails .Skills .Skill:first-of-type .Label {
  font-size: 0.25em;
}
.ChapterUI .UnitSummary .UnitDetails .Skills .Skill .Number {
  position: absolute;
  top: 0.2em;
  left: 0.5em;
  font-size: 0.2em;
}
.ChapterUI .UnitSummary .UnitDetails .Skills .Skill:not([canSelect]) {
  opacity: 0.5;
}
.ChapterUI .UnitSummary .UnitDetails .Skills .Skill[canSelect] {
  background-color: #68554d;
}
.ChapterUI .UnitSummary .UnitDetails .Skills .Skill[canSelect]:hover {
  background-color: #3c312c;
}
.ChapterUI .UnitSummary .UnitDetails .Skills .Skill[canSelect][isSelected=true] {
  background-color: #a48686;
}
.ChapterUI .UnitSummary .UnitDetails[isSelected] .Skills[side=right] {
  right: 0.2em;
}
.ChapterUI .UnitSummary .UnitDetails[isSelected] .Skills[side=bottom],
.ChapterUI .UnitSummary .UnitDetails[isSelected] .Skills[side=bottom-left],
.ChapterUI .UnitSummary .UnitDetails[isSelected] .Skills[side=bottom-right] {
  bottom: 0.2em;
}
.ChapterUI .UnitLevelUpModal {
  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);
}
.ChapterUI .UnitLevelUpModal .Portrait {
  height: 9em;
}
.ChapterUI .UnitLevelUpModal .Box {
  width: 4em;
  height: 6em;
  margin: 0em 0.6em;
  pointer-events: none;
  background-color: #68554d;
  border-radius: 0.1em;
}
.ChapterUI .UnitLevelUpModal .Box .arrow::after {
  content: " to ";
}
.ChapterUI .UnitLevelUpModal .Box .HeaderSection {
  margin: 0.5em 0em;
}
.ChapterUI .UnitLevelUpModal .Box .HeaderSection .Thumbnail {
  height: 1em;
  position: relative;
  margin-bottom: 0.5em;
}
.ChapterUI .UnitLevelUpModal .Box .HeaderSection .Declaration {
  font-family: header;
  text-align: center;
  line-height: 1em;
}
.ChapterUI .UnitLevelUpModal .Box .HeaderSection .Level {
  text-align: center;
  line-height: 1em;
  font-size: 0.5em;
}
.ChapterUI .UnitLevelUpModal .Box .PerksSection {
  margin: 0.5em 0em;
  text-align: center;
}
.ChapterUI .UnitLevelUpModal .Box .PerksSection .Perk {
  margin-bottom: 0.5em;
}
.ChapterUI .UnitLevelUpModal .Box .PerksSection .Perk .Label {
  font-size: 0.3em;
  font-weight: bold;
}
.ChapterUI .UnitLevelUpModal .Box .PerksSection .Perk .Value {
  font-size: 0.4em;
}
.ChapterUI .DungeonDeathModal {
  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);
}
.ChapterUI .DungeonDeathModal .Box {
  width: 4em;
  height: 7em;
  margin: 0em 0.6em;
  justify-content: center;
}
.ChapterUI .DungeonDeathModal .Box .HeaderSection {
  margin-bottom: 1em;
}
.ChapterUI .DungeonDeathModal .Box .HeaderSection .Declaration {
  font-family: header;
  text-align: center;
  line-height: 1em;
}
.ChapterUI .DungeonDeathModal .Box .HeaderSection .Objectives {
  text-align: center;
  line-height: 1em;
  font-size: 0.5em;
}
.ChapterUI .DungeonDeathModal .Box .Options .Label {
  font-size: 0.3em;
  text-align: center;
  margin-bottom: 1em;
}
.ChapterUI .DungeonDeathModal .Box .Options .ResurrectOption {
  padding: 0.3em 0.4854em;
  font-size: 0.5em;
  text-align: center;
  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);
}
.ChapterUI .DungeonDeathModal .Box .Options .ResurrectOption:hover {
  transform: scale(1.1);
  transition-duration: 0.125s;
}
.ChapterUI .DungeonDeathModal .Box .Options .ResurrectOption:not(:last-child) {
  margin-right: 0.5em;
}
.ChapterUI .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;
}
.ChapterUI .ChapterSuccessModal .FadesIn {
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
}
.ChapterUI .ChapterSuccessModal .FadesIn[isShown=true] {
  opacity: 1 !important;
}
.ChapterUI .ChapterSuccessModal[isShown=true] {
  opacity: 1 !important;
}
.ChapterUI .ChapterSuccessModal .Portrait {
  height: 9em;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
}
.ChapterUI .ChapterSuccessModal .Portrait[isShown=true] {
  opacity: 1 !important;
}
.ChapterUI .ChapterSuccessModal .Box {
  width: 4em;
  height: 7em;
  margin: 0em 0.6em;
  pointer-events: none;
}
.ChapterUI .ChapterSuccessModal .Box .HeaderSection {
  margin-bottom: 1em;
}
.ChapterUI .ChapterSuccessModal .Box .HeaderSection .Declaration {
  font-family: header;
  text-align: center;
  line-height: 1em;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
}
.ChapterUI .ChapterSuccessModal .Box .HeaderSection .Declaration[isShown=true] {
  opacity: 1 !important;
}
.ChapterUI .ChapterSuccessModal .Box .HeaderSection .Objectives {
  text-align: center;
  line-height: 1em;
  font-size: 0.5em;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
}
.ChapterUI .ChapterSuccessModal .Box .HeaderSection .Objectives[isShown=true] {
  opacity: 1 !important;
}
.ChapterUI .ChapterSuccessModal .Box .AllySection,
.ChapterUI .ChapterSuccessModal .Box .EnemySection {
  margin-bottom: 0.5em;
  opacity: 0;
  transition-property: opacity;
  transition-duration: 1s;
}
.ChapterUI .ChapterSuccessModal .Box .AllySection[isShown=true],
.ChapterUI .ChapterSuccessModal .Box .EnemySection[isShown=true] {
  opacity: 1 !important;
}
.ChapterUI .ChapterSuccessModal .Box .AllySection .Label,
.ChapterUI .ChapterSuccessModal .Box .EnemySection .Label {
  font-size: 0.3em;
}
.ChapterUI .ChapterSuccessModal .Box .AllySection .Units,
.ChapterUI .ChapterSuccessModal .Box .EnemySection .Units {
  display: flex;
  justify-content: center;
  background-color: #68554d;
  border-radius: 0.1em;
  padding: 0.1em;
}
.ChapterUI .ChapterSuccessModal .Box .AllySection .Units .Unit,
.ChapterUI .ChapterSuccessModal .Box .EnemySection .Units .Unit {
  width: 1em;
  height: 1em;
  position: relative;
}
.ChapterUI .ChapterSuccessModal .Box .AllySection .Units .Unit[isAnimated],
.ChapterUI .ChapterSuccessModal .Box .EnemySection .Units .Unit[isAnimated] {
  opacity: 0;
  animation-name: fadein;
  animation-duration: 0.2s;
  animation-fill-mode: forwards;
  animation-timing-function: ease;
}
.ChapterUI .ChapterSuccessModal .Box .AllySection .Units .Unit:not(:first-child),
.ChapterUI .ChapterSuccessModal .Box .EnemySection .Units .Unit:not(:first-child) {
  margin-left: 0.1em;
}
.ChapterUI .ChapterSuccessModal .Box .AllySection .Units .Unit:not(:first-child)[isTight],
.ChapterUI .ChapterSuccessModal .Box .EnemySection .Units .Unit:not(:first-child)[isTight] {
  margin-left: -0.5em;
}
.ChapterUI .ChapterSuccessModal .Box .AllySection .Units .Unit .UnitSprite,
.ChapterUI .ChapterSuccessModal .Box .EnemySection .Units .Unit .UnitSprite {
  transition-duration: 1s;
}
.ChapterUI .ChapterSuccessModal .Box .AllySection .Units .Unit .UnitExperienceBar,
.ChapterUI .ChapterSuccessModal .Box .EnemySection .Units .Unit .UnitExperienceBar {
  left: 0em;
  right: 0em;
  bottom: 0.1em;
  height: 0.15em;
  max-width: 0.66em;
  position: absolute;
}
.ChapterUI .ChapterSuccessModal .Box .EnemySection .Unit .Weapon {
  display: none;
}
.ChapterUI .CharacterDraftBox {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ChapterUI .CharacterDraftBox .Box {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  margin: auto;
  text-align: center;
}
.ChapterUI .CharacterDraftBox .Box .Cards {
  display: flex;
  justify-content: center;
}
.ChapterUI .CharacterDraftBox .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);
}
.ChapterUI .CharacterDraftBox .Box .Cards .Card:hover {
  transform: scale(1.1);
  transition-duration: 0.125s;
}
.ChapterUI .CharacterDraftBox .Box .Cards .Card:not(:last-child) {
  margin-right: 0.5em;
}
.ChapterUI .CharacterDraftBox .Box .Cards .Card .Thumbnail {
  height: 1em;
  width: 1em;
  font-size: 1em;
  position: relative;
}
.ChapterUI .CharacterDraftBox .Box .Cards .Card .Name {
  font-size: 0.5em;
  text-transform: capitalize;
  margin-bottom: 0.5em;
}
.ChapterUI .CharacterDraftBox .Box .Cards .Card .Stat,
.ChapterUI .CharacterDraftBox .Box .Cards .Card .Fact {
  font-size: 0.3em;
  display: flex;
  align-items: baseline;
  margin-top: 0.25em;
}
.ChapterUI .CharacterDraftBox .Box .Cards .Card .Stat .Label,
.ChapterUI .CharacterDraftBox .Box .Cards .Card .Fact .Label {
  flex: 1;
}
.ChapterUI .CharacterSplashBox .Box {
  top: 0em;
  left: 0em;
  right: 0em;
  bottom: 0em;
  width: 6em;
  height: 5em;
  margin: auto;
  position: absolute;
  pointer-events: none;
  padding: 0.3em 0.4854em;
  background-image: url(./splashbox-OH72YHXX.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
}
.ChapterUI .CharacterSplashBox .Box .HeaderSection {
  text-align: center;
  margin-bottom: 0.1em;
}
.ChapterUI .CharacterSplashBox .Box .HeaderSection .Name {
  font-family: header;
}
.ChapterUI .CharacterSplashBox .Box .HeaderSection .Declaration {
  font-size: 0.33em;
}
.ChapterUI .CharacterSplashBox .Box .MainSection {
  display: flex;
  align-items: center;
}
.ChapterUI .CharacterSplashBox .Box .MainSection .Thumbnail {
  flex: 1;
  height: 1.2em;
  font-size: 2em;
  position: relative;
}
.ChapterUI .CharacterSplashBox .Box .MainSection .Stats {
  font-size: 0.5em;
  width: 6em;
}
.ChapterUI .CharacterSplashBox .Box .MainSection .Stats .Health .Label {
  text-align: center;
  font-family: header;
}
.ChapterUI .CharacterSplashBox .Box .MainSection .Stats .Health .UnitHealthBar {
  width: 50% !important;
  height: 0.5em;
  margin: auto;
  margin-top: 0.05em;
  border-width: 0.05em;
  border-color: #000;
}
.ChapterUI .CharacterSplashBox .Box .MainSection .Stats .Stat,
.ChapterUI .CharacterSplashBox .Box .MainSection .Stats .Fact {
  display: flex;
  align-items: baseline;
  margin-top: 0.25em;
  font-size: 0.7em;
  text-align: center;
}
.ChapterUI .CharacterSplashBox .Box .MainSection .Stats .Stat .Label,
.ChapterUI .CharacterSplashBox .Box .MainSection .Stats .Fact .Label {
  flex: 1;
}
.ChapterUI .CharacterSplashBox .Box .MainSection .Stats .Stat {
  display: none;
}
.ChapterUI .CharacterSplashBox .Box .FlavorTextSection {
  margin-top: 1em;
  font-size: 0.25em;
  opacity: 0.5;
  display: none;
}
.ChapterUI .BannerPopupBox {
  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;
  background-color: #d54b33;
}
.ChapterUI .BannerPopupBox .Text {
  font-family: header;
  text-transform: uppercase;
  text-align: center;
  font-size: 3em;
}
.ChapterUI .Dialogue .Portrait {
  width: 6em;
  bottom: 0em;
  position: absolute;
  pointer-events: none;
  transition-property: filter;
  transition-duration: 0.25s;
}
.ChapterUI .Dialogue .Portrait[position="1"] {
  left: 0.7em;
}
.ChapterUI .Dialogue .Portrait[position="2"] {
  left: 2.1em;
}
.ChapterUI .Dialogue .Portrait[position="3"] {
  right: 2.1em;
}
.ChapterUI .Dialogue .Portrait[position="4"] {
  right: 0.7em;
}
.ChapterUI .Dialogue .Portrait[direction=left] {
  transform: scaleX(-1);
}
.ChapterUI .Dialogue .Portrait[isSpeaking=true][flourish=shift][direction=left] {
  animation-name: shift-left;
  animation-duration: 0.25s;
}
.ChapterUI .Dialogue .Portrait[isSpeaking=true][flourish=shift][direction=right] {
  animation-name: shift-right;
  animation-duration: 0.25s;
}
.ChapterUI .Dialogue .Portrait:not([isSpeaking=true]) {
  filter: brightness(70%);
}
.ChapterUI .Dialogue .Box {
  left: 0em;
  right: 0em;
  width: 10em;
  height: 2em;
  margin: auto;
  padding: 0.3em 0.4854em;
  bottom: 0.2em;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url(./dialoguebox-LBV4WHUN.png);
  background-size: contain;
  background-position: bottom;
  background-repeat: no-repeat;
  border-radius: 8px;
}
.ChapterUI .Dialogue .Box .Name {
  text-align: center;
}
.ChapterUI .Dialogue .Box .Name .Text {
  display: block;
  font-size: 0.6em;
  font-family: header;
}
.ChapterUI .Dialogue .Box .Name .Text.Bolder {
  font-weight: bold;
}
.ChapterUI .Dialogue .Box .Name .Text.Smaller {
  font-size: 0.3em;
}
.ChapterUI .Dialogue .Box .Words {
  color: #f0ead6;
  font-size: 0.3em;
  text-align: center;
}
.ChapterUI .Dialogue .Box .Words .Character {
  display: inline;
}
.ChapterUI .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;
}
.ChapterUI .ChapterStartBanner {
  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;
  background-color: #20273b;
  text-align: center;
  opacity: 1;
  animation-name: fadeout;
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-delay: 6s;
}
.ChapterUI .ChapterStartBanner .Chapter {
  font-size: 0.5em;
  font-family: "header";
  opacity: 0;
  animation-name: fadein;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1s;
}
.ChapterUI .ChapterStartBanner .Title {
  font-size: 1em;
  font-family: "header";
  font-weight: bold;
  opacity: 0;
  animation-name: fadein;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 1s;
}
.ChapterUI .ChapterStartBanner .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;
}
.ChapterUI .ChapterStartBanner .Subtitle {
  font-size: 0.5em;
  opacity: 0;
  animation-name: fadein;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  text-transform: lowercase;
}
.ChapterUI .ChapterStartBanner .Subtitle.First {
  animation-delay: 3.5s;
}
.ChapterUI .ChapterStartBanner .Subtitle.Second {
  animation-delay: 4.5s;
}
.ChapterUI .ChapterSuccessBanner {
  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-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;
}
.ChapterUI .ChapterSuccessBanner .Declaration {
  font-size: 3em;
  font-family: "header";
  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;
}
.ChapterUI .ChapterFailureBanner {
  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-align: center;
  background-color: #111111;
  opacity: 0;
  animation-name: fadein;
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-delay: 0.5s;
}
.ChapterUI .ChapterFailureBanner .Declaration {
  font-size: 3em;
  line-height: 1em;
  font-family: "header";
}
.ChapterUI .ChapterFailureBanner .Predeclaration {
  font-size: 0.5em;
  line-height: 1em;
  font-family: "header";
}
.ChapterUI .ChapterFailureBanner .Declaration,
.ChapterUI .ChapterFailureBanner .Predeclaration {
  opacity: 0;
  animation-name: fadein;
  animation-fill-mode: forwards;
  animation-duration: 3s;
  animation-delay: 4s;
}
.ChapterUI .MessageBanner {
  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;
  animation-name: FlyInFlyOut;
  animation-fill-mode: forwards;
  animation-duration: 1s;
}
.ChapterUI .MessageBanner .Message {
  font-size: 3em;
  text-align: center;
  line-height: 1em;
  font-family: "header";
}
@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: 99999999;
  position: absolute;
  overflow: hidden;
  pointer-events: none;
}
.Snow .SnowParticle {
  position: absolute;
  background-color: #f0ead6;
  width: 0.1em;
  height: 0.1em;
  transform: rotate(45deg);
}
/*# sourceMappingURL=index.css.map */
