/*----vars---*/
/*----vars---*/
body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: #e2e2e2;
}

.clock {
  border-radius: 100%;
  background: #ffffff;
  font-family: "Montserrat";
  border: 25px solid white;
  box-shadow: inset 2px 3px 8px 0 rgba(0, 0, 0, 0.1);
}

.wrap {
  overflow: hidden;
  position: relative;
  width: 350px;
  height: 350px;
  border-radius: 100%;
}

.second, .minute, .hour {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 1;
  transform-origin: bottom center;
}

.minute,
.hour {
  height: 100px;
  width: 6px;
  margin: auto;
  top: -28%;
  background: black;
  transform: rotate(0deg);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
}

.second {
  height: 90px;
  width: 2px;
  margin: auto;
  top: -25%;
  border-radius: 4px;
  background: #FF4B3E;
  transform: rotate(180deg);
}

.minute {
  height: 130px;
  width: 4px;
  top: -38%;
  transform: rotate(90deg);
}

.num:before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  border-radius: 100%;
  right: -7.5px;
}

.num {
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  bottom: 175px;
  right: 0;
  -webkit-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  width: 10px;
  height: 175px;
}
.num:nth-child(1) {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.num:nth-child(1):before {
  background-color: #eba414;
}
.num:nth-child(2) {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}
.num:nth-child(2):before {
  background-color: #e1e048;
}
.num:nth-child(3) {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}
.num:nth-child(3):before {
  background-color: #d32c08;
}
.num:nth-child(4) {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.num:nth-child(4):before {
  background-color: #214625;
}
.num:nth-child(5) {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg);
}
.num:nth-child(5):before {
  background-color: #c685a3;
}
.num:nth-child(6) {
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg);
}
.num:nth-child(6):before {
  background-color: #e7eec4;
}
.num:nth-child(7) {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.num:nth-child(7):before {
  background-color: #c5e3e1;
}
.num:nth-child(8) {
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg);
}
.num:nth-child(8):before {
  background-color: #efe512;
}
.num:nth-child(9) {
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg);
}
.num:nth-child(9):before {
  background-color: #302550;
}
.num:nth-child(10) {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.num:nth-child(10):before {
  background-color: #cac4de;
}
.num:nth-child(11) {
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg);
}
.num:nth-child(11):before {
  background-color: #93a01c;
}
.num:nth-child(12) {
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg);
}
.num:nth-child(12):before {
  background-color: #38bbf3;
}