@mixin reset-button {
  background-color: transparent;
  background-image: none;
  box-shadow: none;
  transition: none;
  border: none;
  padding: 0;
  margin: 0 !important;
  cursor: pointer !important;
  display: flex;
  justify-content: space-around;
  align-items: center;
  align-content: center;

  &:hover,
  &:active {
    box-shadow: none;
    transition: none;
    background-color: transparent;
  }
}
