//
// Timer
// --------------------------------------------------

.timer {
  text-align: center;

  &-title {
    font-weight: $font-weight-bold;
    font-size: $font-size-h1;
    line-height: $grid-unit-y * 6;
    margin-right: auto;
    color: $brand-success;
  }

  &-btn {
    $size: $grid-unit-y * 15;

    height: $size;
    width: $size;
    line-height: $size;
    border-radius: 50%;
    font-size: $font-size-h2;
    font-weight: $font-weight-bold;
    color: $color-white;
    background-color: $brand-success;
    text-align: center;
    cursor: pointer;
    display: inline-block;

    &:hover,
    &:focus {
      background-color: $brand-success-dark-1;
    }
  }

  // Style Variations

  &-stop {
    .timer-title {
      color: $brand-danger;
    }

    .timer-btn {
      background-color: $brand-danger;

      &:hover,
      &:focus {
        background-color: $brand-danger-dark-1;
      }
    }
  }
}
