/* Product grid */

.grid {
	position: relative;
	overflow: hidden;
	max-width: 1300px;
	margin: 0 auto;
	padding: 1.5em 0 8em;
	text-align: center;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-khtml-user-select: none;
}

/* Loader */
.grid__loader {
	display: none;
	margin: 3em auto 0;
}

.grid--loading .grid__loader {
	display: block;
}

/* Clearfix */

.grid:after {
	content: '';
	display: block;
	clear: both;
}

/* Grid items */

.grid__sizer,
.grid__item {
	position: relative;
	float: left;
	width: 33%;
	padding: .75em;
}

.no-touch .grid__sizer,
.no-touch .grid__item {
	padding: .75em .75em 1.25em;
}

.grid--loading .grid__item {
	visibility: hidden;
}

.grid__item--size-a {
	width: 33%;
}
.grid__item--size-b {
	width: 33%;
}
/* Gallery */

.slider {
	padding: 0;
	border-radius: 5px;
	/*background: #24252a;*/
	background:black;
}

.no-touch .slider {
	padding: 0 0 1.25em;
}

.slider__item {
	width: 100%;
	padding: 1em;
	background:black;
}

.slider__item img {
	width: 100%;
}
/* Flickity page dots */

.slider .flickity-page-dots {
	bottom: 15px;
	opacity: 0;
	-webkit-transition: opacity .3s;
	transition: opacity .3s;
	/*display:none;*/
}

.no-touch .slider:hover .flickity-page-dots {
	opacity: 1;
}

.slider .flickity-page-dots .dot {
	/*background: #131417;*/
	background:white;
}

/* Product meta */

.meta {
	position: relative;
	margin: 10px 0 0;
	padding: 0 60px 0 0;
	text-align: left;
	margin-top:0px;
}

.meta__brand {
	font-size: .85em;
	font-weight: bold;
	display: block;
	color: #595b64;
}

.meta__title {
	font-size: .95em;
	font-weight: bold;
	margin: 0;
	padding: .4em 0 .1em;
}

/* Action style */

.action {
	font-family: 'Jura', sans-serif;
	font-size: 1.35em;
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: .25em;
	cursor: pointer;
	color: #fff;
	border: none;
	background: none;
	
}

.action:focus {
	outline: none;
}

.action--button {
	color:white;
}

.no-touch .action--button:hover {
	color: #fff;
	outline: none;
}

.text-hidden {
	position: absolute;
	top: 200%;
}

/* Fixed bottom bar */

.bar {
	position: fixed;
	z-index: 100;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 1.75em 5em;
	text-align: center;
	background:black;
	border-top:0px solid white;
	-webkit-transform: translate3d(0, 0, 0);
	opacity:0.7;
	/* Fix for Chrome flicker on Mac ...party like we're in 2012! */
}

.sidebar-p {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 100%;
	width: 100%;
	height:100%;
	padding: 0px;
	text-align: center;
	border-right:1px solid white;
	background:black;
	-webkit-transform: translate3d(0, 0, 0);
	opacity:0.8;
	/* Fix for Chrome flicker on Mac ...party like we're in 2012! */
}
.sidebar-pL {
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 20px;
	height:100%;
	padding: 0px;
	text-align: center;
	border-left:1px solid white;
	cursor:pointer;
	-webkit-transform: translate3d(0, 0, 0);
	opacity:0.7;
	/* Fix for Chrome flicker on Mac ...party like we're in 2012! */
}

.flexbox .filter {
	/*display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	-webkit-justify-content: center;
	justify-content: center;*/
}

/* Filter */

.filter__label {
	font-size: .85em;
	display: inline-block;
	margin: 0 2%;
	font-weight: bold;
	color: #393A3F;
}

.filter__item {
	font-weight: bold;
	margin: 0 2%;
	padding: .1em;
	vertical-align: middle;
	color:white;

}

.filter__item--selected {
	color: rgba(203,163,77,1);
}


@media screen and (max-width: 65em) {
	.grid__sizer,
	.grid__item,
	.grid__item--size-a {
		width: 33.333%;
	}
	.grid__item--size-b {
		width: 25%;
	}
}

@media screen and (max-width: 50em) {
	.grid__sizer,
	.grid__item,
	.grid__item--size-a {
		width: 50%;
	}
	.grid__item--size-b {
		width: 40%;
	}
}

@media screen and (max-width: 40em) {
	.bar {
		padding:10px;
	}
	.action {
		font-size: 1.05em;	
	}
}

@media screen and (max-width: 25em) {
	.grid {
		max-width: 90%;
	}
	.grid__loader {
		margin: 0 auto;
	}
	.grid__sizer,
	.grid__item,
	.grid__item--size-a,
	.grid__item--size-b {
		width: 100%;
	}
}