.timer {
  $this: &;
  cursor: default;

  &--light {
    #{$this}__path {
      color: map-deep-get($theme-colors, light, 'color');
    }
  }

  &--dark {
    #{$this}__path {
      color: map-deep-get($theme-colors, dark, 'color');
    }
  }

  &__clock {
    @include text-size(medium);
    font-weight: bold;
    border: 4px solid;
    border-radius: 50%;
  }

  &__infinity,
  &__clock {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

}
