
	
#time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  color: #FFF;
}

#time .circle {
  position: relative;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#time .circle svg {
  position: relative;
  width: 50px;
  height: 50px;
  -webkit-transform: rotate(270deg);
          transform: rotate(270deg);
}

#time .circle svg circle {
  width: 100%;
  height: 100%;
  fill: transparent;
  stroke: #191919;
  stroke-width: 5;
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
}

#time .circle svg circle:nth-child(2) {
  stroke: var(--clr);
  stroke-dasharray: 440;
}

#time div {
  position: absolute;
  text-align: center;
  font-weight: 100;
  font-size: 16px;
}

#time div span {
  position: relative;
  -webkit-transform: translateX(-20%) translateY(-25%);
          transform: translateX(-20%) translateY(-25%);
  font-weight: 200;
  font-size: 0.1rem;
  letter-spacing: 5px;
  text-transform: uppercase;
}

#time .ap {
  position: relative;
  font-size: 5px !important;
}

.dots {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dots::before {
  content: '';
  position: absolute;
  top: -3px;
  width: 15px;
  height: 15px;
  background: var(--clr);
  border-radius: 50%;
  -webkit-box-shadow: 0 0 10px var(--clr), 0 0 60px var(--clr);
          box-shadow: 0 0 10px var(--clr), 0 0 60px var(--clr);
}
/*# sourceMappingURL=style.css.map */