/* UniFilter Demo Styles */

/* <html> font size is 62.5%, what is ~10px 
   so we use rem to get sizes related to base font size */


body {
	font: normal 15px/25px "Raleway", sans-serif;
}

/* header */

.header {
	height: 60px;
	line-height: 60px;
	background-color: #404040;
	color: #bbb;
	overflow: hidden;
}

.header strong {
	position: relative;
	color: #f1f1f1;
	font-size: 25px;
	margin: 0 5px 0 50px;
	letter-spacing: 1px;
	font-family: "Archivo Black", sans-serif;
}

.header strong span {
	color: #74c17c;
}

.header .purchase {
	float: right;
	border-radius: 20px;
	line-height: 20px;
	padding: 5px 25px;
	margin: 15px 30px 0 10px;
	text-decoration: none;
	font-size: 12px;
	font-weight: bold;
	color: #f1f1f1;
	background-color: #666;
	-webkit-transition: all 0.1s;
	-moz-transition: all 0.1s;
	-o-transition: all 0.1s;
	transition: all 0.1s;
}

.header .purchase:hover {
	background-color: #ee6c5e;
	color: #fff;
}

.header a, .header a:hover {
	text-decoration: none;
	outline: none;
}

.up {
	display: none;
	position: fixed;
	right: 30px;
	bottom: 30px;
	padding: 15px 10px;
	background: url(../images/up.png) no-repeat center center;
	background-color: rgba(255,255,255,0.5);
	width: 30px;
	height: 20px;
	border-radius: 5px;
	z-index: 100;
}

.copyright {
	font-size: 12px;
	color: #aaa;
	padding-bottom: 30px;
	text-align: center;
}

.copyright a, .copyright a:hover {
	text-decoration: underline;
	color: inherit;
}


/* sidebar */

.sidebar {
	float: left;
	width: 25%;
	padding-left: 30px;
	border-right: 2px solid #eee;
	box-sizing: border-box;
	margin-right: 3%;
}

/* shop */

.shop-wrap {
	padding-top: 100px;
	position: relative;
}

.shop-wrap .mobile-menu {
	display: none;
	position: absolute;
	top: 35px;
	right: 35px;
	z-index: 10;
}

.shop-wrap .mobile-menu a {
	display: block;
	width: 32px;
	height: 32px;
	background: url(../images/filters.png) no-repeat center;
}

.shop, .shop li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.shop {
	width: 70%;
	float: left;
	margin-bottom: 120px; 
}


.shop > li {	
	position: relative;
	float: left;
	width: 50%;
	box-sizing: border-box;
	padding: 0 10px 10px 0;
}

.shop li.masonry-sizer {
	height: 0;
	width: 50%;
	padding: 0;
	margin: 0;
}

.shop .thumb {
	position: relative;
	background-color: #222;
}

.shop .thumb img {
	display: block;
	width: 100%;
	height: auto;
}

.shop .thumb:hover img {
	opacity: 0.8;
}

.shop .price {
	position: absolute;
	top: 10px; right: 20px;
	width: 60px;
	height: 60px;
	background-color: #ff7573;
	text-align: center;
	z-index: 10;
	line-height: 60px;
	border-radius: 30px;
}

.shop .price span {
	color: #fff;
	font-weight: bold;
}

.shop .buy { 
	position: absolute;
	bottom: 15px;
	left: 10px;
	z-index: 20;
 }

.shop .buynow {
	color: #fff;
	background: #444;
	padding: 10px 20px;
	line-height: 1;
	text-decoration: none;
	font-size: 13px;
	font-weight: bold;	
}

.shop .name {
	position: absolute;
	bottom: 12px; right: 12px;
	text-align: center;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: bold;
	padding: 10px 20px;
	background-color: #fff;
}


/* Color Filters */

#uf-color {
	width: 50%;
}

#uf-color .uf-tags a {
	position: relative;
	font: 0/0 a;
	line-height: 0;
	width: 25px;
	height: 25px;
	border: 0;
	border-radius: 20px;
	padding: 0;
	min-width: 0;
	box-sizing: border-box;
}

#uf-color .uf-tags .uf-selected a {
	border-radius: 3px;
}

#uf-color .uf-tags a[href="#yellow"] {
	background: yellow;
}

#uf-color .uf-tags a[href="#black"] {
	background: black;
}

#uf-color .uf-tags a[href="#gold"] {
	background: gold;
}

#uf-color .uf-tags a[href="#cherry"] {
	background: crimson;
}

#uf-color .uf-tags a[href="#brown"] {
	background: brown;
}

#uf-color .uf-tags a[href="#blue"] {
	background: blue;
}

#uf-color .uf-tags a[href="#green"] {
	background: aquamarine;
}

#uf-color .uf-tags a[href="#red"] {
	background: red;
}

#uf-color .uf-tags a[href="#white"] {
	background: whitesmoke;
}

#uf-color .uf-tags a[href="#gray"] {
	background: gray;
}

#uf-color .uf-tags a[href="#pink"] {
	background: pink;
}

#uf-color .uf-reset {
	margin: 3px 0;
}

/**
	Retina Screens 
*/

@media only screen and (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) { 
	.shop-wrap .mobile-menu a {
		background: url(../images/filters@2x.png) no-repeat 0 0;
		background-size: 32px 32px;
	}

}

@media only screen and (max-width: 1000px) {
	.sidebar { 
		float: none; 
		width: 100%; 
		padding: 0 50px; 
		border-right: 0; 
	    height: 0; 
	    overflow: hidden;
	}
	
	.sidebar-open {
		margin-bottom: 50px;
	}
	
	.shop { 
		float: none; 
		width: 85%; 
		margin: 0 auto; 
		margin-bottom: 120px; 
	}
	
	.shop-wrap .mobile-menu { 	
		display: block; 
	}
}

@media only screen and (max-width: 750px) {
	.shop > li { 
		float: none; 
		width: 100%; 
	}
}

/* Smaller than Desktop HD */
@media only screen and (max-width: 1200px) {}

/* Smaller than desktop */
@media only screen and  (max-width: 1000px) {}

/* Smaller than tablet */
@media only screen and  (max-width: 750px) {}

/* Smaller than phablet (also point when grid becomes active) */
@media only screen and  (max-width: 550px) {}

/* Smaller than mobile */
@media  only screen and (max-width: 400px) {}



