.feeds-header {
	margin: 20px 0;
	width: 100%;
	display: flex; display: -webkit-flex; 
	flex-flow: column; -webkit-flex-flow: column;
	justify-content: center; -webkit-justify-content: center;
	background: url('../../_img/grids/social-logo.png') no-repeat top center;
}
	.feeds-header .logo {
		margin: auto;
		width: 140px;
		height: 140px;
		border-radius: 75px;
		background-color: #FFF;
		box-shadow: -1px 2px 5px 1px rgba(0, 0, 0, 0.4); 
		display: flex; display: -webkit-flex; 
		flex-flow: row nowrap; -webkit-flex-flow: row nowrap;
		justify-content: space-around; -webkit-justify-content: space-around;	
		overflow: hidden;
	}
	.feeds-header .title {
		margin: 15px auto;
		padding: 0;
		font-size: 18px;
		color: #333333;
		font-weight: bold;
		text-align: center;
		font-family: 'Poppins', sans-serif;
		text-transform: none;
	}

/*

	ITEM > FEEDS (facebook / twitter)

*/
.feeds-item {
	overflow: hidden;
	height: 278px;
	width: 100%;
	margin: 0;
	display: block;
	position: relative;
	cursor: pointer;
}
	.feeds-item.no-picture {
		height: 160px;
	}
	.feeds-item .icon {
		position: absolute;
		z-index: 15;
		top: 15px;
		right: 15px;
	}
	.feeds-item .inside {
		border: 2px solid #e3e3e3;
		background-color: #e3e3e3;
		overflow: hidden;
		position: absolute;
		top: 0px;
		left: 0px;
		height: 278px;
		width: 100%;
		z-index: 12;
		-webkit-box-shadow: 0px 3px 10px 2px rgba(0,0,0,0.26);
		-moz-box-shadow: 0px 3px 10px 2px rgba(0,0,0,0.26);
		box-shadow: 0px 3px 10px 2px rgba(0,0,0,0.26);
		display: flex; display: -webkit-flex; 
		flex-flow: column wrap; -webkit-flex-flow: column wrap;
		justify-content: center; -webkit-justify-content: center;
	}
	.feeds-item.no-picture .inside {
		height: auto;
	}
	.feeds-item.facebook .inside	{
		background-color: #e3e3e3;
	}
	.feeds-item.twitter .inside	{
		background-color: #e3e3e3;
	}
	.feeds-item.instagram .inside {
		background-color: #e3e3e3;
	}

	.feeds-item .user {
		display: none;
		width: 100%;
		padding: 15px 20px;
		z-index: 15;
		color: #333;
		font-size: 20px;
		text-transform: uppercase;
		font-family: 'Bebas Neue', cursive;
		line-height: 0.9;
	}
	.feeds-item .description {
		display: none;
		width: 100%;
		padding: 15px 20px;
		color: #333;
		font-size: 13px;
		line-height: 1.1;
		font-weight: normal;
		z-index: 15;
	    -webkit-transition: all .4s ease-in-out 0s;
	    -moz-transition: all .4s ease-in-out 0s;
	    -ms-transition: all .4s ease-in-out 0s;
	    -o-transition: all .4s ease-in-out 0s;
	    transition: all .4s ease-in-out 0s;
	    overflow: hidden;
	}
		.feeds-item.no-picture .description {
			display: block;
		}
	.feeds-item .date {
		display: none;
		width: 100%;
		padding: 15px 20px;
		color: #333;
		font-size: 13px;
		text-align: right;
		font-weight: 500;
		width: 100%;
		z-index: 15;
		padding-bottom: 10px;
	}
		.feeds-item.no-picture .date {
			display: block;
		}

	.feeds-item .picture-overlay {
		position: absolute;
		bottom: 0px;
		left: 0px;
		right: 0px;
		height: 0px;
		z-index: 13;
		opacity: 1.0;
		background: #e3e3e3;
		transition: all 0.3s ease-in-out;
	}
		.feeds-item.facebook .picture-overlay {
			background-color: #ededed;
		}
		.feeds-item.twitter .picture-overlay	{
			background-color: #ededed;
		}
		.feeds-item.instagram .inside {
			background-color: #ededed;
		}

	.feeds-item:hover .inside {
		border: 2px solid #000;
	}
		.feeds-item.has-picture:hover .user {
			z-index: 19;
			display: block;
		}
		.feeds-item.has-picture:hover .picture-overlay {
			height: 100%;
		}
		.feeds-item.has-picture:hover .date {
			display: block;
		}
		.feeds-item.has-picture:hover .description {
			display: block;
		}
		.feeds-item.has-picture:hover .description.events {
			margin: auto;
		}

	.feeds-item:focus .inside {
		border: 2px solid #000;
	}
		.feeds-item.has-picture:focus .user {
			z-index: 19;
			display: block;
		}
		.feeds-item.has-picture:focus .picture-overlay {
			height: 100%;
		}
		.feeds-item.has-picture:focus .date {
			display: block;
		}
		.feeds-item.has-picture:focus .description {
			display: block;
		}
		.feeds-item.has-picture:focus .description.events {
			margin: auto;
		}		


.grids-col.wfull .feeds-item {
	width: 100%;
}
	.grids-col.wfull .feeds-item .inside {
		width: 100%;
	}

