/******************************************************************
Site Name: 
Author: Kook

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/*
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't 
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
*/
/* import mixins */
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
.cf {
  zoom: 1; }
  .cf:before, .cf:after {
    content: "";
    display: table; }
  .cf:after {
    clear: both; }

/*********************
TOOLS
*********************/
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/* Red */
/* Black */
/* yellow */
/* orange */
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/*********************
TYPOGRAPHY
*********************/
/* 	To embed your own fonts, use this syntax
	and place your fonts inside the
	library/fonts folder. For more information
	on embedding fonts, go to:
	http://www.fontsquirrel.com/
	Be sure to remove the comment brackets.
*/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('/library/fonts/font-name.eot');
    	src: url('/library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('/library/fonts/font-name.woff') format('woff'),
             url('/library/fonts/font-name.ttf') format('truetype'),
             url('/library/fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

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

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

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

.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f; }

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

.alert-error {
  border-color: #f8cdce;
  background: #fbe3e4; }

.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*needed for when using scroll-down easing to anchor point on page*/
.scrollpoint {
  display: block;
  position: relative;
  top: -110px;
  visibility: hidden; }

/*********************
Border Radius
*********************/
/*
USAGE: @include border-radius($small-border-radius);
*/
/******************
CIRCLES
******************/
/*
USAGE: @include fixedCircle(inline-block, 1em, $white);
*/
/*********************
Image zoom
*********************/
/*
USAGE: @include transform($zoom);
*/
/*********************
Align Center
*********************/
/*
USAGE: 
@include center(); 
@include center(true, false);
@include center(false, true); 
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dd8e93,#dd8e93); */
/*********************
BOX SIZING
*********************/
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/* @include box-sizing(border-box); */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/********************************************
MIXIN CREATED FOR WHEN YOU NEED A BREAKPOINT
********************************************/
/*
USAGE: @include bp(baby-screen) {
    width: 100%;
  }
*/
/*********************
BUTTONS
*********************/
.button {
  padding: 0.4em 1.5em;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  line-height: 2;
  border: none;
  /*background: $color-primary;*/
  background-color: #83061e;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#cc092f), to(#83061e));
  background-image: -webkit-linear-gradient(top, #cc092f, #83061e);
  background-image: -moz-linear-gradient(top, #cc092f, #83061e);
  background-image: -o-linear-gradient(top, #cc092f, #83061e);
  background-image: linear-gradient(to bottom, #cc092f, #83061e);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 0px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 1.3em;
  margin: 0.5em auto; }
  .button:hover, .button:focus {
    background: #000;
    border: none;
    padding: 0.4em 1.5em;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    border-radius: 0px; }
  .button:active {
    background: #222222; }

.button.secondary {
  background: #222222;
  border: 2px solid #222222; }
  .button.secondary:hover, .button.secondary:focus, .button.secondary:active {
    background: black;
    background: 2px solid black;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

.addCart.button {
  padding: 0.3em 1em;
  line-height: 1.6;
  border: 1px solid #333333;
  background: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 0px;
  font-weight: 400;
  color: #333333;
  font-size: 1em;
  margin: 0.25em auto; }
  .addCart.button:hover, .addCart.button:focus {
    background: #cc092f;
    border-color: #cc092f;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    color: #ffffff; }

#imageslider .button, #bottomblocks .button {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  #imageslider .button:before, #bottomblocks .button:before {
    content: "\f105";
    font-family: "Font Awesome 5 Pro";
    opacity: 0;
    position: relative;
    float: right;
    margin-right: -2em;
    font-size: large;
    line-height: 1.5;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
  #imageslider .button:hover, #imageslider .button:focus, #imageslider .button:active, #bottomblocks .button:hover, #bottomblocks .button:focus, #bottomblocks .button:active {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
    #imageslider .button:hover:before, #imageslider .button:focus:before, #imageslider .button:active:before, #bottomblocks .button:hover:before, #bottomblocks .button:focus:before, #bottomblocks .button:active:before {
      opacity: 1;
      margin-right: -1em; }

/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.

The grid below is a combination of the 1140 grid and Twitter Boostrap. 
I liked 1140 but Boostrap's grid was way more detailed so I merged them 
together, let's see how this works out. If you want to use 1140, the original 
values are commented out on each line.

******************************************************************/
.onecol {
  width: 5.801104972%; }

/* 4.85%;  } /* grid_1  */
.twocol {
  width: 14.364640883%; }

/* 13.45%; } /* grid_2  */
.threecol {
  width: 22.928176794%; }

/* 22.05%; } /* grid_3  */
.fourcol {
  width: 31.491712705%; }

/* 30.75%; } /* grid_4  */
.fivecol {
  width: 40.055248616%; }

/* 39.45%; } /* grid_5  */
.sixcol {
  width: 48.618784527%; }

/* 48%;    } /* grid_6  */
.sevencol {
  width: 57.182320438000005%; }

/* 56.75%; } /* grid_7  */
.eightcol {
  width: 65.74585634900001%; }

/* 65.4%;  } /* grid_8  */
.ninecol {
  width: 74.30939226%; }

/* 74.05%; } /* grid_9  */
.tencol {
  width: 82.87292817100001%; }

/* 82.7%;  } /* grid_10 */
.elevencol {
  width: 91.436464082%; }

/* 91.35%; } /* grid_11 */
.twelvecol {
  width: 99.999999993%; }

/* 100%;   } /* grid_12 */
.onecol, .twocol, .threecol, .fourcol, .fivecol, .sixcol, .sevencol, .eightcol, .ninecol, .tencol, .elevencol, .twelvecol {
  position: relative;
  float: left;
  margin-left: 2.762430939%; }

.first {
  margin-left: 0; }

.last {
  float: right; }

/******************************************************************
Site Name: 
Author: 

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to 
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection. 

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
.slideshow_caption p.h1, .heading h1 {
  font-size: 2em; }

#footer {
  font-size: 0.9em; }

blockquote .h2 {
  font-size: 1.6em; }

.slideshow_caption a.button, #bottomblocks .button {
  font-size: 1.1em; }

h1 {
  font-size: 2.5em; }

/*********************
GENERAL STYLES
*********************/
/*********************
LAYOUT & GRID STYLES
*********************/
.row {
  max-width: 1240px; }

.row-small, body.Moisture #content #div428 .row {
  max-width: 800px; }

header .row {
  max-width: 1600px; }

.topMenu a.toggleMenu {
  position: relative;
  width: 100%; }

/*********************
HEADER STYLES
*********************/
.header .clearHeader {
  background: rgba(0, 0, 0, 0.8); }

.Home #imageslider {
  overflow: hidden; }
  .Home #imageslider img {
    left: 0;
    max-width: 100%;
    min-width: 100%;
    max-height: none;
    height: auto; }

/*Set height of parallax on home to be bigger than inner pages */
.entry .header .parallax-window {
  height: 100vh; }

.header .row {
  position: relative; }

.header .menu {
  margin: 0 auto;
  width: 100%;
  min-height: 80px; }

.header .headerSocials {
  /*padding: 0 4%;*/
  top: 1em; }
  .header .headerSocials .top-mini-content {
    top: 4em;
    width: 500px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
    .header .headerSocials .top-mini-content:hover, .header .headerSocials .top-mini-content.inspectcart {
      visibility: visible;
      opacity: 1;
      right: 0;
      width: 500px;
      -webkit-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out; }

.header .phone {
  line-height: 3;
  position: relative;
  text-align: right; }
  .header .phone span {
    display: inline-block;
    margin: 0 0.5em; }
  .header .phone .email {
    display: inline-block; }
  .header .phone .button {
    float: none; }

.header #logo {
  position: absolute;
  top: 0;
  left: 2%;
  z-index: 999999999; }

/***********************
HERO - INNER PAGES
************************/
#hero .topBlock h1, #hero .topBlock .h1 {
  padding: .5em 1em;
  width: auto;
  bottom: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translate3d(-50%, -50%, 0);
  -ms-transform: translateX(-50%) translateY(-50%);
  /*correction for IE9*/
  transform: translate3d(-50%, -50%, 0); }

/*********************
NAVIGATION STYLES
*********************/
.menuWrap {
  /*width: 74.30939226%;*/
  width: auto;
  margin-top: 0.5em;
  text-align: right;
  margin-left: auto;
  margin-right: 70px;
  float: right;
  clear: none; }

.topMenu {
  text-align: right; }
  .topMenu a.toggleMenu {
    margin-top: 0.75em;
    padding: 2% 4%; }

/*********************
CONTENT STYLES
*********************/
/* content area all inner pages */
blockquote:before {
  /*margin-bottom:5em;*/
  float: left;
  font-size: 2em; }

/*********************
HOME STYLES
*********************/
body.Home #content #leftcol {
  /*end odd rows*/
  /*end even rows*/ }
  body.Home #content #leftcol > div:nth-of-type(odd) > div > div.first {
    float: left; }
  body.Home #content #leftcol > div:nth-of-type(odd) > div > div.last {
    float: right; }
  body.Home #content #leftcol > div:nth-of-type(even) > div > div.first {
    float: right; }
  body.Home #content #leftcol > div:nth-of-type(even) > div > div.last {
    float: left;
    margin-left: 0; }

body.Home #content #leftcol > div > div > div.last img body.Landing #content #leftcol > div {
  padding: 4em 0; }

/*********************
BLOCK LAYOUT
**********************/
body.Home .columnlayout > div {
  width: 45%;
  margin-right: 2%;
  display: inline-block;
  vertical-align: top; }

/*********************************
TOP BLOCKS
*********************************/
body.Home #topblocks {
  /*padding: 4em 0 1em 0;*/
  /*.columnlayout {
		> div {
			width: 31.491712705%;
			margin-right: 2.762430939%;
			min-height: 381.25px;
			&:nth-child(3n) {
				margin-right: 0;
			}
		}
	}*/ }
  body.Home #topblocks .block .threecol {
    margin-bottom: 0; }

/*********************************
BOTTOM BLOCKS
*********************************/
#bottomblocks .parallax-window {
  padding: 3em 0; }
  #bottomblocks .parallax-window .borderWrap {
    width: 60%; }

/*********************
RIGHT BLOCKS
*********************/
#rightcol {
  /*margin-top: 0;*/ }

/*********************
NEWS LISTING
*********************/
div.listingImg {
  float: left;
  width: 30%; }

div.listingTxt {
  float: left;
  width: 70%; }

div.caseStudy {
  float: left;
  width: 48%;
  padding: 1em 0 2em 0;
  position: relative;
  margin-right: 1.9%; }

/*********************
GALLERY
*********************/
#gallery li {
  width: 22.5%;
  margin-right: 2%; }

/*********************
VIDEOS
*********************/
.videoWrapper {
  margin-left: 0px;
  margin-right: 0px; }

/*************************
THIS IS FOR THE PARALLAX SCROLL
*************************/
#trusticons .parallax-window {
  position: relative;
  padding: 5em 0;
  height: 500px;
  text-align: center;
  margin-top: 0; }

/*********************
FOOTER STYLES
*********************/
#confidence {
  background: black; }

#address form {
  margin: 0 0; }

#footer > div {
  text-align: left; }
  #footer > div #copyright .first a {
    display: inline; }
  #footer > div #privacy {
    text-align: right; }
  #footer > div #facebook {
    text-align: center; }

/*
you'll probably need to do quite a bit
of overriding here if you styled them for
mobile. Make sure to double check these!
*/
/*SLIDER*/
/* Bug fix for flashing on Slick slideshow */
/*Full width slider */
ul.responsive3 .slick-list .slick-track .slick-slide img {
  height: 50vh; }

/******************************************************************
TABLE STYLES
******************************************************************/
/* RESPONSIVE TABLES */
table.tableFixed {
  table-layout: fixed; }

table#tableCart, table.tableResp, table#tableTotals {
  display: table; }
  table#tableCart thead tr, table.tableResp thead tr, table#tableTotals thead tr {
    position: relative;
    top: 0;
    left: 0;
    display: table-row; }
    table#tableCart thead tr td, table#tableCart thead tr th, table.tableResp thead tr td, table.tableResp thead tr th, table#tableTotals thead tr td, table#tableTotals thead tr th {
      padding: 0.25em;
      /*background-color: darken($white, 8%);*/
      width: auto;
      display: table-cell;
      color: white; }
  table#tableCart tbody, table.tableResp tbody, table#tableTotals tbody {
    display: table-row-group; }
    table#tableCart tbody tr, table.tableResp tbody tr, table#tableTotals tbody tr {
      display: table-row;
      border-bottom: none; }
      table#tableCart tbody tr.ViewCart_Separator, table.tableResp tbody tr.ViewCart_Separator, table#tableTotals tbody tr.ViewCart_Separator {
        border: none;
        background: #ffffff; }
      table#tableCart tbody tr.isAttribute, table#tableCart tbody tr.productCartOptions, table.tableResp tbody tr.isAttribute, table.tableResp tbody tr.productCartOptions, table#tableTotals tbody tr.isAttribute, table#tableTotals tbody tr.productCartOptions {
        border: none;
        font-size: 90%; }
        table#tableCart tbody tr.isAttribute td, table#tableCart tbody tr.productCartOptions td, table.tableResp tbody tr.isAttribute td, table.tableResp tbody tr.productCartOptions td, table#tableTotals tbody tr.isAttribute td, table#tableTotals tbody tr.productCartOptions td {
          border: none;
          margin: 0; }
          table#tableCart tbody tr.isAttribute td .imageholder, table#tableCart tbody tr.productCartOptions td .imageholder, table.tableResp tbody tr.isAttribute td .imageholder, table.tableResp tbody tr.productCartOptions td .imageholder, table#tableTotals tbody tr.isAttribute td .imageholder, table#tableTotals tbody tr.productCartOptions td .imageholder {
            padding-left: 30%; }
      table#tableCart tbody tr td, table.tableResp tbody tr td, table#tableTotals tbody tr td {
        display: table-cell;
        text-align: left;
        width: auto;
        /* Add this class to td's that need to avoid text-wrap */
        /* Hide mobile headings */ }
        table#tableCart tbody tr td.Stretch, table.tableResp tbody tr td.Stretch, table#tableTotals tbody tr td.Stretch {
          word-wrap: break-word; }
        table#tableCart tbody tr td.noStretch, table.tableResp tbody tr td.noStretch, table#tableTotals tbody tr td.noStretch {
          white-space: nowrap; }
        table#tableCart tbody tr td:before, table.tableResp tbody tr td:before, table#tableTotals tbody tr td:before {
          display: none; }
        table#tableCart tbody tr td.text-right, table.tableResp tbody tr td.text-right, table#tableTotals tbody tr td.text-right {
          text-align: right; }
        table#tableCart tbody tr td.text-center, table.tableResp tbody tr td.text-center, table#tableTotals tbody tr td.text-center {
          text-align: center; }

table#tableTotals tbody tr td {
  border: none; }
  table#tableTotals tbody tr td:first-child {
    border-right: 1px dotted #bfbfbf; }
  table#tableTotals tbody tr td:last-child {
    width: 18%; }

table#tableTotals tbody tr:not(.calcPostage) td:first-child {
  float: none; }

table#tableCart tbody tr td:nth-child(2), table#tableCart tbody tr td:last-child {
  display: table-cell;
  width: auto; }

table#tableCart tbody tr td:last-child .cartPrice {
  border-top: none;
  padding-top: 0; }

table#tableCart tbody tr td:first-child img {
  margin: 0;
  display: inline; }

table#tableCart thead {
  display: table-header-group;
  background: #333333; }

table#tableCart .isCollectionFooter {
  display: table-row; }
  table#tableCart .isCollectionFooter td:last-child {
    border-top: 1px solid #222222;
    text-align: center; }

/**********************************
Cart + Checkout
**********************************/
body.viewcart #checkoutBreadcrumbs li a {
  text-indent: 0em !important; }

body.viewcart #checkoutBreadcrumbs li.first {
  width: 40%; }

body.viewcart #checkoutBreadcrumbs li.second, body.viewcart #checkoutBreadcrumbs li.third, body.viewcart #checkoutBreadcrumbs li.fourth {
  width: 20%; }

body.checkout #checkoutBreadcrumbs li.first a, body.checkout #checkoutBreadcrumbs li.fourth a {
  text-indent: 0em; }

body.checkout #checkoutBreadcrumbs li.first a, body.checkout #checkoutBreadcrumbs li.fourth a {
  text-indent: 0em; }

#checkoutBreadcrumbs li {
  width: 33% !important; }

.ViewCart td.ViewCart_Price_Left #divPopup {
  color: #333333;
  font-weight: normal;
  margin: 10px 0px 0px auto;
  padding: 10px 30px 10px 10px;
  position: absolute;
  right: 150px;
  text-align: left;
  width: 240px;
  height: 60px;
  text-transform: none;
  font-size: 100%; }
  .ViewCart td.ViewCart_Price_Left #divPopup #postcodeSearchInput {
    float: left;
    margin-right: 10px; }

.ViewCart td.ViewCart_Price_Left .ViewCart_Freight_Good,
.ViewCart td.ViewCart_Price_Left .ViewCart_Freight_Good_Quote {
  background: URL("/wmsimages/freight_good.png") no-repeat; }

.ViewCart td.ViewCart_Price_Left .ViewCart_Freight_Bad,
.ViewCart td.ViewCart_Price_Left div.ViewCart_Freight_Bad_Quote {
  background: URL("/wmsimages/freight_bad.png") no-repeat; }

.ViewCart .freight {
  display: table-cell; }

.Proceed {
  font-size: 150%; }

body.checkout #rightcol.last {
  float: none;
  width: 100%;
  margin-left: 0; }

body.checkout #holdLeft.first {
  float: none;
  width: 100%; }

/* Overwrite Tiny Carousel Slider CSS*/
#slider1 {
  /*margin: 1em 0 0 0;
    padding: 0 30px;*/ }

/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet Landscape

Needed to change the menu styling from mobile to desktop

******************************************************************/
.slideshow_caption p.h1 {
  font-size: 6em;
  margin-bottom: 0; }

.slideshow_caption p.h2 {
  font-size: 6em;
  margin-bottom: 0.4em; }

.slideshow_caption .slideDescription {
  margin: 0.7em 0 1em 0;
  font-size: 1.2em; }

body.Home .columnlayout h2 {
  font-size: 1.6em; }

#footer {
  font-size: 1em; }

#bottomblocks .button {
  padding: 0.6em 2em; }

.topMenu .nav > li > a {
  font-weight: 600;
  font-size: 1em; }

body .title .h1 {
  padding: 0.8em; }

.hideonMobile {
  display: block; }

body.Moisture #content h2 {
  font-size: 3em; }

body.Moisture #content #div428 li {
  font-size: 1.4em; }

body.Moisture #content p, body.Moisture #content li {
  font-size: 1.1em; }

/*************************
Colours
*************************/
.black, .topMenu .nav > li > a {
  color: #cc092f;
  letter-spacing: 0.5px; }

.grey {
  color: #222222; }

.red, .topMenu .nav > li > a:hover, .headerSocials a:hover {
  color: #fff200; }

a.activerootmenulink {
  font-weight: 500; }

.white, .topMenu .nav > li > a {
  color: #ffffff; }

/*********************
LAYOUT & GRID STYLES
*********************/
.row {
  padding: 2em 0; }

/* Reduce padding on some rows*/
#breadcrumbs .row {
  padding: 1em 0; }

/*********************
SPRITE
*********************/
#logo {
  width: 311px;
  height: 100px;
  background-size: 311px 100px; }

/*********************
HEADER STYLES
*********************/
body.Home .header .clearHeader {
  background: #000; }

.header .headerSocials {
  /*position: absolute;
        right: 1em;
        top: 0.5em;*/ }

.header .row {
  position: relative; }

.header #logo {
  left: 0;
  top: 0%; }

.header .phone {
  text-align: left; }
  .header .phone > div {
    display: inline-block;
    padding: 0 0.8em;
    border-left: 1px solid #fff200; }
    .header .phone > div:first-child {
      padding-left: 0;
      border-left: 0; }

.header .menu {
  padding: 0.5em 0; }
  .header .menu .last {
    float: right;
    text-align: left;
    margin-bottom: 0em;
    padding: 0 0;
    width: auto; }
    .header .menu .last nav {
      float: none;
      line-height: 1.5; }

.header #secondmenu {
  display: block; }

/**************************
HERO - Home
***************************/
body.entry .header {
  height: 100vh; }

body.Home #imageslider {
  left: 0;
  width: 100%;
  overflow: hidden;
  position: relative;
  top: 0; }

body.entry #imageslider {
  left: 0;
  max-height: 100vh;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0; }

/*********************
NAVIGATION STYLES
*********************/
#mainMenu {
  padding: 1em 0 0.5em 0; }

.topMenu {
  /*margin-top: 0.5em;
    text-align: right;
    margin-left: auto;
    margin-right: 70px;
    float: right;
    clear: none;*/
  /* end .nav */ }
  .topMenu a.toggleMenu {
    display: none; }
  .topMenu .nav {
    display: inline-block;
    position: relative;
    width: auto;
    border: 0;
    margin-top: 0;
    /* end .menu ul li */ }
    .topMenu .nav > li {
      display: inline-block;
      padding: 0 0.6em;
      /*turn some of the main nav items OFF for public*/
      /*&:first-child > a{
				display:none;
			}
			
			&:nth-child(6) {
				display:none;
			}
			&:nth-child(7) {
				display:none;
			}
			*/ }
      .topMenu .nav > li > a {
        /*&.parent:after {
                    content: "\f107";
                    font-family: "Font Awesome 5 Pro";
                    display: block;
                    float: right;
                    font-size: large;
                    padding-left: 0.3em;
                    line-height: 1.5;
                }*/ }
        .topMenu .nav > li > a:after {
          -webkit-transition: all 0.5s ease-in-out;
          transition: all 0.5s ease-in-out;
          content: '';
          height: 2px;
          background: #fff200;
          width: 0px;
          display: block;
          position: absolute;
          bottom: 0;
          left: 0;
          right: auto;
          -webkit-transition: all 0.5s ease-in-out;
          transition: all 0.5s ease-in-out; }
        .topMenu .nav > li > a:hover, .topMenu .nav > li > a:focus {
          background: transparent;
          /*border-radius: 4px;*/
          -webkit-transition: all 0.5s ease-in-out;
          transition: all 0.5s ease-in-out;
          color: #fff200; }
          .topMenu .nav > li > a:hover:after, .topMenu .nav > li > a:focus:after {
            content: '';
            height: 2px;
            background: #fff200;
            width: 100%;
            display: block;
            /*position: absolute;
                        bottom: 0;
                        right: 0;*/
            left: auto;
            right: 0;
            -webkit-transition: all 0.5s ease-in-out;
            transition: all 0.5s ease-in-out; }
      .topMenu .nav > li:nth-child(2) {
        display: none; }
    .topMenu .nav li {
      position: relative;
      /* highlight current page */
      /*
			plan your menus and drop-downs wisely.
			*/
      /* showing sub-menus */ }
      .topMenu .nav li a {
        padding: 0.5em 0em;
        background: none;
        border-bottom: none; }
        .topMenu .nav li a.parent:before {
          display: none; }
      .topMenu .nav li a.activerootmenulink {
        color: #fff200; }
      .topMenu .nav li ul,
      .topMenu .nav li ul.sub-menu,
      .topMenu .nav li ul.children {
        position: absolute;
        z-index: 9999;
        left: -9999px;
        border-top: 2px solid #cc092f; }
        .topMenu .nav li ul li,
        .topMenu .nav li ul.sub-menu li,
        .topMenu .nav li ul.children li {
          /*
					if you need to go deeper, go nuts
					just remember deeper menus suck
					for usability.
					*/ }
          .topMenu .nav li ul li a,
          .topMenu .nav li ul.sub-menu li a,
          .topMenu .nav li ul.children li a {
            padding: 0.5em 0.5em;
            display: block;
            width: 200px;
            border-top: none;
            border-radius: 0;
            margin-right: 0; }
            .topMenu .nav li ul li a:hover, .topMenu .nav li ul li a:focus,
            .topMenu .nav li ul.sub-menu li a:hover,
            .topMenu .nav li ul.sub-menu li a:focus,
            .topMenu .nav li ul.children li a:hover,
            .topMenu .nav li ul.children li a:focus {
              border-top: none; }
          .topMenu .nav li ul li ul,
          .topMenu .nav li ul.sub-menu li ul,
          .topMenu .nav li ul.children li ul {
            border-top: none; }

/* end .topMenu */
.nav > li.hover > ul {
  left: 0; }

.nav li li ul {
  left: -9999px;
  z-index: 99;
  position: absolute; }

.nav li li.hover ul {
  left: 100%;
  top: 0;
  z-index: 99;
  position: absolute; }

/* active state on home - not sure where else to put this for now*/
#leftcol > div {
  /*margin-bottom: 2em; */
  padding: 2em; }

/*Charity Table*/
.charityTable {
  border: 2px solid #cc092f; }
  .charityTable th {
    display: table-cell;
    padding: 0.5em;
    color: #ffffff;
    background: #cc092f;
    text-transform: uppercase; }
  .charityTable tr:nth-child(odd) {
    background: whitesmoke; }
  .charityTable tr td {
    display: table-cell;
    width: auto;
    padding: 0.5em;
    text-align: left;
    padding-left: 0.5em; }
    .charityTable tr td:before {
      content: none;
      display: none; }

body.Home .topblocks > div > div {
  animation-delay: 0.5s;
  width: 22.928176794%;
  margin-bottom: 1em;
  margin-right: 2.762430939%;
  height: 180px;
  float: left; }
  body.Home .topblocks > div > div:nth-child(2) {
    float: left;
    margin-right: 2.762430939%; }
  body.Home .topblocks > div > div:last-child {
    margin-right: 0;
    float: right; }
  body.Home .topblocks > div > div:nth-child(2) {
    animation-delay: 1s; }
  body.Home .topblocks > div > div:nth-child(3) {
    animation-delay: 1.5s; }
  body.Home .topblocks > div > div:nth-child(4) {
    animation-delay: 2s; }

.Home #content .sixcol .productImg {
  position: relative;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  /*&:hover{
   
    @include transition(all 1s ease-in-out);
        & a:before{
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 98.5%;
            display: block;
            background: rgba(0,0,0,0.3);
            z-index: 1;
             @include transition(all 1s ease-in-out);
        }

         &:hover:after {
            content: '\f00e';
            font-family: "Font Awesome 5 Pro";
            font-size: 2em;
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate3d(-50%, -50%, 0);
            -ms-transform: translate3d(-50%, -50%, 0);
            transform: translate3d(-50%, -50%, 0);
            color: #fff;
            z-index: 999;
             @include transition(all 1s ease-in-out);
	        }
    }*/ }

/*****MOISTURE PLUS LANDING PAGE*/
body.Moisture #content ul {
  max-width: unset; }

/*Set individual background images for each section*/
body.Moisture #content #div439 > div > div.holdText,
body.Moisture #content #div440 > div > div.holdText,
body.Moisture #content #div441 > div > div.holdText {
  background-size: 300px 225px; }

body.Moisture #content #div440 > div > div.holdText {
  background-position: 100% bottom; }

body.Moisture #content > div#div439 > div > div,
body.Moisture #content > div#div440 > div > div,
body.Moisture #content > div#div441 > div > div,
body.Moisture #content > div#div442 > div > div {
  width: 50%; }

body.Moisture #content > div#div439 > div > div.holdText > div.block,
body.Moisture #content > div#div440 > div > div.holdText > div.block,
body.Moisture #content > div#div441 > div > div.holdText > div.block,
body.Moisture #content > div#div442 > div > div.holdText > div.block {
  padding: 2em 0 2em 0; }

body.Moisture #content > div#div439 > div > div.holdImg img,
body.Moisture #content > div#div440 > div > div.holdImg img,
body.Moisture #content > div#div441 > div > div.holdImg img,
body.Moisture #content > div#div442 > div > div.holdImg img {
  display: block;
  padding: 4em 0 0 0; }

body.Moisture #content > div#div440 > div > div.holdImg,
body.Moisture #content > div#div442 > div > div.holdImg {
  order: 1; }

body.Moisture #content > div#div440 > div > div.holdText,
body.Moisture #content > div#div442 > div > div.holdText {
  order: 2; }

/*********************
CATEGORIES + PRODUCTS 
**********************/
#categories > li, ul#products > li {
  width: 33%;
  border-bottom: none; }
  #categories > li:nth-child(2n+2), ul#products > li:nth-child(2n+2) {
    /*margin-right:1em;*/ }

#categories p, ul#products p {
  font-size: 1em;
  margin: 0.25em 0.25em; }

/*POP UP*/
.popup {
  z-index: 99999999999999; }
  .popup .greyBack.popUp {
    margin: 0;
    height: 650px;
    overflow-y: hidden;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.8); }
    .popup .greyBack.popUp .respond-form form input[type=text], .popup .greyBack.popUp .respond-form form input[type=email], .popup .greyBack.popUp .respond-form form input[type=url], .popup .greyBack.popUp .respond-form form textarea, .popup .greyBack.popUp .respond-form form select, .popup .greyBack.popUp #address form input[type=text], .popup .greyBack.popUp #address form input[type=email], .popup .greyBack.popUp #address form input[type=url], .popup .greyBack.popUp #address form textarea, .popup .greyBack.popUp #address form select {
      padding: 0.5em; }

/*Full width slider */
#imageslider ul.responsive3 .slick-list .slick-track .slick-slide .slideshow_caption {
  padding: 1em;
  width: 60%;
  min-width: 300px;
  text-align: center; }
  #imageslider ul.responsive3 .slick-list .slick-track .slick-slide .slideshow_caption .button {
    padding: 0.6em 2em; }
    #imageslider ul.responsive3 .slick-list .slick-track .slick-slide .slideshow_caption .button:hover {
      padding-right: 2.2em; }
  #imageslider ul.responsive3 .slick-list .slick-track .slick-slide .slideshow_caption .slideDescription {
    display: block; }

#imageslider ul.responsive3 .slick-list .slick-track .slick-slide img {
  display: block;
  height: auto;
  min-width: 100%;
  float: left;
  width: initial;
  max-width: 100%; }

.slick-prev, .slick-next {
  top: 40%; }

/*************************
THIS IS FOR THE PARALLAX SCROLL
*************************/
#trusticons h4 {
  font-size: 16px; }

#trusticons .parallax-window {
  position: relative;
  padding: 5em 0;
  height: 500px;
  text-align: center;
  margin-top: 0; }

/*************************
STICKY BACK TO TOP
*************************/
.cd-top {
  height: 60px;
  width: 60px;
  right: 30px;
  bottom: 30px; }

/*****************************
Cart + Checkout
****************************/
#checkoutBreadcrumbs {
  margin: 0em 0 1em 0; }

table.ViewCart a#lnlContinueShopping2, table.ViewCart .button.secondary {
  display: block;
  width: 49%;
  max-width: 300px;
  text-align: center;
  margin: 0.25em 0; }

/* CART FOOTER */
.cartFooter .button {
  display: inline-block; }

/******************************************************************
Site Name: 
Author: 

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop. 

******************************************************************/
/* STICKY NAV - This is where the header is set to be sticky. 
We can also change colour and size here - effects all take place onScroll (waypoints triggers this) */
.Home .clearHeader .topMenu .nav > li > a, .Home .darkHeader .topMenu .nav > li > a {
  color: #ffffff;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }

.Home .header .clearHeader {
  background: transparent; }

#navHelper {
  width: 700px;
  /*background: $white;*/
  background: #cc092f;
  opacity: 1;
  height: 250px;
  box-shadow: 15px 3px 0px 7px black;
  position: absolute;
  right: 70px;
  top: -160px;
  -webkit-transform: rotate(2.5deg);
  -ms-transform: rotate(2.5deg);
  -moz-transform: rotate(2.5deg);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  z-index: 99;
  backface-visibility: hidden; }

.Home .clearHeader .topMenu .nav {
  -webkit-transform: rotate(2.5deg);
  -ms-transform: rotate(2.5deg);
  -moz-transform: rotate(2.5deg);
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }

.header .headerSocials {
  /*position: absolute;
        z-index: 9999;
        right: -2.9em;
        top: 7em;
        background: #000;
        -webkit-transform: rotate(2.5deg);
        -ms-transform: rotate(2.5deg);
        -moz-transform: rotate(2.5deg);
        -webkit-transition: all 0.5s ease-in-out;
        opacity: 1;
        backface-visibility: hidden;
       @include transition(all 0.5s ease-in-out);*/
  /*position: absolute;
        right:0;*/ }

.header .phone {
  line-height: 1.5;
  font-size: 1.1em;
  margin-right: 0.75em; }

.header .menu {
  padding: 0;
  top: 0px; }

.header .clearHeader {
  position: relative;
  background-color: rgba(0, 0, 0, 0.8);
  height: 105px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .header .clearHeader #logo {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    width: 300px;
    height: 200px;
    background-size: 300px 200px;
    top: -10px; }
  .header .clearHeader #mainMenu {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    padding: 1em 0 0.5em 0; }

.header .darkHeader {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  /*.headerSocials{
            
             opacity: 0;
             @include transition(all 0.2s ease-in-out);
               top: -1000px;
           }*/
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out; }
  .header .darkHeader #navHelper {
    opacity: 0;
    top: -1000px;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
  .header .darkHeader #logo {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    width: 245px;
    height: 75px;
    background-size: 245px 75px; }
  .header .darkHeader #mainMenu {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    padding: 0.5em 0 0.2em 0; }

#breadcrumbs > div {
  margin-left: 25%;
  max-width: 100%;
  overflow: visible; }

#content {
  height: auto;
  min-height: 500px; }

.slick-prev, .slick-next {
  top: 50%; }

.slick-next {
  right: 50px; }

.slick-prev {
  left: 50px; }

/** THIS IS COMMENTED OUT TO FIX THE SLIDESHOW FLICKER ON EDGE 
.slick-slider .slick-track, .slick-slider .slick-list { -webkit-perspective: 1000px; }*/
/* 
you can call the larger styles if you want, but there's really no need 
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/* IE 8 and below Target every third home services div to remove right padding - adjascent slibling selectors*/
/*.columnlayout div + div, /*2*/
/*.columnlayout div + div + div + div, /*4*/
/*.columnlayout div + div + div + div  + div + div, /*6*/
/*.columnlayout div + div + div + div + div + div + div + div, /*8*/
/*.columnlayout div + div + div + div + div + div + div + div, div + div, /*10*/
/*.columnlayout div + div + div + div + div + div + div + div + div + div + div + div /*12*/
/*{ margin-right: 0%; border-right:none;}*/
body.Home #content #leftcol .columnlayout .sixcol.last {
  margin-right: 0%;
  border-right: none;
  float: right; }

body.Home #content #leftcol .columnlayout .sixcol {
  width: 40%;
  margin: 0; }

body.Home #content #leftcol .columnlayout .sixcol.first {
  float: left; }

body.Home #content #leftcol .columnlayout .sixcol .ingredList {
  display: block !important; }

body.entry .parallax-mirror {
  display: none; }

body.entry .header {
  height: 130px; }

/*target every other*/
/*.columnlayout div + div + div + div + div,/*5*/
/*.columnlayout div + div + div + div + div + div + div + div + div /*9*/
/*.columnlayout div + div + div + div + div + div + div + div + div + div + div + div + div, /*13*/
/* margin-right: 2%;}*/
.Home #content .title, .Home #content .sixcol > div, .Home #content .faqs > div, body.Home .topblocks > div > div {
  opacity: 1 !important; }

/*# sourceMappingURL=ie.css.map */
