.gradient-btn {
  border-radius: 8px;
  background: var(--grad);
  padding: 8px 24px;
  border: none;
  color: var(--invert-font-color);
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
}

.square-btn-with-icon {
  display: grid;
  place-content: center;
  padding: 0;
  width: 36px;
  height: 36px;
}

.gradient-btn:hover,
.gradient-btn:focus-visible {
  opacity: .7;
}

.empty-btn {
  background: none;
  border: none;
  cursor: pointer;
}

.btn-with-icon {
  border: none;
  cursor: pointer;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px;
  display: grid;
  background: none;
  grid-template-columns: 24px 1fr;
  grid-gap: 10px;
}
