.filter-container:after {
	content: "";
	display:block;
	float:left;
	clear: both;
	width:100vw;
}
.filtr-item {
padding:0 !important;
margin:0 !important;
border-left:1px solid transparent;
border-top:1px solid transparent;
overflow:hidden;
}
.filtr-item img {
max-width:100%;
transform: scale(1.1);
transition: all 0.5s ease-in-out; 
}
.filtr-item:hover img {
	-webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
	filter: grayscale(100%);
	transform: scale(1.05);
	-webkit-transform: scale(1.05);
}
.item-desc {
    background-color: #e4b131;
    opacity:0.8;
    color: white;
    position: absolute;
    text-transform: uppercase;
    text-align: center;
    padding: 1rem;
    z-index: 1;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display:none;
}
.filtr-item:hover .item-desc {display:block;background-color: #56b9e0;}

/* Filter controls */
ul.simplefilter {
	margin: 0 auto 15px auto;
	text-align: center;
	list-style-type:none;
	content: '';
	z-index: 0;
	position: relative;
}
.simplefilter li,
.multifilter li,
.sortandshuffle li {
    color: white;
    cursor: pointer;
    display: inline-block;
    text-transform: uppercase;
    padding: 8px 14px;
    margin: 0 5px;
    margin-bottom:10px;
}
.simplefilter li {
    background-color: #171b1e;
}
.simplefilter li:hover,
.simplefilter li.active {
    background-color: #e4b131;
}
.multifilter li {
    background-color: #4b9eff;
}
.simplefilter li:hover,
.multifilter li.active {
    background-color: #56b9e0;
}
/* Shuffle and sort controls */

select {
    padding: 1rem 1rem;
    text-transform: uppercase;
}
.sortandshuffle .shuffle-btn {
    background-color: #dec800;
}
.sortandshuffle .sort-btn {
    background-color: #de0000;
}
.sortandshuffle .sort-btn.active {
    background-color: #9d0000;
}
/* Search control */

.search-row {
	display: none;
    text-align:center;
    margin-bottom:20px;
}
.search-row input {
	font-size:24px;
}
.filtr-search {
    padding: 0.5rem;
    text-transform: uppercase;
}

