#sins-countdown {
  display: flex;
  justify-content: center;
  gap: 20px;
  font-family: sans-serif;
  margin: 30px auto;
  flex-wrap: wrap;
}
.cd-item {
  position: relative;
  width: 120px;
  height: 120px;
  text-align: center;
}
.cd-item svg {
  position: absolute;
  top: 0; left: 0;
  width: 120px;
  height: 120px;
  transform: rotate(-90deg);
}
.cd-item circle {
  fill: none;
  cx: 60;
  cy: 60;
}
.cd-item .bg {
  stroke: white;
  stroke-width: 3;
  r: 51.5;
}
.cd-item[data-unit="days"] .fg {
  stroke: #1a759f;
  stroke-width: 10;
  r: 50;
}
.cd-item[data-unit="hours"] .fg {
  stroke: #2ca02c;
  stroke-width: 10;
  r: 50;
}
.cd-item[data-unit="minutes"] .fg {
  stroke: #f4a261;
  stroke-width: 10;
  r: 50;
}
.cd-item[data-unit="seconds"] .fg {
  stroke: #d62828;
  stroke-width: 10;
  r: 50;
}
.cd-item .value {
  position: relative;
  top: 35px;
  font-size: 28px;
  color: white;
  font-weight: bold;
  z-index: 1;
}
.cd-item .label {
  position: relative;
  top: 40px;
  font-size: 14px;
  color: white;
  z-index: 1;
}
