/*-- HELPERS --*/


@media screen and (max-width: 768px) {
  .mobile {
    display: none;
  }
}

@media screen and (min-width: 1024px) {
  .desktop {
    display: none;
  }
}


/*----------------------- GOBAL -----------------------*/



body {
	font-family: 'Open Sans', sans-serif;
	transition:all .5s ease-in-out;
}

* {
    transition: all .5s ease-out;
  }
  


h1, h2, h3, h4, h5 {
	text-transform: uppercase;
	font-weight: 300;
}


h1 {
	font-size: 60px;
	font-weight: 600;
	line-height: 65px;
}


h2 {
	font-size: 30px;
}


h3 {
	font-size: 25px;
}


h4 {
	font-size: 20px;
}


h5 {
	font-size: 15px;
	font-weight: 400;
	line-height: 40px;
}


p {
	font-size: 13px;
	line-height: 1.1em;
}

a {
	text-decoration: none;
	color: black;
}

a:hover {
	cursor: pointer;
}

.hide {
	display: none;
}

/*----------------------- BANNER -----------------------*/


.banner-outer{
	padding: 5px;
	background: rgba(0,0,0,0.1);
}

.banner {
	display: flex;
	justify-content: space-around;
	align-items: center;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: 600;
}

.banner-left{
	flex: 1;
}


.banner-left img{
	margin-left: 5px;
	margin-right: 2px;
	height: 18px;
}

.banner-middle{
	width: 20%;
	text-align: center;
	flex: 1;
}


.banner-rightt{
	display: inline-block;
	text-align: right;
	margin-left: 8px;
	margin-right: 8px;
	flex: 1;

}


a.banner-right {
	margin-left: 2px;
	margin-right: 5px;
}


/*----------------------- HEADER -----------------------*/


header{
	clear: both;
	margin-top: 10px;
}


.logo {
	padding: 20px 0 0 20px;
}

.logo img{
	float: left;
	height: 60px;
}

.user-icons {
	padding: 15px 20px 0 0;
}

.user-icons img{
	float: right;
	margin-left: 15px;
	height: 28px;
}

nav {
	clear: both;
	padding-top: 20px;
	margin: 0 0 20px 0;
	text-align: center;
	width: 255px;
	margin: 0 auto;
	margin-bottom: 20px;
}

nav a{
	border-left: 1px solid rgba(0,0,0,0.1);
	padding: 0 15px;
}

nav a:last-child{
	border-right: 1px solid rgba(0,0,0,0.1);
}


/*----------------------- SEARCH -----------------------*/

#search label{
	display: none;
}


#search {
	padding: 10px 0 30px 0;
	text-align: center;
}


#search input{
	padding: 10px;
    width: 255px;
	border: 1px solid rgba(0,0,0,0.1);
}


/*----------------------- MESSAGE BANNER -----------------------*/


#message-banner {
	text-align: center;
	text-transform: uppercase;
	font-size: 13px;
	font-weight: 300;
	padding: 10px;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);
	background: rgba(0,0,0,0.8);
	color: white;
	letter-spacing: 1.5px;
	line-height: 1.2em;
}


/*----------------------- HERO -----------------------*/




.hero{
	text-align: center;
	position: relative;
}

.hero img{
	position: relative;
	display: inline;
	float: left;
	object-fit: cover;
	width: 100%;
	height: 430px;
	margin-bottom: 80px;
}



.hero-box {
   position: absolute;
   color: white;
   margin-top: 75px;
   left: 20%;
   width: 240px;
   height: 260px;
   border: 6px solid white;
   background: rgba(0,0,0,0.3);
}


.hero h1{
   margin-top: 15px; 
   color: white;
}


.hero h4{
   color: rgba(200,200,200,1);
   font-weight: 400;
}


/*----------------------- FEATURED / BOXES -----------------------*/

.featured {
	clear: both;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.featured-flex {
	clear: both;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.box {
	margin-top: 20px;
	text-align: center;
	position: relative;
}

.box p{
	line-height: 1.5em;
	width: 55%;
	margin: auto;
	font-size: 12px;
	text-transform: uppercase;
	min-height: 70px;
}

.box h3{
	font-weight: 600;
    margin: 35px 0 40px 0;
}

.box h5{
    margin-top: 30px;
    padding: 5px 0;
    margin-bottom: 70px;
    background: #333333;
    color: white;
}

.box a{

    color: white;
}


.box img{
	margin-top: 60px;
	width: 100%;
}


.box-1,.box-2,.box-3 {
	flex: 1;
}

img.sale-main {
	width: 35%;
	opacity: 0.4;
	position: absolute;
	top: 10px;
	right: 10px;
}


/*----------------------- BRANDS -----------------------*/

.brands {
	text-align: center;
}

.brands h2{
	padding-top: 130px;
	font-weight: 600;
}

.brands-flex {
	display: flex;
}

.brand{
	justify-content: space-around;
}

.brand img{
	padding: 30px 40px 30px 40px;
	width: 100%;
}


/*----------------------- FOOTER -----------------------*/


footer {
	clear: both;
	float: left;
	width: 100%;
	margin-top: 100px;
	padding-bottom: 180px;
	background: rgba(0,0,0,0.8);
}

.footer-content{
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
}

footer ul {
	margin-top: 80px;
	text-transform: uppercase;
	font-size: 12px;
	line-height: 25px;
	color: rgba(255,255,255,0.6);
}


footer a {
	color: rgba(255,255,255,0.6);
}  


footer a:visited {
	color: rgba(255,255,255,0.6);
}  


footer img{
	padding-top: 5px;
	margin-right: 10px;
	height: 20px;
	float: left;
}


footer .social li{
	clear: both;
	line-height: 25px;
}


footer span{
	border:1px solid red;
	margin-top:-10px;
}


/*----------------------- NEWSLETTER; -----------------------*/

.newsletter{
 	padding-top: 80px;
	text-align: center;
	padding-left: 0;
}

.newsletter h4{
	color: rgba(255,255,255,0.6);
	font-weight: 500;
}

#newsletter label{
	display: none;
}

#newsletter {
	padding: 0 0 20px 0;
	text-align: center;
}

#newsletter input{
	margin: 20px 0 10px 0;
    padding: 10px;
    width: 100%;
    min-width: 250px;
    max-width: 300px;
    border: 1px solid rgba(0,0,0,0.1);
}



.footer-info{
	justify-self: left;
}

.footer-social{
	justify-self: left;
}

.newsletter{
	justify-self: right;
}


@media only screen and (max-width : 1366px) {


	.brands{
		display: none;
	}

	.footer-content{
		grid-template-columns: 1fr 1fr 1fr;
	}

	.footer-about{
	
		justify-self: left;
	}

	.footer-info{

		justify-self: center;
	}

	.footer-social{

		justify-self: end;
	}

	.newsletter{
		justify-self: center;
		grid-column: 1/-1;
	}
	
		
}


@media only screen and (max-width : 768px) {

	.footer-content{
		width: 90%;
		margin: 0 auto;
		grid-template-columns: 1fr;
	}

	.footer-about{
		width: 135px;
		margin: 0 auto;
		justify-self: center;
	}

	.footer-info{
		width: 135px;
		margin: 0 auto;
		justify-self: center;
	}

	.newsletter{
		grid-column: 1;
	}


	
	
		
}
/*-- HERO BUTTONS --*/


.btn,
a.btn {
	color: rgba(255,255,255,0.6);
	padding: 8px 30px;
	font-size: 12px;
	text-transform: uppercase;
	margin: 20px;
	font-weight: 600;
}


a.btn-primary {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.6);
}


/*----------------------- MEDIA Q -----------------------*/

.category{
	width: 90%;
	margin: 0 auto;
}




/* small desktop */
@media only screen and (min-width : 768px) {

.container-desktop {
	width: 65%;
	margin: auto;
}

/*--- HEADER --*/


header{
	margin-top: 10px;
}


.banner-left img{
	margin-right: 8px;
	margin-left: 0;
}

.banner-rightt {
	margin-right: 0;
}

.banner-rightt a{
	margin-left: 8px;
	margin-right: 0;
}



/*-- MESSAGE BANNER --*/


#message-banner {
	clear: both;
}


/*-- HERO --*/


.hero img{
	height: 600px;
}

.hero-box {
   position: absolute;
   color: white;
   margin-top: 150px;
   left: 20%;
}


/*--BOXES --*/

.featured-flex {
	flex-direction: row;
}


.box-2 {
	margin: 20px 50px 20px 50px;
}


/*-- FOOTER ---*/


footer  {
	padding-left: 0px;
}


footer  ul{
	margin-left: 0; 
	float: left;
	
}






}



@media only screen and (min-width : 1366px) {

	
	.logo {
		padding: 20px 0 0 0;
	}
	
	
	.user-icons {
		padding: 15px 0 0 0;
	}
	
	
	nav {
		clear: none;
		float: left;
		padding-top: 10px;
		margin-left: 60px;
	}
	
	
	/*--SEARCH --*/
	
	
	#search {
		padding: 0;
		float: right;
		padding-bottom: 40px;
		margin-right: 30px;
	}
	

	
	
	}

/*----------------------- MEDIA Q END -----------------------*/




/*----------------------- BREADCRUMB -----------------------*/
.breadcrumb {
	margin-top: 20px;
	text-align: center;
	border-bottom: 1px solid rgba(0,0,0,0.1);
	padding: 10px 0 10px 0;
}

.breadcrumb a{
	text-transform: uppercase;
	text-decoration: none;
	font-size: 12px;
}



/*----------------------- CATEGORY PAGE -----------------------*/


aside {
	padding: 0 10px 0 10px;
	margin-top: 30px;
	float: left;
	width: 100%;
}

aside h5{
	font-weight: 600;
}

.accordion li{
	font-size: 13px;
	padding: 20px 0 10px 0;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}


article {
	margin-top: 40px;
	float: left;
	width: 100%;
}


.accordion a{
	text-decoration: none;
}


.accordion img{
	padding-bottom: 1px;
	float: right;
	height: 15px;
}



/*----------------------- SELECT -----------------------*/


.select {
	float: left;
	border: 1px solid rgba(0,0,0,0.1);
	padding: 8px 8px 8px 8px;
	margin-left: 10px;
}

.select a{
	font-size: 13px;
	clear: both;
	float: left;
	padding: 3px;
	padding-right: 106px;
}

.select img{
	float: right;
	height: 18px;
}


/*----------------------- PAGINATION -----------------------*/
	

.pagination {
	margin-right: 10px;
	margin-top: 10px;
	float: right;
}

.pagination a{
	font-size: 13px;
	padding: 8px;
	border: 1px solid rgba(0,0,0,0.1);
	font-weight: 700;
}

.pagination a:hover {
	background: rgba(0,0,0,0.2);
}


/*----------------------- FEATURED / BOXES -----------------------*/


.product-cat {
	margin-top: 60px;
	clear: both;
}

.product-cat-flex {
	clear: both;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: flex-start;
}

.product-tile {
	padding: 0 10px 0 10px;
	margin-bottom: 50px;
	flex-basis:50%;
	position: relative;
}

.product-tile p{
	clear: both;
	font-size: 11px;
	text-transform: uppercase;

}

.product-tile h3{
	font-size: 16px;
	font-weight: 600;
    margin: 10px 0 10px 0;
}

.product-tile h5{
	clear: both;
	font-weight: 600;
}

.product-tile img{
	width: 100%;
}

.product-text {
	clear: both;
}

.product-icon img{
	padding-top: 9px;
	float: right;
	width: 10%;
}


.product-icon h3{
	float: left;
}

img.cat-review-stars {
	width: 30%;
	position: absolute;
	bottom: 115px;
	right: 18px;
}

/*----shadow for images*/

.img-container{
	position: relative;
	display: block;
}

.shadow{
	position: absolute;
	top: 0;
	left: 0;
	background:rgba(0,0,0,0.2);
	height: 99%;
	width: 100%;	
	opacity: 0;
	transition: opacity 1s ease;
}

.img-container:hover .shadow{
	opacity: 1;
	transition: opacity 1s ease;
}

.blink_me {
  animation: blinker 5s linear infinite;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}




/*----------------------------------MEDIA Q-----------------------------------*/



/* small desktop */
@media only screen and (min-width : 768px) {


.breadcrumb {
	text-align: left;
	padding-left: 0;
}

aside {
	padding: 0;
	margin-top: 30px;
	float: left;
	width: 20%;
}

article {
	margin-top: 40px;
	float: left;
	width: 80%;
	padding-left: 80px;
}

.product-tile {
	padding-right: 0;
	padding-left: 60px;
	margin-bottom: 50px;
	flex-basis: 33.333%;
}


.select a{
	padding-right: 162px;
}



.pagination {
	margin-right: 0;
}

img.cat-review-stars {
	width: 25%;
	bottom: 110px;
	right: 15px;
}

}


@media only screen and (min-width : 769px) {

	.select {
		margin-left: 0px;
	}
	
	

}


@media only screen and (min-width : 1100px) {

	.select {
		margin-left: 60px;
	}
	
	

}




@media only screen and (max-width : 1100px) {



	aside {
		padding: 0;
		margin-top: 30px;
		float: left;
		width: 100%;
	}

	article {
		margin-top: 40px;
		float: left;
		width: 100%;
		padding-left: 0px;
	}
	

	.product-tile {
		padding-left: 0px;
		padding: 10px;
		flex-basis:50%;
	}

	

}



@media only screen and (max-width : 1366px) {

	.product-tile {
		flex-basis:50%;
	}

}


/*----------------------- CATEGORY END -----------------------*/




/*----------------------- ABOUT PAGE -----------------------*/

.about {
	padding: 0 10px 0 10px;
}

.about h3 {
	margin-bottom: 20px;
}

.about h4 {
	margin: 20px 0 20px 0;
}

.about-img img{
	position: relative;
	display: inline;
	float: left;
	object-fit: cover;
	top: 20%;
	width: 100%;
	height: 200px;
	margin-bottom: 30px;
}


.about p{
	margin-bottom: 70px;
}


.about-box {
	width: 100%;
	margin-right: 10%;
}




/*----------------------- MEDIA Q -----------------------*/

@media only screen and (min-width : 768px) {


.about-box {
	float: left;
	width: 40%;
	margin-right: 10%;
}

}

/*----------------------- MEDIA Q END -----------------------*/



/*----------------------- CONTACT PAGE  -----------------------*/

.contact{
	padding: 10px;
}

.contact h3{
	margin-bottom: 20px;
}


input[type=text], textarea {
	font-size: 12px;
    width: 100%;
    padding: 12px;
    border: 1px solid rgba(0,0,0,0.1);
    margin-top: 6px;
    margin-bottom: 16px;
    resize: vertical;
}


input[type=submit] {
    background-color: rgba(0,0,0,0.8);
    text-transform: uppercase;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    width: 100%;
    margin-bottom: 80px;
}

textarea {
	height: 80px;
}


.contact-details {
	float: left;
	width: 100%;
}


.form {
	margin-top: 40px;
	float: left;
	width: 100%;
}


.form label {
	float: left;
	text-transform: uppercase;
	font-size: 14px;
}



iframe {
	width: 100%;
	height: 320px;
}


.contact h4 {
	margin-top: 20px;
	font-weight: 300;
}


.contact img {
	float: left;
	margin-top: 12px;
	margin-right: 10px;
	height: 18px;
}


.contact p {
	margin-top: 10px;
	margin-bottom: 10px;
}


/*----------------------- MEDIA Q -----------------------*/

@media only screen and (min-width : 768px) {

.contact {
	padding: 0;
}

.contact-details {
	width: 40%;
}


.form {
	margin-top: 0;
	width: 50%;
	float: right;
}

}

/*----------------------- MEDIA Q END -----------------------*/



/*----------------------- PRODUCT PAGE -----------------------*/


.product {
	margin-top: 30px;
	padding: 0 10px 0 10px;
}



.product-left {
	float: left;
	width: 100%;
}

.product-images {
	position: relative;
}

.product-images img{
	width: 100%;
}

img.product-stars {
	width: 30%;
	position: absolute;
	top: 20px;
	right: 20px;
}

img.previous-left{
	position: absolute;
	width: 8%;
	transform: rotate(90deg);
	top: 50%;
	opacity: 0.2;
}

img.next-right{
	position: absolute;
	width: 8%;
	transform: rotate(-90deg);
	top: 50%;
	opacity: 0.2;
	right: 0;
}

.product-images-small{
	display: inline;
}

.product-images-small img{
	float: left;
	margin-top: 3px;
	margin-left: 1.25%;
	width: 19%;
}

 .product-images-small img:first-child{
  margin-left: 0; 
}

.product-right {
	margin-top: 30px;
	float: right;
	width: 100%;
}

.product-logo img{
	float: left;
	width: 20%;
	padding-bottom: 15px;
}

.product-right h3{
	margin-top: 20px;
	font-weight: 600;
}

.model {
	clear: both;
	float: left;
}

.price {
	float: right;
}

.product-right p{
	clear: both;
	padding-top: 30px;
	text-transform: uppercase;
}


.colour {
	clear: both;
	margin-top: 20px;
	padding: 10px 0 30px 0;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.colour a{
	padding-top: 2px;
	font-size: 15px;
	float: right;
	text-transform: uppercase;
}

.colour svg{
	float: left;
	margin-right: 10px;
}

.size, .size-guide {

	margin-top: 20px;
	float: left;
	border: 1px solid rgba(0,0,0,0.1);
	padding: 8px 8px 8px 8px;
}


.size-guide {
	float: right;
}


.sizing{
	clear: both;
}


.size a{
	font-size: 13px;
	float: left;
	padding: 3px;
}

.size-guide a{
	font-size: 13px;
	clear: both;
	float: left;
	padding: 3px;
	padding-right: 50px;
}

.size img{
	float: right;
	margin-left: 130px;
	height: 18px;
}


.cart-button{
	float: left;
	margin-top: 20px;
	width: 100%;
	background: rgba(0,0,0,0.8);
	color: white;
	text-align: center;
	text-transform: uppercase;
	padding: 20px;
}

img.cbadge {
	float: left;
	width: 50%;
	margin-top: 60px;
	margin-left: 100px;
}




/*------- Reviews -------*/

.reviews {
	clear: both;
	padding-top: 50px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.reviews h3{
	text-align: center;
	font-weight: 400;
	margin: 20px 0 20px 0;
}

.review-boxes{
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-between;
}


.review-box{
	margin-top: 20px;
	flex-basis: auto;
	width: 42%;
	justify-content: space-between;
}

.review-box img{
	height: 15px;
	margin-bottom: 10px;
}


.review-button {
	text-align: center;
	text-transform: uppercase;
	background: rgba(0,0,0,0.8);
	color: white;
	padding: 20px;
}


.review-btns {
	margin: 40px auto 0 auto;
	text-align: center;
}

.review-btn {
	display: inline-block;
	font-size: 14px;
	text-transform: uppercase;
	color: white;
	width: 250px;
	padding: 10px;
	margin: 10px 10px 0 10px;
	background: rgba(0,0,0,0.8);
}



/*------- Similar -------*/



.similar-product {
	margin-top: 60px;
	margin: 100px auto 0 auto;
	clear: both;
}

.similar-product h3 {
	text-align: center;
	font-weight: 400;
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(0,0,0,0.1);
}

.similar-product-flex {
	clear: both;
	display: flex;
	flex-wrap: wrap;
	flex-direction: row;
	justify-content: space-around;
}

.similar-tile {
	margin-top: 20px;
	padding-right: 0;
	margin-bottom: 50px;
	flex-basis: 40%;
	position: relative;
}

.similar-tile p{
	clear: both;
	font-size: 11px;
	text-transform: uppercase;
}


.similar-tile h5{
	clear: both;
	font-weight: 600;
}


.similar-tile img{
	width: 100%;
}

.similar-text {
	clear: both;
}

.similar-icon img{
	padding-top: 5px;
	float: right;
	width: 10%;
}

.similar-icon h3{
	float: left;
	font-size: 16px;
	font-weight: 600;
    margin: 10px 0 10px 0;
    border: none;
}



img.review-stars {
	display: none;
	width: 30%;
	position: absolute;
	bottom: 125px;
	right: 10px;
}

img.sale {
	width: 30%;
	opacity: 0.4;
	position: absolute;
	top: 10px;
	right: 10px;
}

/* Trigger Star Rating */

.similar-tile:hover img.review-stars {
	display: block;
}


/*----------------------- MEDIA Q -----------------------*/ 


@media only screen and (min-width : 768px) {


.product {
	padding: 0 0 0 0;
}

.product-left {
	width: 45%;
}

.product-right {
	margin-top: 0;
	float: right;
	width: 40%;
}

.size img{
	margin-left: 250px;
}

img.cbadge {
	margin-left: 120px;
}



.review-box{
	width: 22%;
}


.similar-product-flex {
	justify-content: space-between;
}

.similar-tile {
	flex-basis:20%;
}


.similar-product h3 {
	text-align: left;
}

.reviews h3{
	text-align: left;
}

}

/*----------------------- MEDIA Q END -----------------------*/

/*----------------------- PRODUCT PAGE END-----------------------*/

/*----------------------- Menu -----------------------*/



.mobile-menu{
	position: absolute;
	z-index: 1;
	top: 166px;
	width: 255px;
	text-align: left;
	padding: 20px 0 20px 0;
	background: #333333;
	line-height: 1.8em;
	text-transform: uppercase;
	border: none;
}

.mobile-menu a{
	margin: 0;
	font-size: 13px;
	color: white;
	border: none;
}

.hide {
	display: block;
	opacity: 0;
}


.mobile-menu.is-visible {
	transition: opacity 0.5s ease;
	opacity: 1;
	
}




@media only screen and (min-width : 1366px) {

	header{
		margin-top: 30px;
		margin-bottom: 90px;
	}


	.mobile-menu{
		top: 135px;
		background: #333333;
	}
	
	
	.mobile-menu a{
		margin: 0;
		margin-left: 15px;
		font-size: 14px;
		color: white;
	}
	
	}

/*------------- ACCORDION ----------------------------------------------*/

.accordion-outer {
	position: relative;	
}

.accordion-outer:after {
	text-decoration: inherit;
	z-index: 1;
}

.accordion-outer.visible:after { 
}

.accordion-inner {
	display: none;
}

.accordion-inner ul {
	margin-top: 20px;
} 

.accordion-inner li {
	padding: 0;
	margin: 10px 0 10px 10px;
	line-height: 2em;
	font-size: 12px;
	border: none;
	text-transform: uppercase;
	color: rgba(0,0,0,1);
	font-weight: 400;
}

.accordion-inner li input {
	padding: 0;
	line-height: 2em;
	font-size: 12px;
	border: none;
}



.visible .accordion-inner  {
	display: block;
}



/*------------- ICONS ---------------------------------------*/


.menu-btn{
	cursor: pointer;
}


.menu-btn img{
	margin-top: 15px;
	width: 25%;
	float: right;
}


/* CLOSE ICON */


.close {
	font-weight: bold;
	font-size: 30px;
	cursor: pointer;
	position: absolute;
	top: 10px;
	left: 87%;
	color: black;
}


/*------------- STATES ----------------------------------------------*/


.is-active {
	font-weight: 700;
	color: rgba(0,0,0,0.7);
}




