/*!*********************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./src/styles/styles.scss ***!
  \*********************************************************************************************************************************************/
*,
*:before,
*:after {
  box-sizing: border-box; }

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background-color: #091938; }

.dialogue {
  border-radius: 30px;
  width: 500px;
  background-color: #F2F2F2;
  border: 4px solid #FFCD00;
  font-family: Gotham, Arial, sans-serif;
  text-align: center;
  padding: 0px; }
  .dialogue .strong {
    font-weight: bold; }
  .dialogue a {
    color: black; }
  .dialogue a:hover {
    color: #24A2A8; }
  .dialogue div.block {
    padding: 8px 30px;
    margin: 0 0 2px 0;
    border-top: 2px solid #fff; }
  .dialogue div.block:first-child {
    border-top: none; }
  .dialogue h1 {
    line-height: 60px;
    font-size: 36px;
    display: block;
    background-color: #FFCD00;
    margin: 0;
    border-radius: 20px 20px 0 0; }
  .dialogue h2 {
    line-height: 30px;
    font-size: 24px; }
  .dialogue p {
    line-height: 30px;
    font-size: 24px;
    margin: 0;
    font-weight: normal;
    margin: 0.5em 0;
    word-wrap: break-word; }
  .dialogue p.img {
    margin: 1em 0; }
  .dialogue p.score {
    line-height: 120px;
    font-size: 120px;
    color: #FFCD00;
    margin: 0; }
  .dialogue p.score .meters {
    font-size: 40px; }
  .dialogue p.button {
    margin: 0.5em 0; }
    .dialogue p.button button {
      color: #000;
      border: 4px solid #FFCD00;
      padding: 10px 20px;
      border-radius: 50px;
      background-color: #F2F2F2;
      font-size: 24px;
      cursor: pointer;
      font-weight: bold; }
    .dialogue p.button button img {
      vertical-align: middle; }
    .dialogue p.button button:hover {
      background-color: #FFCD00; }
  .dialogue p.setting {
    margin: 1em 0 1em 4em;
    text-align: left; }
  .dialogue p#gold {
    margin-bottom: 2em; }
  .dialogue span.gold {
    color: gold; }
  .dialogue div.shopitem {
    display: block;
    height: 60px; }
    .dialogue div.shopitem div.name {
      width: 40%;
      float: left;
      text-align: left;
      padding: 10px 0; }
    .dialogue div.shopitem div.cost {
      width: 20%;
      float: left;
      text-align: left;
      padding: 10px 0; }
    .dialogue div.shopitem div.action {
      text-align: right;
      height: 30px; }
      .dialogue div.shopitem div.action button {
        color: #000;
        border: 4px solid #FFCD00;
        padding: 10px 20px;
        border-radius: 50px;
        background-color: #F2F2F2;
        font-size: 16px;
        cursor: pointer;
        font-weight: bold; }
      .dialogue div.shopitem div.action button:hover {
        background-color: #FFCD00; }
      .dialogue div.shopitem div.action button.disabled {
        background-color: #999;
        border-color: #555;
        color: #ddd; }

:root {
  --form-control-color: $yellow;
  --form-control-disabled: #959495; }

.form-control {
  display: grid;
  grid-template-columns: 1em auto;
  gap: 0.5em;
  font-weight: normal; }

.form-control + .form-control {
  margin-top: 1em; }

.form-control--disabled {
  color: var(--form-control-disabled);
  cursor: not-allowed; }

input[type="checkbox"] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  /* Remove most all native input styles */
  appearance: none;
  /* For iOS < 15 */
  background-color: var(--form-background);
  /* Not removed via appearance */
  margin: 0;
  font: inherit;
  color: #FFCD00;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 0.15em;
  transform: translateY(-0.075em);
  display: grid;
  place-content: center; }

input[type="checkbox"]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transform-origin: bottom left;
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--form-control-color);
  /* Windows High Contrast Mode */
  background-color: black; }

input[type="checkbox"]:checked::before {
  transform: scale(1); }

input[type="checkbox"]:focus {
  outline: 2px solid #24A2A8;
  outline-offset: 2px; }

input[type="checkbox"]:disabled {
  --form-control-color: var(--form-control-disabled);
  color: var(--form-control-disabled);
  cursor: not-allowed; }

