#aa_cc .clock {
	position: relative;
	width: 100px;
	height: 100px;
	overflow: hidden;
	margin: 0 auto;
	border-radius: 250px;
	border: 1px solid #20538c;
	background-color: #ffffff;
}

#aa_cc .clock:after {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

#aa_cc .clock:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 7px;
	height: 7px;
	background-color: #cdd0d7;
	border-radius: 50%;
	z-index: 2;
}

#aa_cc .hand {
	position: absolute;
	top: 0px;
	left: 0;
	width: 100%;
	height: 100%;
}

#aa_cc .hand div {
	position: absolute;
	bottom: 50%;
	left: 50%;
	transform: translateX(-50%);
}

#aa_cc .sec {
	width: 1px;
	height: 40%;
	background: #cdd0d7;
}

#aa_cc .min {
	height: 38%;
	width: 2px;
	border-radius: 2px;
	background: #20538c;
}

#aa_cc .hour {
	height: 30%;
	width: 3px;
	border-radius: 4px;
	background: #20538c;
}

#aa_cc .num {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	text-align: center;
	font-size: 12px;
	font-weight: 700;
	padding: 3px;
	color: #20538c;
	font-family: sans-serif;
}

#aa_cc .num6 div {
	transform: rotate(-180deg);
}

#aa_cc .num6 {
	transform: rotate(180deg);
}

#aa_cc .num3 {
	transform: rotate(90deg);
}

#aa_cc .num9 {
	transform: rotate(270deg);
}

#aa_cc .num9 div {
	transform: rotate(-270deg);
}

#aa_cc .num3 div {
	transform: rotate(-90deg);
}