.clock {
  height: 220px;
  width: 220px;
  border-radius: 110px;
  display: flex;
  justify-content: center;
  position: relative;
  margin:0 auto;
  border:10px solid #D1D1D1;
}
.clock-title{text-align:center;font-size:45px;line-height:1em;font-weight:700;color:#000;padding-top:20px;}
.clock__second, .clock__minute, .clock__hour, .clock__indicator {
  position: absolute;
  left: calc(50% - 1px);
  width: 5px;
  background: #003565;
  -webkit-transform-origin: bottom center;
          transform-origin: bottom center;
  z-index: 2;
  border-radius: 1px;
}
.clock__second {
  height: 90px;
  margin-top: 10px;
  background: #D1D1D1;
  -webkit-animation: time 60s infinite steps(60);
          animation: time 60s infinite steps(60);
  z-index: 3;
}
.clock__minute {
  height: 80px;
  margin-top: 20px;
  opacity: 1;
  -webkit-animation: time 3600s linear infinite;
          animation: time 3600s linear infinite;
}
.clock__hour {
  height: 60px;
  margin-top: 40px;
  -webkit-animation: time 43200s linear infinite;
          animation: time 43200s linear infinite;
}
.clock__indicator {
  height: 100px;
  border-top: 10px solid #6E7592;
  background: none;
  width:5px;
}
.clock__indicator:nth-of-type(3n) {
  opacity: 1;
  height:100px;
  border-top: 20px solid #A3001D;
}
.clock__axis {
  background: #003565;
  width: 5px;
  height: 5px;
  border-radius: 3px;
  position: absolute;
  z-index: 4;
  top: 97px;
  display:none;
}

section:nth-of-type(1) {
  -webkit-transform: rotateZ(calc(30deg * 1));
          transform: rotateZ(calc(30deg * 1));
}

section:nth-of-type(2) {
  -webkit-transform: rotateZ(calc(30deg * 2));
          transform: rotateZ(calc(30deg * 2));
}

section:nth-of-type(3) {
  -webkit-transform: rotateZ(calc(30deg * 3));
          transform: rotateZ(calc(30deg * 3));
}

section:nth-of-type(4) {
  -webkit-transform: rotateZ(calc(30deg * 4));
          transform: rotateZ(calc(30deg * 4));
}

section:nth-of-type(5) {
  -webkit-transform: rotateZ(calc(30deg * 5));
          transform: rotateZ(calc(30deg * 5));
}

section:nth-of-type(6) {
  -webkit-transform: rotateZ(calc(30deg * 6));
          transform: rotateZ(calc(30deg * 6));
}

section:nth-of-type(7) {
  -webkit-transform: rotateZ(calc(30deg * 7));
          transform: rotateZ(calc(30deg * 7));
}

section:nth-of-type(8) {
  -webkit-transform: rotateZ(calc(30deg * 8));
          transform: rotateZ(calc(30deg * 8));
}

section:nth-of-type(9) {
  -webkit-transform: rotateZ(calc(30deg * 9));
          transform: rotateZ(calc(30deg * 9));
}

section:nth-of-type(10) {
  -webkit-transform: rotateZ(calc(30deg * 10));
          transform: rotateZ(calc(30deg * 10));
}

section:nth-of-type(11) {
  -webkit-transform: rotateZ(calc(30deg * 11));
          transform: rotateZ(calc(30deg * 11));
}

section:nth-of-type(12) {
  -webkit-transform: rotateZ(calc(30deg * 12));
          transform: rotateZ(calc(30deg * 12));
}

@-webkit-keyframes time {
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@keyframes time {
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}
