.clock-wraper {
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 280px;
  width: 300px;
}
.clock-wraper .clock {
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(./w.png);
  background-size: cover;
  border: 16px solid rgba(128, 128, 128, 0.5);
  border-radius: 50%;
  box-shadow: 0 -15px 15px rgba(255, 255, 255, 0.05),
    inset 0 -15px 15px rgba(255, 255, 255, 0.05), 0 15px 15px rgba(0, 0, 0, 0.3),
    inset 0 15px 15px rgba(0, 0, 0, 0.3);
}
.clock-wraper .clock:before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background: #f0f0f0;
  border-radius: 50%;
  z-index: 4;
  box-shadow: 0 -5px 5px rgba(255, 255, 255, 0.05),
    inset 0 -5px 5px rgba(255, 255, 255, 0.05), 0 5px 5px rgba(0, 0, 0, 0.3),
    inset 0 5px 5px rgba(0, 0, 0, 0.3);
}
.clock-wraper .clock .hour,
.clock-wraper .clock .min,
.clock-wraper .clock .sec {
  position: absolute;
}
.clock-wraper .clock .hour,
.clock-wraper .hr {
  width: 160px;
  height: 160px;
}
.clock-wraper .clock .min,
.clock-wraper .mn {
  width: 190px;
  height: 190px;
}
.clock-wraper .clock .sec,
.clock-wraper .sc {
  width: 230px;
  height: 230px;
}
.clock-wraper .hr,
.clock-wraper .mn,
.clock-wraper .sc {
  display: flex;
  justify-content: center;
  /*align-items: center;*/
  position: absolute;
  border-radius: 50%;
}
.clock-wraper .hr:before {
  content: "";
  position: absolute;
  width: 8px;
  height: 80px;
  background: rgba(128, 128, 128, 0.9);

  z-index: 1;
  border-radius: 6px 6px 0 0;
}
.clock-wraper .mn:before {
  content: "";
  position: absolute;
  width: 4px;
  height: 90px;
  background: rgba(128, 128, 128, 0.9);

  z-index: 2;
  border-radius: 6px 6px 0 0;
}
.clock-wraper .sc:before {
  content: "";
  position: absolute;
  width: 2px;
  height: 150px;
  background: rgba(128, 128, 128, 0.9);

  z-index: 3;
  border-radius: 6px 6px 0 0;
}
