/* ========================================================== 
	GLOBAL STYLES
============================================================ */

.centre{
	text-align: center;
}

.right{
	text-align: right;
}

.section-medium{
	padding: 60px 0px;
}

.section-small{
	padding: 30px 0px;
}

.texture-green{
	background: url(../images/texture_green.jpg);
}

body, .texture-grey{
	background: url(../images/texture_grey.jpg);
}

.dark h1, .dark h2, .dark h3, .dark p{
	color: #fff;
}

.light{
	background: #fff;
}

/* ========================================================== 
	Header
============================================================ */

header{
	background: #fff;
}

#logo{
	float: left;
	padding: 10px;
	background: #75af47;
}

#shop-cart{
	float: right;
	
}

#shop-cart a{
	display: block;	
	box-sizing: border-box;
	width: 80px;
	height: 76px;
	text-align: center;
	padding-top: 25px;
	background: #75af47;
	transition: 0.5s;
}

#shop-cart a:hover{
	background: #2a2a2a;
}

header nav{
	float: right;
	margin-left: 40px;
	margin-bottom: 0px;
}

.nav{	
	padding-left: 0px;
	margin: 0px;
}

.nav > li{
	float: left;
	margin-right: 0px;
	margin-bottom: 0px;
	font-size: 1.6rem;
	list-style: none;
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: uppercase;
}

.nav > li:last-child a{
	background: #373737;
	color: #fff;
	margin-left: 0px;
}

.nav > li > a{
	display: block;
	height: 76px;
	padding: 25px 20px 0px 20px;
	box-sizing: border-box;
	color: #373737;
}

.nav > li > a:hover, .nav > li.current-menu-item > a{
	color: #75af47;
	background: #efefef;
}

.nav > li:hover > div.drop-down {
    opacity: 1;
    visibility: visible;
    overflow: visible;
}

.drop-down{
	position: absolute;
	left: 0px;
	width: 100%;
	padding: 20px 30px;
	box-sizing: border-box;
	z-index: 99;
	opacity: 0;
    visibility: hidden;
    overflow: hidden;
	-webkit-transition: all .3s ease .15s;
    -moz-transition: all .3s ease .15s;
    -o-transition: all .3s ease .15s;
    -ms-transition: all .3s ease .15s;
    transition: all .3s ease .15s;
}

.drop-down > .col{
	float: left;
	width: 25%;	
}

.drop-down ul{
	margin: 0px 0px 30px 0px;
	padding: 0px;
}

.drop-down li{
	margin: 10px 0px;
	padding: 0px;
	list-style: none;
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 2rem;
	line-height: 1;
}

.drop-down li li{
	font-family: 'Roboto', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1.4rem;
	text-transform: none;
}

.drop-down a{
	display: block;
	height: auto;
	padding: 0px 20px;
	color: #484848;
}


@media (max-width: 767px) {
	header{
		background: #75af47;
	}
	#logo{
		height: 76px;
		box-sizing: border-box;
	}
	
	#logo img{
		width: 180px;
		height: auto;
	}
	
	#shop-cart a{
		width: 60px;
	}
	
	header nav{
		float: none;
		margin: 0px;
		clear: both;
	}
	
	.nav > li{
		float: none;
		display: block;
		margin-right: 0px;
		margin-bottom: 0px;
		padding-bottom: 0px;
	}
	
	.nav > li > a{
		width: 100%;
		height: auto;
		padding: 10px;
		margin-bottom: 0px;
	}
	
	.drop-down{
		padding: 10px 0px;
		position: static;
	}
	
	.drop-down > .col{
		float: none;
		width: 100%;	
	}
	
	.drop-down ul{
		margin: 0px 0px 10px 0px;
	}
	
	.drop-down li ul{
		display: none;
	}
	
	.drop-down li{
		font-family: 'Roboto', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
		font-size: 1.4rem;
		text-transform: none;
	}
	
	.mobile-menu{
		float: right;
		z-index: 2;
	}
	
	.mobile-menu a{
		display: block;
		position: relative;
		height: 76px;
		width: 60px;
		margin-bottom: 0px;
		background: #373737;
	}
	.mobile-menu span {
		/* this span is the central line of the menu icon */
		display: inline-block;
		position: absolute;
		left: 50%;
		top: 50%;
		bottom: auto;
		right: auto;
		-webkit-transform: translateX(-50%) translateY(-50%);
		-moz-transform: translateX(-50%) translateY(-50%);
		-ms-transform: translateX(-50%) translateY(-50%);
		-o-transform: translateX(-50%) translateY(-50%);
		transform: translateX(-50%) translateY(-50%);
		width: 25px;
		height: 2px;
		background-color: #fff;
		-webkit-transition: background-color 0.3s;
		-moz-transition: background-color 0.3s;
		transition: background-color 0.3s;
		/* these are the upper and lower lines in the menu icon */
	}
	.mobile-menu span::before, .mobile-menu span:after {
		content: '';
		width: 100%;
		height: 100%;
		position: absolute;
		background-color: #fff;
		right: 0;
		-webkit-transition: -webkit-transform .3s, top .3s, background-color 0s;
		-moz-transition: -moz-transform .3s, top .3s, background-color 0s;
		transition: transform .3s, top .3s, background-color 0s;
	}
	.mobile-menu span::before {
		top: -7px;
	}
	.mobile-menu span::after {
		top: 7px;
	}
	.mobile-menu span.is-clicked {
		background-color: rgba(255, 255, 255, 0);
	}
	.mobile-menu span.is-clicked::before, .mobile-menu span.is-clicked::after {
		background-color: #fff;
	}
	.mobile-menu span.is-clicked::before {
		top: 0;
		-webkit-transform: rotate(135deg);
		-moz-transform: rotate(135deg);
		-ms-transform: rotate(135deg);
		-o-transform: rotate(135deg);
		transform: rotate(135deg);
	}
	.mobile-menu span.is-clicked::after {
		top: 0;
		-webkit-transform: rotate(225deg);
		-moz-transform: rotate(225deg);
		-ms-transform: rotate(225deg);
		-o-transform: rotate(225deg);
		transform: rotate(225deg);
	}
	
	
	
}

@media (min-width: 768px) {
	header nav{
		float: none;
		clear: both;
		margin-left: 0px;
	}
	.nav > li{
		font-size: 1.4rem;
	}
	.nav > li > a{
		padding: 15px 10px 0px 10px;
		height: 48px;
	}
	
	.drop-down li{
		font-size: 1.7rem;
	}
	
	.drop-down li li{
		font-size: 1.3rem;
	}
}

@media (min-width: 992px) {	
	header nav{
		float: right;
		margin-left: 40px;
		clear: none;
	}
	#shop-cart a{
		width: 60px;
	}
	
	.nav > li > a{
		padding: 25px 10px 0px 10px;
		height: 76px;
	}
	
	.drop-down li{
		font-size: 2rem;
	}
	
	.drop-down li li{
		font-size: 1.4rem;
	}
	
}

@media (min-width: 1200px) {
	.nav > li{
		font-size: 1.6rem;
	}
	.nav > li > a{
		padding: 25px 20px 0px 20px;
	}
	#shop-cart a{
		width: 80px;
	}
	
}


/* ========================================================== 
	Sections
============================================================ */

.banner{
	position: relative;
}

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

.overlay{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}

.overlay-content{
	max-width: 800px;
	margin: 0px auto;
	padding: 20px 20px;
	background: rgba(0,0,0,0.5);
}

.overlay-content{
	color: #fff;
}

.overlay-content h1, .overlay-content h2, .overlay-content h3{
	color: #fff;
}

.featured-category{
	position: relative;
	width: 33.333%;
	float: left;
	overflow: hidden;
}

.featured-category img{
	width: 100%;
	height: auto;
	display: block;
	transition: 0.5s;
}

.featured-category a{
	display: block;
}

.featured-category a:hover img{
	-webkit-transform: scale(1.1,1.1);
	transform: scale(1.1,1.1);
}

.featured-category .overlay-content{
	background: none;
}

@media (max-width: 767px){
	.overlay{
		position: static;
		padding: 0px 0px;
	}
	.overlay-content, .overlay-content h1, .overlay-content h2, .overlay-content h3{
		color: #2a2a2a;
	}
	.featured-category{
		width: 100%;
		float: none;
	}
	.overlay-content{
		background: #fff;
	}
}

/* ========================================================== 
	Product selector
============================================================ */

.product-selector-nav{
	margin: 0px 0px 30px 0px;
	padding: 0px;
}

.product-selector-nav:after{
	content: " ";
	width: 230px; 
	height: 10px;
	border-bottom: 10px solid #75af47;
	margin: 20px auto;
	display: block;
}

.product-selector-nav li{
	display: inline-block;
	border-radius: 50%;
	height: 45px;
	width: 50px;
	padding: 5px 0px 0px 0px;
	margin: 0px 5px;
	font-size: 3rem;
	background: #e0e0e0;
	color: #9a9a9a;
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	-webkit-box-shadow: inset 2px 2px 20px -4px rgba(0,0,0,0.6);
	-moz-box-shadow: inset 2px 2px 20px -4px rgba(0,0,0,0.6);
	box-shadow: inset 2px 2px 20px -4px rgba(0,0,0,0.6);
	cursor: pointer;
}

.product-selector-nav li.active, .product-selector-nav li.active.completed{
	background: #75af47;
	color: #fff;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.product-selector-nav li.completed{
	background: #1c1c1c;
	color: #fff;
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
}

.product-selector{
	margin: 0px;
	padding: 0px;
}

.product-selector li{
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.product-selector p{
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: lowercase;
	font-size: 1.8rem;
	margin-bottom: 4rem;
}

.product-selector-option{
	float: left;
	width: 50%;
	padding-bottom: 30px;
	box-sizing: border-box;
}

.product-selector-option.div{
	border-right: 1px solid #929292;
}

.product-selector-select{
	width: 300px;
	margin: -20px auto 100px auto;
	position: relative;
	min-height: 20px;
}

.product-selector-box{
	width: 40px;
	height: 40px;
	border: 1px solid #929292;
	box-sizing: border-box;
	padding: 10px;
	background: rgba(255,255,255,0.7);
	cursor: pointer;
}

.product-selector-box.selected span{
	display: block;
	width: 100%;
	height: 100%;
	background: #75af47;
}

.product-selector-option1{
	position: absolute;
	left: 0px;
}

.product-selector-option2{
	position: absolute;
	right: 0px;
}

.product-selector-box-label{
	position: absolute;
	right: 100%;
	text-align: right;
	top: 10px;
	font-size: 1.8rem;
	width: 150px;
	padding-right: 10px;
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.product-selector-option2 .product-selector-box-label{
	position: absolute;
	left: 100%;
	text-align: left;
	padding-left: 10px;
}

.product-selector-select span.join{
	position: absolute;
	left: 41px;
	top: 20px;
	border-bottom: 1px solid #929292;
	width: 218px;
}

.product-selector-option img{
		width: 100%;
		height: auto;
	}

@media (max-width: 767px){
	
	.product-selector-nav li{
		height: 30px;
		width: 35px;
		font-size: 2rem;
	}
	
	.product-selector-select{
		width: 100px;
	}
	.product-selector-select span.join{
		width: 18px;
	}
	.product-selector-box-label{
		right: 0px;
		top: 100%;
		font-size: 1.2rem;
	}
	.product-selector-option2 .product-selector-box-label{
		left: 0px;
		top: 100%;
	}
	
	.woocommerce-page main{
		padding: 10px;
	}
	
	.tabs.wc-tabs li{
		width: 100%;
	}
}

/* ========================================================== 
	Content
============================================================ */



/* ========================================================== 
	Products
============================================================ */



.sidebar ul, .sidebar li{
	margin: 0px;
	padding: 0px;
	list-style: none;
}

.sidebar > nav > ul > li{
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: lowercase;
	font-size: 2rem;
	padding: 20px 0px;
	border-bottom: 1px solid #75af47;
}

.sidebar > nav > ul > li ul{
	margin-top: 20px;
}

.sidebar > nav > ul > li li{
	font-size: 1.4rem;
	font-family: 'Roboto', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: none;
}

.sidebar > nav > ul > li li a{
	padding: 5px 0px;
	display: block;
}

.sidebar a{
	color: #4c4c4c;
}

.product-title{
	padding-bottom: 10px;
	margin-bottom: 2.5rem;
	border-bottom: 1px solid #75af47;
}

.product-title h2{
	margin-bottom: 0px;
}

.product_title{
	color: #75af47;
	font-size: 2rem;
	margin-bottom: 1.5rem;
}

.product_title:after{
	border-bottom: none;
	margin: 0px;
}


p.price{
	margin-bottom: 0px;
	color: #434343;
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 2.6rem;
}

.images img{
	border: 1px solid #a5a4a4;
}

.thumbnails img{
	width: 25%;
	box-sizing: border-box;
	height: auto;
}

.product-section{
	padding: 0px 0px 20px 0px;
	border-bottom: 1px solid #a5a4a4;
	margin-bottom: 20px;
}

.product-brand-logo{
	
}

.product-brand-logo img{
	max-width: 50%;
	height: auto;
}

.product-listing-header{
	border-top: 1px solid #75af47;
	border-bottom: 1px solid #75af47;
	padding: 20px 0px 0px 0px;
	margin-bottom: 20px;
}

.product-listing-header p{
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 2rem;
	text-transform: lowercase;
	padding-top: 6px;
}

.quantity{
	float: left;
	margin-right: 5px;
}

.quantity input{
	height: 68px;
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 68px;
	text-align: center;
	font-size: 16px;
}

.woocommerce #respond input#submit.alt, .woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce .cart .button, .woocommerce .cart input.button{
	display: inline-block;
	height: 68px;
	padding: 0 30px;
	color: #2a2a2a;
	text-align: center;
	font-size: 16px;
	font-weight: normal;
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 68px;
	letter-spacing: 0rem;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border-radius: 0px;
	border: 1px solid #75af47;
	cursor: pointer;
	box-sizing: border-box;
	transition: 0.5s;
	color: #FFF;
	background-color: #75af47;
	border-color: #75af47;
}

.woocommerce #respond input#submit.alt:hover, .woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover, .woocommerce input.button.alt:hover, .woocommerce .cart .button:hover, .woocommerce .cart input.button:hover{
	color: #FFF;
	background-color: #2a2a2a;
	border-color: #2a2a2a;
}

/* Products Tabs */

.woocommerce-tabs .wc-tabs-wrapper{
	
}

.tabs.wc-tabs{
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.tabs.wc-tabs li{
	display: inline-block;
	list-style: none;
	margin: 0px;
	padding: 0px;
	
	text-align: center;
	font-size: 16px;
	font-weight: normal;
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.tabs.wc-tabs a{
	padding: 0px 20px;
	height: 68px;
	line-height: 68px;
	display: block;
	background: #f6f6f6;
	color: #2a2a2a;
}

.tabs.wc-tabs .active a{
	background: #fff;
}

.panel.entry-content.wc-tab{
	background: #fff;
	padding: 20px;
}

.related.products{
	margin-top: 20px;
}

.related.products ul.products li.product, .related.products ul.products li.product{
	width: 29.5% !important;
}


.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
	
	background: #fff;
	padding: 10px;
	box-sizing: border-box;
	border: 1px solid #a5a4a4;
	width: 30.05%;
}

.woocommerce ul.products li.product a img{
	width: 100%;
	height: auto;
}

.woocommerce ul.products li.product h3{
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 2rem;
	text-transform: lowercase;
	letter-spacing: 0px;
	color: #75af47;
}

.woocommerce ul.products li.product .price{
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 2.6rem;
	text-transform: lowercase;
	color: #434343;
}

.single-product .col6{
	position: relative;
}

.woocommerce #respond input#submit.disabled, .woocommerce #respond input#submit:disabled, .woocommerce #respond input#submit:disabled[disabled], .woocommerce a.button.disabled, .woocommerce a.button:disabled, .woocommerce a.button:disabled[disabled], .woocommerce button.button.disabled, .woocommerce button.button:disabled, .woocommerce button.button:disabled[disabled], .woocommerce input.button.disabled, .woocommerce input.button:disabled, .woocommerce input.button:disabled[disabled]{
	padding: 0 30px;
}

@media (max-width: 767px){
	.sidebar{
		display: none;
	}
	.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{
		width: 100%;
	}
	
	.related.products ul.products li.product, .related.products ul.products li.product{
		width: 100% !important;
	}
	.quantity{
		float: none;
	}
}



/* ========================================================== 
	Cart & Checkout
============================================================ */

.shop_table{
	background: #fff;
	border: 1px solid #a5a4a4;
}

.woocommerce-cart table.cart td.actions .coupon .input-text{
	height: 68px;
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	line-height: 68px;
	text-align: center;
	font-size: 16px;
}

#customer_details{
	background: #fff;
	padding: 10px;
	box-sizing: border-box;
	margin-bottom: 2.5rem;
	border: 1px solid #a5a4a4;
}

#add_payment_method #payment ul.payment_methods li, .woocommerce-checkout #payment ul.payment_methods li{
	list-style: none;
}

#add_payment_method #payment, .woocommerce-checkout #payment{
	background: #fff;
	border: 1px solid #a5a4a4;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register{
	background: #fff;
	border: 1px solid #a5a4a4;
}


@media (max-width: 767px){
	.woocommerce-cart table.cart td.actions .coupon .input-text{
		width: 100%;
	}
	.woocommerce #content table.cart td.actions .coupon .button, .woocommerce #content table.cart td.actions .coupon .input-text, .woocommerce #content table.cart td.actions .coupon input, .woocommerce table.cart td.actions .coupon .button, .woocommerce table.cart td.actions .coupon .input-text, .woocommerce table.cart td.actions .coupon input, .woocommerce-page #content table.cart td.actions .coupon .button, .woocommerce-page #content table.cart td.actions .coupon .input-text, .woocommerce-page #content table.cart td.actions .coupon input, .woocommerce-page table.cart td.actions .coupon .button, .woocommerce-page table.cart td.actions .coupon .input-text, .woocommerce-page table.cart td.actions .coupon input{
		width: 100%;
	}
}

/* ========================================================== 
	Blog
============================================================ */

#sidebar h2{
	color: #4c4c4c;
	margin-bottom: 1rem;
}

#sidebar ul, #sidebar li{
	margin: 0px;
	padding: 0px;
	list-style: none;
}

#sidebar > ul > li li{
	font-family: 'Bank Gothic W01 Medium', "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	text-transform: lowercase;
	font-size: 2rem;
	padding: 15px 0px;
	border-bottom: 1px solid #75af47;
}



#sidebar a{
	color: #4c4c4c;
}

#sidebar a:hover{
	color: #75af47;
}

.post{
	padding: 20px;
	background: #fff;
	border: 1px solid #a5a4a4;
	margin-bottom: 2rem;
}

/* ========================================================== 
	Footer
============================================================ */

footer{
	background: #1c1c1c;
	color: #fff;
	padding: 20px 0px;
}

.footer-logo{
	margin-bottom: 30px;
}

footer ul{
	padding-left: 0px;
}

footer li{
	list-style: none;
	margin-left: 0px;
}

.legal p{
	color: #5c5c5c;
	font-size: 1.3rem;
}
 

/* ========================================================== 
	UI
============================================================ */


.icon{
	display: inline-block;
	width: 20px;
	height: 20px;
}

.icon.twitter{
	width: 17px;
	height: 17px;
}

.icon.twitter:hover, .icon-wrap:hover .icon.twitter{
	background-position: -30px 0px; 
}

.icon.cart{
	width: 26px;
	height: 24px;
	background: url(../images/icon_basket.svg) no-repeat;
}

/* ==========================================================================
   Utils
   ========================================================================== */

.alignright, .floatright{
	float: right;
	margin: 0px 0px 20px 20px;
	clear: both;
}

.alignleft, .floatleft{
	float: left;
	margin: 0px 20px 20px 0px;
}

.group:before,
.group:after{
    content: " ";
    display: table;
}

.group:after {
    clear: both;
}

.group {
    *zoom: 1;
}

.inline li{
	float: left;
	display: inline;
}

.mobile-only{
	display: none;
}

.responsive{
	width: 100%;
	height: auto;
}

@media (max-width: 767px) {
	.not-for-mobile{
		display: none !important;
	}
	.mobile-only{
		display: block !important;
	}
}


@media (min-width: 768px){
	
	.vertical-centre{
		position: relative;
		top: 50%;
		-webkit-transform: translateY(-50%);
  		-ms-transform: translateY(-50%);
  		transform: translateY(-50%);
	}
	
	.vertical-bottom{
		position: absolute;
		bottom: 30px;
		width: 100%;
	}
	
}

