/******************************************************************
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/
*********************/
/*Green */
/*$color-secondary: #a70f54;  Pink */
/* LGreen */
/* Pink */
/* Grey */
/*
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);
*/
/*********************
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(#dfdfdf,#f8f8f8); */
/*********************
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%;
  }
*/
/******************
CIRCLES
******************/
/*
USAGE: @include circle(inline-block, 30em, $white);
*/
/*
USAGE: @include fixedCircle(inline-block, 1em, $white);
*/
/*********************
BUTTONS
*********************/
.button, button, input.addCart {
  padding: 0.3em 0.6em;
  /*margin-top: 0.25em;*/
  display: inline-block;
  text-decoration: none;
  letter-spacing: 1.2px;
  border-radius: 300px;
  cursor: pointer;
  border: 2px solid #ce013a;
  background: #ce013a;
  line-height: 1.5;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  .button:hover, .button:focus, button:hover, button:focus, input.addCart:hover, input.addCart:focus {
    background: #171717;
    border: 2px solid #171717;
    padding: 0.3em 0.6em;
    /*  @include transition(all 0.5s ease-in-out);*/
    /*border-radius: 4px;*/ }
  .button:active, button:active, input.addCart:active {
    background: #171717; }

input.addCart {
  /*line-height: 2;*/ }

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

#imageslider .button, #bottomblocks .button {
  -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;
    padding: 0.3em 0.6em; }
    #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; }

/*********************

ANGLE BLOCKS  
https://www.viget.com/articles/angled-edges-with-css-masks-and-transforms

*********************/
.edge--bottom {
  position: relative;
  z-index: 1; }
  .edge--bottom:after {
    background: inherit;
    content: '';
    display: block;
    height: 50%;
    left: 0;
    position: absolute;
    right: 0;
    z-index: -1;
    -webkit-backface-visibility: hidden; }
  .edge--bottom:after {
    bottom: 0;
    transform: skewY(-1.5deg);
    transform-origin: 100%; }

.edge--bottom--reverse {
  position: relative;
  z-index: 1; }
  .edge--bottom--reverse:after {
    background: inherit;
    content: '';
    display: block;
    height: 50%;
    left: 0;
    position: absolute;
    right: 0;
    z-index: -1;
    -webkit-backface-visibility: hidden; }
  .edge--bottom--reverse:after {
    bottom: 0;
    transform: skewY(1.5deg);
    transform-origin: 0 100%; }

.edge--top {
  position: relative;
  z-index: 1; }
  .edge--top:before {
    background: inherit;
    content: '';
    display: block;
    height: 50%;
    left: 0;
    position: absolute;
    right: 0;
    z-index: -1;
    -webkit-backface-visibility: hidden; }
  .edge--top:before {
    top: 0;
    transform: skewY(1.5deg);
    transform-origin: 100% 0; }

.edge--top--reverse {
  position: relative;
  z-index: 1; }
  .edge--top--reverse:before {
    background: inherit;
    content: '';
    display: block;
    height: 50%;
    left: 0;
    position: absolute;
    right: 0;
    z-index: -1;
    -webkit-backface-visibility: hidden; }
  .edge--top--reverse:before {
    top: 0;
    transform: skewY(-1.5deg);
    transform-origin: 0 0; }

.edge--both {
  position: relative;
  z-index: 1; }
  .edge--both:before, .edge--both:after {
    background: inherit;
    content: '';
    display: block;
    height: 50%;
    left: 0;
    position: absolute;
    right: 0;
    z-index: -1;
    -webkit-backface-visibility: hidden; }
  .edge--both:before {
    top: 0;
    transform: skewY(1.5deg);
    transform-origin: 100% 0; }
  .edge--both:after {
    bottom: 0;
    transform: skewY(-1.5deg);
    transform-origin: 100%; }

.edge--both--reverse {
  position: relative;
  z-index: 1; }
  .edge--both--reverse:before, .edge--both--reverse:after {
    background: inherit;
    content: '';
    display: block;
    height: 50%;
    left: 0;
    position: absolute;
    right: 0;
    z-index: -1;
    -webkit-backface-visibility: hidden; }
  .edge--both--reverse:before {
    top: 0;
    transform: skewY(-1.5deg);
    transform-origin: 0 0; }
  .edge--both--reverse:after {
    bottom: 0;
    transform: skewY(1.5deg);
    transform-origin: 0 0; }

.-primary {
  background: #379545; }

.-secondary {
  background: #45ba56; }

.-tertiary {
  background: #ce013a; }

.-quaternary {
  background: #525a5a; }

/******************************************************************
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, body.Home #topblocks h2 {
  font-size: 1.6em; }

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

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

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

/*********************
HEADER STYLES
*********************/
body.Home .header {
  height: 111px; }

/*Set height of parallax on home to be bigger than inner pages */
.header, .header .parallax-window {
  /*height: 600px;*/ }

.header #topLine {
  position: relative;
  z-index: auto; }

.header .menu {
  margin: 0 auto;
  width: 100%; }

.header .menu.clearHeader, .header .menu.darkHeader {
  top: 0;
  overflow: visible; }

.header a.searchbutton {
  right: 3%; }

.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;
  left: 2%; }

.header .logoHelper {
  display: none; }

/***********************
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);
  transform: translate3d(-50%, -50%, 0); }

/*********************
NAVIGATION STYLES
*********************/
.menuWrap {
  width: 95%; }

.topMenu {
  text-align: right;
  margin-top: 0.6em; }
  .topMenu a.toggleMenu {
    margin-top: 1.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
**********************/
.columnlayout > div {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: top; }
  .columnlayout > div div {
    width: auto; }

.columnlayout > div, .columnlayout li, .columnlayout .newsBlock, ul#products > div, ul#products li, ul#products .newsBlock, #categorydetails ul.products > div, #categorydetails ul.products li, #categorydetails ul.products .newsBlock, #relatedProducts ul > div, #relatedProducts ul li, #relatedProducts ul .newsBlock, body.Brands ol > div, body.Brands ol li, body.Brands ol .newsBlock, ul.confidence > div, ul.confidence li, ul.confidence .newsBlock, ul.confidence2 > div, ul.confidence2 li, ul.confidence2 .newsBlock, .newsWrap > div, .newsWrap li, .newsWrap .newsBlock {
  width: 48%; }

/*********************************
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; }

/*************************
ERP
*************************/
/* FEATURED PRODUCT SLIDER */
.slick-slider.products {
  margin-bottom: 3em; }
  .slick-slider.products .slick-list .slick-track .slick-slide {
    min-height: 355px; }

/* end slick-slider */
/* STYLE ALL PRODUCT LISTINGS SITE-WIDE IN ONE SPOT */
.products {
  list-style-type: none;
  padding-left: 0; }
  .products li .productDetails {
    /* padding-bottom:138px; */ }
    .products li .productDetails .holdButtons {
      position: absolute;
      bottom: 0.5em;
      margin-right: 0.5em;
      width: 93%; }

#product .productDetails .addToWishlist span {
  display: inline; }

/*Responsive Tabbed Content*/
#horizontalTab ul.resp-tabs-list {
  display: block;
  padding: 0 0 0 0;
  margin-top: 1em; }
  #horizontalTab ul.resp-tabs-list li {
    width: 50%;
    text-align: center;
    display: inline-block;
    padding: 0.2em 2em;
    margin: 0;
    list-style: none;
    cursor: pointer;
    float: left;
    border-top: 3px solid #525a5a;
    background-color: #ffffff;
    border-bottom: none;
    border-right: none; }
    #horizontalTab ul.resp-tabs-list li:last-of-type {
      border-left: none;
      border-right: 1px solid #525a5a; }
    #horizontalTab ul.resp-tabs-list li:hover {
      background-color: #d9d9d9; }
    #horizontalTab ul.resp-tabs-list li.resp-tab-active {
      border-top: 3px solid #ce013a;
      margin-bottom: -1px !important;
      position: relative;
      background-color: whitesmoke; }

#horizontalTab .resp-tabs-container {
  border-top: none; }
  #horizontalTab .resp-tabs-container p {
    margin: 0; }
  #horizontalTab .resp-tabs-container h2.resp-accordion {
    display: none; }
  #horizontalTab .resp-tabs-container .resp-tab-content {
    min-height: 250px;
    display: none;
    margin-top: 0; }
    #horizontalTab .resp-tabs-container .resp-tab-content .shortdesc, #horizontalTab .resp-tabs-container .resp-tab-content .longdesc {
      width: 100%;
      display: block;
      padding: 1em;
      line-height: 1;
      clear: both; }
      #horizontalTab .resp-tabs-container .resp-tab-content .shortdesc p, #horizontalTab .resp-tabs-container .resp-tab-content .longdesc p {
        margin: 0; }

/*End Responsive Tabbed Content*/
/******************************************************************
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; }
    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: #ebebeb; }
  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 td, table.tableResp tbody tr td, table#tableTotals tbody tr td {
        display: table-cell;
        text-align: left;
        border-bottom: 1px solid #ebebeb;
        /* 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: 4px solid #ebebeb; }
  table#tableTotals tbody tr td:last-child {
    width: 10%; }

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

/**********************************
Cart + Checkout
**********************************/
body.viewcart #checkoutBreadcrumbs li a {
  font-size: 100%;
  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 a {
  font-size: 100%; }

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: #171717;
  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: 1.8em;
  text-align: center; }

/*body.checkout {
	#rightcol.last {
		float: none;
		width:100%;
		margin-left: 0;
	}
	#holdLeft.first {
		float: none;
		width:100%;
	}
}
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet Landscape

Needed to change the menu styling from mobile to desktop

******************************************************************/
.hideOnMobile {
  display: inline-block; }

.hideOnDesktop {
  display: none; }

.slideshow_caption p.h1 {
  font-size: 3em;
  margin-bottom: 0.1em; }

.slideshow_caption .h2 {
  font-size: 1.1em; }

.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: 700;
  font-family: "Oswald", sans-serif;
  background: transparent;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  font-size: 1.3em; }

.topMenu .nav > li a {
  font-weight: 300;
  font-family: "Oswald", sans-serif; }

#topLine .nav > li > a {
  font-weight: 300; }

h1, .h1 {
  font-size: 3.5em;
  line-height: 1.1;
  margin: 0.25em auto; }

#topblocks h1 {
  margin: 0;
  line-height: 1; }

h2, .h2 {
  margin-bottom: 0.6em;
  font-size: 2em; }

blockquote {
  font-size: 1.4em;
  font-family: "Short Stack", cursive;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9); }

.Home #bottomblocks h2 {
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.9); }

/*************************
Colours
*************************/
.green {
  color: #379545;
  letter-spacing: 0.5px; }

.red {
  color: #ce013a; }

a.activerootmenulink {
  font-weight: 500; }

.white, .topMenu .nav > li > a:hover, .topMenu .nav > li > a, .topMenu .nav > li > a:hover, .slideshow_caption .h2 {
  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
*********************/
.header {
  min-height: 140px;
  height: auto; }
  .header #topLine .row > * {
    vertical-align: middle; }
  .header #mainMenu, .header .searchbutton {
    display: inline-block;
    width: auto;
    vertical-align: middle; }
  .header #mainMenu {
    float: none; }
  .header a.searchbutton {
    float: none;
    padding-top: 0.5em;
    position: relative;
    top: 15%;
    right: 0; }
  .header .smallform {
    width: 17%;
    top: 5px; }
  .header .row {
    position: relative; }
  .header #logo {
    position: absolute;
    left: 0;
    top: -20px; }
  .header .phone {
    text-align: left; }
    .header .phone > div {
      display: inline-block;
      padding: 0 0.8em;
      border-left: 1px solid #ce013a; }
      .header .phone > div:first-child {
        padding-left: 0;
        border-left: 0; }
  .header .menu {
    padding: 0.5em 0;
    text-align: center; }
    .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
***************************/
#topblocks {
  /*min-height: 400px;*/ }

/*********************
NAVIGATION STYLES
*********************/
.phone a {
  font-family: "Open Sans", sans-serif;
  padding: 0.1em 0.45em;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out; }
  .phone a:hover {
    background: #ffffff;
    border-radius: 300px;
    color: #171717;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

#topLine nav {
  display: inline-block;
  float: none;
  width: auto;
  margin-right: 0.5em;
  vertical-align: middle;
  line-height: 2.1;
  font-size: 0.8em;
  margin-top: 0; }
  #topLine nav li:hover {
    background: transparent; }
  #topLine nav li a {
    font-family: "Open Sans", sans-serif;
    padding: 0.1em 0.45em; }
    #topLine nav li a:hover {
      background: #ffffff;
      border-radius: 300px;
      color: #171717; }
      #topLine nav li a:hover:after {
        content: none; }

.menuWrap {
  width: 74.30939226%; }

#mainMenu {
  padding: 1em 0 0.5em 0; }

.header .row > .topMenu {
  text-align: right;
  float: right;
  width: 100%; }

.topMenu {
  text-align: right;
  margin-left: auto;
  margin-right: auto;
  float: none;
  clear: none;
  display: inline-block;
  width: auto;
  vertical-align: bottom;
  margin-top: 0.5em;
  /* end .nav */ }
  .topMenu a.toggleMenu {
    display: none; }
  .topMenu .nav {
    position: relative;
    width: auto;
    text-align: center;
    border: 0;
    line-height: 1.5;
    display: inline-block;
    /* end .menu ul li */ }
    .topMenu .nav > li {
      display: inline-block;
      padding: 0 0.6em;
      /*Prominent contact link*/
      /*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.hover {
        background: transparent;
        /*border-radius: 4px;*/
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out; }
      .topMenu .nav > li > a:after {
        -webkit-transition: all 0.5s ease-in-out;
        transition: all 0.5s ease-in-out;
        content: '';
        height: 2px;
        background: #ce013a;
        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; }
        .topMenu .nav > li > a:hover:after, .topMenu .nav > li > a:focus:after {
          content: '';
          height: 2px;
          background: #ce013a;
          width: 100%;
          display: block;
          /*position: absolute;
                        bottom: 0;
                        right: 0;*/
          left: 0;
          -webkit-transition: all 0.5s ease-in-out;
          transition: all 0.5s ease-in-out; }
      .topMenu .nav > li > a.parent:after {
        content: "\f107";
        font-family: FontAwesome;
        display: block;
        float: right;
        font-size: large;
        padding-left: 0.3em;
        line-height: 2; }
    .topMenu .nav li {
      position: relative;
      padding: 0;
      /* highlight current page */
      /*
			plan your menus and drop-downs wisely.
			*/
      /* showing sub-menus */ }
      .topMenu .nav li a {
        padding: 0.5em 0.5em;
        background: none;
        border-bottom: none; }
        .topMenu .nav li a.parent:before {
          display: none; }
      .topMenu .nav li a.activerootmenulink {
        color: #ce013a; }
      .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 #379545; }
        .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*/
/*Full width slider */
ul.responsive3 .slick-list .slick-track .slick-slide > div {
  position: relative;
  text-align: center; }
  ul.responsive3 .slick-list .slick-track .slick-slide > div .slideshow_caption {
    left: 10%;
    top: 30%;
    width: 550px;
    text-align: center;
    overflow: visible; }
    ul.responsive3 .slick-list .slick-track .slick-slide > div .slideshow_caption .h2 {
      display: block; }
    ul.responsive3 .slick-list .slick-track .slick-slide > div .slideshow_caption .splat {
      background: url("../images/splat.svg") no-repeat;
      background-size: cover;
      width: 800px;
      height: 800px;
      position: absolute;
      top: -300px;
      left: -175px;
      opacity: 0.85;
      display: block;
      z-index: -999; }
    ul.responsive3 .slick-list .slick-track .slick-slide > div .slideshow_caption .button {
      /*padding: 0.6em 2em;*/ }
    ul.responsive3 .slick-list .slick-track .slick-slide > div .slideshow_caption .slideDescription {
      display: block; }

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

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

/*********************
BLOCK LAYOUT
**********************/
.columnlayout, ul#products, #categorydetails ul.products, #relatedProducts ul, .newsWrap {
  /*Top row needs border adding seperatley to prevent double borders*/ }
  .columnlayout > div, .columnlayout li, .columnlayout .newsBlock, ul#products > div, ul#products li, ul#products .newsBlock, #categorydetails ul.products > div, #categorydetails ul.products li, #categorydetails ul.products .newsBlock, #relatedProducts ul > div, #relatedProducts ul li, #relatedProducts ul .newsBlock, .newsWrap > div, .newsWrap li, .newsWrap .newsBlock {
    width: 32.5%; }
  .columnlayout > div:nth-child(3), .columnlayout li:nth-child(3), ul#products > div:nth-child(3), ul#products li:nth-child(3), #categorydetails ul.products > div:nth-child(3), #categorydetails ul.products li:nth-child(3), #relatedProducts ul > div:nth-child(3), #relatedProducts ul li:nth-child(3), .newsWrap > div:nth-child(3), .newsWrap li:nth-child(3) {
    border-top: 1px solid #bfbfbf; }

.Home #leftcol > div > div {
  min-height: 200px; }

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

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

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

/*************************
ERP
*************************/
.product .sevencol.last .ProductAttributeSelectContainer {
  width: 100%;
  margin-right: 0%; }

/******************************************************************
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) */
.header {
  background-color: transparent; }
  .header #topLine {
    text-align: right; }
    .header #topLine .holdCart {
      background: #45ba56;
      padding: 0.2em 1em;
      border-radius: 300px;
      position: relative;
      line-height: 2;
      /*    &:after{
                   content: 'View Cart';
                    background: darken($black, 5%);
                    padding: 0.2em 1em;
                    border-radius: 300px;
                    display: block;
                    position: absolute;
                    top: -20px;
                    text-align: center;
                    right: -5px;
                    width: 100%;
                    cursor: pointer;
                    @include transition(all 0.3s ease-in-out);
                    opacity: 0;
                }
            &:hover{
                &:after{
                    content: 'View Cart';
                    background: $black;
                    text-align: center;
                    padding: 0.2em 1em;
                    border-radius: 300px;
                    display: block;
                    position: absolute;
                    top: 0;
                    right: -5px;
                    
                    cursor: pointer;
                    width: 90%;
                    @include transition(all 0.3s ease-in-out);
                    opacity: 1;
                    line-height: 1.8;
                }

            }*/ }
      .header #topLine .holdCart:hover {
        background: #525a5a; }
  .header .phone {
    line-height: 1.5;
    font-size: 1.1em;
    margin-right: 0.75em; }
  .header .menu {
    padding: 0.5em 0;
    top: 0px; }
  .header .menu.clearHeader {
    position: relative;
    height: 90px;
    min-height: 0;
    /*@include css-gradient($color-primary, darken($color-primary, 15%));*/
    background: #379545;
    /*border-bottom: 4px solid $color-primary;*/
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .header .menu.clearHeader .logoHelper {
      background: #525a5a;
      display: block;
      position: absolute;
      top: -110px;
      left: 0px;
      width: 198px;
      transform: rotate(0deg);
      height: 225px;
      border-radius: 0 0 120px 70px;
      z-index: 1;
      box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }
    .header .menu.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: -70px;
      left: -50px; }
    .header .menu.clearHeader #mainMenu {
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      padding: 0; }
  .header .menu.darkHeader {
    position: fixed;
    min-height: 0;
    height: 80px;
    background-color: #379545;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .header .menu.darkHeader .logoHelper {
      background: #525a5a;
      display: block;
      position: absolute;
      top: -63px;
      -ms-transform: rotate(0);
      /* IE 9 */
      -webkit-transform: rotate(0);
      /* Safari */
      transform: rotate(0);
      left: -420px;
      width: 600px;
      height: 135px;
      border-radius: 0;
      z-index: -10;
      box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.3);
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }
    .header .menu.darkHeader #logo {
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      width: 245px;
      height: 90px;
      background-size: 245px 90px;
      top: -20px; }
    .header .menu.darkHeader #mainMenu {
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out;
      padding: 0; }
    .header .menu.darkHeader .topMenu {
      padding-top: 0.3em;
      margin-top: 0;
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }

#content {
  height: auto; }

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

.slick-next {
  right: 50px; }

.slick-prev {
  left: 50px; }

.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*/
/*target every 4th*/
.columnlayout div + div + div + div,
.columnlayout div + div + div + div + div + div + div + div,
.columnlayout div + div + div + div + div + div + div + div + div + div + div + div {
  margin-right: 0%;
  border-right: none; }

/*target every other*/
.columnlayout div + div + div + div + div,
.columnlayout div + div + div + div + div + div + div + div + div .columnlayout div + div + div + div + div + div + div + div + div + div + div + div + div {
  margin-right: 2%; }

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