/*//////////////////////////////////////////*/
/* Item selections */
/*//////////////////////////////////////////*/

.item_selections{
	display:block;
	height:540px;
	background:#ffffff;
	position:relative;
	border:15px solid #ffffff;
}
.item_selections:before{
	content:'';
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:10;
	background: rgba(0, 0, 0, 0.4);

	-webkit-transition:all 150ms linear;
	-moz-transition:all 150ms linear;
	transition:all 150ms linear;

	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	border-radius: 10px;
}
.item_selections:hover:before{
	background: rgba(0, 0, 0, 0.6);
}
.item_selections .counter,
.item_selections .excerpt{
	display:block;
	position:absolute;
	z-index:15;
	color:#ffffff;
	text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}
.item_selections .counter{
	text-transform:uppercase;
	top:15px;
	left:15px;
	width:60px;
	height:60px;
	line-height:20px;
	padding:8px 0;
	border:2px solid #ffffff;
	font-weight:700;
}
.item_selections .counter em{
	display:block;
	font-size:10px;
	font-weight:400;
}
.item_selections .excerpt{
	bottom:0;
	left:0;
	right:0;
	padding:30px 15px 15px;
	width:100%;
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.8) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 30%, rgba(0, 0, 0, 0.8) 100%);

	-webkit-border-radius: 0 0 10px 10px;
	-moz-border-radius: 0 0 10px 10px;
	border-radius: 0 0 10px 10px;
}
.item_selections .excerpt span{
	display:block;
	text-transform:uppercase;
	font-size:12px;
	opacity:0.6;
	margin-bottom:5px;
}
.item_selections .excerpt h2{
	display:inline;
	font-weight:700;
}
.item_selections .excerpt p{
	display:block;
	margin-top:15px;
}
.item_selections .image{
	position:absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:5;
}
/*//////////////////////////////////////////*/
/* Archive selections */
/*//////////////////////////////////////////*/

.archive_selections .item_selections{
    margin-bottom: 30px;
}
.archive_selections .no_items{
    padding:120px 0 60px;
}
