/******************************* 2022-06-28 *********************************/
input[type=number] {
	text-align: right;
}
/****************************************************************************/			
			.axis path,
			.axis line {
				fill: none;
				stroke: black;
				shape-rendering: crispEdges;
			}
			
			.axis text {
				font-family: sans-serif;
				font-size: 11px;
			}


.tooltip {
  position: absolute;
  width: max-content;
  height: max-content;
  padding: 10px 10px;
  pointer-events: none;
  font-family: sans-serif;
  font-size: 11px;
  text-align: center;
  background: white;
  z-index: 10;
  


.scene {
  margin: 100px;
  width: $size;
  height: $size;
  perspective: 600px;
}
.cube {
  position: absolute;
  width: inherit;
  height: inherit;
  transform-style: preserve-3d;
  transform: rotateX(0deg) rotateY(-30deg) rotateZ(0deg)
}


.cube {
  margin: 150px;
  width: 150px;
  height: 150px;
  position: relative;
  perspective: 0px;
  transform-style: preserve-3d;
}

.cube-face {
  width: inherit;
  height: inherit;
  position: absolute;
  opacity: 0.8;
  border: 1px solid #000000;

}

.cube-face-front {
  transform: translate3d(0, 0, 75px);
  outline: 10px;
}

.cube-face-back {
  transform: rotateY(180deg) translate3d(0, 0, 75px);
}

.cube-face-left {
  transform: rotateY(-90deg) translate3d(0, 0, 75px);
}

.cube-face-right {
  transform: rotateY(90deg) translate3d(0, 0, 75px);
}

.cube-face-top {
  transform: rotateX(90deg) translate3d(0, 0, 75px);
}

.cube-face-bottom {
  transform: rotateX(-90deg) translate3d(0, 0, 75px);
}

.cube-face-middle {
  width: 200px;
  height: 200px;
  background: white;
  transform: translate3d(-75px, -75px, 0px) rotateY(0deg) rotateX(45deg);
  border: 0px solid #000000;
}
