

  .base-timer {
    position: relative;
    width: 200px;
    height: 200px;
  }

  .border-radius{
    border-radius:2px;
  }

  .base-timer__svg {
    transform: scaleX(-1);
  }

  .base-timer__circle {
    fill: none;
    stroke: none;
  }

  .base-timer__path-elapsed {
    stroke-width: 2px;
    stroke: grey;
  }

  .base-timer__path-remaining {
    stroke-width: 3px;
    stroke-linecap: round;
    transform: rotate(90deg);
    transform-origin: center;
    transition: 1s linear all;
    fill-rule: nonzero;
    stroke: currentColor;
  }

  .base-timer__path-remaining.green {
    color: rgb(65, 184, 131);
  }

  .base-timer__path-remaining.orange {
    color: orange;
  }

  .base-timer__path-remaining.red {
    color: red;
  }

  .base-timer__label {
    position: absolute;
    width: 200px;
    height: 200px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
  }
  .auction-status__label{
    position: absolute;
    width: 200px;
    height: 200px;
    top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
  }

  .clock-regular{ color: orange;}
  .clock-alert{ color: red;}
  .clock-done{ color: lightcoral;}

  .footer-timer{
    font-size: 12px;
    color: #726d6d;
  }

  .blink {
    animation: blinker 0.7s linear infinite;
  }


  @keyframes blinker {
    50% {
      opacity: 0;
    }
  }
