@keyframes spinloader{
	0% 		{transform: rotate(0deg);}
	100% 	{transform: rotate(360deg);}
}
.feed-items{
}

.feed-item{
	margin-bottom: 25px;
}

.feed-title{

}

.feed-date{

}

.feed-content{

}

.feed-loader{
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-top: 40px;
	margin-bottom: 40px;

	width: 50px;
	height: 50px;
	animation spinloader 1s infinite;
	-moz-animation: spinloader 1s infinite;
}

