.Button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 52px;
  width: fit-content;
  padding: 0 24px;
  border: 1px solid $primary-03;
  border-radius: 4px;
  background-color: $primary-03;
  color: $primary-02;
  font-family: $family-primary;
  font-weight: 500;
  font-size: $text-sm;
  cursor: pointer;
  transition: all 0.3s;

  &:hover {
    border: 1px solid #42cf7b;
    background-color: #42cf7b3d;
  }

  &._black {
    &:hover {
      color: #fff;
    }
  }

  // Outline
  &._outline {
    border: 1px solid #42cf7b;
    color: #42cf7b;
    background: transparent;

    &:hover {
      background-color: rgba(66, 207, 123, 0.08);
    }
  }

  // Tertiary
  &._tertiary {
    background: transparent;
    border: 1px solid $purple-dark;
    color: $purple-dark;

    &:hover {
      background-color: $purple-dark;
      color: #fff;
    }
  }

  &._with-icon {
    gap: 8px;

    i {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      width: 24px;
      height: 24px;
    }
  }

  &._ghost {
    justify-content: flex-start;
    width: fit-content;
    height: 31px;
    padding: 0 0 8px;
    background-color: transparent;
    border-radius: 0;
    font-size: $text-df;
    color: $green-dark;
    border: none;
  }

  // App
  &._white {
    display: flex;
    border: 1px solid #fff;
    color: #fff;
    background: transparent;
    gap: 12px;
    border-radius: 31px;
    font-size: $text-sm;

    i {
      font-size: $text-md;
    }

    &:hover {
      background-color: #1c1957;
      color: #fff;
      border: 1px solid #fff;
    }
  }
}
