* {
	padding: 0;
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

html, body {
	font-family: sans-serif;
	background: #E5E5E5;
}

@font-face {
    font-family: sheldon;
    src: url("../font/sheldon.ttf");
}

.label {
	background: #A5D3F5;
	width: 100%;
	padding: 5pt;
	margin: 3pt 0 3pt 0;
	border-radius: 3pt;
	border: 1pt solid #66B3D7;
	color: #333333;
	font-weight: bold;
	font-size: 11pt;
}

.nofloat {
	float: none !important;
}

.wrapper {
	background: #FFF;
	margin: 0 auto 0;
	width: 90%;
	overflow: hidden;
	box-shadow: 0 1pt 20pt #000;
}

.wrapper hr {
	border: 3pt solid #E2E2E2;
}

.taskWrapper {
	float: left;
	width: 100%;
}

.title {
	float: left;
	background: #019CD5;
	padding: 10pt;
	width: 100%;
	text-align: center;
	white-space: nowrap; 
	overflow: hidden;
	text-overflow: ellipsis;
}

.title h1 {
	font-family: sheldon;
	text-transform: uppercase;
	color: #EEEEEE;
	text-shadow: 1pt 1pt 1pt #131313;
	font-size: 22pt;
	white-space: nowrap; 
	overflow: hidden;
	text-overflow: ellipsis;
}

.title h3, h4 {
	text-transform: uppercase;
	color: #EEEEEE;
	text-shadow: 1pt 1pt 1pt #131313;
	white-space: nowrap; 
	overflow: hidden;
	text-overflow: ellipsis;
}

.list {
	float: right;
	padding: 3pt;
	width: 34pt;
	height: 30pt;
	text-shadow: none;
	border-radius: 2pt;
}

.list img {
	width: 100%;
	height: 100%;
}

.list:hover {
	cursor: pointer;
	background: rgba(0, 0, 0, 0.5);
}

.logout {
	float: left;
	padding: 3pt;
	width: 34pt;
	height: 30pt;
	text-shadow: none;
	border-radius: 2pt;
	border: none;
}

.logout img {
	width: 100%;
	height: 100%;
	border: none;
}

.logout:hover {
	cursor: pointer;
	background: rgba(0, 0, 0, 0.5);
}

.todo {
	float: left;
	width: 100%;
	height: 40pt;
	background: #FFF;
}

.todo p {
	float: left;
	width: 50%;
	text-transform: uppercase;
	font-size: 20pt;
	color: #222222;
	line-height: 40pt;
	padding-left: 8pt;
	font-weight: bold;
	white-space: nowrap; 
	overflow: hidden;
	text-overflow: ellipsis;
}

.delete {
	float: right;
	height: 40pt;
	width: 40pt;
}

.delete img {
	display: block;
	margin: 11pt auto 0;
}

.delete:hover {
	background: #F0F2F2;
	cursor: pointer;
}

.complete {
	float: right;
	height: 40pt;
	width: 40pt;
}

.complete img {
	display: block;
	margin: 11pt auto 0;
}

.complete:hover {
	background: #F0F2F2;
	cursor: pointer;
}

.moreInfo {
	float: right;
	height: 40pt;
	width: 40pt;
}

.moreInfo img {
	display: block;
	margin: 11pt auto 0;
}

.moreInfo:hover {
	background: #F0F2F2;
	cursor: pointer;
}

.status {
	float: left;
	width: 10pt;
	height: 40pt;
	background: #6666FF;
}

.green {
	background: #33AA33 !important;
}

.orange {
	background: #FFA300 !important;
}

.red {
	background: #FF3333 !important;
}

.insertForm {
	float: left;
	width: 100%;
	padding: 10pt;
	background: #353535;
}

.insertForm select {
	width: 100%;
	height: 25pt;
	padding: 0 2pt 0 2pt;
	border-radius: 3pt;
	background: linear-gradient(to bottom, #FFF, #DDD);
	margin-bottom: 5pt;
	font-weight: bold;
	font-size: 12pt;
	border: 1pt solid #BBB;
	line-height: 25pt;
	outline: none;

	appearance: none;
    -webkit-appearance: none;
}

.insertForm input {
	width: 100%;
	height: 25pt;
	padding: 4pt 5pt 4pt 5pt;
	border-radius: 3pt;
	background: linear-gradient(to bottom, #FFF, #DDD);
	margin-bottom: 3pt;
	font-weight: bold;
	font-size: 12pt;
	border: 1pt solid #BBB;
	line-height: 17pt;
	outline: none;
}

.insertForm textarea {
	width: 100%;
	height: 100pt;
	padding: 4pt 5pt 4pt 5pt;
	border-radius: 3pt;
	background: linear-gradient(to bottom, #FFF, #DDD);
	margin-bottom: 3pt;
	font-family: sans-serif;
	font-weight: bold;
	font-size: 12pt;
	border: 1pt solid #BBB;
	line-height: 17pt;
	outline: none;
	resize: none;
}

.insertForm input[type="date"] {
	width: 100%;
	height: 25pt;
	padding: 0 2pt 0 2pt;
	border-radius: 3pt;
	background: linear-gradient(to bottom, #FFF, #DDD);
	margin-bottom: 5pt;
	font-family: sans-serif;
	font-weight: bold;
	font-size: 12pt;
	border: 1pt solid #BBB;
	line-height: 25pt;
	outline: none;

	appearance: none;
    -webkit-appearance: none;
}

.insertForm input[type="submit"] {
	margin-top: 5pt;
}

.insertForm input[type="submit"]:hover {
	cursor: pointer;
	background: linear-gradient(to top, #FFF, #DDD);
}

.formError {
	background: #FF5555;
	width: 100%;
	padding: 5pt;
	margin: 3pt 0 5pt 0;
	border-radius: 3pt;
	border: 1pt solid #FF2222;
	color: #FFF;
	font-weight: bold;
	font-size: 11pt;
	/*min-height: 23pt;*/
}

.formSuccess {
	background: #44CC44;
	width: 100%;
	padding: 5pt;
	margin: 3pt 0 5pt 0;
	border-radius: 3pt;
	border: 1pt solid #00AA00;
	color: #FFF;
	font-weight: bold;
	font-size: 11pt;
	/*min-height: 23pt;*/
}

.dimmer {
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.8);
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 9999;
	visibility: hidden;
}

.subTitle {
	margin: 5% auto 0;
	background: #B8CFD4;
	padding: 10pt;
	width: 90%;
	text-align: center;

	text-transform: uppercase;
	color: #444444;
	text-shadow: 2pt 2pt 2pt #FFF;
	font-size: 25pt;
	line-height: 25pt;
	white-space: nowrap; 
	overflow: hidden;
	text-overflow: ellipsis;
}

.description {
	background: #FFF;
	margin: 0 auto 5%;
	padding: 10pt;
	width: 90%;
	max-height: 70%;
	overflow-y: scroll;
	overflow-x: hidden;
}

.close {
	float: right;
	font-size: 30pt;
	width: 25pt;
	height: 25pt;
	text-shadow: none;
}

.close:hover {
	cursor: pointer;
	background: rgba(255, 255, 255, 0.5);
}

.message {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	height: 45pt;
	font-size: 15pt;
	line-height: 45pt;
	text-align: center;
	color: #FFF;
	background: rgba(35, 114, 184, .9);
	border-bottom: 2pt solid #FFF;
	overflow: hidden;
}

/* ############################################
			Login & Register Page
############################################ */

.loginWrapper {
	width: 300pt;
	margin: 8% auto 0;
	background: #FFF;
	box-shadow: 1pt 1pt 20pt #000;
}

.loginForm {
	width: 100%;
	padding: 10pt;
}

.loginForm input {
	background: #F7F7F7;
	width: 100%;
	padding: 5pt;
	margin: 3pt 0 3pt 0;
	border-radius: 3pt;
	border: 1pt solid #E3E3E3;
	color: #333333;
	font-size: 11pt;
	outline: none;
}

.loginForm input[type="submit"] {
	background: #F7F7F7;
	width: 100%;
	padding: 5pt;
	margin: 10pt 0 3pt 0;
	border-radius: 3pt;
	border: 1pt solid #E3E3E3;
	color: #333333;
	font-size: 11pt;
	transition: background .1s;
}

.loginForm input[type="submit"]:hover {
	cursor: pointer;
	background: #F2F2F2;
	transition: background .1s;
}

.loginForm input[type="submit"]:disabled {
	background: #EEEEEE;
}

.miniMsg p {
	width: 100%;
	text-align: center;
	margin-top: 5pt;
	font-size: 9pt;
}

.miniMsg a {
	color: #4444FF;
}

/* ##################################
			Settings
################################## */

.settings {
	float: left;
	width: 100%;
	height: 25pt;
	line-height: 25pt;
	font-size: 13pt;
	color: #FFF;
	padding: 0 0 0 10pt;
	background: #4A4A4A;
	border-bottom: 1pt solid #FFF;
	overflow: hidden;
}

.settings span {
	float: right;
	padding: 0 10pt 0 10pt;
}

.settings span:hover {
	cursor: pointer;
	background: rgba(0, 0, 0, .5);
}

.settingsForm {
	float: left;
	width: 100%;
	padding: 10pt;
	background: #353535;
	border-bottom: 1pt solid #FFF;
}

.settingsForm input {
	width: 100%;
	height: 25pt;
	padding: 4pt 5pt 4pt 5pt;
	border-radius: 3pt;
	background: linear-gradient(to bottom, #FFF, #DDD);
	margin-bottom: 3pt;
	font-weight: bold;
	font-size: 12pt;
	border: 1pt solid #BBB;
	line-height: 17pt;
	outline: none;

}

.settingsForm input[type="submit"] {
	margin-top: 5pt;
}

.settingsForm input[type="submit"]:hover {
	cursor: pointer;
	background: linear-gradient(to top, #FFF, #DDD);
}

.show-mobile-setting {
	float: right;
}

.show-mobile {
	display: none !important;
}

@media (max-width: 980px)
{
	.wrapper {
		width: 100%;
	}
}

@media (max-width: 640px)
{
	.todo p {
		font-size: 12pt;
		width: 45%;
	}

	.subTitle {
		font-size: 12pt;
	}

	.loginWrapper {
		width: 100%;
	}

	.hide-mobile {
		display: none !important;
	}

	.show-mobile {
		display: inline !important;
	}

	.message {
		font-size: 10pt;
	}
}