/*
Theme Name: Proteq
Theme URI: http://www.proteq.com.au
Description: A WordPress theme designed and built for Proteq Equine Bedding.
Author: Caleb Gittins
Author URI: http://www.calebgittins.com.au
Version: 1.0
*/

/*------------------------------------*\
    CONTENTS
\*------------------------------------*/

/*

1. BASE.........Reset and default styles
2. LAYOUT.......Main and unique elements
3. MODULE............Reusable components
4. STATE..................Current states
5. THEME............Branding and colours

*/

/*------------------------------------*\
    1. $BASE
\*------------------------------------*/

html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, capt, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

* {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;	
}

ul, ol { list-style: none; }

body {
    background: #fff;
    font: normal 100%/1.618em "europa", Arial, Helvetica, sans-serif;
    font-weight: 100;
    color: #777;
    overflow-y: scroll; 
}

/* Give elements the same bottom margin to create consistent vertical rhythm */

p, ul, ol, blockquote, table, hr, iframe, .grid, .cta, .message, .button, .banner, .content, .has-mb { margin-bottom: 1.618em; } 

/*------------------------------------*\
    $TYPOGRAPHY
\*------------------------------------*/

h1, h2, h3, h4, h5, h6 { 
	font-weight: 400; 
	color: #f6b332;
}

h1, .alpha {
    font-size: 2.125em; /* 34px */
    line-height: 1.235em; /* 42px */
	margin-bottom: 0.529em; /* 18px */
}

h2, .beta {
    font-size: 1.438em; /* 23px */
    line-height: 1.348em; /* 31px*/
	margin-bottom: 0.913em; /* 18px*/
}

h3, .gamma {
    font-size: 1.188em; /* 19px*/
    line-height: 1.421em; /* 27px*/
	margin-bottom: 0.947em; /* 18px*/
}

h4, .delta {
    font-size: 1.125em; /* 18px*/
    line-height: 1.444em; /* 26px*/
	margin-bottom: 1em; /* 18px*/
}

h5, .epsilon {
	font-size: 1em; /* 16px*/
    line-height: 1.5; /* px*/
	margin-bottom: 1.125em; /* 18px*/
}

h6, .zeta {
	font-size: 0.875em; /* 14px*/
	line-height: 1.571em; /* 22px*/
	margin-bottom: 1.286em; /* 18px*/
}

small, .small {
    font-size: 0.875em;
    line-height: 1.4em;
}

/*------------------------------------*\
    $LINKS
\*------------------------------------*/

a:link, a:visited {
    text-decoration: none;
    color: #f6b332;
    font-weight: 400;
	-webkit-transition: all .1s linear;
       -moz-transition: all .1s linear;
        -ms-transition: all .1s linear;
         -o-transition: all .1s linear;
            transition: all .1s linear;
}

a:hover {
    color: #e7981a;
    text-decoration: underline;
    outline: none;
}

a:focus, a:active { outline: none }

a.no-td:hover { text-decoration: none; }

/*------------------------------------*\
    $BUTTONS
\*------------------------------------*/

a.button, 
input[type="submit"],
button {
	font-weight: 400;
	font-size: 1.125em;
    line-height: 1em;
    padding: 1em 1.5em;
	text-transform: uppercase;
	border-radius: 5px;
	color: #fff;
	background-color: #f6b332;
	border: 3px solid #f6b332;
}

a.button {
    display: inline-block;
    zoom: 1;
    *display: inline;   
}

a.button:hover, 
input[type="submit"]:hover,
button:hover {
    text-decoration: none;
    color: #fff;
    background-color: #e7981a;
    border-color: #e7981a;
}

a.button-alt {
	background-color: #4d4d4c;
	border-color: #4d4d4c;
	color: #fff;
}

a.button-alt:hover {
	background-color: #343434;
	border-color: #343434;
	color: #fff;
}

a.button-outline {
	background-color: transparent;
	border: 3px solid #fff;
}

a.button-outline:hover {
	background-color: #fff;
	color: #4D4D4C;
	border-color: #fff;
}

a.button-full {
	width: 100%;
	display: block;
	text-align: center;
	padding-left: 0;
	padding-right: 0;
}

.button + .button { margin-left: 0.75em; }

/*------------------------------------*\
    $FORMS
\*------------------------------------*/

input, select, textarea {
    font-family: "europa", Arial, Helvetica, sans-serif;
	font-size: inherit; 
    line-height: 1em;
    border: 1px solid #d5d5d5;
	padding: 0.188em 0.313em; /* 3px 5px */
}

input[type="submit"],
button {
	font-family: "europa", Arial, Helvetica, sans-serif;
	-webkit-appearance: none; /* Remove iOS default styles */
    line-height: 1em;
    padding: 1em 1.618em;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    color: #fff;
    background-color: #777;
    -webkit-transition: all .1s linear;
       -moz-transition: all .1s linear;
        -ms-transition: all .1s linear;
         -o-transition: all .1s linear;
            transition: all .1s linear;
    -webkit-border-radius: 3px;
     -opera-border-radius: 3px;
     -khtml-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
}

input[type="submit"]:hover { background-color: #333 }

/*------------------------------------*\
    $OTHER ELEMENTS
\*------------------------------------*/

hr {
	border: none;
    clear: both;
    height: 35px;
    position: relative;
    margin-top: 0;
}

hr:before {
	content: '';
	display: block;
	width: 100px;
	height: 35px;
	background: url(images/sprite.png) -100px -200px;
	margin: 0 auto;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
	
	hr:before {
		background-image: url(images/sprite@2x.png);
		background-size: 600px 800px;
	}
		
}

img, iframe { 
	vertical-align: top; 
	max-width: 100%;
}





/*------------------------------------*\
    2. $LAYOUT
\*------------------------------------*/

.header, .navigation, .main, .footer { width: 100%; }

.container { 
	width: 1000px; 
	margin: 0 auto;
}

.header {
	position: relative;
	padding-top: 1.25em;
	background-color: #1a1919;
	border-top: 5px solid #f6b332;
	box-shadow: 1px 1px 15px rgba(0,0,0,0.3);
	-webkit-transition: all .2s ease-in-out;
       -moz-transition: all .2s ease-in-out;
        -ms-transition: all .2s ease-in-out;
            transition: all .2s ease-in-out;
}

.top .grid-alpha { width: 20%; }

.top .grid-beta { 
	width: 80%; 
	position: relative;
	padding-right: 7.5em;
}

.logo { width: auto; }

.top-main { margin-bottom: 10px; }

.logo-header {
	position: absolute;
	top: 0;
	right: 0;
	width: 100px;
}

ul.nav-primary { 
	float: right; 
	position: relative;
}
	
.nav-primary li { z-index: 500; }
	
.nav-primary > ul > li { float: left; }
	
.nav-primary a {
	display: block;
	padding: 0;	
	border: none;
	color: #6c6c6c;
	font-size: 15px;
	text-transform: uppercase;
	line-height: 5.5em;
	padding: 0 1em;
	font-weight: 400;
}

.nav-primary > li:last-child a { padding-right: 0; }

.nav-primary li:hover > a {
	color: #f6b332;
	text-decoration: none;
}

.nav-primary li:hover > ul { display: block }
	
.nav-primary .mega-menu {
	display: none;
	position: absolute;
	z-index: 999;
	top: 100%;
	left: -225px;
	width: 1000px;  
	background-color: #fff;
	box-shadow: 0 0 4px rgba(0,0,0,0.15);
	-webkit-border-radius: 0 0 3px 3px;
	   -moz-border-radius: 0 0 3px 3px;
	        border-radius: 0 0 3px 3px;
}

.nav-primary .mega-menu li {
	width: 25%;
	text-align: center;
	border-right: 1px solid #eee;
}

.nav-primary .mega-menu li:last-child { 
	border: none;
}

.nav-primary .mega-menu a {
	padding: 1.25em;
	line-height:  1em;
}

.nav-primary .mega-menu .mega-menu-thumbnail {
	background-color: #f6b332;
	overflow: hidden;
	margin-top: 1em;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	        border-radius: 3px;
}
	
.nav-primary li.current_page_item > a, .nav-primary li.current-menu-ancestor > a, .nav-primary li.current-menu-item > a, .nav-primary li.current-menu-parent > a {
	color: #f6b332;
	font-weight: 700;
}
	
* html .nav-primary li.current_page_item a, * html .nav-primary li.current-menu-ancestor a, * html .nav-primary li.current-menu-item a, * html .nav-primary li.current-menu-parent a, * html .nav-primary li a:hover {
	color: #f6b332;
	font-weight: 700;
}

.nav-primary > li.current-menu-item > a > span, .nav-primary > li.current-menu-parent > a > span { border-bottom: 2px solid; }
	
/* Drop down current item */
	
.nav-primary ul ul li.current-menu-item a { 
	background-color: #333;
	color: #fff;  
}
	
.top-main { text-align: right; }

.tagline { 
	display: inline-block;
	line-height: 20px;
	margin-bottom: 0;
	margin-right: 1em;
	margin-top: 2px;
}

.facebook-like { 
	display: inline-block; 
	min-width: 82px;
}

/*------------------------------------*\
    $FIXED HEADER
\*------------------------------------*/

.header-fixed {
	position: fixed;
	top: -79px;
	left: 0;
	width: 100%;
	z-index: 999;
	padding: 0;
}

.header-fixed .logo {
	width: 80px;
	margin-top: 0.5em;
}

.header-fixed .nav-primary a {
	line-height: 69px;
}

.header-fixed .mega-menu a {
	line-height:  1em;
}

/*------------------------------------*\
    $CAROUSEL
\*------------------------------------*/

.feature { 
	position: relative; 
	height: 500px;
	overflow: hidden;
}

.feature-mask {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: linear-gradient(to bottom, rgba(0,0,0,.65), rgba(255,255,255,0));
}

.feature .container {
	position: absolute;
	bottom: 5em;
	left: 50%;
	margin-left: -500px;
	width: 1000px;
}

.feature-content {
	color: #fff;
	position: relative;
	z-index: 2;
	text-align: center;
}

.feature-heading, .feature p { text-shadow: 1px 1px 1px rgba(0,0,0,0.5); }

.feature-heading {
	font-size: 2.5em;
	line-height: 1em;
	margin-bottom: 0.5em;
	color: #fff;
	text-transform: uppercase;
	font-weight: 700;
}

.feature p {
	font-size: 1.125em;
	line-height: 1.5em;
	margin-bottom: 1.95em;
	padding: 0 10em;
}

.feature .button {
	margin-bottom: 0;
	padding: 1em 2em;
	width: 211px;
	text-align: center;
}

.feature-nav {
	width: 100%;
	position: absolute;
	bottom: 1em;
	left: 0;
	text-align: center;
}

.feature-nav li { display: inline-block; }

.feature-nav a {
	display: inline-block;
	width: 16px;
	height: 16px;
	background-color: transparent;
	border: 1px solid #fff;
	border-radius: 100%;
	margin: 0 3px;
}

.feature-nav .current a { background-color: #fff; }

/*------------------------------------*\
    $FLEXSLIDER
\*------------------------------------*/

.flexslider, .flexslider ul.slides {
	margin: 0; 
	padding: 0;
}

.flexslider .slides > li {
	display: none; 
	-webkit-backface-visibility: hidden;
	height: 500px;
	position:  relative;
}

.flexslider .slides > li:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: linear-gradient(to bottom, rgba(0,0,0,.65), rgba(255,255,255,0));
}

.flexslider .slides img {
	width: 100%; 
	display: block;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -960px; 
	max-width: none;
	width: auto;
}

.slides:after {
	content: "\0020"; 
	display: block; 
	clear: both; 
	visibility: hidden; 
	line-height: 0; 
	height: 0;
}

html[xmlns] .slides { display: block; }

* html .slides { height: 1%; }

.no-js .slides > li:first-child { display: block; }

/* Direction Nav */

ul.flex-direction-nav { margin-bottom: 0; }

.flex-direction-nav a {
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
	top: 50%;
	left: 1%;
	margin-top: -12px;
    z-index: 99;
    cursor: pointer;
    text-indent: -9999px;
    background: url(images/sprite.png) -200px -100px no-repeat;
}

.flex-direction-nav a.flex-next {
	left: auto;
	right: 1%;
	background-position: -300px -100px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
	
    .flex-direction-nav a {
    	background-image: url(images/sprite@2x.png) -200px -100px;
		background-size: 600px 800px;
	}
	
}

/* Control Nav */

ol.flex-control-nav {
	position: absolute;
	left: 0;
	bottom: 0;
	line-height: 1;
	width: 100%;
	z-index: 50;
	text-align: center;
}

.flex-control-nav li {
    margin: 0 5px;
    display: inline-block;
    zoom: 1;
    *display: inline;
	text-indent: -9999em;
}

.flex-control-paging li a {
    width: 14px;
    height: 14px;
    display: block;
    background-color: transparent;
    border: 1px solid #fff;
    cursor: pointer;
	-webkit-border-radius: 100%;
	   -moz-border-radius: 100%;
	        border-radius: 100%;
}

.flex-control-paging li a.flex-active {
    background-color: #fff;
    cursor: default;
}

.intro {
	padding: 2.5em 0;
	text-align: center;
	position: relative;
}


.intro-heading {
	font-weight: 400;
	text-transform: uppercase;
	text-align: center;
}

.intro p {
	font-size: 1.25em;
	line-height: 1.618em;
	padding: 0 5em;
	margin-bottom: 0;
}

.intro-secondary {
	padding-top: 0.5em;
}

.home-primary {
	padding: 2.5em;
}

.home-primary .grid { margin-left: -2em; }

.home-primary .grid-item { padding-left: 2em; }

.home-primary p { 
	font-size: 1.125em; 
	line-height: 1.618em;
	margin-bottom: 0;
}

.home-secondary {
	background-color: #1A1919;
	padding: 2.5em 0;
	color: #fff;
}

.home-secondary-media {
	float: right;
	width: 55%;
}

.home-secondary-content {
	width: 33%;
	float: left;
}

.home-secondary-heading {
	font-size: 2em;
	font-style: italic;
	color: #fff;
	text-align: center;
	font-weight: 100;
	margin-bottom: 0;
	margin-top: 1.5em;
}

.home-tertiary { 
	padding: 4em 0 16em 0; 
	background: url(images/bg-product.jpg) 50% 100% no-repeat;
	background-size: cover;
}

.home-tertiary-content { 
	font-size: 1.125em; 
	width: 67%;
	background-color: rgba(255,255,255,0.85);
	box-shadow: -32em 0 0 rgba(255,255,255,0.85);
	padding: 2em 1em 1em 0;
	-webkit-border-radius: 0 5px 5px 0;
	-moz-border-radius: 0 5px 5px 0;
	border-radius: 0 5px 5px 0;
}

.home-tertiary ul { overflow: hidden; }

.home-tertiary li {
	float: left;
	width: 50%;
	margin-bottom: 0.625em;
}

.testimonial { padding: 2.5em 0; }

.testimonial .grid { margin-left: 0; }

.testimonial .grid-item { padding-left: 0; }

.testimonial-intro {
	padding-right: 2em;
}

.testimonial-intro a {
	font-weight: 400;
	text-transform: uppercase;
	border-bottom: 1px solid;
	font-size: 0.875em;
}

.testimonial-heading { 
	font-size: 1.5em;
	text-transform: uppercase;
	margin-bottom: 0.5em;
}

.testimonial .author {
	color: #999;
	margin-bottom: 0;
}

.testimonial-item-image { 
	width: 20%; 
	float: right;
}

.testimonial img { border-radius: 100%; }

.testimonial-item-content { 
	float: left;
	width: 80%;
	padding: 0 2em 0 4.5em;
	position: relative;
}

.testimonial-item-content:before {
	content: '“';
	position: absolute;
	top: 40px;
	left: 0;
	display: block;
	font-size: 7em;
	color: #ccc;
	font-family: "Didot", "Baskerville", "Times New Roman", serif;
	font-weight: bold;
	color: #f6b332;
}

.content-testimonial-item-image img {
	-webkit-border-radius: 100%;
	   -moz-border-radius: 100%;
	        border-radius: 100%;
}

.list-testimonials {
	margin-bottom: 64px;
}

.list-testimonials .grid {
	margin-left: -2.5em;
}

.list-testimonials .grid-item {
	padding-left: 2.5em;
	padding-bottom: 1em;
}

.list-testimonials .content-testimonial-item-image {
	float: right;
	width: 125px;
	margin: 0.5em 0 0.5em 1em;
}

.content-testimonial-item {
	position: relative;
	padding: 0 0 0 3.5em;
}

.content-testimonial-featured {
	padding: 0 1em 0 4.5em;
	font-size: 1.125em;
	line-height:  1.5em;
}

.content-testimonial-item-content:before {
	content: '“';
	position: absolute;
	top: 28px;
	left: 0;
	display: block;
	font-size: 5em;
	color: #ccc;
	font-family: "Didot", "Baskerville", "Times New Roman", serif;
	font-weight: bold;
	color: #f6b332;
}

.content-testimonial-featured .content-testimonial-item-content:before {
	font-size: 7em;
	top: 40px;
}

.content-testimonial-item .author {
	color: #999;
}

/*------------------------------------*\
    $PROMO
\*------------------------------------*/

.promo-image { margin-bottom: 1em; }

.promo-heading { margin-bottom:  0.75em; }

.promo p {
    font-size: 0.875em;
    line-height: 1.5em;
}

/*------------------------------------*\
    $BANNER
\*------------------------------------*/

.banner {
    width: 100%;
    height: 10em;
	position: relative;
	background-position: 50% 0;
	background-repeat: no-repeat;
	background-size: cover;
}

/*------------------------------------*\
    $CONTENT
\*------------------------------------*/

.content-heading {
	background-color: #f6b332;
	padding: 1.75em 0;
	position: relative;
	margin-bottom: 1.618em;
}

.page-title {
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    font-size: 3em;
    margin-bottom: 0;
    position: relative;
}

.content h4 + h5 {
	color: #aaa;
	margin-top: -1em;
	text-align: uppercase;
}

.content {
	float: left;
	padding: 0;
	width: 65%; /* 640px */
}
	
.content-right { float: right; }

.content-full { 
	float: none;
	width: 100%;
}

/*------------------------------------*\
    $CONTENT TABLES
\*------------------------------------*/

.content table {
    border-collapse: collapse;
    width: 100%;
}

.content table th { 
	font-weight: bold; 
	text-align: left;
}

.content table td, .content table th {
    border-bottom: 1px solid #eee;
    padding: 0.625em;
}

/*.content table tr:nth-child(2n+2) { background-color: #f9f9f9; }*/

.table-heading { text-align: center; }

.table-primary p { margin-bottom: 0; }

.table-primary tr:first-child { font-weight: bold; }

.table-primary td { width: 20%; }

.table-primary tr:last-child td { border-bottom: none; }

/*------------------------------------*\
    $CONTENT LISTS
\*------------------------------------*/

.content ul, .content ol { margin-left: 2em; }

.content ul { list-style: disc; }

.content ol { list-style: decimal; }

.content li { margin-bottom: 0.875em; }

.content li > ul, .content li > ol { 
    margin-top: 0.616em; /* 10px */ 
    margin-bottom: 0;
}

.content ul, ul.list-stars { list-style: none; }

.content ul li, ul.list-stars li {
	position: relative;
	padding-left: 1.618em;
}

.content ul ul { margin-left: 0.5em; }

.content ul li:before, 
ul.list-stars li:before {
	content: '';
	position: absolute;
	top: 4px;
	left: 0;
	display: inline-block;
	width: 16px;
	height: 16px;
	margin-right: 1em;
	background: url(images/sprite.png) 0 -200px no-repeat;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
	
	.content ul li:before, 
	ul.list-stars li:before {
		background-image: url(images/sprite@2x.png);
		background-size: 600px 800px;
	}
		
}

.content li.gfield {
	padding-left: 0;
}

.content li.gfield:before {
	display: none !important;
	content: '';
}

/* Styling for call to action links */

a.cta {
	clear: both;
	color: #fff;
    display: block;
    padding: 1em 1.618em;
	line-height: 1.4em;
    background-color: #808080;
    -webkit-transition: all .25s ease-in-out;
	   -moz-transition: all .25s ease-in-out;
	        transition: all .25s ease-in-out;
}

a.cta:hover { 
	text-decoration: none;
	background-color: #454545;
}

	
/* Two column list */

ul.list-double {
	margin-left: 0;
	clear: both;
	overflow: hidden;
}
	
ul.list-double li {
	float: left;
	width: 40%;
	margin-left: 10%;
}


/* Page lists displayed with [list-pages] and [child-pages] */

ul.child-pages, ul.list-pages {
	list-style: none;
	margin-left: 0;
	border-top: 1px solid #efefef;
}

ul.child-pages li, ul.list-pages li { 
	border-bottom: 1px solid #efefef; 
	margin-bottom: 0;
}

ul.child-pages a, ul.list-pages a { 
	display: block; 
	padding: 0.616em 0.313em;
}

@media all and (min-width: 25em) { /* 400px */

	ul.child-pages a:before, ul.list-pages a:before {
		content: '';
		display: inline-block;
		zoom: 1;
		*display: inline;
		vertical-align: middle;
		width: 24px;
		height: 24px;
		background: url(images/sprite.png) -300px -100px no-repeat;   
		margin-right: 0.5em; 
		float: right;
	}	

}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
	
    ul.child-pages a:before, ul.list-pages a:before {
        background-image: url(images/sprite@2x.png) -300px -100px no-repeat;
		background-size: 600px 800px;
    }
	
}

/*------------------------------------*\
    $BLOCKQUOTE
\*------------------------------------*/

blockquote {
	border: double #d5d5d5;
	border-width: 4px 0;
	padding: 1.618em;
	font-size: 1em;
	line-height: 1.618em;
	text-align: center;
}

blockquote p { margin: 0 }

/*------------------------------------*\
	$MESSAGES
\*------------------------------------*/

.message {
    padding: 0.875em 1.618em;
    border: 1px solid;
    color: #555;
}

.note {
	background: #fcffc5;
	border-color: #fbffa3;
}

.highlight {
	background: #A9E8FA;
	border-color: #79dbf7;
}

.warning {
    background-color: #ef1000;
    border-color: #cf0000;
    color: #fff;
}

/*------------------------------------*\
    $BLOG
\*------------------------------------*/

.content-blog {
	width: 560px;
}

.post-divider {
    display: block;
    height: 1px;
    background: #ddd;
    margin-bottom: 1.618em;
}

.post-meta p {
	font-size: 0.875em;
	line-height: 1.4em;
}

.post-navigation {
    font-size: 0.875em;
    line-height: 1.5em;
    /*border-top: 1px solid #d5d5d5;*/
    padding: 1em 0;
}

.archive-navigation {
    display: block;
    clear: both;
    padding: 1em 0;
    text-align: center;
    border-top: 1px solid #d5d5d5;
}

.archive-navigation span, .archive-navigation a {
    padding: 3px 6px;
    border: 1px solid #d5d5d5;
	-webkit-border-radius: 2px;
     -opera-border-radius: 2px;
     -khtml-border-radius: 2px;
 	   -moz-border-radius: 2px;
            border-radius: 2px;
    
}

.post-share h5 {
    font-size: 0.875em;
	line-height: 1.5em;
    text-transform: uppercase;
}

@media all and (min-width: 43.750em) { /* 700px */

	.post-share h5 {
		float: left;
		margin: 0 0.616em 0 0;
	}

}

#___plusone_0 { vertical-align: top !important; }

/*------------------------------------*\
    $CONTENT IMAGES
\*------------------------------------*/

.alignright, a.alignright, .alignleft, a .alignleft, .aligncenter, a .aligncenter, .alignnone, a.alignnone, .wp-caption {
	padding: 0.5em; /* 8px */
	background-color: #fff;
    border: 1px solid #d5d5d5; 
}

@media all and (max-width: 25.000em) { /* 400px */

	img.alignright, img.alignright { 
		max-width: 50%;
		height: auto; 
	}

}

.alignright, a.alignright {
    float: right;
    margin: 0 0 1.618em 1.618em; /* 0 0 26px 26px */
}

.alignleft, a.alignleft {
    float: left;
    margin: 0 1.618em 1.618em 0; /* 0 26px 26px 0 */
}

.aligncenter, a .aligncenter {
    display: block;
    margin: 0 auto 1.618em auto; /* 0 auto 26px auto */
}

.alignnone, a .alignnone {
    display: block;
    margin-bottom: 1.618em; /* 26px */
}

.wp-caption { margin-bottom: 1.618em; /* 26px */ } 

.wp-caption img {
    border: none;
    margin: 0;
    padding: 0;
}

.wp-caption p.wp-caption-text {
    font-size: 0.875em; /* 14px */
    line-height: 1.4em; /* 19px */
    margin: 0.357em 0 0 0; /* 5px 0 0 0 */
	padding: 0.714em 0 0.357em 0; /* 10px 0 5px 0 */
	text-align: center;
}

#gallery-1 img {
    border: 1px solid #d5d5d5 !important;
    background: #fff;
    padding: 6px;
}

#gallery-1 img:hover { border: 1px solid #808080 !important }

/*------------------------------------*\
    $RIGHT SIDEBAR
\*------------------------------------*/

.sidebar {
	float: right;
	width: 28%; /* 280px */
}	

.sidebar > div, .sidebar-blog > div { margin-bottom: 2em; }

.island {
	padding: 1em 1.168em;
	color: #fff;
}

.island-heading { color: #fff; }

.list ul {
    list-style-type: none;
    border-top: 1px solid #d5d5d5;
	margin: 0;
}

.list li { border-bottom: 1px solid #d5d5d5; }

.list a {
    display: block;
    padding: 0.616em 0.313em;
	line-height: 1.4em;
}

.list a:hover, .list .current_page_item a { text-decoration: none; }

.sidebar-list img {
	margin-bottom: 1.5em;
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	        border-radius: 3px;
}

.sidebar-list p { 
	margin-bottom: 0.618em; 
	color: #999;
}

.nav-borders li:after {
	content: '';
	display: block;
	width: 100%;
	height: 1px;
	margin: 0 auto;
	background-color: #ddd;
}

.nav-borders a { 
	padding: 0.85em 0.625em;
}

.nav-borders a:hover {
	text-decoration: none;
}

.nav-borders .current_page_item span { border-bottom: 1px solid; }

/*------------------------------------*\
    $SEARCH
\*------------------------------------*/

.form-search { position: relative; }

.form-search .search-input { 
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0.5em 0.313em 0.5em 2.5em;
	color: #666;
	border: 1px solid #ddd;
	-webkit-border-radius: 20px;
	   -moz-border-radius: 20px;
	        border-radius: 20px;
}

.form-search:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 1em;
	margin-top: -8px;
	z-index: 1;
	display: inline-block;
	zoom: 1;
	*display: inline;
	width: 16px;
	height: 16px;
	background: url(images/sprite.png) -100px -100px no-repeat;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
	
    .form-search:before {
    	background-image: url(images/sprite@2x.png) -100px -100px;
		background-size: 600px 800px;
	}
	
}

.sidebar-blog {
	width: 320px;
	position: relative;
}

.sidebar-blog .sidebar-heading {
	text-transform: uppercase;
	font-weight: 700;
}

.blog-body { 
	position: relative; 
	overflow: hidden;
}

.blog-body:before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 52px;
	right: 375px;
	width: 1px;
	background-color: #ddd;
}

/*------------------------------------*\
    $LEFT SIDEBAR
\*------------------------------------*/

.sidebar-left { 
	padding: 0 1em; 
	margin-bottom: 1em;
}

.sidebar-left .contact-detail {
    padding: 1em 0;
    border-bottom: 1px solid #d5d5d5;
}

.sidebar-left h4 {
    font-size: 1em;
    line-height: 1em;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.sidebar-left .icon { vertical-align: top; }

.sidebar-left p, .sidebar-left table {
    font-size: 1.1em;
    line-height: 1.4em;
    margin: 0;
}

.sidebar-left p + p { margin: 10px 0 0 0 }

.sidebar-left {
	float: left;
	width: 18.750em; /* 300px */
	padding: 0;
	margin-bottom: 1em;
	font-size: 1.1em;
}

.sidebar-left { font-size: 1em; }

.sidebar-left p, .sidebar-left table { font-size: 1em; }
	
.sidebar-left h4 { margin-bottom: 0.875em; }
	

/*------------------------------------*\
    $NEWSLETTER SUBSCRIPTION
\*------------------------------------*/

.form-subscribe input { 
	margin-bottom: 0.313em; /* 5px */
	width: 100%;
	font-size: 1em;
	line-height: 1em;
}

.form-subscribe input[type="text"] { padding: 0.5em; }

.form-subscribe input[type="submit"] { padding: 0.75em; }

/*------------------------------------*\
    $FOOTER
\*------------------------------------*/

.footer {
	background-color: #1A1919;
	padding: 2em 0;
	border-top: 5px solid #f6b332;
}

.footer-body {
	font-size: 0.875em;
}

.footer-alpha {
	border-bottom: 1px solid #4D4D4C;
	margin-bottom: 1em;
	padding-bottom: 1em;
}

.footer p, .footer a { 
	color: #666; 
	margin-bottom: 0;
}

.footer a { font-weight: 400; }

.footer a:hover { color: #999 }

.footer-beta a { font-weight: 300; }
 
.nav-secondary a {
	text-transform: uppercase;
	padding: 0 1em;
}

.nav-secondary li:first-child a { padding-left: 0; }

.nav-secondary a:hover { text-decoration: none; }

.nav-secondary .current-menu-item a, .nav-secondary .current-menu-ancestor a  {
	color: #999;
}

.nav-secondary .current-menu-item a span, .nav-secondary .current-menu-ancestor a span { border-bottom: 2px solid; }

.footer .facebook-like { float: right; }





/*------------------------------------*\
    3. $MODULE
\*------------------------------------*/ 

/*------------------------------------*\
    $NAV
\*------------------------------------*/ 

ul.nav, .nav ul { 
    list-style: none; 
    margin: 0;
    padding: 0;
}

.nav li { float: left; }

.nav a { display: block; }

ul.nav-stacked li { float: none; }

/*------------------------------------*\
    $PADDING
\*------------------------------------*/

.has-p { padding: 1em 1.618em; }
.has-pv { padding: 1em 0; }
.has-ph { padding: 0 1.618em; }

.has-p-l { padding: 2em 3.236em; }
.has-pv-l { padding: 2em 0; }
.has-ph-l { padding: 0 3.236; }

/*------------------------------------*\
    $MARGIN
\*------------------------------------*/

.has-m { margin: 1em 1.618em; }
.has-mv { margin: 1em 0; }
.has-mh { margin: 0 1.618em; }

.has-m-l { margin: 2em 3.236em; }
.has-mv-l { margin: 2em 0; }
.has-mh-l { margin: 0 3.236; }

/*------------------------------------*\
    $HELPER
\*------------------------------------*/

.clr { clear: both }

.left { float: left }

.right { float: right }

.text-center { text-align: center; }

.text-right { text-align: right; }

.upper { text-transform: uppercase; }

.lower { text-transform: lowercase;}

.under { border-bottom: 1px solid; }

.spaced { letter-spacing: 2px; }

.no-mb { margin-bottom: 0; }

.is-relative { position: relative; }

.inline-block {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.cf:before, .cf:after, .grid:before, .grid:after, .main:before, .main:after, .content:before, .content:after, .nav-primary:before, .nav-primary:after, .container:before, .container:after, .top:before, .top:after, .navigation:before, .navigation:after {
    content: " ";
    display: table;
}
.cf:after, .grid:after, .main:after, .content:after, .nav-primary:after, .container:after, .top:after, .navigation:after { clear: both; }
.cf, .grid, .main, .content, .nav-primary, .container, .top, .navigation { *zoom: 1; }

/*------------------------------------*\
    $GRID
\*------------------------------------*/ 

.grid {
	margin-left: -1.618em;
}

.grid-item {
    display: block;
    float: left;
    padding-left: 1.618em;
    width: 100%;
}

@media all and (min-width: 18.750em) {

	.palm-whole .grid-item { width: 100%; }
	
	.palm-halves .grid-item { width: 50%; }
	
	.palm-thirds .grid-item { width: 33.3333333%; }
	
	.palm-fourths .grid-item { width: 25%; }
	
	.palm-fifths .grid-item { width: 20%; }

}

@media all and (min-width: 30em) and (max-width: 43.688em) {

	.palm-landscape-whole .grid-item { width: 100%; }
	
	.palm-landscape-halves .grid-item { width: 50%; }
	
	.palm-landscape-thirds .grid-item { width: 33.3333333%; }
	
	.palm-landscape-fourths .grid-item { width: 25%; }
	
	.palm-landscape-fifths .grid-item { width: 20%; }

}

@media all and (min-width: 43.750em) and (max-width: 61.250em) {

	.lap-whole .grid-item { width: 100%; }
	
	.lap-halves .grid-item { width: 50%; }
	
	.lap-thirds .grid-item { width: 33.3333333%; }
	
	.lap-one-two-thirds .lap-one-third { width: 33.3333333%; }
	
	.lap-one-two-thirds .lap-two-thirds { width: 66.666667%; }
	
	.lap-fourths .grid-item { width: 25%; }
	
	.lap-fifths .grid-item { width: 20%; }
	
}



	.desk-whole .grid-item { width: 100%; }

	.desk-halves .grid-item { width: 50%; }
		
	.desk-thirds .grid-item { width: 33.3333333%; }
	
	.desk-one-two-thirds .desk-one-third { width: 33.3333333%; }
	
	.desk-one-two-thirds .desk-two-thirds { width: 66.666667%; }
	
	.desk-fourths .grid-item { width: 25%; }
	
	.desk-fifths .grid-item { width: 20%; }



/*------------------------------------*\
    $ICONS
\*------------------------------------*/

.icon {
    display: inline-block;
    zoom: 1;
    *display: inline;
    vertical-align: middle;
    width: 16px;
    height: 16px;
    background: url(images/sprite.png) 0 0 no-repeat;   
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2) {
	
	.icon {
		background: url(images/sprite@2x.png) 0 0 no-repeat;			
		background-size: 600px 800px;
	}
		
}

.icon-m {
	width: 24px;
	height: 24px;
}

.icon-l {
	width: 32px;
	height: 32px;
}

.icon-phone { background-position: 0 0; }
.icon-fax { background-position: -100px 0; }
.icon-email { background-position: -200px 0; }
.icon-address { background-position: -300px 0; }
.icon-hours { background-position: -400px 0; }
.icon-payment { background-position: -500px 0; }

.icon-info { background-position: 0 -100px; }
.icon-search { background-position: -100px -100px; }
.icon-arrow-white { background-position: -200px -100px;}
.icon-arrow-colour { background-position: -300px -100px;}
.icon-arrow-down { background-position: -400px -100px;}
.icon-arrow-up { background-position: -500px -100px;}

.icon-link { background-position: -300px -200px; }

/*------------------------------------*\
    $INLINE LIST
\*------------------------------------*/

.list-inline { list-style: none; }

.list-inline li { display: inline; }

.list-inline a {
    display: inline-block;
    zoom: 1;
    *display: inline;
}

/*------------------------------------*\
    $ICON LIST
\*------------------------------------*/

.list-icon { font-size: 0; }

.list-icon li { margin-right: 10px; }

/*------------------------------------*\
    $ACCORDION
\*------------------------------------*/

.list-accordion {
	margin-left: 0;
}

.list-accordion-title { 
	font-size: 1em;
	line-height: 1.3em;
	margin-bottom: 1px;
}

.list-accordion-title a { 
	position: relative;
	display: block;  
	background-color: #f6b332;
	color: #fff;
	padding: 1em 2.5em 1em 1em;
}

.list-accordion-title a:hover {
	background-color: #e7981a;
	text-decoration: none;
}

.list-accordion-title a:before {
	font-family: "dashicons";
    content: "\f347";
    position: absolute;
    top: 50%;
    right: 16px;
    font-size: 24px;
    line-height: 1em;
    margin-top: -12px;
    color: #fff;
}

.list-accordion-title.open a:before {
	content: "\f343";
}

.list-accordion-content {
	padding: 1em 0;
}

/*------------------------------------*\
    $CALL NOW
\*------------------------------------*/

.call-now {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}

.call-now a { 
	display: block;
	text-align: center;
	margin-bottom: 0;
	font-size: 1.125em;
}

/*------------------------------------*\
    $AUTORESPONDER FORM
\*------------------------------------*/

.form-autoresponder .grid { 
	margin-left: -0.875em; 
	margin-bottom: 0.5em;
}

.form-autoresponder .grid-item { padding-left: 0.875em; }

.form-autoresponder input { 
	width: 100%; 
	padding: 0.625em;
}	

@media all and (min-width: 61.250em) { /* 980px */

	.form-autoresponder input[type="submit"] { 
		float: right;
		width: 25%;
	}

}

.cta-global {
	border-top: 1px solid #ddd;
	padding: 1.618em;
	text-align: center;
}

.cta-global-heading, .cta-global p {
	display: inline-block;
	margin-bottom: 0;

}

.cta-global-heading {
	font-size: 1.875em;
	line-height: 2em; /* 30px */
	font-weight: 400;
	margin-right: 1em;
}

.cta-global p {
	font-size: 1.125em;
	line-height: 1.667em;
	margin-right: 1.667em;
}

.cta-global .alternative { margin-left: 1.875em; }

.cta-global .button {
	font-size: 1.125em;
}

.bg-list-media {
	background-color: #eee;
	padding: 2.5em 0;
}

.list-media { text-align: center; }

.list-media .grid { margin-left: -1em; }

.list-media .grid-item { padding-left: 1em; }

.list-media-item { 
	background-color: #fff; 
	overflow: hidden;
	padding-bottom: 1em;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.15);
	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	        border-radius: 3px;
}

.list-media a {
	display:  block;
	font-weight: 300;
}

.list-media a:hover { text-decoration: none;}

.list-media img { margin-bottom: 1em; }

.list-media h4 {
	font-size: 1.5em;
	margin-bottom: 0.5em;
}

.list-media p {
	font-size: 0.938em;
	line-height: 1.4em;
	padding: 0 1em;
	color: #888;
}

.list-media .is-link {
	font-weight: 400;
	text-transform: uppercase;
	border-bottom: 1px solid;
	font-size: 0.875em;
}

.grid-alt { 
	margin-left: 0; 
	margin-bottom: 2.5em;
}

.grid-alt .grid-item { 
	width: 50%; 
	padding-left: 0;
}

.grid-alt .row-odd, .grid-alt .row-even { overflow: hidden; }

.grid-alt .row-odd .grid-alpha { float: right; }

.grid-alt .row-even .grid-item-content { background-color: #f9f9f9;}

.grid-alt .step { 
	font-size: 1.5em; 
	margin-bottom: 0.5em;
}

.grid-alt .grid-item-content {
	height: 277px;
	padding: 0 3em;
	display: table-cell;
	vertical-align: middle;
}

.grid-alt .grid-item-content p { margin-bottom: 0; }

.helpful-hints {
	width: 62%;
	margin: 0 auto;
}

.how-to-media-content {
	padding: 3em 2em 0 2em;
}

.how-to-media p {
	font-size: 1.125em;
}

/*------------------------------------*\
    
	$LIST TEXT

\*------------------------------------*/

.list-text { margin-bottom: 1.618em; }

.list-text-heading {
	text-align: center;
	text-transform: uppercase;
	font-size: 1.5em;
	color: #333;
}

.list-text ul {
	list-style: none;
}

.list-text-item { 
	border-top: 2px solid #eee; 
	padding-top: 1em;
}

.list-text-item-heading { 
	line-height: 1.3em;
	margin-bottom: 0.5em;
}

.list-with-icon li { 
	margin-bottom: 0.5em; 
	padding-left: 1.75em;
	position: relative;
}

.list-with-icon .icon {
	position: absolute;
	top: 6px;
	left: 0;
}

/*------------------------------------*\
	$FEED    
\*------------------------------------*/

.feed {
	padding: 3.125em 0;
	border-bottom:  1px solid #ddd;
}

.feed-heading {
	font-style: 1.625em;
	line-height: 1em;
	margin-bottom: 1em;
	text-transform: uppercase;
	text-align: center;
	display: none;
}

.feed-item {
	overflow: hidden;
}

.feed-item-image, .feed-item-content { float: left; }

.feed-item-image {
	width: 38%;
}

.feed-item-content {
	width: 62%;
	padding-left: 1.618em;
}

.feed-item-meta {
	font-size: 0.813em;
	color: #888;
	display: block;
	margin-bottom: 0.5em;
}

.feed-item-meta a {
	text-transform: uppercase;
	color: #888;
	font-weight: 300;
}

.feed-item-heading {
	font-size: 1.4em;
	line-height: 1.3em;
	margin-bottom: 0.5em;
}


/*------------------------------------*\
    $STORE LOCATER
\*------------------------------------*/

#wpseo-storelocator-form label { display: none; }

#wpseo-storelocator-form fieldset p { display: inline-block; }

#wpseo-storelocator-form #wpseo-sl-search, #wpseo-storelocator-form input[type="submit"], #wpseo-storelocator-form select {
	font-size: 1em;
	line-height: 1em;
	padding: 0.75em;
	margin: 0;
}

#wpseo-storelocator-form #wpseo-sl-search { width: 250px; }

#wpseo-storelocator-form input[type="submit"] {
	padding: 1em 2em;
	margin-left: 0.5em;
}

.wpseo-map-canvas { margin-bottom: 1.618em; }

.wpseo-result {
	float: left;
	width: 33.333%;
	margin-bottom: 2em;
}

.wpseo-result .wpseo-sl-route { display: none; }

.wpseo-info-window-wrapper a { pointer-events: none; }

/*------------------------------------*\
	STORE LOCATOR
\*------------------------------------*/

.facetwp-map-filtering {
	display: none;
}

.facetwp-results {
	display: none;
}

.facetwp-filter {
	margin-bottom: 48px;
}

.facetwp-filter .facetwp-facet,
.facetwp-filter button {
	float: left;
}

.facetwp-filter .facetwp-facet {
	margin-bottom: 0;
	width: 70%;
}

.facetwp-filter button {
	width: 30%;
}

.facetwp-filter input,
.facetwp-filter select {
	font-size: 18px;
	line-height: 48px;
	padding: 0 2em 0 1em;
	border: 3px solid #e7981a;
	border-radius: 6px;
	background-color: #fff;
	width: 100%;
}

.facetwp-filter select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
}

.facetwp-filter .locate-me {
	top: 50%;
	right: 1em;
	transform: translateY(-50%);
}

.facetwp-filter .location-wrap,
.facetwp-filter .select-wrap {
	display: block;
	float: left;
}

.facetwp-filter .location-wrap {
	width: 60%;
}

.facetwp-filter .select-wrap {
	position: relative;
	padding: 0 16px;
	width: 40%;
}

.facetwp-filter .select-wrap:before {
	content: "\f347";
	font-family: dashicons;
	position: absolute;
	top: 0;
	right: 28px;
	color: #e7981a;
	font-size: 24px;
	line-height: 52px;
}

/*------------------------------------*\
	$LIST RIDER
/*------------------------------------*/

.list-rider-item { 
	position: relative; 
	margin-bottom: 2.5em;
}

.list-rider-item a {
	position: absolute;
	z-index: 5;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.list-rider-item-image { margin-bottom: 1em; }

.list-rider-heading {
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 1em;
}

.list-rider-subheading {
	font-size: 1em;
	color: #666;
	margin-top: -1em;
}





/*------------------------------------*\
    4. $STATE
\*------------------------------------*/

.is-hidden { display: none; }





/*------------------------------------*\
    5. $THEME
\*------------------------------------*/

/*------------------------------------*\
    $COLOURS
\*------------------------------------*/

/* Brand primary and secondary colours */
.bpc { color: #f6b332; } /* Orange */
.bsc { color: #454545; }

.text-white { color: #fff; }
.text-light { color: #eee; }
.text-dark { color: #333; }
.text-neutral { color: #808080; }

::selection {
    background: #1dbdef;
    color: #fff;
    text-shadow: none;
}

/*------------------------------------*\
    $BACKGROUNDS
\*------------------------------------*/

/* Brand primary and secondary background colours */
.bpb { background-color: #f6b332; } /* Orange */
.bsb, .island { background-color: #454545; }

/*------------------------------------*\
    $BORDERS
\*------------------------------------*/

.has-border-all { border: 1px solid #d5d5d5; }

.has-border-v {
    border: solid #d5d5d5;
    border-width: 1px 0;
}

.has-border-h {
    border: solid #d5d5d5;
    border-width: 0 1px;
}

.divider {
	width: 30%;
	height: 1px;
	background-color: #eee;
	margin: 3em auto 2.618em auto;
	display: block;
}

/*
.video-wrapper {
	width: 487px;
	height: 274px;
	overflow: hidden;
	margin-bottom: 1.618em;
}
*/