/* ============================================================
Color
============================================================ */
/* ============================================================
CUBE
============================================================ */
.cancel-area {
  position: absolute;
  width: 100%;
  height: 80%;
  top: 0;
  left: 0;
  z-index: 0;
}

.perspective {
  width: 90%;
  max-width: 700px;
  height: calc(100vh - 300px);
  margin: 140px auto 10px;
  position: relative;
  -webkit-perspective: 500px;
          perspective: 500px;
  -webkit-perspective-origin: 50% 50%;
          perspective-origin: 50% 50%;
  cursor: default;
}

@media all and (min-width: 1100px) {
  .perspective {
    height: calc(100vh - 180px);
    margin: 80px auto 10px;
  }
}

.perspective.grab {
  cursor: -webkit-grab;
  cursor: grab;
}

.perspective .group {
  width: 200px;
  height: 200px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  -webkit-transform: translateZ(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
          transform: translateZ(0px) rotateX(0deg) rotateY(0deg) rotateZ(0deg);
  left: 0;
  right: 0;
  cursor: -webkit-grab;
  cursor: grab;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.perspective .group > .face {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.perspective .group > .face > ul {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.perspective .group > .face > ul > li {
  width: 50%;
  height: 50%;
  position: relative;
  text-align: center;
  font-size: 4.75em;
  font-weight: 700;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  z-index: 99999;
}

@media all and (min-width: 500px) {
  .perspective .group > .face > ul > li {
    font-size: 5.375em;
  }
}

@media all and (min-width: 768px) {
  .perspective .group > .face > ul > li {
    font-size: 6em;
  }
}

.perspective .group > .face > ul > li.active {
  border: 3px solid #ffa114;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  opacity: 1;
}

.perspective .group > .face > ul > li.hidden {
  opacity: .5;
}

.perspective .group > .face > ul > li.hidden::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}

.perspective .group > .face > ul > li.hidden.repeat::after {
  top: auto;
  left: auto;
  bottom: 10px;
  right: 10px;
  z-index: 10;
}

.perspective .group > .face > ul > li.readonly {
  font-weight: 300;
  color: #333;
  font-size: 3.75em;
}

@media all and (min-width: 500px) {
  .perspective .group > .face > ul > li.readonly {
    font-size: 4.375em;
  }
}

@media all and (min-width: 768px) {
  .perspective .group > .face > ul > li.readonly {
    font-size: 5em;
  }
}

.perspective .group > .face > ul > li:nth-child(1) {
  background: rgba(0, 0, 0, 0);
}

.perspective .group > .face > ul > li:nth-child(2) {
  background: rgba(0, 0, 0, 0.1);
}

.perspective .group > .face > ul > li:nth-child(3) {
  background: rgba(0, 0, 0, 0.2);
}

.perspective .group > .face > ul > li:nth-child(4) {
  background: rgba(0, 0, 0, 0.3);
}

.perspective .group > .face > ul > li.repeat::after {
  content: '';
  display: table;
  position: absolute;
  width: 10%;
  height: 10%;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  background: rgba(255, 0, 0, 0.7);
}

.perspective .group > .face.front {
  -webkit-transform: rotateX(0deg) translateZ(100px);
          transform: rotateX(0deg) translateZ(100px);
  background: #F3F3F2;
}

.perspective .group > .face.front > ul > li::before {
  content: 'I';
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: .25em;
  font-weight: 700;
  color: #000;
  opacity: .5;
  z-index: 10;
}

.perspective .group > .face.back {
  -webkit-transform: rotateY(180deg) translateZ(100px);
          transform: rotateY(180deg) translateZ(100px);
  background: #DAD8D2;
}

.perspective .group > .face.back > ul > li::before {
  content: 'III';
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: .25em;
  font-weight: 700;
  color: #000;
  opacity: .5;
  z-index: 10;
}

.perspective .group > .face.top {
  -webkit-transform: rotateX(90deg) translateZ(100px);
          transform: rotateX(90deg) translateZ(100px);
  background: #feebda;
}

.perspective .group > .face.top > ul > li::before {
  content: 'IV';
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: .25em;
  font-weight: 700;
  color: #000;
  opacity: .5;
  z-index: 10;
}

.perspective .group > .face.down {
  -webkit-transform: rotateX(270deg) translateZ(100px);
          transform: rotateX(270deg) translateZ(100px);
  background: #9aa18d;
}

.perspective .group > .face.down > ul > li::before {
  content: 'II';
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: .25em;
  font-weight: 700;
  color: #000;
  opacity: .5;
  z-index: 10;
}

.perspective .group > .face.left {
  -webkit-transform: rotateY(270deg) translateZ(100px);
          transform: rotateY(270deg) translateZ(100px);
  background: #8d93a9;
}

.perspective .group > .face.left > ul > li::before {
  content: 'V';
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: .25em;
  font-weight: 700;
  color: #000;
  opacity: .5;
  z-index: 10;
}

.perspective .group > .face.right {
  -webkit-transform: rotateY(90deg) translateZ(100px);
          transform: rotateY(90deg) translateZ(100px);
  background: #945156;
}

.perspective .group > .face.right > ul > li {
  color: #fff;
}

.perspective .group > .face.right > ul > li::before {
  content: 'VI';
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: .25em;
  font-weight: 700;
  color: #000;
  opacity: .5;
  z-index: 10;
}

.perspective .group > .face.right > ul > li.readonly {
  color: #cecece;
}

@media all and (min-width: 500px) {
  .perspective .group {
    width: 240px;
    height: 240px;
  }
  .perspective .group > .face.front {
    -webkit-transform: rotateX(0deg) translateZ(120px);
            transform: rotateX(0deg) translateZ(120px);
  }
  .perspective .group > .face.back {
    -webkit-transform: rotateY(180deg) translateZ(120px);
            transform: rotateY(180deg) translateZ(120px);
  }
  .perspective .group > .face.top {
    -webkit-transform: rotateX(90deg) translateZ(120px);
            transform: rotateX(90deg) translateZ(120px);
  }
  .perspective .group > .face.down {
    -webkit-transform: rotateX(270deg) translateZ(120px);
            transform: rotateX(270deg) translateZ(120px);
  }
  .perspective .group > .face.left {
    -webkit-transform: rotateY(270deg) translateZ(120px);
            transform: rotateY(270deg) translateZ(120px);
  }
  .perspective .group > .face.right {
    -webkit-transform: rotateY(90deg) translateZ(120px);
            transform: rotateY(90deg) translateZ(120px);
  }
}

@media all and (min-width: 768px) {
  .perspective .group {
    width: 300px;
    height: 300px;
  }
  .perspective .group > .face.front {
    -webkit-transform: rotateX(0deg) translateZ(150px);
            transform: rotateX(0deg) translateZ(150px);
  }
  .perspective .group > .face.back {
    -webkit-transform: rotateY(180deg) translateZ(150px);
            transform: rotateY(180deg) translateZ(150px);
  }
  .perspective .group > .face.top {
    -webkit-transform: rotateX(90deg) translateZ(150px);
            transform: rotateX(90deg) translateZ(150px);
  }
  .perspective .group > .face.down {
    -webkit-transform: rotateX(270deg) translateZ(150px);
            transform: rotateX(270deg) translateZ(150px);
  }
  .perspective .group > .face.left {
    -webkit-transform: rotateY(270deg) translateZ(150px);
            transform: rotateY(270deg) translateZ(150px);
  }
  .perspective .group > .face.right {
    -webkit-transform: rotateY(90deg) translateZ(150px);
            transform: rotateY(90deg) translateZ(150px);
  }
}

.num-container {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  bottom: 0;
  left: 0;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.num-container > ul {
  position: relative;
  width: 240px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media all and (min-width: 768px) {
  .num-container > ul {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

.num-container > ul > li {
  width: 50px;
  height: 50px;
  position: relative;
  text-align: center;
  line-height: 50px;
  font-size: 1.25em;
  background: #d3d6da;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 5px;
  cursor: pointer;
  color: #111;
  font-weight: 700;
  -webkit-transition: .15s linear;
  transition: .15s linear;
  opacity: 1;
}

@media all and (min-width: 1100px) {
  .num-container > ul > li:hover {
    opacity: .7;
  }
}

.num-container .btn-container {
  width: 80px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media all and (min-width: 768px) {
  .num-container .btn-container {
    width: 160px;
  }
}

.num-container .btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  position: relative;
  text-align: center;
  line-height: 50px;
  font-size: 1.25em;
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 700;
  padding: 0 10px;
  margin: 5px;
  -webkit-transition: .15s linear;
  transition: .15s linear;
  opacity: 1;
  cursor: pointer;
}

@media all and (min-width: 1100px) {
  .num-container .btn:hover {
    opacity: .7;
  }
}

.num-container .delete {
  background: #787675;
  color: #fff;
}

.num-container .check {
  background: #8d93a9;
  color: #fff;
}

.feature-area {
  width: 100%;
  position: fixed;
  top: 75px;
}

.feature-area .dailyWord {
  position: relative;
  margin: 0 auto;
  width: 90%;
  padding: 5px 10px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ccd4bd;
  border-radius: 5px;
  font-size: 1em;
}

@media all and (min-width: 1100px) {
  .feature-area .dailyWord {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 90%;
    text-align: center;
    font-size: 1.1em;
  }
}

.feature-area .timing {
  position: relative;
  margin-top: 5px;
  left: 5%;
}

.feature-area .timing h3 {
  font-size: 1.5em;
  font-family: 500;
  color: #333;
}

.feature-area .timing h3 em {
  font-size: 1.2em;
  font-weight: 700;
  color: #000;
}

.feature-area .debug1 {
  position: relative;
  margin-top: 5px;
  left: 5%;
}

#debugLog {
  width: 90%;
  height: 80px;
  resize: none;
  font-size: 0.5em;
  border: 1px solid #ccc;
  padding: 5px;
  white-space: pre-wrap;
  overflow-wrap: break-word;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
/*# sourceMappingURL=cube.css.map */