@charset "UTF-8";
/* CSS Document */
/*Shirt Filter--------------------------------------------------------------------------------------------------------------------*/
#filter{
	padding-bottom: 1em;
	width: 100%;
	text-align: center;
}

#filterColour, #filterPattern, #filterCloth{
	display: inline-block;
	margin-left: 2em;
	margin-right: 2em;
	padding: 0.5em;
	border: thin solid hsla(0,0%,0%,1.00);
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	margin-top: 1em;
}
	
.filterHeading{
	position: relative;
	display: inline;
	font-size: 1em;
	vertical-align: middle;
	padding-right: 0.1em;
}
/*Colour filter*/
#filterColour{
	height: 1.5em;
}

.colours{
	display: none;
}

#filterColour label{
	display: inline-block;
	width: 1.5em;
	padding-bottom: 0.1em;
}

.colours:checked + label{
	border-bottom: thin solid hsla(0,0%,0%,1.00);
}
	
#filterColour label img{
	width: 100%;
	vertical-align: middle;
}
/*--------------------------------------------------------------------------------------------------------------------------------*/
/*Pattern filter*/
#filterPattern{
	height: 1.5em;
}

.patterns{
	display: none;
}

#filterPattern label{
	display: inline-block;
	width: 1.5em;
	padding-bottom: 0.1em;
}

.patterns:checked + label{
	border-bottom: thin solid hsla(0,0%,0%,1.00);
}

#filterPattern label img{
	width: 100%;
	vertical-align: middle;
}
/*--------------------------------------------------------------------------------------------------------------------------------*/
/*Cloth filter*/
#filterCloth{
	height: 1.5em;
}

.cloths{
	display: none;
}

.cloths:checked + label{
	border-bottom: thin solid hsla(0,0%,0%,1.00);
}

#filterCloth label{
	display: inline-block;
	position: relative;
	margin: 0.25em 0;
	padding: 0 0.1em;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 200;
}
/*--------------------------------------------------------------------------------------------------------------------------------*/
/*Toggle Bar-Checkbox styling*/
#filterToggle{
	display: none;
}

#filterToggle + label{
	display: none;
}

#filterToggle:checked + label{
	display: none;
}
/*--------------------------------------------------------------------------------------------------------------------------------*/
/*Selected options*/
#filtersApplied{
	width: 90%;
	margin-top: 1em;
	/*border-bottom: solid thin black;*/
	margin-left: 5%;
	text-align: left;
	background-color: lightgrey;
}

td{
	width: 30%;
	padding: 0.5em 1em;
}

.selectedFilters, .info{
	display: inline;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
}

.info{
	font-weight: 200;
}
/*--------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------*/
/*Shirt Samples-------------------------------------------------------------------------------------------------------------------*/
.sample{
	position: relative;
	width: 15%;
	display: inline-block;
}

.sample img{
	width: 100%;
	position: relative;
	-webkit-transition: all 0.3s ease-in-out 0.1s;
	-o-transition: all 0.3s ease-in-out 0.1s;
	transition: all 0.3s ease-in-out 0.1s;
	display: inherit;
}

#samples{
	text-align: center;
	padding-top: 1em;
}

.fabricCode{
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 100;
}

.sample img:hover{
	opacity: 0.7;
}

/*Gallery------------------------------------------------------------------------------------------------------------------------*/
#closeGallery{
	float: right;
	background-color: rgba(0,0,0,0);
	border: none;
    color: #F1F1F1;
    font-size: 4em;;
    font-weight: bold;
	position: absolute;
	right: 0;
	top: 0.5em;
	-webkit-transition: all 0.3s ease-in-out 0.1s;
	-o-transition: all 0.3s ease-in-out 0.1s;
	transition: all 0.3s ease-in-out 0.1s;
}

#closeGallery:hover{
	opacity: 0.7;
}

#gallery img{
	width: 40%;
}

#gallery p{
	width: 100%;
	color: white;
	font-family: Gotham, "Helvetica Neue", Helvetica, Arial, "sans-serif";
	font-weight: 500;
}

#gallery{
	display: none;
	position: fixed;
	z-index: 10;
	padding-top: 7em;
    left: 0;
    top: 0;
    width: 100%;
	height: 100%;
    background-color: rgba(0,0,0,0.90);
	text-align: center;
}
/*--------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------*/
/*--------------------------------------------------------------------------------------------------------------------------------*/