/******************************************************************
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/
*********************/
/*#303a41*/
/*orange*/
/*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;
	}
*/
/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on December 20, 2018 */
/*
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);

transition-property: property_name; 				
transition-duration: duration; 				
transition-timing-function: timing_function; 				
transition-delay: delay;


*/
/*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);
*/
/*********************
BOX Shadow
*********************/
/*
USAGE: @include box-shadow($boxshadow);
*/
/*********************
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); 
@mixin css-gradient($from: #dfdfdf, $to: #f8f8f8) {
	background-color: $to;
	background-image: -webkit-gradient(linear, left top, left bottom, from($from), to($to));
	background-image: -webkit-linear-gradient(top, $from, $to);
	background-image: -moz-linear-gradient(top, $from, $to);
	background-image: -o-linear-gradient(top, $from, $to);
	background-image: linear-gradient(to bottom, $from, $to);
}*/
/*********************
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 fixedCircle(inline-block, 1em, $white);
*/
/*********************
BUTTONS
*********************/
.button, button {
  padding: 0.5em 1.5em;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid #ff772d;
  background: transparent;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  border-radius: 8px;
  margin: 0.5em 0; }
  .button:hover, .button:focus, button:hover, button:focus {
    background: #ff772d;
    border-color: #ff772d;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

.button.primary, #pushMenu .button {
  background: #ff772d;
  border-color: #ff772d; }
  .button.primary:hover, .button.primary:focus, .button.primary:active, #pushMenu .button:hover, #pushMenu .button:focus, #pushMenu .button:active {
    background: #f95800;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

.button.secondary {
  background: #ff772d;
  border-color: #ff772d; }
  .button.secondary:hover, .button.secondary:focus, .button.secondary:active {
    background: transparent;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

.button.tertiary {
  background-color: transparent;
  border-color: #fff; }
  .button.tertiary:hover, .button.tertiary:focus, .button.tertiary:active {
    background-color: #fff;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }

.button.showHide {
  /*&.bigger {
        &:before{line-height: 2.1;}
    }*/ }
  .button.showHide:before {
    content: "\f107";
    font-family: FontAwesome;
    position: relative;
    float: right;
    margin-left: 0.5em;
    font-size: large;
    line-height: 1.6;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out; }
  .button.showHide.open {
    background: #ff772d; }
    .button.showHide.open:before {
      content: "\f106";
      -webkit-transition: all 0.5s ease-in-out;
      transition: all 0.5s ease-in-out; }

/******************************************************************
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, .threeflex, body.Home .newsBlock {
  width: 22.928176794%; }

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

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

/* 39.45%; } /* grid_5  */
.sixcol, .sixflex {
  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; }

/* Flex grid to be used as needed
******************************************************************/
.flexWrap, .aligner {
  display: -webkit-flex;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  height: 100%; }
  .flexWrap .threeflex, .aligner .threeflex, .flexWrap .sixflex, .aligner .sixflex, .flexWrap > h3, .aligner > h3, .flexWrap > p, .aligner > p, .flexWrap body.Home .newsBlock, .aligner body.Home .newsBlock, .flexWrap .first, .aligner .first, .flexWrap .last, .aligner .last {
    flex: 1 1 auto; }
  .flexWrap .threeflex, .aligner .threeflex, .flexWrap .fourflex, .aligner .fourflex, .flexWrap .sixflex, .aligner .sixflex, .flexWrap .ninecol, .aligner .ninecol {
    margin-left: 2.762430939%; }
    .flexWrap .threeflex > p, .aligner .threeflex > p, .flexWrap .fourflex > p, .aligner .fourflex > p, .flexWrap .sixflex > p, .aligner .sixflex > p, .flexWrap .ninecol > p, .aligner .ninecol > p {
      margin: 0 0; }
  .flexWrap > h3, .aligner > h3, .flexWrap > p, .aligner > p {
    width: 99.999999993%; }
  .flexWrap .first, .aligner .first {
    order: 1;
    margin-left: 0; }
  .flexWrap .last, .aligner .last {
    order: 2; }

.aligner {
  height: auto;
  align-items: center;
  justify-content: center; }

/* STICKY RIGHT BLOCKS USING FLEX */
body.properties #content .row {
  /*stretch is default so set auto height on columns*/
  align-items: flex-start;
  /* tell the main element to take three times as much width as the other sidebars */ }
  body.properties #content .row .first {
    order: 1; }
  body.properties #content .row .last {
    order: 2; }
  body.properties #content .row #leftcol {
    flex: 3 0px; }
  body.properties #content .row #rightcol {
    position: -webkit-sticky;
    position: sticky;
    flex: 1 0px;
    top: 7rem; }
    @media (max-width: 1280px) {
      body.properties #content .row #rightcol {
        top: 5rem; } }

/*masonry plugin
******************************************************************/
.grid:after {
  content: '';
  display: block;
  clear: both; }

.grid-sizer,
.grid-item {
  width: 19%; }

.gutter-sizer {
  width: 1%; }

.grid-item {
  min-height: 120px;
  float: left;
  margin-bottom: 1%; }

.grid-item--width2 {
  width: 50%; }

.grid-item--height2 {
  min-height: 240px; }

body:not(.admindex) .grid > br {
  display: none; }

/******************************************************************
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
******************************************************************/
ul.responsive3 .slideshow_caption p.h1, .heading h1 {
  font-size: 2em; }

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-small {
  max-width: 800px; }

.row, body.fullWidth #leftcol > div > div {
  max-width: 1600px; }

header .row, footer .row, #breadcrumbs .row {
  max-width: 1600px; }

/*********************
HEADER STYLES
*********************/
/***********************
HERO - INNER PAGES
************************/
body:not(.Home) #Hero .topBlock h1, body:not(.Home) #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; }
  .topMenu a.toggleMenu {
    margin-top: 0.75em;
    padding: 2% 4%; }

/**********************
MEGA MENU OVERRIDE (BEN VERSION)
***********************/
@media only screen and (min-width: 1024px) {
    #mainMenu ul li#cmenu8044 ul {
        width: 100%;
        margin-top: 10px;
        position: fixed;
        background-color: #4E4F51;
        padding: 30px 40px 40px 40px;
        border-top: 2px solid #FF772D;
    }

        #mainMenu ul li#cmenu8044 ul li {
            float: left;
            background-color: #4E4F51;
            color: white;
        }

            #mainMenu ul li#cmenu8044 ul li a {
                background-color: #4E4F51;
                color: white;
                font-size: 0.9em;
                padding: 15px 15px;
                min-width: 300px;
            }

                #mainMenu ul li#cmenu8044 ul li a:hover {
                    background-color: #FF772E;
                    color: white;
                }
}

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

/*********************
HOME STYLES
*********************/
body.Home #content #leftcol > div > div > div.last img body.Landing #content #leftcol > div {
  padding: 4em 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
*********************/
#address form {
  margin: 0 0; }

#footer > div {
  text-align: left; }
  #footer > div #copyright .first a {
    display: inline; }
  #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 with captions */
ul.responsive3 .slick-list .slick-track .slick-slide img {
  /*height: 520px;*/ }

ul.responsive3 .slick-slider .slick-active img {
  margin-left: -400px; }

/*Fix to prevent last slide flashing*/
.slick-slider .slick-track, .slick-slider .slick-list {
  -webkit-perspective: 1000px; }

/*************************
STICKY BACK TO TOP
*************************/
.cd-top {
  bottom: 1em; }

/*********************
Sticky CTA
*********************/
#stickyCTA {
  bottom: 1em;
  right: 4em;
  text-align: right;
  width: 340px;
  /*turn onn button styling for mobile*/ }
  #stickyCTA .button.cta {
    width: auto;
    border-radius: 8px; }

/******************************************************************
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; }
  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: #fff; }
      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: #4e4f51; }

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

/*************************
    ERP PRODUCTS
    *************************/
input.addCart {
  max-width: 100%;
  padding-left: 1.5em; }

p.QtyContainer {
  max-width: 100%;
  display: block; }

/**********************************
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: #4e4f51;
  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%; }

/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet Landscape

Needed to change the menu styling from mobile to desktop

******************************************************************/
.mobileOnly {
  display: none; }

.desktopOnly {
  display: inline-block; }

h1, .h1, h3.large {
  font-size: 1.8em; }

h2, .h2, .caption {
  font-size: 1.4em; }

.bigger {
  font-size: 1.3em; }

h3, .h3, h4, .h4 {
  font-size: 1.15em; }

.submenu a {
  font-size: 0.9em; }

#homeMission {
  font-weight: 700; }

/*************************
Colours
*************************/
.white {
  color: #fff; }

/*********************
LAYOUT & GRID STYLES
*********************/
.row, body.fullWidth #leftcol > div > div {
  padding: 2em 0; }

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

#content .row {
  padding: 0 0 2em 0; }

/*Increase padding content some rows */
#homeBlocks .row {
  padding: 4em 0; }

/*********************
SPRITE
*********************/
/*#logo {
        width: 120px; height: 70px;
	    background-size: 120px 70px;
	}*/
/*********************
HEADER STYLES
*********************/
body.Home .header {
  /*height: 112.09px;*/ }

.header .button, .header button {
  border-radius: 8px; }

.header .row {
  position: relative;
  min-height: 90px; }

.header .menu > div.search {
  display: none; }

.header #logo, .header #accountMenu {
  transform: none; }

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

.header #accountMenu {
  top: 5%;
  right: 0; }
  .header #accountMenu > div.search {
    display: inline-block; }
  .header #accountMenu .top-mini-content {
    top: 2em;
    padding: 1em;
    width: 500px;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out; }
    .header #accountMenu .top-mini-content:hover, .header #accountMenu .top-mini-content.inspectcart {
      visibility: visible;
      opacity: 1;
      right: -30px;
      width: 500px;
      -webkit-transition: all 0.4s ease-in-out;
      transition: all 0.4s ease-in-out; }

.header #mainMenu {
  display: inline-block;
  position: absolute;
  right: 0%;
  bottom: 0%; }

/***********************/
/*Confidence triggers*/
#confidence {
  position: relative; }
  #confidence .row {
    background: white;
    z-index: 1; }
    #confidence .row .os-animation:nth-of-type(1) {
      -webkit-animation-delay: 0s;
      /* Safari 4.0 - 8.0 */
      animation-delay: 0s; }
    #confidence .row .os-animation:nth-of-type(2) {
      -webkit-animation-delay: 0.25s;
      /* Safari 4.0 - 8.0 */
      animation-delay: 0.25s; }
    #confidence .row .os-animation:nth-of-type(3) {
      -webkit-animation-delay: 0.5s;
      /* Safari 4.0 - 8.0 */
      animation-delay: 0.5s; }
    #confidence .row .os-animation:nth-of-type(4) {
      -webkit-animation-delay: 0.75s;
      /* Safari 4.0 - 8.0 */
      animation-delay: 0.75s; }
    #confidence .row .os-animation:nth-of-type(5) {
      -webkit-animation-delay: 1s;
      /* Safari 4.0 - 8.0 */
      animation-delay: 1s; }
    #confidence .row .os-animation:nth-of-type(6) {
      -webkit-animation-delay: 1.25s;
      /* Safari 4.0 - 8.0 */
      animation-delay: 1.25s; }
    #confidence .row .wrap {
      float: none;
      display: block;
      width: 100%;
      margin-right: 0em; }
      #confidence .row .wrap img {
        max-width: 196px; }

/**************************
HERO - Home
***************************/
/*body.Home #imageslider {max-height: 570px; overflow:hidden;}*/
#hero {
  z-index: 0; }

body:not(.Home) #hero .topBlock img {
  max-width: 1200px; }

/*hero*/
body.Home #hero .row {
  width: 50%; }

/*********************
NAVIGATION STYLES
*********************/
/*#touchMenu*/
.menu-btn {
  display: none; }

/*.menuWrap {
	width: 74.30939226%;
}*/
#mainMenu {
  /*padding: 1em 0 0.5em 0;*/ }
  #mainMenu .nav {
    display: inline-block; }
  #mainMenu .nav:last-of-type > li:first-of-type {
    display: none; }

.topMenu {
  /* end .nav */ }
  .topMenu a.toggleMenu {
    display: none; }
  .topMenu .nav {
    position: relative;
    width: auto;
    border: 0;
    /* end .menu ul li */ }
    .topMenu .nav > li {
      display: inline-block;
      padding: 0em 1em 0.5em 1em;
      /*&.hover > a {
				&:after {
					visibility: visible;
					-webkit-transform: scaleX(1);
					transform: scaleX(1);
				}
			}*/
      /*hide home link to public*/
      /* showing sub-menus */ }
      .topMenu .nav > li > a, .topMenu .nav > li > a.parent {
        position: relative;
        background: transparent;
        padding: 0.25em 0em; }
        .topMenu .nav > li > a:hover, .topMenu .nav > li > a:focus, .topMenu .nav > li > a.parent:hover, .topMenu .nav > li > a.parent:focus {
          background: none; }
        .topMenu .nav > li > a:after, .topMenu .nav > li > a.parent:after {
          content: "";
          position: absolute;
          width: 100%;
          height: 2px;
          bottom: 0;
          left: 0;
          background-color: #ff772d;
          visibility: hidden;
          -webkit-transform: scaleX(0);
          transform: scaleX(0);
          -webkit-transition: all 0.3s ease-in-out 0s;
          transition: all 0.3s ease-in-out 0s; }
        .topMenu .nav > li > a:hover:after, .topMenu .nav > li > a.activerootmenulink:after, .topMenu .nav > li > a.parent:hover:after, .topMenu .nav > li > a.parent.activerootmenulink:after {
          visibility: visible;
          -webkit-transform: scaleX(1);
          transform: scaleX(1); }
      .topMenu .nav > li:last-child {
        /*display: none;*/ }
      .topMenu .nav > li > ul.submenu {
        opacity: 0;
        top: 50%;
        /*
			Animation effect for top nav
			*/
        /*@include transition(top,opacity,visibility 0.2s linear);*/
        transition: 0.2s linear;
        transition-property: top,opacity,visibility;
        -webkit-transition: all 0.2s linear;
        transition: all 0.2s linear;
        /* arrow */
        /*&:before {
					content:"";
					display:block;
					margin: 0 auto;
					width: 0;
					height: 0;
					border-style: solid;
					border-width: 0 10px 10px 10px;
					border-color: transparent transparent #ffffff transparent;
				}*/ }
        .topMenu .nav > li > ul.submenu li {
          text-align: center; }
    .topMenu .nav li {
      position: relative;
      /* highlight current page */
      /*
			plan your menus and drop-downs wisely.
			*/ }
      .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: #ff772d; }
      .topMenu .nav li ul,
      .topMenu .nav li ul.sub-menu,
      .topMenu .nav li ul.children {
        position: absolute;
        z-index: 9999;
        left: -9999px;
        visibility: hidden;
        box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.2); }
        .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: 230px;
            border-top: none;
            border-radius: 0;
            margin-right: 0;
            background: #fff; }
            .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; }
            .topMenu .nav li ul li ul li a,
            .topMenu .nav li ul.sub-menu li ul li a,
            .topMenu .nav li ul.children li ul li a {
              background: #f2f2f2; }

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

.nav > li.hover > ul.submenu {
  opacity: 1;
  top: 100%;
  left: -60px;
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear; }

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

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

/*********************
BLOCK LAYOUT
**********************/
#confidence .columnlayout > div {
  width: 33%;
  text-align: center; }

/*.columnlayout {	
	> div, li {	width:100%;	}

}*/
/* ERP - Blocks*/
ul#products li {
  width: 25%; }

/*Bottom Blocks*/
#bottomBlocks .block {
  margin-bottom: 2em;
  margin: 0 auto; }

/*layout needed for list items */
#bottomBlocks #block_26 ul li {
  display: inline-block;
  width: 48%;
  margin-bottom: 0.5em; }

/*spacing needed for upcoming events blocks */
.columnlayout.eventsBlocks {
  justify-content: space-between; }
  .columnlayout.eventsBlocks > article, .columnlayout.eventsBlocks > div {
    width: 46%; }

#bottomBlocks .row .block {
  margin-top: 2em; }

/****FOOTER********/
#footer {
  background: #414244;
  /*text-align: center;*/ }
  #footer > div i {
    padding-right: 0.25em; }
  #footer > div #copyright.first {
    text-align: left; }
  #footer > div #copyright.last {
    text-align: right; }

/*Full width slider */
body.Home #hero {
  overflow: hidden; }

ul.responsive3 {
  max-height: none; }
  ul.responsive3 .slick-list .slick-track .slick-slide {
    /*height:500px;*/
    /*&:before {background-color: rgba(0, 0, 0, 0.25); }*/ }
    ul.responsive3 .slick-list .slick-track .slick-slide img {
      /*height: 420px;*/ }
  ul.responsive3 .slick-slider .slick-active img {
    margin-left: 0; }
  ul.responsive3 .slick-prev, ul.responsive3 .slick-next {
    top: 50%; }
  ul.responsive3 .slick-next {
    right: 0px; }
  ul.responsive3 .slick-prev {
    left: 0; }
  ul.responsive3 .slick-slider .slick-track, ul.responsive3 .slick-slider .slick-list {
    -webkit-perspective: 1000px; }

/*************************
STICKY BACK TO TOP
*************************/
.cd-top {
  height: 50px;
  width: 50px; }

/*********************
Sticky CTA
*********************/
/*****************************
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. 

******************************************************************/
/* 
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%; }

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  #logo {
    background-image: url("../images/logo-2x.png"); } }

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