.drawbars {
  margin: 0.5em 0;
  display: flex;
  flex-direction: row;
  font-size: 0.9rem;
  --track-width: 1.75em;
  --track-segment-height: 1.15em;
  --thumb-width: 2.25em;
  --thumb-height: 3.25em;
  height: calc(8 * var(--track-segment-height) + var(--thumb-height));
}

.drawbar {
  font-family: "Cabin", sans-serif;
  margin: 0 0.1em;
  overflow: hidden;
}

.drawbar-scroller {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.drawbar-track-segment {
  width: var(--track-width);
  line-height: var(--track-segment-height);
  color: #efdcd6;
  text-align: center;
  user-select: none;
  border-left: 0.3em solid #efdcd6;
  border-right: 0.3em solid #efdcd6;
  background: #312d29;
}

.drawbar-thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  line-height: var(--thumb-height);
  text-align: center;
  user-select: none;
  cursor: pointer;
  margin-bottom: calc(8 * var(--track-segment-height));
}

.drawbar.dragging .drawbar-thumb {
  cursor: grab;
}

.drawbar.brown .drawbar-thumb {
  background-color: brown;
  color: #efdcd6;
}

.drawbar.white .drawbar-thumb {
  background-color: white;
  color: #312d29;
}

.drawbar.black .drawbar-thumb {
  background-color: black;
  color: #efdcd6;
}
