
#clock{
    position: relative;
    margin: 5px auto;
    height: 350px;
    width: 350px;
    border: 10px solid #000 ;
    background-color: #FFF;
    box-shadow: 1px 1px 10px 0px #999 inset, -1px -1px 10px 0px #999 inset ;
    border-radius: 50%;
  }
  
  #clock:after{
    content: '';
    position: absolute;
    font-weight: bold;
    text-align: center;
    color: #000;
    background-color: transparent;
    width: 100px;
    display: inline-block;
    right: calc(50% - 50px);
    bottom: 32%;
    z-index: 1;
  }
  
  #clock > .sep{
    position: absolute;
    background-color: transparent;
    width: 20px;
    top: 0;
    right: calc(50% - 10px);
    height: 100%;
    z-index: 1;
  }
  
  #clock > .sep:after{
    content: "";
    position: absolute;
    display: block;
    height: 8px;
    width: 1px;
    background-color: #333;
    top: 0;
    right: 50%;
    margin-right: - 0.5px;
  }
  
  #clock .clock-num{
    position: absolute;
    top: 15px;
    width: 20px;
    height: calc(50% - 15px);
    right: calc(50% - 10px);
    transform-origin: bottom center;
    font-size: 35px;
    z-index: 5;
    text-align: left
  }
  
  #clock .clock-num:after{
    content: "";
    position: absolute;
    height: 18px;
    width: 3px;
    background-color: #111;
    top: -18px;
    right: calc(50% - 1.5px);
    border-radius: 20px;
    display: block;
  }
  
  #clock .clock-num span{position: absolute !important; }
  
  #Arm1{  
    position: absolute;
    top: 16%;
    height: 34%;
    width:2px;
    right: calc(50% - 1px);
    transform-origin: bottom center;
    background-color: red;
    z-index: 3;
  }
  
  #Arm1:after{
    content: "";
    height: 26px;
    width: 4px;
    position: absolute;
    background-color: red;
    bottom: -25px;
    z-index: 20;
  }
  
  #Arm2{  
    position: absolute;
    top: 18%;
    height: 32%;
    width: 4px;
    right: calc(50% - 2px);
    transform-origin: bottom center;
    background-color: #222;
    z-index: 2;
  }
  
  #Arm2:after{
    content: "";
    height: 15px;
    width: 4px;
    position: absolute;
    background-color: #222;
    bottom: -18px;
    z-index: 20;
  }
  
  #Arm3{  
    position: absolute;
    top: 23%;
    height: 27%;
    width: 6px;
    right: calc(50% - 3px);
    transform-origin: bottom center;
    background-color: #111;
    z-index: 1;
  }
  
  #Arm3:after{
    content: "";
    height: 15px;
    width: 4px;
    position: absolute;
    background-color: #111;
    bottom: -18px;
    z-index: 20;
  }
  
  
  #center{
    position: absolute;
    height: 12px;
    width: 12px;
    top: calc(50% - 5px);
    right: calc(50% - 6px);
    background-color: red;
    border-radius: 50%;
    z-index: 5;
  }
  
  
  #clock .clock-num span {
    display:none;
/*     position: absolute !important;
    font-size: 15px;
    text-align: center;
    align-self: center;
    justify-self: center;
    display: block;
    width: 20px;
    height: 20px;
    line-height: 14px; */
}