/* src/styles/style.scss */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  overflow-x: hidden;
  max-width: 100vw;
  font-family:
    open-sans,
    Helvetica,
    sans-serif;
  background-color: #e6e0d1;
  position: relative;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family:
    myriad-pro,
    Arial,
    sans-serif;
}
h1 {
  font-weight: bold;
}
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
.container {
  display: flex;
  flex-direction: column;
  flex-wrap: no-wrap;
}
.controls {
  display: flex;
  flex-direction: column;
}
.controls form {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  justify-content: center;
}
.map__container {
  position: relative;
  flex-grow: 1;
  max-height: 100vh;
  padding: 0;
  margin: 0;
  overflow: hidden;
}
.map {
  width: 100%;
  max-height: 100vh;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
.map canvas {
  max-height: 100%;
}
.counter {
  position: absolute;
  top: 0;
  left: 4px;
  color: #fff;
}
@media (min-width: 1000px) {
  .container {
    flex-direction: row;
  }
  .controls {
    height: 100%;
    min-height: 100vh;
  }
}
.stage-details__title {
  text-align: center;
  font-size: 2em;
  margin: 0;
}
.stage-details__tod {
  text-align: right;
  margin: 0;
}
.controls {
  background-color: #e6e0d1;
  box-sizing: border-box;
}
.controls form {
  background-color: inherit;
}
.controls fieldset {
  padding: 0;
  margin: 0;
  border: none;
}
.controls label,
.controls legend {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  text-transform: uppercase;
}
.controls__header {
  padding: 5px;
  text-align: center;
  text-transform: uppercase;
  background-color: rgb(253, 207, 48);
}
.controls__header h1 {
  font-size: 1.4rem;
}
.control-buttons {
  display: flex;
  justify-content: space-around;
}
.input-row {
  display: flex;
  flex-direction: column;
}
.draw-buttons {
  display: flex;
  flex-direction: row;
}
.draw-section {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.draw-btn {
  cursor: pointer;
  border: none;
  padding: 3px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.draw-break-btn {
  background-color: rgb(147, 107, 72);
}
.remove-break-btn {
  background-color: rgb(214, 144, 97);
}
.draw-gamba-btn {
  background-color: rgb(208, 209, 1);
}
.btn {
  display: inline-block;
  width: 50px;
  height: 50px;
  margin: 10px;
  font-size: 0;
  background-color: transparent;
  background-repeat: no-repeat;
  background-size: cover;
  border: none;
}
.btn__hover-text {
  font-size: 0;
  font-weight: bold;
  color: #fff;
}
.btn__hover-text:hover,
.btn__hover-text:focus {
  background:
    linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    center/var(--image-size) var(--image),
    var(--btn-color);
  font-size: 1rem;
}
.btn__round {
  border: 3px #fff solid;
  border-radius: 50%;
  background-color: var(--btn-color);
  background-image: var(--image);
  background-position: center;
  background-size: var(--image-size);
}
.ignition-btn {
  --btn-color: rgb(238, 52, 56);
  --image: url("./assets/fire-wand.27Z7623Z.svg");
  --image-size: 100%;
}
.start-btn {
  --image: url("./assets/go.VWQYYIH6.png");
  --image-size: 100%;
}
.start-btn.btn--on {
  --image: url("./assets/stop.EADNLXGV.png");
}
.reload-btn {
  --btn-color: rgb(238, 52, 56);
  --image: url("./assets/refresh-fire.T7VGRYGN.svg");
  --image-size: 120%;
}
.reload-btn--active {
  animation: spin 2s infinite linear;
}
.reload-btn:disabled {
  background-color: rgb(126.4136363636, 10.5863636364, 13.0772727273);
  opacity: 0.7;
}
.restart-btn {
  --btn-color: #1417b0;
  --image: url("./assets/refresh-world.B6H4VUHJ.svg");
  --image-size: 120%;
}
.restart-btn--active {
  animation: spin 2s infinite linear;
}
.restart-btn:disabled {
  background-color: rgb(4.387755102, 5.0459183673, 38.612244898);
  opacity: 0.7;
}
.next-btn {
  background-image: url("./assets/weather.4G7LWIVY.svg");
  background-color: #1417b0;
  background-position: center;
  background-size: 70%;
  border: 3px #fff solid;
  border-radius: 50%;
}
.next-btn:disabled {
  background-color: rgb(4.387755102, 5.0459183673, 38.612244898);
  opacity: 0.7;
}
.draw-grass-btn {
  --btn-color: #496e4e;
  --image: url("./assets/grass.RDDC7LDZ.svg");
  --image-size: 100%;
}
.draw-break-btn {
  --btn-color: #c4a87a;
  --image: url("./assets/bulldozer.LIDBFOZI.svg");
  --image-size: 80%;
}
.inspector-btn {
  --btn-color: #000;
  --image: url("./assets/search.7Y7G5VI7.svg");
  --image-size: 80%;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.draw-btn.btn--on {
  filter: brightness(50%);
  box-shadow: inset 1px 2px 5px 0 rgba(0, 0, 0, 0.75);
}
@media (min-width: 600px) {
  form {
    margin: 5px 20px;
  }
  .draw-section {
    padding: 0 20px;
  }
  .draw-section:first-child {
    padding-left: 0;
  }
  .draw-section:last-child {
    padding-right: 0;
  }
  .btn {
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 800px) {
  .btn {
    width: 70px;
    height: 70px;
  }
}
@media (min-width: 1000px) {
  .controls {
    height: 100vh;
    max-width: 400px;
    overflow: auto;
  }
  .controls form {
    min-height: 635px;
  }
  .input-row {
    align-items: center;
  }
  .draw-buttons {
    flex-direction: row;
  }
  .draw-section {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100px;
    padding: 0;
  }
  .draw-section button {
    margin: 4px 0;
  }
  .fuel-management {
    margin: 8px 0;
  }
  .fuel-management legend {
    font-size: 1.3rem;
    font-weight: normal;
    color: #000;
    text-align: center;
    text-transform: uppercase;
  }
}
.fuel-input {
  position: relative;
  z-index: 100;
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-align: center;
}
.fuel-input__label {
  display: block;
  font-size: 1rem;
  color: rgb(255, 255, 255);
  text-align: center;
  text-transform: uppercase;
}
.fuel-chart {
  position: relative;
  z-index: 200;
  display: none;
}
.fuel-chart[data-fuel-danger="10"] .arrow-path {
  transform: rotate(-18deg);
}
.fuel-chart[data-fuel-danger="9"] .arrow-path {
  transform: rotate(-53deg);
}
.fuel-chart[data-fuel-danger="8"] .arrow-path,
.fuel-chart[data-fuel-danger="7"] .arrow-path {
  transform: rotate(-90deg);
}
.fuel-chart[data-fuel-danger="6"] .arrow-path {
  transform: rotate(-125deg);
}
.fuel-chart[data-fuel-danger="5"] .arrow-path,
.fuel-chart[data-fuel-danger="4"] .arrow-path {
  transform: rotate(-160deg);
}
.fuel-chart .arrow {
  transform: translate(100px, 100px);
}
.fuel-chart .arrow-path {
  transition: transform 500ms;
}
.segment__label-path {
  fill: transparent;
  stroke: transparent;
}
.segment__label-bg {
  stroke: rgb(0, 0, 0);
}
.segment__label-text {
  font-size: 14px;
  stroke: rgb(255, 255, 255);
  fill: rgb(255, 255, 255);
  text-anchor: middle;
}
.segment {
  stroke: rgb(0, 0, 0);
  stroke-width: 2px;
}
.segment--1 {
  fill: rgb(38, 190, 81);
}
.segment--2 {
  fill: rgb(152, 200, 228);
}
.segment--3 {
  fill: rgb(251, 208, 65);
}
.segment--4 {
  fill: rgb(229, 81, 39);
}
.segment--5 {
  fill: rgb(187, 27, 29);
}
.show-advanced .fuel-input input {
  z-index: 300;
}
@media (min-width: 1000px) {
  .svg-supported .fuel-chart {
    display: inline-block;
    width: 200px;
    height: 100px;
  }
  .svg-supported .fuel-input {
    align-items: center;
    flex-direction: column-reverse;
  }
  .svg-supported .fuel-input__field {
    position: absolute;
    top: 75px;
    left: calc(50% - 15px);
    width: 30px;
    height: 25px;
    box-sizing: border-box;
  }
  .svg-supported .fuel-input__label {
    font-size: 1.5em;
  }
}
.select-wrapper select {
  width: 100%;
}
.compass {
  display: none;
}
.compass-rose path,
.compass-rose circle {
  fill: rgb(152, 164, 168);
  stroke: none;
}
.compass-rose__label {
  font-size: 100%;
  text-anchor: middle;
  dominant-baseline: middle;
}
.compass .select-wrapper {
  opacity: 0;
}
.compass .arrow {
  transform: translate(75px, 75px);
}
.compass .arrow-path {
  transition: transform 500ms;
}
.compass[data-wind-direction=E] .arrow-path {
  transform: rotate(0deg);
}
.compass[data-wind-direction=SE] .arrow-path {
  transform: rotate(45deg);
}
.compass[data-wind-direction=S] .arrow-path {
  transform: rotate(90deg);
}
.compass[data-wind-direction=SW] .arrow-path {
  transform: rotate(135deg);
}
.compass[data-wind-direction=W] .arrow-path {
  transform: rotate(180deg);
}
.compass[data-wind-direction=NW] .arrow-path {
  transform: rotate(225deg);
}
.compass[data-wind-direction=N] .arrow-path {
  transform: rotate(270deg);
}
.compass[data-wind-direction=NE] .arrow-path {
  transform: rotate(315deg);
}
@media (min-width: 1000px) {
  .svg-supported .compass {
    display: inline-block;
  }
  .svg-supported .wind__direction {
    position: relative;
    margin: 1rem;
  }
  .svg-supported .wind__direction label {
    display: block;
    height: 20px;
  }
  .svg-supported .wind__direction .select-wrapper {
    position: absolute;
    top: 75px;
    left: calc(50% - 20px);
    width: 40px;
    height: 40px;
    text-align: center;
    background-color: transparent;
    border-radius: 50%;
    content: "";
  }
  .svg-supported .wind__direction .select-wrapper select {
    width: 40px;
  }
  .svg-supported .wind__direction__select {
    width: 100%;
    height: 100%;
    border: none;
    opacity: 0;
  }
  .svg-supported .wind__direction__select:focus,
  .svg-supported .wind__direction__select:active {
    opacity: 1;
  }
}
.slider-container {
  position: relative;
}
.slider-container input[type=range] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 10px;
  background: #ddd;
  outline: none;
  border-radius: 5px;
  cursor: pointer;
}
.slider-container input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.slider-container input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.slider-container input[type=range]::-ms-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background-color: white;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.slider-container .slider-display {
  position: absolute;
  top: -35px;
  transform: translateX(3%);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #00a652;
  color: white;
  font-weight: bold;
  font-size: 14px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 10;
}
.slider-container .slider-display::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 10px solid #00a652;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  margin-top: -1px;
}
.instructions {
  position: absolute;
  top: 10px;
  right: -300px;
  z-index: 400;
  width: 300px;
  min-height: 300px;
  font-size: 1.2rem;
  line-height: 1.5rem;
  background: #e6e0d1;
  border: 1px solid rgb(0, 0, 0);
  box-shadow: rgba(0, 0, 0, 0.6) 0 1px 3px 0;
  transition: right 300ms;
}
.instructions--active {
  right: 0;
}
.instructions h2 {
  margin-left: 30px;
  font-size: 2rem;
  color: rgb(0, 0, 0);
}
.instructions__container {
  display: flex;
  overflow-x: hidden;
  background-color: white;
}
.instructions__page {
  width: 300px;
  max-width: 300px;
  min-width: 300px;
  padding: 30px;
}
.show-instructions,
.instructions__close-btn,
.instructions__next-season,
.instructions__question,
.instructions__go,
.instructions__ignite {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  margin: 0 4px;
  font-size: 0;
  line-height: 2.5rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.instructions__ignite {
  background-color: red;
  border-radius: 50%;
  background-image: url("./assets/fire-wand.27Z7623Z.svg");
  background-size: contain;
}
.instructions__go {
  background-image: url("./assets/go.VWQYYIH6.png");
}
.instructions__question {
  background-color: #e6e0d1;
  background-image: url("./assets/help.3EFJMMS2.svg");
  border: 2px solid rgb(255, 255, 255);
  border-radius: 50%;
}
.instructions__next-season {
  background-color: #1417b0;
  background-image: url("./assets/weather.4G7LWIVY.svg");
  background-size: 75%;
  border: 2px solid rgb(255, 255, 255);
  border-radius: 50%;
}
.instructions__controls {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  color: rgb(0, 0, 0);
}
.instructions__controls button {
  width: 3rem;
  height: 3rem;
  font-size: 0;
  background: transparent;
  background-image: url("./assets/next.URKREAZH.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: none;
  opacity: 1;
  transition: opacity 200ms;
}
.instructions__controls button.instructions__previous {
  transform: scaleX(-1);
}
.instructions__controls button:disabled {
  opacity: 0;
}
.instructions__close-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 30px;
  height: 30px;
  background-color: transparent;
  background-image: url("./assets/close.EXPVR75W.svg");
  border: none;
}
.show-instructions {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 40px;
  height: 40px;
  background-color: #e6e0d1;
  background-image: url("./assets/help.3EFJMMS2.svg");
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
  opacity: 0.6;
  transition: opacity 200ms;
}
.show-instructions:focus,
.show-instructions:active,
.show-instructions:hover {
  opacity: 1;
}
.legend {
  display: flex;
  align-items: end;
  flex-direction: row;
}
.legend ol {
  padding-left: 1.6rem;
  margin: 0;
  font-size: 0.8rem;
  text-align: left;
}
.legend ol img {
  max-width: 50px;
}
.legend img {
  max-width: 100px;
}
.intro-dialog {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  width: 100vw;
  background: white;
  border: 1px solid rgb(0, 0, 0);
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.6);
}
.intro-dialog section {
  padding: 0 30px 30px;
}
.intro-dialog header {
  padding: 5px 30px;
  background-color: #fdcf30;
}
.intro-dialog__close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 50px;
  height: 50px;
  margin: 0 4px;
  font-size: 0;
  line-height: 2.5rem;
  background-color: #e6e0d1;
  background-image: url("./assets/close.EXPVR75W.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 130%;
  border: 2px solid #fff;
  border-radius: 50%;
}
.intro-dialog__logos {
  display: flex;
  justify-content: space-between;
}
.intro-dialog__logos img {
  max-width: 50%;
  height: 110px;
}
.legend {
  padding: 0;
}
.legend h3 {
  margin-bottom: 2px;
}
.legend figure {
  display: table;
  width: 1px;
  margin: 0;
  color: #fff;
  background: #000;
  border: 1px solid #000;
}
.legend img,
.legend figcaption {
  display: table-row;
}
@media (min-width: 800px) {
  .intro-dialog {
    top: 10vh;
    left: 10vw;
    width: 80vw;
    height: auto;
  }
}
@media (min-width: 1000px) {
  .intro-dialog {
    top: 20vh;
    left: 20vw;
    width: 60vw;
  }
}
.house-burned-warning {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  background: rgba(235, 54, 62, 0.6);
  animation: pulse-warning 3s infinite;
  animation-direction: alternate;
}
.house-burned-warning__dialog {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgb(235, 54, 62);
  border: 1px solid #000;
  border-radius: 2px;
  box-shadow: 0 2px 2px 1px rgba(0, 0, 0, 0.6);
}
.house-burned-warning__dialog h2 {
  padding: 5px;
  margin: 0;
  text-align: center;
  background-color: #fdcf30;
}
.house-burned-warning__dialog button {
  width: 100%;
  padding: 5px;
  font-size: 1rem;
  font-weight: bold;
  background-color: #fdcf30;
  border: none;
  border-radius: 2px;
}
.house-burned-warning__content {
  padding: 10px;
  font-size: 1.1rem;
  background: rgb(235, 54, 62);
}
.house-burned-warning__content p {
  margin: 0;
  margin-bottom: 5px;
}
@keyframes pulse-warning {
  0% {
    background-color: rgba(235, 54, 62, 0.2);
  }
  100% {
    background-color: rgba(235, 54, 62, 0.6);
  }
}
@media (min-width: 800px) {
  .house-burned-warning__dialog {
    top: 45%;
    left: calc(50% - 100px);
    width: 200px;
  }
}
.index {
  width: 100%;
  min-height: 100vh;
  background-color: #FFF9EB;
  display: flex;
  flex-direction: column;
}
.index h1 {
  font-family:
    museo-sans,
    open-sans,
    Helvetica,
    sans-serif;
}
.index header,
.index footer {
  width: 100%;
  height: 100px;
  display: flex;
  font-family:
    museo-sans,
    open-sans,
    Helvetica,
    sans-serif;
}
.index header {
  justify-content: space-around;
  background-color: #1b1b1a;
  color: #dd7a55;
}
.index header .ida-logo {
  max-width: 300px;
}
.index footer {
  justify-content: space-between;
  bottom: 0;
  background-color: #fefefd;
  color: #1b1b1a;
}
.index footer img {
  max-height: 100%;
  height: 100px;
}
.index main {
  flex-grow: 1;
  background-color: #FFF9EB;
  color: #1b1b1a;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
}
.index-info {
  box-sizing: border-box;
  width: 80%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
.stage-selection {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: space-around;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
.stage-selection a {
  position: relative;
  width: 300px;
  height: 200px;
  box-shadow: 2px 2px 6px 3px rgba(0, 0, 0, 0.57);
  transition: transform 0.5s;
  margin-bottom: 30px;
}
.stage-selection a:hover {
  transform: scale(1.1);
}
.stage-selection a img {
  max-width: 100%;
  max-height: 100%;
}
.stage-selection a::after {
  content: attr(title);
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  font-size: 2em;
  color: black;
  background-color: rgba(255, 255, 255, 0.2);
  font-family:
    museo-sans,
    open-sans,
    Helvetica,
    sans-serif;
}
@media (min-width: 700px) {
  .stage-selection {
    flex-direction: row;
  }
  .stage-selection a {
    width: 210px;
    height: 140px;
  }
}
@media (min-width: 1000px) {
  .stage-selection a {
    width: 300px;
    height: 200px;
  }
}
/*# sourceMappingURL=styles.3ZGBXU6Z.css.map */
