.clock {
  width: 60px;
  height: 60px;
  margin: 4px auto;
  border-radius: 50%;
  border: 2px solid #333;
  position: relative;
}

.clock .dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #222e5b;
	top: 0px;
	left: 0px;
	right: 0;
	bottom: 0;
	margin: auto;
	position: absolute;
	z-index: 10;
	/* box-shadow: 0 2px 4px -1px black; */
}

.clock .hour-hand {
	position: absolute;
  z-index: 6;
  width: 2px;
  height: 16px;
  background: #333;
  top: 12px;
  transform-origin: 50% 16px;
  left: 50%;
  margin-left: -1px;
  /* border-top-left-radius: 50%; */
  /* border-top-right-radius: 50%; */
}

.clock .minute-hand {
  position: absolute;
  z-index: 5;
  width: 2px;
  height: 22px;
  background: #888;
  top: 6px;
  left: 50%;
  margin-left: -1px;
  transform-origin: 50% 22px;
  /* border-top-left-radius: 80%; */
  /* border-top-right-radius: 50%; */
}

.clock .diallines {
  position: absolute;
  z-index: 2;
  width: 1px;
  height: 6px;
  background: #666;
  left: 50%;
  margin-left: -1px;
  transform-origin: 50% 28px;
  opacity: 0;
}
.clock .diallines:nth-of-type(5n) {
  position: absolute;
  z-index: 2;
  top: 2px;
  width: 2px;
  height: 2px;
  background: #666;
  left: 50%;
  margin-left: -1px;
  transform-origin: 50% 26px;
  opacity: 0.75;
}

@media screen and (max-width: 767px) {
	.clock {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
	}
	
	.clock .dot {
    width: 3px;
    height: 3px;
    left: -0.3px;
	}
	
	.clock .hour-hand {
    width: 1px;
    height: 8px;
    top: 11px;
    transform-origin: 50% 8px;
    left: 19.5px;
	}
	
	.clock .minute-hand {
    width: 1px;
    height: 12px;
    top: 7px;
    transform-origin: 50% 12px;
    left: 19.5px;
	}
	
	.clock .diallines:nth-of-type(5n) {
    transform-origin: 50% 17px;
	}
}

/*
.clock .second-hand {
  position: absolute;
  z-index: 7;
  width: 2px;
  height: 120px;
  background: gold;
  top: 26px;
  lefT: 50%;
  margin-left: -1px;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  transform-origin: 50% 125px;
}
*/
/*
span {
  display: inline-block;
  position: absolute;
  color: #333;
  font-size: 22px;
  font-family: 'Poiret One';
  font-weight: 700;
  z-index: 4;
}
*/
/*
.h12 {
  top: 30px;
  left: 50%;
  margin-left: -9px;
}
.h3 {
  top: 140px;
  right: 30px;
}
.h6 {
  bottom: 30px;
  left: 50%;
  margin-left: -5px;
}
.h9 {
  left: 32px;
  top: 140px;
}
*/

/*
.clock .info {
  position: absolute;
  width: 120px;
  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: -60px;
  left: 50%;
}
.clock .date {
    top: 80px;
  }
.clock .day {
    top: 200px;
}
*/