.favorites-buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 62px;
  margin-bottom: 93px;
}

.favorites-buttons__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 346px;
  height: 60px;
  color: var(--color-black);
  background-color: transparent;
  border: 1px solid var(--color-black);
  border-radius: 0;
  outline: none;
  cursor: pointer;
  transition: color 0.15s linear, background-color 0.15s linear, border-color 0.15s linear;
}

.favorites-buttons__button:hover {
  color: var(--color-white);
  background-color: var(--color-coral);
  border-color: var(--color-coral);
}
