.content { /* default icon view */

	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-content: flex-start;
	
	box-sizing: border-box;

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	
	overflow: auto;
}

.content.list { /* List view */
	flex-direction: column;
	#background-color: white !important;
	padding: 0px;
}

.content.transparent {
	border: 0px;
	background-color: transparent;
	box-shadow: none;
}

.content > .item {
	box-sizing: border-box;
	position: relative;
	width: 300px;
	height: 200px;
	margin: 2px;
	background-color: white;
	cursor: pointer;
	flex-grow: 1;
	background-color: rgba(220, 220, 255, 1);
	box-shadow: inset 1px 1px 1px rgba(0, 0, 0, 0.2);
	
	border-top: 1px rgba(0, 0, 0, 0.1);
	border-left: 1px rgba(0, 0, 0, 0.1);
	border-right: 1px rgba(255, 255, 255, 0.8) solid;
	border-bottom: 1px rgba(255, 255, 255, 0.8) solid;
	border-radius: 2px;
}

.content.small > .item {
	width: 150px;
	height: 150px;
}

.content.list > .item {
	margin: 0px 0px 2px 0px;
	width: 100%;
	height: 28px;
	border-radius: 1px;
	#background-color: rgba(220, 240, 255, 0.9);
}

.content.list > .item:last-child {
	#margin-bottom: 0px;
}

.content > .item:hover {
	border-top: 1px rgba(0, 0, 0, 0.1);
	border-left: 1px rgba(0, 0, 0, 0.1);
	border-right: 1px rgba(255, 255, 255, 0.8) solid;
	border-bottom: 1px rgba(255, 255, 255, 0.8) solid;
}

.content > .item.selected {
	background-image: url('images/streaks.png') !important;
}

.content > .item > .pictogram {
	
	# filter: blur(1px); */
	# -webkit-filter: blur(1px);
	# -moz-filter: blur(1px);
	# -o-filter: blur(1px);
	# -ms-filter: blur(1px);
	overflow: hidden;

	position: absolute;
	left: 0px;
	top: 0px;
	bottom: 0px;
	right: 0px;
	margin: auto;
	background-position: 50% 50%;
	background-size: cover;
	background-repeat: no-repeat;
	opacity: 0.5;
}

/*
.content > .item > .pictogram:hover {
	opacity: 1;
	filter: blur(0px);
	-webkit-filter: blur(0px);
	-moz-filter: blur(0px);
	-o-filter: blur(0px);
	-ms-filter: blur(0px);
}
*/

.content > .item > .title {
	position: absolute;
	box-sizing: border-box;
	left: 0px;
	bottom: 0px;
	#width: 100%;

	font-family: 'Open Sans', sans-serif;
	font-size: 13px;
	line-height: 16px;
	color: black;
	padding: 5px;
	margin: 3px;
	background-color: rgba(255, 255, 255, 0.9);
	border-radius: 2px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
	overflow: hidden;
	text-overflow: ellipsis;
}

.content.list > .item > .title {
	max-width: calc(100% - 50px);
	line-height: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	box-shadow: none;
	background-color: transparent;
}

.content > .item > .duration {
	position: absolute;
	right: 0px;
	top: 0px;
	
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	color: #505050;

	line-height: 100%;
	padding: 5px;
	margin: 3px;
	background-color: rgba(255, 255, 255, 0.9);	
	border-radius: 2px;
	box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.content.list > .item  > .duration {
	position: absolute;
	right: 0px;
	background-color: transparent;
	border-radius: 0px;
	width: 50px;
	text-align: right;
	box-shadow: none;
}

.content.list > .item > .note {
	position: absolute;
	right: 100px;
	
	font-family: 'Oswald', sans-serif;
	font-size: 12px;
	line-height: 14px;	
	
	padding: 5px;
	margin: 1px;
	background-color: transparent;
	border-radius: 0px;
	
	text-align: right;	
}