@import url(http://fonts.googleapis.com/css?family=Open+Sans);
/* apply a natural box layout model to all elements, but allowing components to change */

.activity-feed {
	padding: 15px;
	text-align: left;
	list-style: none;
	background: #f7f7f7;
	display: inline-block;
	border-radius: 5px;
	padding: 25px;
	color: #5b5b5b;
	font-weight: 400;
	width: 350px;
	max-width: 350px;
	margin-top: 50px;
	max-height: 450px;
	overflow-y: auto;
}
.activity-feed .feed-item {
	position: relative;
	padding-bottom: 20px;
	padding-left: 30px;
	border-left: 2px solid #e4e8eb;
}
.activity-feed .feed-item:last-child {
	border-color: transparent;
}
.activity-feed .feed-item:after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: -7px;
	background: transparent;
	border: 2px solid transparent;
}
.activity-feed .feed-item .date {
	position: relative;
	top: -5px;
	color: #8c96a3;
	font-size: 13px;
	display: block;
	font-weight: 500;
	display: inline-block;
}
.activity-feed .feed-item .text {
	position: relative;
	top: -5px;
	right: 10.25px;
	font-size: 14.5px;
}

.activity-feed .feed-item img {
	height: 16px;
	width: 16px;
	display: inline-block;
	border-radius: 100%;
	box-shadow: 0px 0px 0px 1.5px #8c96a3;
	margin-right: 6px;
	margin-left: -39px;
	margin-top: -2px;
	cursor: help;
}

.activity-feed .activity-title {
	margin-top: -2px;
	margin-bottom: 40px;
	font-size: 22px;
	font-weight: 400;
	display: block;
	display: inline-block;
	margin-right: 5px;
}