.clock_label {
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: medium;
  }
  .analog_clock {
    width: 160px;
    height: 160px;
    margin: 8% auto 0;
    border-radius: 50%;
    border: 8px solid #999;
    position: relative;
  }
  
  .analog_clock .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    z-index: 10;
    box-shadow: 0 2px 4px -1px black;
  }
  
  .analog_clock .hour-hand {
    position: absolute;
    z-index: 5;
    width: 6px;
    height: 30px;
    background: #000;
    top: 50px;
    transform-origin: 50% 25px;
    left: 50%;
    margin-left: -2px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
  }
  
  .analog_clock .minute-hand {
    position: absolute;
    z-index: 6;
    width: 4px;
    height: 50px;
    background: #000;
    top: 30px;
    left: 50%;
    margin-left: -2px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    transform-origin: 50% 42px;
  }
  
  .analog_clock .second-hand {
    position: absolute;
    z-index: 7;
    width: 2px;
    height: 60px;
    background: #e53935;
    top: 12px;
    lefT: 50%;
    margin-left: -1px;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    transform-origin: 50% 58px;
  }
  
  .analog_clock span {
    display: inline-block;
    position: absolute;
    color: #000;
    font-size: 22px;
    font-family: 'Poiret One';
    font-weight: 700;
    z-index: 4;
  }
  
  .analog_clock .h_12 {
    top: 22px;
    left: 50%;
    margin-left: -9px;
  }
  .analog_clock .h_3 {
    top: 60px;
    right: 28px;
  }
  .analog_clock .h_6 {
    bottom: 26px;
    left: 50%;
    margin-left: -5px;
  }
  .analog_clock .h_9 {
    left: 28px;
    top: 60px;
  }
  
  .analog_clock .diallines {
    position: absolute;
    z-index: 2;
    width: 2px;
    height: 15px;
    background: #e53935;
    left: 50%;
    margin-left: -1px;
    transform-origin: 50% 70px;
  }
  .analog_clock .diallines:nth-of-type(5n) {
    position: absolute;
    z-index: 2;
    width: 4px;
    height: 20px;
    background: #999;
    left: 50%;
    margin-left: -1px;
    transform-origin: 50% 70px;
  }
  
  .analog_clock .info {
    position: absolute;
    width: 100px;
    height: 20px;
    border-radius: 7px;
    background: #ccc;
    text-align: center;
    line-height: 20px;
    color: #000;
    font-size: 11px;
    top: 200px;
    left: 50%;
    margin-left: -60px;
    font-family: "Poiret One";
    font-weight: 700;
    z-index: 3;
    letter-spacing: 3px;
    margin-left: -45px;
    left: 50%;
  }
  .analog_clock .date {
      top: -50px;
	 
    }
    .analog_clock .time {
      top: -28px;
	   display:none;
	  
  }