

.buttons {
  padding: 0 0 50px;
}

.item {
  background: #FFF;
}

.button {
  transition: all .2s ease-in-out;
  -webkit-appearance: none;
  font-family: inherit;
  appearance: none;
  background: none;
  font-weight: 700;
  font-size: 18px;
  cursor: pointer;
  padding: 20px;
  outline: none;
  opacity: 0.4;
  border: none;
  color: var(--grey);
}

.button:hover,
.button.active {
  opacity: 1;
}

.hide { 
  display: none; 
}