.cube-game {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4fr 1fr;
      grid-template-columns: 4fr 1fr;
      grid-template-areas: "cube-container cube-padcontainer";
  width: 100%;
  height: 100%;
}

.cube-game .cube-container {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: cube-container;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 5fr 1fr;
      grid-template-rows: 5fr 1fr;
      grid-template-areas: "cube-action" "cube-answer";
}

.cube-game .cube-container .cube-action {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: cube-action;
}

.cube-game .cube-container .cube-answer {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: cube-answer;
  background-color: #193549;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cube-game .cube-padcontainer {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: cube-padcontainer;
  background-color: #193549;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.cube-btn {
  width: 100%;
  height: 50px;
  background-color: brown;
}

.cube-digit-dropbox {
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.drop-1000, .drop-100, .drop-10, .drop-1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 80px;
  width: 80px;
  border: 1px solid lightgrey;
  color: white;
  font-size: 4rem;
}

.cube-treader {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 1fr 100px;
      grid-template-rows: 1fr 100px;
      grid-template-areas: "cube-builder" "cube-do";
  width: 100%;
  height: 100%;
}

.cube-treader .cube-builder {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: cube-builder;
}

.cube-treader .cube-do {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  grid-area: cube-do;
  background-color: #193549;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tens {
  height: 100%;
  width: 440px;
}

/* header {
  margin-bottom: 2rem;
} */
.top,
.right,
.bottom,
.left {
  position: absolute;
  color: black;
  top: 0;
  left: 0;
  -webkit-transform: translateX(0, 0);
          transform: translateX(0, 0);
  opacity: 0.1;
}

.top.go {
  -webkit-transform: translate(0, -42px);
          transform: translate(0, -42px);
  opacity: 1;
}

.right.go {
  -webkit-transform: translate(40px, 0);
          transform: translate(40px, 0);
  opacity: 1;
}

.bottom.go {
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  opacity: 1;
}

.left.go {
  -webkit-transform: translate(-42px, 0);
          transform: translate(-42px, 0);
  opacity: 1;
}

.btn-one {
  fill: white;
  stroke: green;
  stroke-width: 3;
  /* color: black; */
  /* pointer: cursor; */
}

.btn-one:hover {
  fill: #0069d9;
}

.btnRepeatNumber {
  position: absolute;
  bottom: 85px;
  left: 25px;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 1px black;
  padding: 10px;
  background-color: #fd7e14;
  border-radius: 50%;
  z-index: 1000;
}

/* ========================= */
.trading-button, .g-trade {
  /* color: black; */
  border: 1px solid #333;
  border-radius: 50%;
  font-size: 1rem;
  line-height: 30px;
  text-align: center;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
  outline: none;
}

.g-100,
.g-10,
.g-1,
.g-1000 {
  position: absolute;
  /* color: black; */
  top: 0;
  left: 0;
  -webkit-transform: translateX(0, 0);
          transform: translateX(0, 0);
  opacity: 0.9;
}

.g-100.go {
  -webkit-transform: -webkit-translate(0, -42px);
  transform: translate(0, -42px);
  opacity: 1;
}

.g-10.go {
  -webkit-transform: translate(40px, 0);
          transform: translate(40px, 0);
  opacity: 1;
}

.g-1.go {
  -webkit-transform: translate(0, 40px);
          transform: translate(0, 40px);
  opacity: 1;
}

.g-1000.go {
  -webkit-transform: translate(-42px, 0);
          transform: translate(-42px, 0);
  opacity: 1;
  fill: black;
}

.g-100.go-lx {
  -webkit-transform: -webkit-translate(0, -62px);
  transform: translate(0, -62px);
  opacity: 1;
}

.g-10.go-lx {
  -webkit-transform: translate(60px, 0);
          transform: translate(60px, 0);
  opacity: 1;
}

.g-1.go-lx {
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
  opacity: 1;
}

.g-1000.go-lx {
  -webkit-transform: translate(-62px, 0);
          transform: translate(-62px, 0);
  opacity: 1;
  fill: black;
}

.svg-button {
  fill: white;
  stroke: green;
  stroke-width: 1;
}

.hide-trade-buttons {
  position: absolute;
  /* color: black; */
  top: 0;
  left: 0;
  -webkit-transform: translateX(0, 0);
          transform: translateX(0, 0);
  opacity: 0.1;
}

.long-svg-yes {
  /* color: black; */
  fill: white;
}

.kolor {
  fill: black;
}

.cube-drop-zone {
  fill: aliceblue;
  stroke: red;
  stroke-width: 1;
  height: 100%;
  width: 450px;
  z-index: 9998;
}

.after-drop {
  fill: yellow;
  stroke: red;
  stroke-width: 1;
  height: 100%;
  width: 450px;
  z-index: 9999;
}

.drop-zone-1000 {
  fill: aliceblue;
  stroke: red;
  stroke-width: 1;
  height: 560px;
  width: 500px;
  z-index: 9999;
}

.after-drop-1000 {
  fill: yellow;
  stroke: red;
  stroke-width: 1;
  height: 560px;
  width: 500px;
  z-index: 9999;
}

_g {
  outline: solid 1px blue;
  outline-offset: 5px;
}

_g:hover {
  outline-color: red;
}

.animatableSvgCube {
  -webkit-transition: transform linear 600ms, opacity linear 400ms;
  -webkit-transition: opacity linear 400ms, -webkit-transform linear 600ms;
  transition: opacity linear 400ms, -webkit-transform linear 600ms;
  transition: transform linear 600ms, opacity linear 400ms;
  transition: transform linear 600ms, opacity linear 400ms, -webkit-transform linear 600ms;
}

.light {
  -webkit-animation: shrink 2s alternate infinite ease-in-out;
          animation: shrink 2s alternate infinite ease-in-out;
}

@-webkit-keyframes shrink {
  from {
    -webkit-transform: scale(var(--lightScaleStart));
            transform: scale(var(--lightScaleStart));
  }
  to {
    -webkit-transform: scale(var(--lightScaleEnd));
            transform: scale(var(--lightScaleEnd));
  }
}

@keyframes shrink {
  from {
    -webkit-transform: scale(var(--lightScaleStart));
            transform: scale(var(--lightScaleStart));
  }
  to {
    -webkit-transform: scale(var(--lightScaleEnd));
            transform: scale(var(--lightScaleEnd));
  }
}

.animatableSvgCube_colaps {
  -webkit-transition: transform linear 600ms, opacity linear 400ms;
  -webkit-transition: opacity linear 3000ms, -webkit-transform linear 3000ms;
  transition: opacity linear 3000ms, -webkit-transform linear 3000ms;
  transition: transform linear 3000ms, opacity linear 3000ms;
  transition: transform linear 3000ms, opacity linear 3000ms, -webkit-transform linear 3000ms;
}

.cube-result {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 4rem;
  color: white;
}

.cube-tools {
  grid-area: cube-tools;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: burlywood;
}

.pos {
  width: 38px;
  height: 40px;
  padding: 4px;
  margin: 5px;
  border: black 1px solid;
  color: black;
  font-size: 16px;
}
/*# sourceMappingURL=main_cube.css.map */