body {
	background-color: rgba(17,17,17,1);
}

/* (A) FONT */
#ctime,
#tpick {
	font-family: Impact, sans-serif;
}
.header {
	text-align: center;
	font-weight: normal;
	margin: 5px 0 10px 0;
}

/* (B) CURRENT TIME */
#ctime {
	margin: 0 auto;
	max-width: 350px;
	padding: 10px;
	background: #000;
	text-align: center;
	/*background: rgb(76,76,76); /* Old browsers */
	background: -moz-radial-gradient(center, ellipse cover, rgba(76,76,76,1) 0%, rgba(89,89,89,1) 0%, rgba(17,17,17,1) 100%); /* FF3.6+ */
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(76,76,76,1)), color-stop(0%,rgba(89,89,89,1)), color-stop(100%,rgba(17,17,17,1))); /* Chrome,Safari4+ */
	background: -webkit-radial-gradient(center, ellipse cover, rgba(76,76,76,1) 0%,rgba(89,89,89,1) 0%,rgba(17,17,17,1) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-radial-gradient(center, ellipse cover, rgba(76,76,76,1) 0%,rgba(89,89,89,1) 0%,rgba(17,17,17,1) 100%); /* Opera 12+ */
	background: -ms-radial-gradient(center, ellipse cover, rgba(76,76,76,1) 0%,rgba(89,89,89,1) 0%,rgba(17,17,17,1) 100%); /* IE10+ */
	background: radial-gradient(ellipse at center, rgba(76,76,76,1) 0%,rgba(89,89,89,1) 0%,rgba(17,17,17,1) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4c4c4c', endColorstr='#111111',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
#ctime .header {
	color: #b872f1;
}
#ctime .square {
	display: inline-block;
	padding: 10px;
	margin: 5px;
}
#ctime .digits {
	font-size: 24px;
	background: #fff;
	color: #000;
	padding: 20px 10px;
	border-radius: 5px;
}
#ctime .text {
	margin-top: 10px;
	color: #ddd;
}

/* (C) TIME PICKER */
#tpick {
	margin: 0 auto;
	max-width: 350px;
	padding: 10px;
	background: #f2f2f2;
	white-space: nowrap;
}
#tpick-h,
#tpick-m,
#tpick-s {
	display: inline-block;
	width: 32%;
}
#tpick select {
	box-sizing: padding-box;
	width: 100%;
	font-size: 1.2em;
	font-weight: bold;
	margin: 20px 0;
}
#tset,
#treset {
	box-sizing: padding-box;
	width: 50%;
	background: #3368b2;
	color: #fff;
	padding: 10px;
	border: 0;
	cursor: pointer;
}
#tset:disabled,
#treset:disabled {
	background: #aaa;
	color: #888;
}


/* Side Menu */
.sidebar {
	height: 100%;
	width: 100px;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: rgba(255, 255, 255, 0.5);
	overflow-x: hidden;
	padding-top: 20px;
	align-items: center;
	text-align: center;
}

.menu-button {
	flex-direction: column;
	display: inline-flex;
	margin: 25px 25px;
	background: none;
	border: none;
}

.image-size {
	width: 50px;
	height: 50px;
	font-size: 50px;
	text-align: center;
	vertical-align: middle;
	color: black !important;
}

.image-size:hover {
	color: #36373b !important;
}

.image-selected {
	color: #1a66da !important;
}

.image-selected:hover {
	color: #17529e !important;
}

.button-wrapper {
	width: 250px;
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
}

.button {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: 2px solid white;
	background-color: black;
	color: white;
	cursor: pointer;
}

.button:hover {
	background-color: white;
	color: black;
}
