@font-face {
  font-family: 'Orbitron';
  font-style: normal;
  font-weight: 400;
  src: url(../../../shared/fonts/orbitron/orbitron-latin-400-normal.woff2) format('woff2');
}
html,
body {
  height: 100%;
}
body {
  background: radial-gradient(ellipse at center, #2c2e2f 0, #181a1b 50%, #0e1011 100%);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.effects {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent url("./assets/soft-noise4.png") 0 0;
  -webkit-animation: sparks 1s steps(2) infinite;
          animation: sparks 1s steps(2) infinite;
  background-size: 400px 400px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  width: 55rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  perspective: 450px;
}
#spinner-div {
  width: 15rem;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  transform: rotateY(20deg);
}
#spinner-div .spinner {
  align-self: flex-end;
}
#spinner-div #work-spinner {
  margin-bottom: 2rem;
}
#btn-div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  transform: rotateY(-25deg);
}
#btn-div * {
  margin: 1.5rem auto 1.5rem 2rem;
}
.btn {
  width: 5.5rem;
}
.display {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background: radial-gradient(ellipse at center, rgba(122, 147, 172, 0.42) 0, rgba(122, 147, 172, 0.42) 60%, rgba(97, 112, 115, 0.9) 100%);
  box-shadow: 0 0 3px 3px #617073;
  border: 1px solid #92bcea;
  border-radius: 2px;
  padding: 4px 10px 4px 10px;
  margin: 0.75rem;
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.7rem;
  color: #e8f1f2;
  opacity: 0.7;
}
.display:hover {
  opacity: 0.9;
}
#flip-clock {
  transform-style: preserve-3d;
  transform: rotateY(-5deg);
  position: relative;
  /*&.flipped {
    //transform: rotateY(175deg);
  }*/
}
.clock-face {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.6s;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.clock-face .clock-title {
  margin-top: 0.4375rem;
  font-weight: bold;
}
.clock-face .clock-numbers {
  display: inline-block;
  width: 19.375rem;
  height: 6.25rem;
  line-height: 5.625rem;
  font-size: 5rem;
}
.clock-face .clock-numbers span {
  display: inline-block;
  width: 4.0625rem;
  text-align: center;
}
.clock-face .clock-numbers span.dots {
  width: 1.25rem;
}
#clock-break {
  position: absolute;
  z-index: 2;
  background: radial-gradient(ellipse at center, rgba(121, 174, 121, 0.42) 0, rgba(121, 174, 121, 0.42) 50%, rgba(80, 132, 80, 0.9) 100%);
  box-shadow: 0 0 3px 3px #508450;
  border-color: #aeceae;
}
#clock-break.flipped {
  transform: rotateY(180deg);
}
#clock-work.flipped {
  transform: rotateY(-180deg);
}
table.spinner {
  width: 5rem;
  border-spacing: 3px;
  text-align: center;
  margin: 5px;
  padding: 0;
}
table.spinner td {
  height: 0.5rem;
  background: rgba(232, 241, 242, 0.2);
}
table.spinner .sp-number {
  width: 3.5rem;
}
table.spinner .sp-knob {
  position: relative;
  width: 1rem;
}
table.spinner .sp-knob:hover {
  background: rgba(232, 241, 242, 0.4);
}
@-webkit-keyframes sparks {
  0% {
    background-position: -80px 0px;
  }
  20% {
    background-position: 0 -100px;
  }
  40% {
    background-position: -100px 90px;
  }
  60% {
    background-position: 70px 0;
  }
  80% {
    background-position: 0px -100px;
  }
  100% {
    background-position: -150px 190px;
  }
}
@keyframes sparks {
  0% {
    background-position: -80px 0px;
  }
  20% {
    background-position: 0 -100px;
  }
  40% {
    background-position: -100px 90px;
  }
  60% {
    background-position: 70px 0;
  }
  80% {
    background-position: 0px -100px;
  }
  100% {
    background-position: -150px 190px;
  }
}