.scale {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  flex-direction: row;
  position: relative;
  font-family: 'UniNeueBook';
  font-weight: bold;
  font-size: 0.9em;
  text-shadow: 0.5px 0.5px 0.5px #bbb9bf;
  color: #291c41;
  background: url('../img/alpha2.png');
  background-position: center;
}
.scale .left {
  display: inline-flex;
  position: relative;
}
.scale .left .units {
  padding-left: 0.5em;
  padding-right: 0.5em;
  line-height: 1.125em;
}
.scale .center {
  display: flex;
  flex: 1 1;
  position: relative;
}
.scale .center .values {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.scale .center .values .label {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  line-height: 1.125em;
}
.scale .center .cursor {
  position: absolute;
  left: 50%;
  width: auto;
  top: 0;
  bottom: 0;
  border-left: 2px solid black;
  padding-left: 4px;
}
.scale .right {
  display: flex;
  flex: 0 0 20px;
}
.scale canvas {
  display: flex;
  flex: 1 1 auto;
}
