.print_button,
.green_button {
  width: 100px;
  height: 25px;
  background: var(--cumac-green);
  color: white;
  text-align: center;
  margin-bottom: 12px;
  border-radius: 20px;
  font-size: 14pt;
  cursor: pointer;
  padding-top: 4px;
  border: solid white 0px;
  text-decoration: none;
  &:hover {
    background: var(--cumac-green-hover);
  }
  &.disabled {
    cursor: initial;
    background: var(--cumac-green-disable);
  }
  a {
    text-decoration: none;
    color: white;
  }
}
