.buttonMid {
  width: 66px;
  height: 24px;
  padding: 0px;
  margin: 0 5px 0 5px;
  color: var(--base-white);
  font-size: 14px;
  font-weight: bold;
  font-variant: small-caps;
  font-family: var(--font-family-sans-serif);
  background: var(--table-button);
  border: 1px solid var(--table-button);
}

.buttonMid:hover,
.buttonMid:focus,
.buttonMid:active {
  background-color: var(--accent-red);
  color: var(--base-white);
  border: 0px;
  border-style: solid;
  border-color: var(--accent-red);
  outline: none;
  cursor: pointer;
}