/*	ITEM 	*/
.albums-item {
	display: block;
	width: 90%;
	margin: 0 auto 40px;
	overflow: hidden;
	position: relative;
	border-radius: 5px;
}
	.albums-item.albums-folder {
	    background: url('../png/albums-folder.png') no-repeat top center;
	    padding-top: 22px;
	}

	.albums-item .picture-wrapper, .album-wrapper .picture-wrapper {
		background: #FFF;
		padding: 5px;
		border-radius: 5px;
	}
		.albums-item .picture-wrapper.no-border {
			border: none;
		}

	.albums-item .picture, .album-wrapper .picture {
		margin: auto;
		margin-left: 0px;
		height: 185px;
		width: 100%;
		overflow: hidden;
		position: relative;
		z-index: 5;
		border-radius: 3px;
	}
		.albums-item.instagram .picture {
			height: 250px;
		}
		.albums-item .picture img {
			height: auto;
			width: 105%;
		}
		.album-wrapper .picture {
			height: 480px;
		}


/*	VIEW 	*/
.album-wrapper.from-gallery {
	width: 96%;
	margin: 35px auto 0;
	display: block;
}
	.album-wrapper.from-gallery .embed {
		border: 5px solid #FFF;
		border-radius: 5px;
		background: #000;
	}

/*	ITEM & VIEW > commun 	*/
.album-description {
	margin: 0;
	min-height: 70px;
	width: 100%;
	text-align: left;
	line-height: 1.1;
	position: relative;
	z-index: 5;
}
	.album-description .date {
		font-family: 'Trade Regular';
		font-size: 10px;
		padding: 5px;
		text-align: left;
		color: #FFF;
	}
	.album-description .from {
		font-family: 'Trade Bold';
		font-size: 12px;
		padding: 2px 5px;
		text-align: left;
		text-transform: uppercase;
	}
		.album-description .from.blue {
			color: #009de2;
		}
		.album-description .from.green {
			color: #009de2;
		}
	.album-description .title {
		font-family: 'Trade Hv';
		line-height: 1.0;
		font-size: 14px;
		color: #FFF;
		height: 45px;
		padding: 0 5px;
		text-transform: uppercase;
		display: flex; display: -webkit-flex; 
		flex-flow: row wrap; -webkit-flex-flow: row wrap;
	}
		.album-description .title .inside {
			margin: 0 0 auto;
		}
	.album-description .intro {
		padding: 10px 5px;
		font-size: 13px;
		color: #FFF;
	}
		.album-description .intro img { /* emoji */
			width: 14px;
			height: 14px;
			margin: 0 4px;
		}


/*	COMPORTEMENTS 	*/
.albums-item:hover {
	text-decoration: none;
}
