 #tools_left {
  position: absolute;
  border-right: none;
  width: var(--x12);
  top: var(--x8);
  bottom: 0;
  left: 0;
  z-index: 4;
}

.tool_button {
  height: var(--x12);
  width: var(--x12);
  cursor: pointer;
  line-height: 60px;
  text-align: center;
}

.tool_button svg {
  vertical-align: center;
  fill: var(--z5);
}

.tool_button:hover svg {
  fill: var(--z10);
}

.tool_button.current {
  background-color: var(--z0);
}

.tool_button.current svg {
  fill: var(--d15);
}

.tool_button.disabled svg {
  background-color: #aaa;
  cursor: not-allowed;
  fill: var(--z3);
  pointer-events: none;
}