*,
*::before,
*::after {
	box-sizing: border-box;
}
.clearfix::after {
	display: block;
	clear: both;
	content: "";
}
body {
	background: url('../images/bg2.jpg');
	font-family: 'Roboto', sans-serif;
}
.custom-hr {
	border-color: #000;
	border-width: 2px;
}
.form-group {
	margin-bottom: 10px;
}
.form-group.has-error input, .form-group.has-error textarea {
	border-color: #f00;
}
.img-responsive {
	max-width: 100%;
	height: auto;
}
.form-container {
	padding: 20px;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}
.form-box {
	background: url('../images/paper.png') repeat-y;
	margin-top: 15px;
	padding: 0 15px 0 50px;
}
.form-box #form-add-task {
	max-width: 500px;
	margin: 0 auto;
	padding: 10px 0;
}
#form-add-task h2 {
	margin: 10px 0 20px;
}
.form-box .text-input {
	display: block;
	width: 100%;
	padding: 0.375rem 0.75rem;
	font-weight: 400;
	line-height: 1.5;
	color: #495057;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #ced4da;
	border-radius: 0.25rem;
	transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.list-container {
	text-align: center;
}
.list-box {
	position: relative;
	background: url('../images/note.png') no-repeat;
	width: 249px;
	height: 327px;
	display: inline-block;
	vertical-align: top;
	margin: 15px;
	padding: 50px 20px 15px;
	text-align: left;
}
.list-box .content-box {
	overflow: auto;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-height: 260px;
}
.list-box h3.task-name {
	margin: 5px 0 0;
}
.list-box .task-date {
	margin: 0 0 5px;
	font-size: 11px;
	color: #444;
}
.list-box .task-content {
	margin: 5px 0;
	font-size: 13px;
	white-space: pre;
}
.list-box .remove-list {
	position: absolute;
	right: -5px;
	top: -5px;
	background: #000;
	color: #eee;
	padding: 3px 9px 6px;
	border-radius: 50%;
	text-decoration: none;
}


@media (min-width: 768px) {
	.form-box {
		padding: 0 20px;
	}
}
