/*@keyframes animate-hour {
	to {
	    -moz-transform: rotate(30deg);
	    -webkit-transform: rotate(30deg);
	}
}

@keyframes animate-minute-second {
	to {
	    -moz-transform: rotate(6deg);
	    -webkit-transform: rotate(6deg);
	}
}

.rotate-hour {
    animation-name: animate-hour;
    animation-duration: 700ms;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.06,.79,.67,.98);
}

.rotate-minute-second {
    animation-name: animate-minute-second;
    animation-duration: 700ms;
    animation-fill-mode: forwards;
    animation-timing-function: cubic-bezier(.06,.79,.67,.98);
}*/

* {
	margin: 0;
	padding: 0;
}

html {
	width: 100%;
	height: 100%;
}

body {
	width: 100%;
	height: 100%;
}

.content {
	position: relative;
	width: 100%;
	height: 100%;
	background-color: #95a5a6;
}

.rim {
	position: absolute;
	width: 400px;
	height: 400px;
	top: 50%;
	margin-top: -200px;
	left: 50%;
	margin-left: -200px;
	padding: 5px;
	background-color: #ecf0f1;
	border: 10px solid #2c3e50;
	border-radius: 50%;
	z-index: 10;
}

.time-point {
	position: absolute;
	margin-left: -5px;
	left: 50%;
	width: 10px;
	height: 200px;
    -moz-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
    -moz-transform: rotate(30deg);
    -webkit-transform: rotate(30deg);
    z-index: 10;
}

.visible-part {
	width: 10px;
	height: 20px;
	background-color: #2980b9;
	border-radius: 5px;
}

.transparent-part {
	width: 10px;
	height: 180px;
	opacity: 0;
}

.hour {
	position: absolute;
	margin-left: -5px;
	left: 50%;
	width: 10px;
	height: 200px;
    z-index: 10;
    -moz-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
}

.hour .transparent-part {
	height: 100px;
	opacity: 0;
}

.hour .visible-part {
	position: absolute;
	height: 100px;
	background-color: #2c3e50;
    z-index: 11;
}

.minute {
	position: absolute;
	margin-left: -5px;
	left: 50%;
	width: 10px;
	height: 200px;
    z-index: 10;
    -moz-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
}

.minute .transparent-part {
	height: 50px;
	opacity: 0;
}

.minute .visible-part {
	position: absolute;
	height: 150px;
	background-color: #2c3e50;
    z-index: 11;
}

.second {
	position: absolute;
	margin-left: -3px;
	left: 50%;
	width: 6px;
	height: 200px;
    z-index: 10;
    -moz-transform-origin: 50% 100%;
    -webkit-transform-origin: 50% 100%;
}

.second .transparent-part {
	width: 6px;
	height: 40px;
	opacity: 0;
}

.second .visible-part {
	position: absolute;
	width: 6px;
	height: 160px;
	background-color: #e74c3c;
    z-index: 11;
}

.spot {
	position: absolute;
	width: 20px;
	height: 20px;
	margin-top: -10px;
	top: 50%;
	margin-left: -10px;
	left: 50%;
	background-color: #e74c3c;
	border-radius: 50%;
	z-index: 12;
}
