body section.goals h1 {
	margin-bottom: 20px;
}

goal {
	display: block;
	margin-bottom: 20px;
	background: rgba(255,255,255,0.5);
	border-radius: 5px;
	overflow: hidden;
	padding: 20px;
	box-shadow: 0px 0px 3px 0px rgba(0,0,0,0.1);
	width: calc(50% - 10px);
	float: left;
	box-sizing: border-box;
}

goal:nth-child(2n) {
	margin-left:20px;
}

goal-head {
	display: block;
	position: relative;

}

goal-description {
	display: block;
	margin-top: 5px;
	width: 100%;
	font-size: 12px;
	line-height: 1.3;
	color: #999;
	height:12px;
	font-style: italic;
}

goal-name {
	display: block;
	font-size:20px;
	color: #666;
	text-transform: uppercase;
	margin-bottom: 5px;
}

goal-date {
	display: block;
	font-size: 12px;
	color: #999;
	margin-bottom: 10px;
}

goal-progress {
	display: block;
	color: #0b97cc;
	font-size: 30px;
	position:absolute;
	right: 0px;
	top: 0px;
}

goal-progress em {
	font-size: 16px;
	font-style: normal;
	opacity: 0.7;
	padding-left: 3px;
}

goal.complete goal-progress, goal-name strong {
	color: #0bcc46;
}

section.tutorial-content goal goal-description p{
	display: block;
	font-size: 12px;
	line-height: 1.3;
	max-width: 50%;
	color: #666;

}

line-graph {
	display: block;
	width: 100%;
	height: 100px;
	background: #EEE;
	margin-top: 20px;
}

@media only screen and (min-width: 0px) and (max-width: 800px) {
	goal-progress {
		position: static;
		margin-bottom: 20px;
	}

	line-graph {
		height: 50px;
	}

	section.tutorial-content goal goal-description p {
		max-width: 100%;
	} 

	goal {
		width: 100%;
		float: none;
	}

	goal:nth-child(2n) {
		margin-left:0px;
	}

	goal-description {
		height: auto;
	}
}