@charset "UTF-8";
/*






__  __                                                  ____                             
|  \/  |   __ _  __  __   ___   _ __     ___    ___     / ___|   __ _   _ __ ___     __ _ 
| |\/| |  / _` | \ \/ /  / _ \ | '_ \   / __|  / _ \   | |  _   / _` | | '_ ` _ \   / _` |
| |  | | | (_| |  >  <  |  __/ | | | | | (__  |  __/   | |_| | | (_| | | | | | | | | (_| |
|_|  |_|  \__,_| /_/\_\  \___| |_| |_|  \___|  \___|    \____|  \__,_| |_| |_| |_|  \__,_|
    





*/
/*!
*   @license © Copyright 2022, Maxence Gama. All rights reserved.
*   @author: Maxence Gama, maxence.gama@gmail.com, @maxencegama
*/
@font-face {
  font-family: "Marianne-Regular";
  src: url("/fonts/Marianne-Regular.woff") format("woff");
}

* {
  margin: 0;
  padding: 0;
  font-family: "Marianne-Regular", sans-serif;
  box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

:root {
  --primary: #275EFE;
  --primary-dark: #2055EE;
  --primary-darkest: #133FC0;
  --input-placeholder: #A6ACCD;
  --input-text: #646B8C;
  --border-default: #E1E6F9;
  --border-active: #275EFE;
  --background: #fff;
  --button-text: #FFFFFF;
}

body {
  color: white;
  background-color: #212121;
}

.loading-overlay {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  z-index: 1000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: black;
  color: white;
}

.game-loading-fading-out {
  -webkit-animation: game-loading-fading-out-anim linear 1s;
          animation: game-loading-fading-out-anim linear 1s;
}

@-webkit-keyframes game-loading-fading-out-anim {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
  }
}

@keyframes game-loading-fading-out-anim {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
  }
}

.loading-box {
  display: block;
  position: relative;
  max-width: 100vw;
  text-align: center;
}

.loading-text {
  font-size: 42px;
  font-weight: bolder;
}

.loading-progress {
  display: block;
  position: absolute;
  top: 105%;
  width: 150px;
  height: 25px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid white;
}

.loading-progress div {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 100%;
  margin: 0;
  padding: 0;
  background: green;
  will-change: left width;
  -webkit-animation: game-loading-progress-div-anim linear 1s infinite;
          animation: game-loading-progress-div-anim linear 1s infinite;
}

@-webkit-keyframes game-loading-progress-div-anim {
  0% {
    width: 0;
    left: 0;
  }
  15% {
    width: 25px;
    left: 0;
  }
  50% {
    width: 50%;
    left: 30%;
  }
  100% {
    width: 25px;
    left: 100%;
  }
}

@keyframes game-loading-progress-div-anim {
  0% {
    width: 0;
    left: 0;
  }
  15% {
    width: 25px;
    left: 0;
  }
  50% {
    width: 50%;
    left: 30%;
  }
  100% {
    width: 25px;
    left: 100%;
  }
}

.option-btn-list {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  padding: 0;
  margin: 0;
  color: #303030;
  background-color: rgba(255, 255, 255, 0.5);
}

.option-btn-list button {
  width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  text-align: center;
  font-size: 18px;
  border: none;
}

.option-btn-list button:hover {
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
}

.title-cnt {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 10px;
}

.title-cnt .game-title {
  text-align: center;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: 40px;
}

.title-cnt .game-title::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#ffeb30), color-stop(25%, #f44336), color-stop(50%, #9c27b0), color-stop(75%, #03a9f4), to(#8bc34a));
  background: linear-gradient(90deg, #ffeb30 0%, #f44336 25%, #9c27b0 50%, #03a9f4 75%, #8bc34a 100%);
}

.game-status {
  display: block;
  margin: 0 auto;
  margin-bottom: 6px;
  text-align: center;
}

.game-table {
  display: none;
  position: relative;
  margin: 0 auto;
  padding: 0;
  border: 2px solid white;
  line-height: 0px;
}

.game-table .game-table-pixel {
  display: inline-block;
  vertical-align: middle;
  margin: 0;
  padding: 0;
  border: 0.005cm solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0, 0, 0, 0.1);
  box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
}

.game-table .game-danger-row-pixel {
  background-color: rgba(255, 0, 0, 0.2);
}

.game-table .points-pane {
  display: block;
  position: absolute;
  top: 8px;
  left: calc(100% + 2px);
  width: 75px;
  height: 100px;
  background-color: #00695C;
  border: 2px solid #009688;
  color: #B2DFDB;
  padding: 5px;
  text-align: center;
  line-height: 25px;
  font-size: 14px;
}

.game-table .points-pane .lives-icon {
  color: #F44336;
  font-size: 16px;
}

.game-table .points-pane .points-num {
  display: inline-block;
  vertical-align: text-bottom;
  color: white;
  font-size: 18px;
}

.game-table .hold-piece-cnt {
  display: block;
  position: absolute;
  top: 8px;
  right: calc(100% + 2px);
  width: 75px;
  height: 100px;
  background-color: #3F51B5;
  border: 2px solid #7986CB;
  color: #C5CAE9;
  padding: 5px;
  text-align: center;
  line-height: 25px;
  font-size: 14px;
}

.game-table .hold-piece-cnt .hold-table {
  display: block;
  position: relative;
  width: 48px;
  margin: 4px auto 0 auto;
  padding: 0;
  line-height: 0px;
}

.game-table .hold-piece-cnt .game-hold-table-pixel {
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  margin: 0;
  padding: 0;
  border: 0.005cm solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0, 0, 0, 0.1);
  box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
}

.game-table .game-next {
  display: block;
  position: absolute;
  top: 116px;
  left: calc(100% + 2px);
  width: 75px;
  height: 100px;
  background-color: #4E342E;
  border: 2px solid #795548;
  color: white;
  padding: 5px;
  text-align: center;
  line-height: 25px;
  font-size: 14px;
}

.game-table .game-next-shape {
  display: block;
  position: relative;
  width: 48px;
  margin: 4px auto 0 auto;
  padding: 0;
  line-height: 0px;
}

.game-table .game-next-shape-pixel {
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  margin: 0;
  padding: 0;
  border: 0.005cm solid rgba(255, 255, 255, 0.2);
  background-color: rgba(0, 0, 0, 0.1);
  box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
}

.-hide-dialog {
  display: none !important;
  visibility: hidden !important;
}

.cdk-overlay-container {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 1000;
}

.cdk-overlay-container:empty {
  display: none;
}

@-webkit-keyframes show-pan {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes show-pan {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.cdk-global-overlay-wrapper {
  pointer-events: none;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  z-index: 1000;
  -webkit-animation: show-pan 0.2s ease-in-out forwards;
          animation: show-pan 0.2s ease-in-out forwards;
}

.cdk-overlay-backdrop {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: opacity 400ms cubic-bezier(0.25, 0.8, 0.25, 1);
  opacity: 0;
}

.cdk-overlay-backdrop.cdk-overlay-backdrop-showing {
  opacity: 0.4 !important;
}

.cdk-overlay-dark-backdrop {
  background-color: #19212b !important;
}

.cdk-overlay-pane {
  position: absolute;
  pointer-events: auto;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
  max-height: 100%;
}

.cdk-overlay-pane.cdk-overlay-pane {
  display: block;
  max-width: initial;
  max-height: initial;
}

.cdk-overlay-pane.cdk-overlay-pane {
  display: block;
  max-width: none;
  max-height: none;
}

.md-dialog, .mat-dialog-container.mat-dialog-container {
  --fire-color-dialog-background: #FFF;
  background-color: var(--fire-color-dialog-background) !important;
  border-radius: 16px !important;
  -webkit-box-shadow: 0 2px 3px 0 rgba(60, 64, 67, 0.3), 0 6px 10px 4px rgba(60, 64, 67, 0.15) !important;
  box-shadow: 0 2px 3px 0 rgba(60, 64, 67, 0.3), 0 6px 10px 4px rgba(60, 64, 67, 0.15) !important;
  max-height: calc(100vh - 48px);
}

.mat-dialog-container.mat-dialog-container, .md-dialog-container.mat-dialog-container {
  padding: 0;
}

.mat-dialog-container {
  display: block;
  padding: 24px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: auto;
  outline: 0;
  width: 100%;
  height: 100%;
  min-height: inherit;
  max-height: inherit;
}

.mat-dialog-container {
  -webkit-box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12);
  box-shadow: 0 11px 15px -7px rgba(0, 0, 0, 0.2), 0 24px 38px 3px rgba(0, 0, 0, 0.14), 0 9px 46px 8px rgba(0, 0, 0, 0.12);
  background: #fff;
  color: rgba(0, 0, 0, 0.87);
}

.cdk-overlay-pane {
  pointer-events: auto;
}

.mat-diallg-container {
  color: rgba(0, 0, 0, 0.87);
}

.fire-dialog[_ngcontent-duv-c420] {
  display: block;
}

.fire-dialog {
  --header-color: var(--theme-color-fg-primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-height: calc(100vh - 48px);
  overflow: auto;
  position: relative;
}

.fire-spinner-covered, .fire-spinner-container {
  position: relative;
}

.fire-dialog-header {
  display: block;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  padding: 24px 24px 0;
}

.fire-dialog-header .fire-dialog-title {
  font-size: 20px;
  text-align: center;
  line-height: 28px;
  font-weight: 500;
  color: var(--header-color);
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  margin: 0 32px 16px;
}

.fire-dialog-body-section {
  color: rgba(0, 0, 0, 0.54);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 14px;
  line-height: 20px;
  padding: 0 24px;
}

.fire-dialog-body-section[_ngcontent-duv-c420] {
  max-width: 400px;
}

.fire-dialog-body-section {
  color: rgba(0, 0, 0, 0.54);
  font-size: 14px;
  line-height: 20px;
}

.fire-callout.fire-aside-warning {
  --fire-color-error-light: #fbe9e7;
  --fire-color-error-text: #c62828;
  background-color: var(--fire-color-error-light);
  color: var(--fire-color-error-text);
}

.fire-callout .fire-callout-body {
  margin-right: 24px;
  padding: 12px 0;
  line-height: 20px;
  font-size: 14px;
  white-space: normal;
}

.fire-callout .fire-callout-body h3 {
  margin: 20px 0;
}

.fire-callout.has-icon .fire-callout-body {
  padding-left: 36px;
}

.fire-callout .fire-callout-message {
  font-weight: 500;
  display: inline-block;
  vertical-align: middle;
}

.fire-callout .fire-callout-body {
  line-height: 20px;
  font-size: 14px;
  white-space: normal;
}

.fire-dialog-actions {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-height: 36px;
  padding: 24px;
}

.mat-button.mat-button:not(.mat-primary):not(.mat-warn):not([disabled]) {
  --theme-color-ink-2: rgba(0,0,0,0.54);
  color: var(--theme-color-ink-2);
}

.fire-dialog-actions .mat-button:not(.mat-icon-button), .fire-dialog-actions .mat-raised-button:not(.mat-icon-button) {
  margin: 0 0 0 8px;
}

.mat-button.mat-button, .mat-flat-button.mat-flat-button, .mat-raised-button.mat-raised-button, .mat-stroked-button.mat-stroked-button, .mat-icon-button.mat-icon-button {
  -webkit-transition: box-shadow .2s ease,background-color .2s ease;
  -webkit-transition: background-color .2s ease,-webkit-box-shadow .2s ease;
  transition: background-color .2s ease,-webkit-box-shadow .2s ease;
  transition: box-shadow .2s ease,background-color .2s ease;
  transition: box-shadow .2s ease,background-color .2s ease,-webkit-box-shadow .2s ease;
}

.mat-button.mat-button, .mat-flat-button.mat-flat-button, .mat-raised-button.mat-raised-button, .mat-stroked-button.mat-stroked-button {
  padding-left: 16px;
  padding-right: 16px;
  border: 0;
  border-radius: 8px;
  text-transform: none;
  letter-spacing: .25px;
  min-width: 60px;
}

.mat-raised-button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: baseline;
  text-align: center;
  margin: 0;
  min-width: 64px;
  line-height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  overflow: visible;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mat-raised-button[disabled] {
  cursor: not-allowed;
}

.mat-button, .mat-icon-button, .mat-stroked-button, .mat-flat-button {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  cursor: pointer;
  outline: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
  display: inline-block;
  white-space: nowrap;
  text-decoration: none;
  vertical-align: baseline;
  text-align: center;
  margin: 0;
  min-width: 64px;
  line-height: 36px;
  padding: 0 16px;
  border-radius: 4px;
  overflow: visible;
}

.mat-button, .mat-icon-button, .mat-stroked-button {
  color: inherit;
  background: transparent;
}

.mat-focus-indicator, .mat-mdc-focus-indicator {
  position: relative;
}

.mat-button, .mat-raised-button, .mat-icon-button, .mat-stroked-button, .mat-flat-button, .mat-fab, .mat-mini-fab {
  font-size: 14px;
  font-weight: 500;
}

.mat-raised-button.mat-raised-button.mat-primary:not([disabled]) {
  background-color: var(--theme-color-primary);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: var(--theme-color-on-primary);
}

.mat-raised-button.mat-raised-button.mat-warn:not([disabled]) {
  background-color: #d32f2f;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
}

.mat-raised-button.mat-raised-button:not([disabled]) {
  background-color: var(--primary);
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
}

.mat-raised-button.mat-raised-button:not([disabled]).blue-stl {
  --primary: #275EFE;
  --primary-dark: #2055EE;
}

.mat-raised-button.mat-raised-button:not([disabled]).red-stl {
  --primary: #d32f2f;
  --primary-dark: #ba2929;
}

.mat-raised-button.mat-raised-button:not([disabled]):hover {
  background-color: var(--primary-dark);
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mat-raised-button.mat-raised-button.mat-warn {
  --fire-focus-outline-color: rgba(255,255,255,0.6);
}

.mat-button.mat-button:not(.mat-primary):not(.mat-warn):not([disabled]):hover {
  background: rgba(0, 0, 0, 0.06);
}

.mat-raised-button.mat-raised-button.mat-warn:not([disabled]):hover {
  background-color: #ba2929;
  -webkit-box-shadow: none;
  box-shadow: none;
}
/*# sourceMappingURL=style.css.map */