/**
 * CONTENTS
 *
 * GENERIC
 * Box-sizing............Better default `box-sizing`.
 * Sticky Footer.........Make Footer always stick to bottom.
 * Image Aligns..........WP specific img aligns.
 *
 * BASE
 * Typography............Base text and vertical rhythem setup.
 *
 * OBJECTS
 * Wrappers..............Wrapping and constraining elements.
 * Grid System...........Bootstrap based grid.
 *
 * COMPONENTS
 * Clearfix..............Properly clear floats.
 * Icons.................Icon Elements.
 * Buttons...............Button elements.
 * Flexbox...............Emulate modern flexbox layout.
 * Block-list............Create big blocky lists of content.
 * Matrix................Table like layouts for lists.
 * Multi-list............Multiple column lists.
 * Tables................Table Styles.
 * Forms.................Form Elements.
 * Lightboxes............Lightbox Styling
 * Gallery...............Gallery Styling
 * Page-head.............The main page header.
 * Navigation............Navigation elements.
 * Sub-navigation........Sub-menus and navigation
 * Masthead..............Page title/image/slideshow header block.
 * Breadcrumbs...........Breadcrumbs.
 * Pagination............Pagination.
 * Page-foot.............The main page footer.
 *
 * TRUMPS
 * Images................Round, Circle, Square Images.
 * Visiblity.............Make items visible.
 * Hiding................Make items invisible/hidden.
 * Screen Readers........Display for screen readers.
 * Print.................Display for printing.
 * Clears................Clearing floats.
 * Text alignment........Align text.
 * Font weights..........Adjust font weights.
 * Borders...............Add borders.
 * Add/remove margins....Remove margins.
 * Add/remove paddings...Remove padding.
 * Positioning...........float, center, and stick items.
 */




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

/**
 * Box-sizing
 */

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

@-ms-viewport{ width: auto !important; }


/**
 * Sticky Footer
 */

html {
    position: relative;
    min-height: 100%;
    overflow-x:hidden;
}

body {
    margin: 0 0 100px; /* TODO: bottom = footer height */
    color: #242424;
}

.page__footer {
    left: 0;
    bottom: 0;
    height: 100px; /* TODO: Update Height */
    width: 100%;
}


/**
 * Images
 *
 * These selectors are hard cast to img because they are only used
 * by wordpress wyswyg when adding images to content
 */

img.alignright {
    float: right;
    margin:0 0 20px 20px;
}

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

img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}



/*------------------------------------*\
    Typography / Vertical Rhythm
\*------------------------------------*/

/* TODO: Go to http://www.gridlover.net/app/ to generate vertical rhythm for website */



body {
    font-size: 15px;
    line-height: 27px;
    margin: 0 auto;
    font-family: 'Asap', arial;
}

h1, h2, h3 {
    font-family: 'Asap';
    text-transform: uppercase;
    font-weight: 700;
}

h1 {
    font-size: 50px;
    line-height: 1.2;
    margin-top: 1.2em;
    margin-bottom: .5em;
    color: #353535;
}

h2 {
    font-size: 24px;
    line-height: 1.3;
    margin-top: 1.3em;
    margin-bottom: .5em;
    color: #353535;
}

h3 {
    font-size: 22px;
    line-height: 1.3;
    margin-top: 1.3em;
    margin-bottom: .5em;
    color: #353535;
}

h4 {
    font-size: 18px;
    text-transform: uppercase;
    color: #353535;
}

p, ul, ol, pre, table, blockquote {
    margin-top: 1.3em;
    margin-bottom: 1.3em;
}

p {
    margin-top: .2em;
    margin-bottom: 1.5em;
}

.p2-margin {
    margin-bottom: -10px;
}

/* Sanitation */
hr {
    border: 1px solid #9B9B9B;
    margin: -1px 0;
}
ul ul, ol ol, ul ol, ol ul {
    margin-top: 0;
    margin-bottom: 0;
}

ul li {
    position: relative;
    list-style-type: none;
    padding-left: 20px;
}

ul li:before,
dl dd:before {
    position: absolute;
    content: '•';
    color: #b30838;
    font-size: 20px;
    left: 0;
    top: -2px;
}

ol li {
    list-style-position: inside;
}

.page-id-70 ol li {
    margin-bottom: 40px;
}

b, dt, strong { font-family: 'Asap'; font-weight: 700; }


b, strong, em, small, code {
    line-height: 1;
}

sup, sub {
    vertical-align: baseline;
    position: relative;
    top: -0.4em;
}
sub {
    top: 0.4em;
}

nav ul,
nav ol {
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
    padding-left: 0;
    overflow: hidden;
}

nav li {
    list-style: none;
    position: static;
    padding-left: 0;
}

nav li:before {
    display: none;
}

.text--underline {
    border-bottom: 1px solid #9B9B9B;
}

.text--regular {
    font-family: 'Asap';
}

.text--red   { color: #b60000; }
.text--white { color: #fff; }
.text--gray  { color: #353535; }

.gray--bg              { background: #e5e5e5; }
.medium-gray--bg       { background: #e5e5e5;}
.light-gray--bg        { background: #fafafa; }
.black--bg             { background: #163763; }
.white--bg             { background: #ffffff !important; }
.red--bg               { background: #b60000;}
.pattern--bg           { background: url('../img/background-texture.gif'); }
.pattern-crossword--bg { background: url('../img/crossword-pattern.jpg'); }


.black--bg-opaque      { background: rgba(0, 0, 0, .8); }
.gray--border          { border: 1px solid #ccc; }



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


/**
 * Wrappers
 */


.container {
    max-width: 1360px;
}

.container,
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 0; /* TODO: Update paddings to match your needed grid sizing */
    padding-right: 0;

    width:     100%;
    max-width: 1400px;
}

  @media (min-width: 600px) {
      .container { width: 580px; }
  }

  @media (min-width: 768px) {
      .container { width: 740px; }
  }

  @media (min-width: 1025px) {
      .container { width: 990px; }
  }

  @media (min-width: 1200px) {
      .container { width: 1160px; }
  }

  @media (min-width: 1366px) {
      .container { width: 1326px; }
  }




/**
 * Grid System
 *
 * Bootstrap v3.3.1 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 * Base setup 20px gutters
 *
 * Phones         - xxs - <  600px    ** Default **
 * Small Tablets  - xs - >=  600px
 * Tablets        - sm - >= 768px
 * Desktop        - md - >= 1025px
 * Large Desktop  - lg - >= 1200px
 * --------------------------------------------------------------------------
 * Learn more here: http://getbootstrap.com/css/#grid
 * -------------------------------------------------------------------------- */

.row {
    margin-left: 0; /* TODO: Update margin number to match container padding */
    margin-right: 0;
    clear: both;
}

    [class*="col-"] {
        position: relative;
        min-height: 1px;
        padding-left: 20px;
        padding-right: 20px;
    }

/* Extra Extra small devices (devices, less than 600px) */
[class*="col-xxs-"] { float:left; }

.col-xxs-12 { width: 100%; }
.col-xxs-11 { width: 91.66666667%; }
.col-xxs-10 { width: 83.33333333%; }
.col-xxs-9  { width: 75%; }
.col-xxs-8  { width: 66.66666667%; }
.col-xxs-7  { width: 58.33333333%; }
.col-xxs-6  { width: 50%; }
.col-xxs-5  { width: 41.66666667%; }
.col-xxs-4  { width: 33.33333333%; }
.col-xxs-3  { width: 25%; }
.col-xxs-2  { width: 16.66666667%; }
.col-xxs-1  { width: 8.33333333%; }

.col-xxs-pull-12 { right: 100%; }
.col-xxs-pull-11 { right: 91.66666667%; }
.col-xxs-pull-10 { right: 83.33333333%; }
.col-xxs-pull-9  { right: 75%; }
.col-xxs-pull-8  { right: 66.66666667%; }
.col-xxs-pull-7  { right: 58.33333333%; }
.col-xxs-pull-6  { right: 50%; }
.col-xxs-pull-5  { right: 41.66666667%; }
.col-xxs-pull-4  { right: 33.33333333%; }
.col-xxs-pull-3  { right: 25%; }
.col-xxs-pull-2  { right: 16.66666667%; }
.col-xxs-pull-1  { right: 8.33333333%; }
.col-xxs-pull-0  { right: auto; }

.col-xxs-push-12 { left: 100%; }
.col-xxs-push-11 { left: 91.66666667%; }
.col-xxs-push-10 { left: 83.33333333%; }
.col-xxs-push-9  { left: 75%; }
.col-xxs-push-8  { left: 66.66666667%; }
.col-xxs-push-7  { left: 58.33333333%; }
.col-xxs-push-6  { left: 50%; }
.col-xxs-push-5  { left: 41.66666667%; }
.col-xxs-push-4  { left: 33.33333333%; }
.col-xxs-push-3  { left: 25%; }
.col-xxs-push-2  { left: 16.66666667%; }
.col-xxs-push-1  { left: 8.33333333%; }
.col-xxs-push-0  { left: auto; }

.col-xxs-offset-12 { margin-left: 100%; }
.col-xxs-offset-11 { margin-left: 91.66666667%; }
.col-xxs-offset-10 { margin-left: 83.33333333%; }
.col-xxs-offset-9  { margin-left: 75%; }
.col-xxs-offset-8  { margin-left: 66.66666667%; }
.col-xxs-offset-7  { margin-left: 58.33333333%; }
.col-xxs-offset-6  { margin-left: 50%; }
.col-xxs-offset-5  { margin-left: 41.66666667%; }
.col-xxs-offset-4  { margin-left: 33.33333333%; }
.col-xxs-offset-3  { margin-left: 25%; }
.col-xxs-offset-2  { margin-left: 16.66666667%; }
.col-xxs-offset-1  { margin-left: 8.33333333%; }
.col-xxs-offset-0  { margin-left: 0%; }

/* Extra small devices (phones, 600px and up) */
@media (min-width: 600px) {
    [class*="col-xs-"] {float:left;}

    .col-xs-12 { width: 100%; }
    .col-xs-11 { width: 91.66666667%; }
    .col-xs-10 { width: 83.33333333%; }
    .col-xs-9  { width: 75%; }
    .col-xs-8  { width: 66.66666667%; }
    .col-xs-7  { width: 58.33333333%; }
    .col-xs-6  { width: 50%; }
    .col-xs-5  { width: 41.66666667%; }
    .col-xs-4  { width: 33.33333333%; }
    .col-xs-3  { width: 25%; }
    .col-xs-2  { width: 16.66666667%; }
    .col-xs-1  { width: 8.33333333%; }

    .col-xs-pull-12 { right: 100%; }
    .col-xs-pull-11 { right: 91.66666667%; }
    .col-xs-pull-10 { right: 83.33333333%; }
    .col-xs-pull-9  { right: 75%; }
    .col-xs-pull-8  { right: 66.66666667%; }
    .col-xs-pull-7  { right: 58.33333333%; }
    .col-xs-pull-6  { right: 50%; }
    .col-xs-pull-5  { right: 41.66666667%; }
    .col-xs-pull-4  { right: 33.33333333%; }
    .col-xs-pull-3  { right: 25%; }
    .col-xs-pull-2  { right: 16.66666667%; }
    .col-xs-pull-1  { right: 8.33333333%; }
    .col-xs-pull-0  { right: auto; }

    .col-xs-push-12 { left: 100%; }
    .col-xs-push-11 { left: 91.66666667%; }
    .col-xs-push-10 { left: 83.33333333%; }
    .col-xs-push-9  { left: 75%; }
    .col-xs-push-8  { left: 66.66666667%; }
    .col-xs-push-7  { left: 58.33333333%; }
    .col-xs-push-6  { left: 50%; }
    .col-xs-push-5  { left: 41.66666667%; }
    .col-xs-push-4  { left: 33.33333333%; }
    .col-xs-push-3  { left: 25%; }
    .col-xs-push-2  { left: 16.66666667%; }
    .col-xs-push-1  { left: 8.33333333%; }
    .col-xs-push-0  { left: auto; }

    .col-xs-offset-12 { margin-left: 100%; }
    .col-xs-offset-11 { margin-left: 91.66666667%; }
    .col-xs-offset-10 { margin-left: 83.33333333%; }
    .col-xs-offset-9  { margin-left: 75%; }
    .col-xs-offset-8  { margin-left: 66.66666667%; }
    .col-xs-offset-7  { margin-left: 58.33333333%; }
    .col-xs-offset-6  { margin-left: 50%; }
    .col-xs-offset-5  { margin-left: 41.66666667%; }
    .col-xs-offset-4  { margin-left: 33.33333333%; }
    .col-xs-offset-3  { margin-left: 25%; }
    .col-xs-offset-2  { margin-left: 16.66666667%; }
    .col-xs-offset-1-5{ margin-left: 12.5%; }
    .col-xs-offset-1  { margin-left: 8.33333333%; }
    .col-xs-offset-0  { margin-left: 0%; }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    [class*="col-sm-"] {float:left;}

    .col-sm-12 { width: 100%; }
    .col-sm-11 { width: 91.66666667%; }
    .col-sm-10 { width: 83.33333333%; }
    .col-sm-9  { width: 75%; }
    .col-sm-8  { width: 66.66666667%; }
    .col-sm-7  { width: 58.33333333%; }
    .col-sm-6  { width: 50%; }
    .col-sm-5  { width: 41.66666667%; }
    .col-sm-4  { width: 33.33333333%; }
    .col-sm-3  { width: 25%; }
    .col-sm-2  { width: 16.66666667%; }
    .col-sm-1  { width: 8.33333333%; }

    .col-sm-pull-12 { right: 100%; }
    .col-sm-pull-11 { right: 91.66666667%; }
    .col-sm-pull-10 { right: 83.33333333%; }
    .col-sm-pull-9  { right: 75%; }
    .col-sm-pull-8  { right: 66.66666667%; }
    .col-sm-pull-7  { right: 58.33333333%; }
    .col-sm-pull-6  { right: 50%; }
    .col-sm-pull-5  { right: 41.66666667%; }
    .col-sm-pull-4  { right: 33.33333333%; }
    .col-sm-pull-3  { right: 25%; }
    .col-sm-pull-2  { right: 16.66666667%; }
    .col-sm-pull-1  { right: 8.33333333%; }
    .col-sm-pull-0  { right: auto; }

    .col-sm-push-12 { left: 100%; }
    .col-sm-push-11 { left: 91.66666667%; }
    .col-sm-push-10 { left: 83.33333333%; }
    .col-sm-push-9  { left: 75%; }
    .col-sm-push-8  { left: 66.66666667%; }
    .col-sm-push-7  { left: 58.33333333%; }
    .col-sm-push-6  { left: 50%; }
    .col-sm-push-5  { left: 41.66666667%; }
    .col-sm-push-4  { left: 33.33333333%; }
    .col-sm-push-3  { left: 25%; }
    .col-sm-push-2  { left: 16.66666667%; }
    .col-sm-push-1  { left: 8.33333333%; }
    .col-sm-push-0  { left: auto; }

    .col-sm-offset-12 { margin-left: 100%; }
    .col-sm-offset-11 { margin-left: 91.66666667%; }
    .col-sm-offset-10 { margin-left: 83.33333333%; }
    .col-sm-offset-9  { margin-left: 75%; }
    .col-sm-offset-8  { margin-left: 66.66666667%; }
    .col-sm-offset-7  { margin-left: 58.33333333%; }
    .col-sm-offset-6  { margin-left: 50%; }
    .col-sm-offset-5  { margin-left: 41.66666667%; }
    .col-sm-offset-4  { margin-left: 33.33333333%; }
    .col-sm-offset-3  { margin-left: 25%; }
    .col-sm-offset-2  { margin-left: 16.66666667%; }
    .col-sm-offset-1  { margin-left: 8.33333333%; }
    .col-sm-offset-0  { margin-left: 0%; }
}

/* Medium devices (desktops, 1025px and up) */
@media (min-width: 1025px) {
  [class*="col-md-"] {float:left;}

  .col-md-12 { width: 100%; }
  .col-md-11 { width: 91.66666667%; }
  .col-md-10 { width: 83.33333333%; }
  .col-md-9  { width: 75%; }
  .col-md-8  { width: 66.66666667%; }
  .col-md-7  { width: 58.33333333%; }
  .col-md-6  { width: 50%; }
  .col-md-5  { width: 41.66666667%; }
  .col-md-4  { width: 33.33333333%; }
  .col-md-3  { width: 25%; }
  .col-md-2  { width: 16.66666667%; }
  .col-md-1  { width: 8.33333333%; }

  .col-md-pull-12 { right: 100%; }
  .col-md-pull-11 { right: 91.66666667%; }
  .col-md-pull-10 { right: 83.33333333%; }
  .col-md-pull-9  { right: 75%; }
  .col-md-pull-8  { right: 66.66666667%; }
  .col-md-pull-7  { right: 58.33333333%; }
  .col-md-pull-6  { right: 50%; }
  .col-md-pull-5  { right: 41.66666667%; }
  .col-md-pull-4  { right: 33.33333333%; }
  .col-md-pull-3  { right: 25%; }
  .col-md-pull-2  { right: 16.66666667%; }
  .col-md-pull-1  { right: 8.33333333%; }
  .col-md-pull-0  { right: auto; }

  .col-md-push-12 { left: 100%; }
  .col-md-push-11 { left: 91.66666667%; }
  .col-md-push-10 { left: 83.33333333%; }
  .col-md-push-9  { left: 75%; }
  .col-md-push-8  { left: 66.66666667%; }
  .col-md-push-7  { left: 58.33333333%; }
  .col-md-push-6  { left: 50%; }
  .col-md-push-5  { left: 41.66666667%; }
  .col-md-push-4  { left: 33.33333333%; }
  .col-md-push-3  { left: 25%; }
  .col-md-push-2  { left: 16.66666667%; }
  .col-md-push-1  { left: 8.33333333%; }
  .col-md-push-0  { left: auto; }

  .col-md-offset-12 { margin-left: 100%; }
  .col-md-offset-11 { margin-left: 91.66666667%; }
  .col-md-offset-10 { margin-left: 83.33333333%; }
  .col-md-offset-9  { margin-left: 75%; }
  .col-md-offset-8  { margin-left: 66.66666667%; }
  .col-md-offset-7  { margin-left: 58.33333333%; }
  .col-md-offset-6  { margin-left: 50%; }
  .col-md-offset-5  { margin-left: 41.66666667%; }
  .col-md-offset-4  { margin-left: 33.33333333%; }
  .col-md-offset-3  { margin-left: 25%; }
  .col-md-offset-2  { margin-left: 16.66666667%; }
  .col-md-offset-1  { margin-left: 8.33333333%; }
  .col-md-offset-0  { margin-left: 0%; }

}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  [class*="col-lg-"] {float:left;}

  .col-lg-12 { width: 100%; }
  .col-lg-11 { width: 91.66666667%; }
  .col-lg-10 { width: 83.33333333%; }
  .col-lg-9  { width: 75%; }
  .col-lg-8  { width: 66.66666667%; }
  .col-lg-7  { width: 58.33333333%; }
  .col-lg-6  { width: 50%; }
  .col-lg-5  { width: 41.66666667%; }
  .col-lg-4  { width: 33.33333333%; }
  .col-lg-3  { width: 25%; }
  .col-lg-2  { width: 16.66666667%; }
  .col-lg-1  { width: 8.33333333%; }

  .col-lg-pull-12 { right: 100%; }
  .col-lg-pull-11 { right: 91.66666667%; }
  .col-lg-pull-10 { right: 83.33333333%; }
  .col-lg-pull-9  { right: 75%; }
  .col-lg-pull-8  { right: 66.66666667%; }
  .col-lg-pull-7  { right: 58.33333333%; }
  .col-lg-pull-6  { right: 50%; }
  .col-lg-pull-5  { right: 41.66666667%; }
  .col-lg-pull-4  { right: 33.33333333%; }
  .col-lg-pull-3  { right: 25%; }
  .col-lg-pull-2  { right: 16.66666667%; }
  .col-lg-pull-1  { right: 8.33333333%; }
  .col-lg-pull-0  { right: auto; }

  .col-lg-push-12 { left: 100%; }
  .col-lg-push-11 { left: 91.66666667%; }
  .col-lg-push-10 { left: 83.33333333%; }
  .col-lg-push-9  { left: 75%; }
  .col-lg-push-8  { left: 66.66666667%; }
  .col-lg-push-7  { left: 58.33333333%; }
  .col-lg-push-6  { left: 50%; }
  .col-lg-push-5  { left: 41.66666667%; }
  .col-lg-push-4  { left: 33.33333333%; }
  .col-lg-push-3  { left: 25%; }
  .col-lg-push-2  { left: 16.66666667%; }
  .col-lg-push-1  { left: 8.33333333%; }
  .col-lg-push-0  { left: auto; }

  .col-lg-offset-12 { margin-left: 100%; }
  .col-lg-offset-11 { margin-left: 91.66666667%; }
  .col-lg-offset-10 { margin-left: 83.33333333%; }
  .col-lg-offset-9  { margin-left: 75%; }
  .col-lg-offset-8  { margin-left: 66.66666667%; }
  .col-lg-offset-7  { margin-left: 58.33333333%; }
  .col-lg-offset-6  { margin-left: 50%; }
  .col-lg-offset-5  { margin-left: 41.66666667%; }
  .col-lg-offset-4  { margin-left: 33.33333333%; }
  .col-lg-offset-3  { margin-left: 25%; }
  .col-lg-offset-2  { margin-left: 16.66666667%; }
  .col-lg-offset-1  { margin-left: 8.33333333%; }
  .col-lg-offset-0  { margin-left: 0%; }

}





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


/**
 * Clearfix
 */

.clearfix:before, .clearfix:after,
.container:before, .container:after,
.container-fluid:before, .container-fluid:after,
.row:before, .row:after {
    content: " ";
    display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after { clear: both; }


/**
 * Effects
 */

a,
a:after,
a:before,

.button,
.button:after,
.button:before,

.sidebar-imagination-cta span:after,
.sidebar-lookbook-cta span:after,
.sidebar-imagination-cta span,

.product-text h3:after,
.product-family-block .product-text,
.product-icon,
.home .product-image img,

.button--primary:after,
.button--secondary:after,
.main-sidebar li a:after,

.search-submit .icon-search,
.site-search-popup,
.search-close,

.sticky-promotion,
.sticky-button,

.nav--primary .sub-menu,

.site-search,

input,
button,
select,
textarea,
.selectric
 {
    -webkit-transition: all 250ms ease-in-out;
         -o-transition: all 250ms ease-in-out;
            transition: all 250ms ease-in-out;
}

textarea {
    -webkit-transition: height 0ms ease-in-out, border 250ms ease-in-out;
         -o-transition: height 0ms ease-in-out, border 250ms ease-in-out;
            transition: height 0ms ease-in-out, border 250ms ease-in-out;
}


/**
 * Buttons
 */


a {
    color: #b60000;
    font-family: 'Asap';
	font-weight: 700;
    text-decoration: none;
}

a:hover {
    color:#e60000;
}

.button {
    padding: 10px 3%;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    border: 0px;
    font-family: 'Asap';
    position: relative;
    text-decoration: none;
    display: inline-block;
    line-height: 20px;
}

.full-width {
    min-width: 100%;
    display: block;
    text-align: center;
}

.btn-margin {
    margin-top: 20px;
}

.button--primary {
    background: #1C2C48;
    border-bottom: 3px solid #1C2C48;
    border-top: 3px solid #1C2C48;
}

    .button--primary:after,
    .button--secondary:after {
        font-size: 11px;
        padding-left: 10px;
    }

    .button--primary:hover:after,
    .button--secondary:hover:after {
        padding-left:15px;
    }

    .button--secondary:after { font-size: 15px; }

    .button--primary:hover {
        background: #ec0000;
        color: #fff;
    }

.button--secondary {
    background: #1C2C48;
    font-size:16px;
    font-family: 'Asap';
	font-weight: 700;
	border-bottom: 3px solid #1C2C48;
    border-top: 3px solid #1C2C48;
}

    .button--secondary:hover {
        background: #00c100;
        color: #fff;
    }

.button--tertiary {
    color: #d10000;
    font-family: 'Asap';
    text-transform: uppercase;
    font-size: 18px;
    border:0px;
    background: none;
    position:relative;
    text-decoration: none;
}

    .button--tertiary:hover {
        font-size:19px;
        color:#ec0000;
    }

    .button--tertiary:after {
        font-size: 13px;
        padding-left: 8px;
    }

    .button--tertiary:hover:after {
        padding-left: 12px;
    }

.button--fourth {
    border: 1px solid #d10000;
    padding: 5px 10px;
    text-transform: uppercase;
    font-family: 'Asap';
}

.button--fourth .icon {
    margin-right: 10px;
}

.button--block {
    display: block;
    width: 100%;
}

.button--readmore{
    color:#b60000;
    font-family: 'Asap';
    font-size:18px;
    text-transform:uppercase;
}

  .button--readmore:after {
        font-size: 11px;
        padding-left: 8px;
    }

    .button--readmore:hover:after {
        padding-left: 12px;
    }

.page__header-ctas .button{
    padding-left:14px !important;
    padding-right:14px !important;
	border: none;
}

  .page__header-ctas .button:first-child{
      margin-left:3px;
  }

  .page__header-ctas .button span{
      font-size: 14px;
      margin-right: 2px !important;
  }
  .page__header-ctas .button--secondary:after {
      font-size: 11px !important;
      padding-left: 2px !important;
  }

    .page__header-ctas .button--secondary:hover:after {
        padding-left: 7px !important;
    }

.cta-button-blue {
    background: #518acd
}

.cta-button-blue:hover {
    background: #71a9eb
}

.cta-button-red {
    background: #d10000
}

.cta-button-red:hover {
    background: #ff0000
}


/**
 * Icons
 */


@font-face {
  font-family: 'icomoon';
  src:url('../icons/icomoon.eot?se2afn');
  src:url('../icons/icomoon.eot?#iefixse2afn') format('embedded-opentype'),
    url('../icons/icomoon.woff?se2afn') format('woff'),
    url('../icons/icomoon.ttf?se2afn') format('truetype'),
    url('../icons/icomoon.svg?se2afn#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"], [class*=" icon-"],
.icheckbox:before,
.button--primary:after,
.button--secondary:after,
.button--tertiary:after,
.button--tertiary:after,
.button--readmore:after,
.contact-sidebar:before,
.main-sidebar li a:after,
.sidebar-imagination-cta span:after,
.sidebar-lookbook-cta span:after,
.home-testimonials div:before,
.home-testimonials div:after,
.home-content1 h2:after,
.footer-contact:before,
.footer-contact:after ,
.product-text h3:after,
.product-family-content:before,
.product-info h1:before,
.sticky-button:after,
.testimonial-text:before,
.read-more:after,
.read-more.active:after {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-bottom-right-border:before,
.home-testimonials div:after,
.footer-contact:after   {
    content: "\e616";
}

.icon-top-left-border:before,
.home-testimonials div:before,
.footer-contact:before{
    content: "\e617";
}

.icon-facebook:before {
    content: "\e605";
}

.icon-googleplus:before {
    content: "\e609";
}

.icon-youtube:before {
    content: "\e60a";
}

.icon-pinterest:before {
    content: "\e610";
}

.icon-awnings:before {
    content: "\e600";
}

.icon-clock:before {
    content: "\e601";
}

.icon-dollar-sign:before {
    content: "\e602";
}

.icon-door:before {
    content: "\e603";
}

.icon-email:before {
    content: "\e604";
}

.icon-fireplaces:before {
    content: "\e606";
}

.icon-garage-door-opener:before {
    content: "\e607";
}

.icon-garage-doors:before {
    content: "\e608";
}

.icon-print:before {
    content: "\e60b";
}

.icon-right-arrow:before,
.button--primary:after,
.button--secondary:after,
.button--tertiary:after,
.button--readmore:after,
.main-sidebar li a:after,
.sidebar-imagination-cta span:after,
.sidebar-lookbook-cta span:after,
.product-text h3:after,
.sticky-button:after {
    content: "\e60c";
}

.icon-search:before {
    content: "\e60d";
}

.icon-service:before {
    content: "\e60e";
}

.icon-square-marker:before,
.contact-sidebar:before,
.home-content1 h2:after,
.product-family-content:before,
.product-info h1:before  {
    content: "\e60f";
}

.icon-chevron-thin-down:before,
.read-more:after {
    content: "\e611";
}

.icon-chevron-thin-left:before {
    content: "\e612";
}

.icon-chevron-thin-right:before {
    content: "\e613";
}

.icon-chevron-thin-up:before,
.read-more.active:after {
    content: "\e614";
}

.icon-file-empty:before {
    content: "\e924";
}

.icon-location:before {
    content: "\e947";
}

.icon-mobile:before {
    content: "\e958";
}

.icon-check:before {
    content: "\e615";
}

.icon-menu:before {
    content: "\e618";
}

.icon-exit:before {
    content: "\e619";
}

.icon-quote:before,
.testimonial-text:before {
    content: "\e900";
}


/**
 * Flexbox
 * Until we can utilise flexbox natively we can kinda, sorta, attempt to emulate
 * it, in a way
 *
 * Demo: jsfiddle.net/inuitcss/ufUh2
 */

.flexbox {
    display: table;
    width: 100%;
}

    /**
     * Nasty hack to circumvent Modernizr conflicts.
     */
    html.flexbox {
        display: block;
        width: auto;
    }

    .flexbox__item {
        display: table-cell;
        vertical-align: middle;
    }



/**
 * Block-list
 * Create big blocky lists of content
 *
 * Demo: jsfiddle.net/inuitcss/hR57q
 */

.block-list,
.matrix,
.block-list > li,
.matrix > li { border: 0 solid #ccc; }

.block-list,
.matrix {
    list-style: none;
    margin-left: 0;
    border-top-width: 1px;
}

    .block-list > li,
    .matrix > li {
        border-bottom-width: 1px;
        padding: 12px;
    }

.block-list__link,
.matrix__link {
    display: block;
    padding: 12px;
    margin: -12px;
}



/**
 * Matrix
 *
 * Demo: jsfiddle.net/inuitcss/Y2zrU
 */

.matrix { border-left-width: 1px; }

    .matrix > li {
        float: left;
        border-right-width: 1px;
    }


/**
 * Multi-list
 *
 * Stack lists into columns
 * Demo: jsfiddle.net/inuitcss/Y2zrU
 */

.multi-list {
    list-style: none;
    margin-left: 0;
}

    .multi-list > li { float: left; }

    .multi-list--padded > li { padding-left: 10px; padding-right: 10px; } /* TODO: update to match container padding */

/**
 * Apply these classes alongside the `.matrix` or `.multi-list` classes on
 * lists to determine how wide their columns are.
 */

.two-cols > li   { width: 50%; }
.three-cols > li { width: 33.333%; }
.four-cols > li  { width: 25%; }
.five-cols > li  { width: 20%; }

    /**
     * Unfortunately we have to qualify this selector in order to bring its
     * specificity above the `.[number]-cols > li` selectors above.
     */
    .matrix > .all-cols,
    .multi-list > .all-cols { width: 100%; }

@media (max-width:768px) {
    .two-cols > li   { width: 100%; }
}




/**
 * Tables
 */

table {
    border-collapse:collapse;
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #ccc;
    font-family: 'Asap';
}

td {
    padding: 10px;
    border-right: 1px solid #ccc;
}

tr {
}

th {
    background: #9b9b9b;
    color:#fff;
    text-transform: uppercase;
    border-left: 1px solid #fff;
    text-align: left;
    padding: 10px;
}

thead {
}

tbody {
}

tfoot {
}




/**
 * Forms
 */

form {
}

fieldset {
  border: none;
}

label {
}

legend {
}

input[type="submit"],
button[type="submit"] {
  background: #009200;
  padding: 10px 90px;
  border: 0px;
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  font-family: 'Asap';
  float: right;
}

input[type="submit"]:hover,
button[type="submit"]:hover { background: #00c100; }

input.search-submit[type="submit"]:hover,
button.search-submit[type="submit"]:hover {
    background: transparent;
    color: #55c8cf;
}

input[type="text"],
input[type="email"],
input[type="text"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="url"],
input[type="week"],
textarea,
select,
.selectric  {
    width: 100%;
    height: 53px;
    background: #f4f4f4;
    border: 1px solid #d7d7d7;
    font-size: 15px;
    color: #505050;
    padding-left: 10px;
     border-radius: 0;
}

.search-form input[type="search"] { font-size: 30px; }

.selectric-hover .selectric,
input[type="text"]:hover,
input[type="email"]:hover,
textarea:hover{
    border-color: #C4C4C4;
}

.selectric-hover .selectric,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus{
    border-color: #009200;
}

textarea {
    height: 200px;
    resize: vertical;
    min-height: 150px;
}

textarea.products {
    height:100px;
}

select {
          border-radius: 0px;
  -webkit-border-radius: 0px;
     -moz-border-radius: 0px;
}

label {
    font-size: 20px;
    color: #505050;
}

.wpcf7-radio { display: block; }

.wpcf7-list-item-label { margin-right: 10px; }

.selectric .label {
    padding-top: 11px;
    font-size: 15px;
    color: #505050;
    margin:0px;
}

.iradio {
    border-radius: 100px;
}

.icheckbox, .iradio {
    display: inline-block;
    vertical-align: middle;
    padding: 0;
    width: 20px;
    height: 20px;
    background: white;
    border: 1px solid #ccc;
    cursor: pointer;
    position: relative;
    top: -2px;
    margin-right: 5px;
}

.icheckbox.checked, .iradio.checked {
    border: 1px solid black;
    background: #f5f5f5;
}

.icheckbox:before {
    content: "\e615";
    font-size: 12px;
}

.icheckbox:before, .iradio:before {
    position: absolute;
    display: block;
    width: 18px;
    height: 18px;
    line-height: 18px;
    left: 0;
    top: 0;
    text-align: center;
    opacity: 0;
    color: black !important;
}

.icheckbox.checked:before,
.iradio.checked:before {
    opacity:1;
}

.iradio:before {
    content: "•";
    font-size: 19px;
}

.form-row {
    margin-bottom: 25px;
    margin-left: -20px;
    margin-right: -20px;
}

.state.js-cf7__container--valid:before,
.state.js-cf7__container--valid:after {
    display: none;
}

/*======================================
  Selectric v1.9.3 - Form Dropdowns
======================================*/

.selectric-wrapper {
    position: relative;
    cursor: pointer;
}


.selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 9px;
    width: 38px;
    height: 38px;
    color: #BBB;
    text-align: center;
    font: 0/0 a;
    font: 20px/38px Lucida Sans Unicode, Arial Unicode MS, Arial;
}
.selectric .button:after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-top-color: #BBB;
    border-bottom: none;
}

.selectric-hover .selectric .button {
    color: #A2A2A2;
}

.selectric-hover .selectric .button:after {
    border-top-color: #A2A2A2;
}

.selectric-open {
    z-index: 9999;
}

.selectric-open .selectric {
    border-color: #C4C4C4;
}

.selectric-open .selectric-items {
    display: block;
}

.selectric-disabled {
  filter: alpha(opacity=50);
  opacity: 0.5;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.selectric-hide-select {
    position: relative;
    overflow: hidden;
    width: 0;
    height: 0;
}

.selectric-hide-select select {
    position: absolute;
    left: -100%;
    display: none;
}

.selectric-input {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 1px !important;
    height: 1px !important;
    outline: none !important;
    border: none !important;
    font: 0/0 a !important;
    background: none !important;
  }

.selectric-temp-show {
    position: absolute !important;
    visibility: hidden !important;
    display: block !important;
}

/* Items box */
.selectric-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #F8F8F8;
    border: 1px solid #C4C4C4;
    z-index: -1;
    -webkit-box-shadow: 0 0 10px -6px;
            box-shadow: 0 0 10px -6px;
}

.selectric-items .selectric-scroll {
    height: 100%;
    overflow: auto;
}

.selectric-above .selectric-items {
    top: auto;
    bottom: 100%;
}

.selectric-items ul,
.selectric-items li {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 20px;
    min-height: 20px;
}

.selectric-items li {
    display: block;
    padding: 8px;
    border-top: 1px solid #FFF;
    border-bottom: 1px solid #EEE;
    color: #666;
    cursor: pointer;
}

.selectric-items li:before {
    display: none;
}

.selectric-items li.selected {
    background: #EFEFEF;
    color: #444;
}

.selectric-items li:hover {
    background: #F0F0F0;
    color: #444;
}

.selectric-items .disabled {
    filter: alpha(opacity=50);
    opacity: 0.5;
    cursor: default !important;
    background: none !important;
    color: #666 !important;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.selectric-items .selectric-group .selectric-group-label {
    font-weight: bold;
    padding-left: 10px;
    cursor: default;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    background: none;
    color: #444;
}

.selectric-items .selectric-group.disabled li {
    filter: alpha(opacity=100);
    opacity: 1;
}

.selectric-items .selectric-group li {
    padding-left: 25px;
}

/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */
.fancybox-wrap,
.fancybox-skin,
.fancybox-outer,
.fancybox-inner,
.fancybox-image,
.fancybox-wrap iframe,
.fancybox-wrap object,
.fancybox-nav,
.fancybox-nav span,
.fancybox-tmp
{
    padding: 0;
    margin: 0;
    border: 0;
    outline: none;
    vertical-align: top;
}

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8020;
}

.fancybox-skin {
    position: relative;
    background: #f9f9f9;
    color: #444;
    text-shadow: none;
    border-radius: 4px;
}

.fancybox-opened {
    z-index: 8030;
}

.fancybox-opened .fancybox-skin {
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.fancybox-outer, .fancybox-inner {
    position: relative;
}

.fancybox-inner {
    overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
    -webkit-overflow-scrolling: touch;
}

.fancybox-error {
    color: #444;
    font: 14px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
    margin: 0;
    padding: 15px;
    white-space: nowrap;
}

.fancybox-image, .fancybox-iframe {
    display: block;
    width: 100%;
    height: 100%;
}

.fancybox-image {
    max-width: 100%;
    max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
    background-image: url('../img/fancybox_sprite.png');
}

#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    background-position: 0 -108px;
    opacity: 0.8;
    cursor: pointer;
    z-index: 8060;
}

#fancybox-loading div {
    width: 44px;
    height: 44px;
    background: url('../img/fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 8040;
}

.fancybox-nav {
    position: absolute;
    top: 0;
    width: 40%;
    height: 100%;
    cursor: pointer;
    text-decoration: none;
    background: transparent url('../img/blank.gif'); /* helps IE */
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    z-index: 8040;
}

.fancybox-prev {
    left: 0;
}

.fancybox-next {
    right: 0;
}

.fancybox-nav span {
    position: absolute;
    top: 50%;
    width: 36px;
    height: 34px;
    margin-top: -18px;
    cursor: pointer;
    z-index: 8040;
    visibility: hidden;
}

.fancybox-prev span {
    left: 10px;
    background-position: 0 -36px;
}

.fancybox-next span {
    right: 10px;
    background-position: 0 -72px;
}

.fancybox-nav:hover span {
    visibility: visible;
}

.fancybox-tmp {
    position: absolute;
    top: -99999px;
    left: -99999px;
    visibility: hidden;
    max-width: 99999px;
    max-height: 99999px;
    overflow: visible !important;
}

/* Overlay helper */

.fancybox-lock {
    overflow: hidden !important;
    width: auto;
}

.fancybox-lock body {
    overflow: hidden !important;
}

.fancybox-lock-test {
    overflow-y: hidden !important;
}

.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010;
    background: url('../img/fancybox_overlay.png');
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0;
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll;
}

/* Title helper */

.fancybox-title {
    visibility: hidden;
    font: normal 13px/20px "Helvetica Neue",Helvetica,Arial,sans-serif;
    position: relative;
    text-shadow: none;
    z-index: 8050;
}

.fancybox-opened .fancybox-title {
    visibility: visible;
}

.fancybox-title-float-wrap {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-bottom: -35px;
    z-index: 8050;
    text-align: center;
}

.fancybox-title-float-wrap .child {
    display: inline-block;
    margin-right: -100%;
    padding: 2px 20px;
    background: transparent; /* Fallback for web browsers that doesn't support RGBa */
    background: rgba(0, 0, 0, 0.8);
    border-radius: 15px;
    text-shadow: 0 1px 2px #222;
    color: #FFF;
    font-weight: bold;
    line-height: 24px;
    white-space: nowrap;
}

.fancybox-title-outside-wrap {
    position: relative;
    margin-top: 10px;
    color: #fff;
}

.fancybox-title-inside-wrap {
    padding-top: 10px;
}

.fancybox-title-over-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    background: #000;
    background: rgba(0, 0, 0, .8);
}
#fancybox-thumbs {
    position: fixed;
    left: 0;
    width: 100%;
    overflow: hidden;
    z-index: 8050;
}

#fancybox-thumbs.bottom {
    bottom: 2px;
}

#fancybox-thumbs.top {
    top: 2px;
}

#fancybox-thumbs ul {
    position: relative;
    list-style: none;
    margin: 0;
    padding: 0;
}

#fancybox-thumbs ul li {
    float: left;
    padding: 1px;
    opacity: 0.5;
}

#fancybox-thumbs ul li.active {
    opacity: 0.75;
    padding: 0;
    border: 1px solid #fff;
}

#fancybox-thumbs ul li:hover {
    opacity: 1;
}

#fancybox-thumbs ul li a {
    display: block;
    position: relative;
    overflow: hidden;
    border: 1px solid #222;
    background: #111;
    outline: none;
}

#fancybox-thumbs ul li img {
    display: block;
    position: relative;
    border: 0;
    padding: 0;
    max-width: none;
}

/*Retina graphics!*/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5),
       only screen and (min--moz-device-pixel-ratio: 1.5),
       only screen and (min-device-pixel-ratio: 1.5){

    #fancybox-loading, .fancybox-close, .fancybox-prev span, .fancybox-next span {
        background-image: url('../img/fancybox_sprite@2x.png');
        background-size: 44px 152px; /*The size of the normal image, half the size of the hi-res image*/
    }

    #fancybox-loading div {
        background-image: url('../img/fancybox_loading@2x.gif');
        background-size: 24px 24px; /*The size of the normal image, half the size of the hi-res image*/
    }
}


/**
 * Gallery
 */

.gallery-item { padding: 0px; margin: 0px; }

.gallery-item figure {
    margin-left:  20px;
    margin-right: 20px;
}

.video-thumb img {
    height:auto;
    width:100%;
}

.gallery-item .gallery-caption {
    display:none;
    font-size:12px;
}

.video-thumb p { line-height: 1.5em; }

.video-gallery-container { margin-top: 30px; }

@media (min-width:768px) {

    .gallery-item .gallery-caption {display:block;}

}

/**
 * Validation
 */
.wpcf7-form-control-wrap {
}

.wpcf7-not-valid-tip {
    color: #b60000;
}

.wpcf7-response-output {
}

.screen-reader-response {
    display: none;
}

input.wpcf7-not-valid {
    background-color: #e5f0ff  !important;
}

.widget_wysija_cont .updated, .widget_wysija_cont .login .message {
    background-color: #f9fff9 !important;
    border-color: #009200 !important;
}
.widget_wysija_cont .updated, .widget_wysija_cont .error, .widget_wysija_cont .xdetailed-errors {
    padding: 14px 15px 4px 0 !important;
}

@media (max-width:599px) {
    input[type="submit"], button[type="submit"] {
      float: none;
      width: 100%;
  }
}

/**
 * Main Contact Form

 */

 .main-contact {
      padding-right:50px;
 }

@media (max-width: 768px) {
    .main-contact { padding-right: 0px; }

  .page__header-ctas .button:first-child {
      margin-left:0;
  }
}



/**
 * Page-head
 */

.page__header {
    position: relative;
    top: 0;
    width: 100%;
    z-index: 500;
}

/*
.logged-in .page__header {
    top: 30px;
}
*/

  @media (max-width: 1060px) {
    .home .product-text h5, .product-text p { line-height: 19px; display:none; }

    .logged-in .page__header {
        top: 0px;
    }
  }

.logo {
    position: absolute;
    top: 3px;
    left: 20px;
    display: block;
}

.logo img {
    display: block;
    height: 83px;
}

.page__header-cta-phone {
    margin-right: 15px;
    font-family: 'Asap';
	font-weight: 700;
    font-size: 16px;
    display: inline-block;
    padding-top: 6px;
}

    .page__header-cta-phone a       { color: #76c043; text-decoration: none;  margin:0 4px;}
    .page__header-cta-phone a:hover { color: white; text-decoration: none; }

    .page__header-cta-phone .icon-mobile {
        position: relative;
    }

    .page__header-cta-phone a span{
        font-size:12px;
    }


   /**
     * Fix Sticky Header Position
     * for when admin bar visible
     */

    /* TODO: Uncomment if design has sticky header */
    /*
    .admin-bar .site__header {
        top: 32px;
    }

    @media screen and (max-width: 782px) {
        .admin-bar .site__header {
            top: 46px;
        }
    }
    */

/**
 * Navigation
 */

.nav--primary {
    float: right;
    font-size: 13px;
    margin-right: 14px;
}

.nav--primary li {
    float: left;
}

.nav--primary a {
    position: relative;
    display: block;

    color: white;
    font-family: "Asap";
    text-transform: uppercase;

    padding-left:   14px;
    padding-right:  14px;
    padding-top:    12px;
    padding-bottom: 12px;
}

.nav--primary a:before {
    position: absolute;
    content: "";
    display: block;
    height: 1px;
    width: 75%;
    width: calc(100% - 24px);
    top: 15px;
    opacity: 0;
    background: #1C2C48;
}

.nav--primary a:after {
    position: absolute;
    content: "";
    display: block;
    height: 1px;
    width: 75%;
    width: calc(100% - 24px);
    bottom: 15px;
    opacity: 0;
}

.header--main-menu {
    padding:17px 0;
}

.page__header-ctas {
    padding-right: 0;
}

@media (max-width: 1366px) {
    .header--main-menu {
        padding-right: 20px;
    }

    .page__header-ctas {
        padding-right: 20px;
    }

  .nav--primary a{
      padding-left:12px;
      padding-right:12px;
  }
}

@media (max-width: 1220px) {
    .nav--primary a:before,
    .nav--primary a:after {
        width: calc(100% - 15px);
    }
}

    .nav--primary li:hover a:before,
    .nav--primary li.current-menu-item > a:before,
    .nav--primary li.current-menu-parent > a:before,
    .nav--primary li.current-menu-ancestor > a:before,
    .nav--primary li:hover a:after,
    .nav--primary li.current-menu-item > a:after,
    .nav--primary li.current-menu-parent > a:after,
    .nav--primary li.current-menu-ancestor > a:after {
        opacity: 1;
    }

.page__header-nav {
    background: #231e23;
}

.site-search {
    float: right;
    display: inline-block;
    color: #163763;
    font-size: 12px;
    position: relative;
    top: 1.8em;
    cursor: pointer;
}

 .site-search-popup {
    background: rgba(1, 15, 0, .8);
    width: 80%;
    height: 257px;
    text-align: center;
    position: fixed;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 300;
    -webkit-transform: translateY(40px);
        -ms-transform: translateY(40px);
            transform: translateY(40px);
    }

    .site-search-popup.active {
        opacity: 1;
        visibility: visible;
        -webkit-box-shadow: 0 0 0 800px rgba(0,0,0,.8);
                box-shadow: 0 0 0 800px rgba(0,0,0,.8);

        -webkit-transform: translateY(0);
            -ms-transform: translateY(0);
                transform: translateY(0);
    }

    .site-search-popup .screen-reader-text {
        display: none;
    }

    .site-search-popup form {
        padding: 80px 106px 80px 80px;
        position: relative;
        z-index: 100;
    }

    .search-field {
        font-size: 20px;
        padding: 20px;
        font-weight: 300;
        margin: 0;
    }

    .site-search-popup .search-submit {
        width: 60px;
        height: 60px;
        position: absolute;
        right: 84px;
        top: 101px;
        line-height: 60px;
        font-size: 20px;
        color: black;
        background: none;
        border: 0;
        padding: 0;
        font-size: 45px;
    }

  .site-search-dropdown .screen-reader-text { display: none; }

  .search-close {
      position: absolute;
      top: 15px;
      right: 15px;
      font-size: 25px;
      z-index: 300;
      color: #d10000;
  }

  .site-search-popup .search-close:hover {
      color: #fff;
      cursor: pointer;

      -webkit-transform: rotate(-90deg);
          -ms-transform: rotate(-90deg);
              transform: rotate(-90deg);
}

.search-submit .icon-search:hover,
.site-search:hover {
    color: #d10000;
}

.main-menu-toggle {
    display: none;
}

.sub-menu-toggle {
    display: none;
}

.search-form input[type="search"] {
    border-radius: 2px;
}

@media (max-width: 1220px) {
    .nav--primary a {
        padding-left:  8px;
        padding-right: 8px;
    }
}

@media (max-width: 1156px) {
    .nav--primary a {
        font-size: 12px;

        padding-left:  7px;
        padding-right: 7px;
    }
}

@media (max-width: 1060px) {
    .page__header-nav {
        background: #231e23;
        height: 148px;
    }

    .nav--primary a {
        font-size: 12px;

        padding-left:  8px;
        padding-right: 8px;
    }

    .nav--primary a:before,
    .nav--primary a:after {
        width: calc(100% - 18px);
    }

    .nav--primary a {
        color: #58585a;
    }

    .logo {
        left: 0;
    }

    .nav--primary {
        display: none;
        z-index: 500;
    }

    .nav--primary.active {
        display: block;
        background: #58585a;
        color: white;

        width: 100%;
        position: absolute;
        left: 0;
        top: 147px;
    }

    .nav--primary li {
        float: none;
    }

    .nav--primary a {
        color: white;
    }

    .logo {
        height: 100%;
        width: auto;
        margin-left:15px;
    }

    .site-search {
        color: #fff;
        font-size: 32px;

        position: absolute;

        right: 80px;
        top: 60px;
    }

    .main-menu-toggle {
        color: #fff;
        display: block;
        font-size: 26px;
        float: right;

        position: absolute;
        right: 20px;
        top: 60px;

        cursor: pointer;
    }

    .menu-text {
        color: #fff;
        font-family: 'Asap', arial;
        font-size: 12px;
        text-transform: uppercase;
        position: absolute;
        bottom: -1.3em;
        left: 0;
        padding-top: 5px;
    }

    .page__header-nav .col-md-9 {
        position: static;
    }

    .nav--primary li {
        position: relative;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    .sub-menu-toggle {
        position: absolute;
        right: 20px;
        top: 20px;
        cursor: pointer;
        display: block;
        width: 40px;
        height: 40px;
        background: black;
        text-align: center;
        line-height: 40px;
        top: 0;
        right: 0;
    }

    .nav--primary a {
        padding: 4px 20px;
    }

    .nav--primary a:before,
    .nav--primary a:after {
        display: none;
    }

    .page__header-ctas {
        padding: 0 !important;
    }

    .page__header-ctas .button:first-child {
        border-left: 1px solid black;
    }

    .page__header { position: relative; }

}

@media (max-width: 768px) {

  .site-search-popup form { padding: 60px 83px 60px 56px; }

  .site-search-popup { height: 213px; }

  .site-search-popup .search-submit { right: 69px; top: 83px; }
}

@media (max-width: 740px) {
    .page__header-ctas { padding: 0; }

    .page__header-ctas .button {
        float: right !important;
        width: 50%;
        text-align: center;
    }

    .page__header-ctas .button:first-child {
        border-left: 1px solid black;
    }

    .page__header-ctas .button span {
        display: none;
    }

    .page__header-ctas .button:after {
        display: none;
    }

    .page__header-cta-phone {
        display: block;
        float: none !important;
        width: 100%;
        text-align: center;
        margin: 0;
    }

    .logo img {
        width: 100%;
        height: auto;
        position: relative;
        top: 55px;
    }
}

@media (max-width: 600px) {
    .search-form input {
        height: 50px;
        padding: 0px 5px;
    }

    .site-search-popup {
        height: 122px;
    }

    .site-search-popup form {
        padding: 35px 63px 19px 56px;
    }

    .site-search-popup .search-submit {
        right: 46px;
        top: 35px;
        font-size: 30px;
    }
    .search-form input[type="search"] {
        font-size: 23px;
    }

    .site-search-popup {
        background: rgba(0, 0, 0, .8);
    }

    .search-close {
        top: 0px;
    }
}

@media (max-width: 360px) {
    .page__header-ctas .button {
        font-size: 11px;
        padding-left:0 !important;
        padding-right:0 !important;
    }

    .logo img {
        width: 130%;
    }

    .site-search,
    .main-menu-toggle {
        font-size: 24px;
        color:#fff;
    }

    .site-search {
        right: 60px;
    }

    .search-form input {
        height: 38px;
    }

  .site-search-popup form {
      padding: 36px 0px 19px 0px;
  }

  .site-search-popup {
     height: 109px;
  }

  .search-close {
      position: absolute;
      top: 0px;
      right: -13px;
      font-size: 20px;
      z-index: 300;
  }

  .site-search-popup .search-submit {
      right: -27px;
      top: 30px;
      font-size: 20px;
  }

  .search-form input[type="search"] {
      font-size: 18px;
  }
}


/**
 * Sub-navigation
 */

.nav--primary .sub-menu {
    position: absolute;
    background: black;
    z-index: 300;

    min-width: 250px;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
}

.nav--primary li:hover > .sub-menu {
/*     max-height: 700px; */
    opacity: 1;
}

.sub-menu li {
    float: none;
    position: relative;
    border-bottom: 1px solid #3d3d3d;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.sub-menu li a {
    padding-top:    4px;
    padding-bottom: 4px;
    text-transform: none;

    font-size: 14px;
    line-height: 15px;
    padding: 10px 12px;
}

.sub-menu li.current_page_item a {
    background: #3d3d3d;
}

.sub-menu a:before,
.sub-menu a:after {
    display: none;
}

.sub-menu:hover {
    overflow: visible;
}

.sub-menu li:hover > a,
.sub-menu li.current-menu-ancestor > a,
.sub-menu li.current-menu-parent > a,
.sub-menu li.current-menu-item > a {
    background-color: #3d3d3d;
}

.sub-menu .sub-menu {
    top: 0;
}

.nav--primary .sub-menu li:hover .sub-menu {
    opacity: 1;
}

@media (max-width: 1060px) {
    .nav--primary .sub-menu {
        position: relative;
        width: 100%;
    }

    .nav--primary li:hover > .sub-menu {
        opacity: 0;
        max-height: 0;
    }

    .nav--primary li.toggled:hover > .sub-menu,
    .nav--primary li:hover > .sub-menu.toggled,
    .nav--primary li.toggled > .sub-menu {
        opacity: 1;
        max-height: 500px;
        overflow: auto;
    }

    .nav--primary .sub-menu {
        width: 100%;
        position: relative;
        display: block;
    }

    .sub-menu-toggle.toggled {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg);
    }

    .sub-menu .sub-menu {
        right: auto;
    }

    .sub-menu .sub-menu a {
        padding-left: 40px;
    }

    .masthead-title h1, .masthead-title h2 {
        margin-top: 0px;
        margin-bottom: 0px;
        font-size: 19px;
        line-height: 2em;
  }
}

@media (min-width: 1060px) {
  .sub-menu .sub-menu {
    top: 0;
    left: 100%;
  }
}


/**
 * Masthead
 */

.masthead {
    max-height: 526px;
    overflow: hidden;
    position: relative;
    z-index: 100;
}

.masthead h1, .masthead h2 {
    font-size: 21px;
    line-height: 1.6em;
    margin-top: 1em;
    margin-bottom: 1em;
}

.masthead-title {
    position: absolute;
    bottom: 0px;
    color: #fff;
    background-color: rgba(0, 0, 0, .8);
}

.masthead-title h1, .masthead-title h2 {
    margin-top: 5px;
    margin-bottom: 2px;
    color: #fff;
}

@media (max-width: 1440px) {
    .masthead-title {
        padding-left:  0;
        padding-right: 0;
    }
}

@media (max-width: 1060px) {
    .masthead-title h1, .masthead-title h2 {
        margin-top: 0px;
        margin-bottom: 0px;
        font-size: 19px;
        line-height: 2em;
    }

     .single-clopay_collection .breadcrumbs {
        border-top: 0px solid #b60000;
    }
}

@media (max-width: 599px) {
  .masthead-title h1, .masthead-title h2 {
      line-height: 2em;
      font-size: 18px;
  }

  .masthead-title {
      position: relative;
  }
}


/**
 * Breadcrumbs
 */

 .breadcrumbs a,
 .breadcrumbs {
    color: #474747;
    font-family: 'Asap', arial;
    font-size: 15px;
}

.breadcrumbs a:hover {
    color: #b30838;
}

.breadcrumbs {
    -webkit-box-shadow: 3px 3px 3px 3px rgba(0,0,0,.1);
            box-shadow: 3px 3px 3px 3px rgba(0,0,0,.1);
    border-top: 8px solid #b60000;
    position: relative;
    z-index: 100;
    background:url(../img/breadcrumbs.png) repeat-x top left;
}

.breadcrumbs p {
    margin-top:    2px;
    margin-bottom: 2px;
}

.breadcrumbs a {
    padding-left: 5px;
    padding-right: 5px;
}

.breadcrumbs a:first-child {
    padding-left: 0;
}

.breadcrumbs .breadcrumb_last {
    padding-left: 5px;
}

.breadcrumbs span span > span {
    padding-left: 5px;
}


/**
 * Pagination
 */

.pagination {
}


/**
 * Page-footer
 */


.page__footer {
}

  .page__footer ul li:before {
      content: '';
  }

  .page__footer ul li a {
      color: #b60000;
      text-transform: uppercase;
      font-size: 13px;
  }

  .page__footer ul li a:hover {
      color:#ed0000 !important;
  }

  .page__footer ul li {
      margin-bottom: 10px;
  }

  .page__footer .nav--links ul li {
      line-height: 1.3;
      margin-bottom: 10px;
  }

.footer-contact {
    color: #ffffff;
    margin-top: 12px;
    font-size: 15px;
 }

.footer-contact span.icon-location {
    position: absolute;
    left: 0px;
    top: 6px;
}

p.address--textleft {
    position: relative;
    padding-left: 20px;
}

span.address-text {
    display: block;
}

.footer-contact h3 {
    margin-top:     20px;
    margin-bottom:  5px;
    margin-right:   0;
    margin-left:    0;
    font-size:20px;
}

.footer-contact span:before { color: #B30838;  padding-right: 10px; }

.footer-hours span:before {
    position: relative;
    top: 3px;
}

    .page__footer ul li a:hover,
    .page__footer ul li.current-menu-item a,
    .page__footer ul li.current-page-parent a,
    .page__footer ul li.current-page-ancestor a { color: #B30838; }

.footer-top { padding: 47px 0px; }

.footer-address { float: left; }

.footer-hours { float: right; }

.hours-drop {
    display: block;
    padding-left: 1.6em;
}

.hours--textleft {
    padding-left: 25px;
    line-height: 1.5em;
}

/*Footer widget / mailpoet*/

.footer-newsletter {
    width: 71%;
    clear:both;
    float:right;
    margin-bottom:27px;
}

  .footer-newsletter h3 {
      margin:0;
      font-family: 'Asap' !important;
      font-weight:normal;
      color:#b60000;
      font-size:14px;
  }

  .footer-newsletter p {
      float:left;
      width:75%;
  }

  .footer-newsletter input[type="text"] {
      float:left;
      width:100% !important;
      height:37px;
      padding:0 22px;
      background:#9c0101;
      border:0;
      font-size:14px;
      color:#cd9595;
  }

  .footer-newsletter input[type="submit"] {
      float:left;
      width:25% !important;
      height:37px;
      padding:0;
      background:#d10000;
      border:0;
      font-size:15px;
  }

    .footer-newsletter .widget_wysija_cont .wysija-submit {
        margin-top:3px !important;
    }

.formError {
    left: 88px !important;
    top: 59px !important;
}

.footer-newsletter .widget_wysija {
    padding:0;
}

  .footer-newsletter .widget_wysija label {
      padding:0;
      display:none;
  }


.button-footer { clear:both; float:right; margin-bottom:14px; width: 71%; text-align: center; font-family: 'Asap'; font-weight: 700; }

  .button-footer:after {
      font-size: 11px !important;
  }

.footer-logos { float: right; overflow: hidden; }

.footer-logos img {
    display: inline-block;
}

.footer-contact:before {
  left: 0;
  position: absolute;
  font-size: 143px;
  color:#fff;
  z-index: 100;
}

.footer-contact:after {
  position: absolute;
  right: 0;
  color:#fff;
  bottom: -20px;
  font-size: 140px;

  z-index: 100;
}

.footer-address {
    width: 100%;
    z-index: 300;
    position: relative;
    padding-left: 14px;
    padding-top: 10px;
}

.footer-address p.address--textleft {
    width: 50%;
    float: left;
}

.footer-hours {
    width: 100%;
    z-index: 300;
    position: relative;
    padding-top: 10px;}

.footer-bottom ul li { float:left; }

.footer-bottom ul li a {
    text-transform: none;
    color: #494948;
    font-family: 'Raleway', sans-serif;
    font-size:12px;
 }

    .footer-bottom ul li a:hover{
        color:#fff !important;
    }

 .footer-bottom ul li:after {
      content: '|';
      padding: 0px 10px;
 }

  .footer-bottom ul li:last-child:after {
      content: '';
      padding: 0px !important;
  }

.nav--secondary { line-height: 19px; }

.footer-social { padding-top: 35px; }

.footer-social .icon-wrap {
    display: inline-block;
    position: relative;
}

.footer-social .icon-wrap:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 3px;
    background: #fff;
}

.footer-social .icon-wrap:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 3px;
    height: 3px;
    background: #fff;
}

.footer-social .svg-inline--fa.fa-border {
    width: 1.05em;
    height: 1em;
    border: 1px solid;
    border-radius: 0;
}

.footer-social span:before { font-size: 43px; }

.footer-social a { padding-right: 7px; display: inline-block; }

.footer-social a
.footer-social a:hover span:before {
    color: #fff;
}

.footer-social a:hover svg {
    color: #1c2c48;
}

.footer-copyright {
    margin-top: 40px;
    margin-bottom: 40px;
    float: right;
    font-size:12px;
    color:#494948;
    font-family: 'Raleway', sans-serif;
    line-height:22px;
    text-align:right;
}

.footer-copyright a {
    text-align:right;
}

.footer-copyright p {
    margin: 0;
}

.footer-bottom .footer-copyright ul li {
    float: none;
    display: inline-block;
}

.icon-facebook   { color: #537bbd; }
.icon-googleplus { color: #dc493c; }
.icon-pinterest  { color: #eb5755; }
.icon-youtube    { color: #e9654b; }

span.icon-pinterest:before {
    font-size: 59px;
    position: relative;
    top: 4px;
}

.footer-logo {
    margin: 36px 0 0;
    text-align: center;
}

  .footer-logo img{
      margin-right:10px;
      max-height: 50px;
  }

@media (max-width: 1024px) {
  .footer-contact {margin-top: 0px; }

  .footer-contact:before,
  .footer-contact:after {
      content: '';
  }

  .footer-hours {
      float: left;
  }

  .button-footer {
      float: left;
  }

  .footer-address,
  .footer-hours {
      width: 100%;
      padding:0;
  }

  .footer-address h3 {
      margin-top: 0px;
  }

  .footer-service-buttons {
      margin-top: 40px;
  }

  .footer-logo {
      margin-top:20px;
  }

  .footer-logo img{
      float: left;
      height:50px;
  }

  .footer-copyright {
      margin-top: 20px;
      margin-bottom: 20px;
      text-align:left;
      float:left;
  }

  .footer-newsletter{
      width: 70%;
      clear:both;
      float:left;
      margin-bottom:0;
  }
}

@media (max-width: 768px) {
  .page__footer .img-responsive {
      width: 100%;
  }
}

@media (max-width: 599px) {
  .page__footer .nav--links {
      border-bottom: 1px solid #fff;
      padding-bottom: 22px;
  }

  .footer-hours {
      clear:both;
      width:100%;
      border-bottom: 1px solid #fff;
      padding-bottom: 22px;
  }

  .button-footer {
      width:100%;
      margin-top: 22px;
      margin-bottom: 0px;
  }

  .footer-logos { float:left; margin-top:22px; }

  .footer-top { padding: 27px 0px; }

  .footer-copyright { float: left; margin-top: 20px; width:100%; }

  .footer-address h3 {
      margin-top: 19px;
  }

  .footer-logo{ margin-top:20px; }

  .footer-newsletter{
      width: 100%;
      clear:both;
      float:left;
      margin-bottom:0;
      margin-top:27px;
  }
}


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


@-ms-viewport { width: device-width; }


/**
 * Images
 */

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

#product-gallery-main img{
    max-height:500px;
}

.product-info-tabs img {
    max-width: 100%;
}

.img-rounded { border-radius: 6px !important; }
.img-circle  { border-radius: 50% !important; }
.img-square  { border-radius: 0   !important; }

.right-margin {
    float: left;
    margin: 0 40px 20px 0;
}

/**
 * Visiblity
 */

.show { display: block !important; }

.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg { display: none !important; }

.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block { display: none !important; }

@media (max-width: 599px) {
    .visible-xxs      { display: block !important; }
    table.visible-xxs { display: table; }
    tr.visible-xxs    { display: table-row !important; }
    th.visible-xxs,
    td.visible-xxs    { display: table-cell !important; }

    .visible-xxs-block        { display: block !important; }
    .visible-xxs-inline       { display: inline !important; }
    .visible-xxs-inline-block { display: inline-block !important; }
}


@media (min-width: 600px) and (max-width: 767px) {
    .visible-xs      { display: block !important; }
    table.visible-xs { display: table; }
    tr.visible-xs    { display: table-row !important; }
    th.visible-xs,
    td.visible-xs    { display: table-cell !important; }

    .visible-xs-block        { display: block !important; }
    .visible-xs-inline       { display: inline !important; }
    .visible-xs-inline-block { display: inline-block !important; }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .visible-sm      { display: block !important; }
    table.visible-sm { display: table; }
    tr.visible-sm    { display: table-row !important; }
    th.visible-sm,
    td.visible-sm    { display: table-cell !important; }

    .visible-sm-block        { display: block !important; }
    .visible-sm-inline       { display: inline !important; }
    .visible-sm-inline-block { display: inline-block !important; }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .visible-md      { display: block !important; }
    table.visible-md { display: table; }
    tr.visible-md    { display: table-row !important; }
    th.visible-md,
    td.visible-md    { display: table-cell !important; }

    .visible-md-block        { display: block !important; }
    .visible-md-inline       { display: inline !important; }
    .visible-md-inline-block { display: inline-block !important; }
}

@media (min-width: 1200px) {
    .visible-lg      { display: block !important; }
    table.visible-lg { display: table; }
    tr.visible-lg    {  display: table-row !important; }
    th.visible-lg,
    td.visible-lg    { display: table-cell !important; }

    .visible-lg-block        { display: block !important; }
    .visible-lg-inline       { display: inline !important; }
    .visible-lg-inline-block { display: inline-block !important; }
}


/**
 * Hiding
 */

.hide       { display: none !important; }
.hidden     { display: none !important; visibility: hidden !important; }
.invisible  { visibility: hidden !important; }
.text-hide  {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

@media (max-width: 599px) {
    .hidden-xxs { display: none !important; }
}

@media (min-width: 600px) and (max-width: 767px) {
    .hidden-xs { display: none !important; }
}

@media (min-width: 768px) and (max-width: 1060px) {
    .hidden-sm { display: none !important; }
}

@media (min-width: 1061px) and (max-width: 1199px) {
    .hidden-md { display: none !important; }
}

@media (min-width: 1200px) {
    .hidden-lg { display: none !important; }
}


/**
 * Screen Readers
 */

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}


/**
 * Print
 */

.visible-print,
.visible-print-block,
.visible-print-inline,
.visible-print-inline-block { display: none !important; }

@media print {
    .visible-print      { display: block !important; }
    table.visible-print { display: table; }
    tr.visible-print    { display: table-row !important; }
    th.visible-print,
    td.visible-print    { display: table-cell !important; }

    .visible-print-block        { display: block !important; }
    .visible-print-inline       { display: inline !important; }
    .visible-print-inline-block { display: inline-block !important; }

    .hidden-print { display: none !important; }
}



/**
 * Clears
 */
.clear--left    { clear: left !important; }
.clear--right   { clear: right !important; }
.clear--both    { clear: both !important; }
.clear--contain { overflow: hidden !important; }


/**
 * Text alignment
 */
.text--left     { text-align:left  !important; }
.text--center   { text-align:center!important; }
.text--right    { text-align:right !important; }


/**
 * Font weights
 */
.weight--light      { font-weight:300!important; }
.weight--normal     { font-weight:400!important; }
.weight--semibold   { font-weight:600!important; }
.weight--bold       { font-weight:700!important; }


/**
 * Borders
 */
.border--top    { border-top:       1px solid #eee; }
.border--bottom { border-bottom:    1px solid #eee; }
.border--left   { border-left:      1px solid #eee; }
.border--right  { border-right:     1px solid #eee; }
.border--all    { border:           1px solid #eee; }

.border--black  { border-color: black; }


/* TODO: Update pushes, flushes, softs, and hards to match your vertical rhythem */

/**
 * Add/remove margins
 */
.push           { margin:       20px!important; }
.push--top      { margin-top:   20px!important; }
.push--right    { margin-right: 20px!important; }
.push--bottom   { margin-bottom:20px!important; }
.push--left     { margin-left:  20px!important; }
.push--ends     { margin-top:   20px!important; margin-bottom:20px!important; }
.push--sides    { margin-right: 20px!important; margin-left:  20px!important; }

.push-half          { margin:       10px!important; }
.push-half--top     { margin-top:   10px!important; }
.push-half--right   { margin-right: 10px!important; }
.push-half--bottom  { margin-bottom:10px!important; }
.push-half--left    { margin-left:  10px!important; }
.push-half--ends    { margin-top:   10px!important; margin-bottom:10px!important; }
.push-half--sides   { margin-right: 10px!important; margin-left:  10px!important; }
.push--left-btns    { margin-left: 8px!important; }

.flush          { margin:       0!important; }
.flush--top     { margin-top:   0!important; }
.flush--right   { margin-right: 0!important; }
.flush--bottom  { margin-bottom:0!important; }
.flush--left    { margin-left:  0!important; }
.flush--ends    { margin-top:   0!important; margin-bottom:0!important; }
.flush--sides   { margin-right: 0!important; margin-left:  0!important; }


/**
 * Add/remove paddings
 */
.soft           { padding:       20px!important; }
.soft--top      { padding-top:   20px!important; }
.soft--right    { padding-right: 20px!important; }
.soft--bottom   { padding-bottom:20px!important; }
.soft--left     { padding-left:  20px!important; }
.soft--ends     { padding-top:   20px!important; padding-bottom:20px!important; }
.soft--sides    { padding-right: 20px!important; padding-left:  20px!important; }

.soft-half           { padding:       10px!important; }
.soft-half--top      { padding-top:   10px!important; }
.soft-half--right    { padding-right: 10px!important; }
.soft-half--bottom   { padding-bottom:10px!important; }
.soft-half--left     { padding-left:  10px!important; }
.soft-half--ends     { padding-top:   10px!important; padding-bottom:10px!important; }
.soft-half--sides    { padding-right: 10px!important; padding-left:  10px!important; }

.hard           { padding:       0!important; }
.hard--top      { padding-top:   0!important; }
.hard--right    { padding-right: 0!important; }
.hard--bottom   { padding-bottom:0!important; }
.hard--left     { padding-left:  0!important; }
.hard--ends     { padding-top:   0!important; padding-bottom:0!important; }
.hard--sides    { padding-right: 0!important; padding-left:  0!important; }


/**
 * Positioning
 */

.affix--top    { position: fixed!important; top:    0!important; }
.affix--bottom { position: fixed!important; bottom: 0!important; }
.affix--left   { position: fixed!important; left:   0!important; }
.affix--right  { position: fixed!important; right:  0!important; }

.pull--right { float: right!important; }
.pull--left  { float: left !important; }

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

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

/**
 *  Homepage Slide
 */

/* Slider */
.slick-slider {
    position: relative;

    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;

    height: 100%;
    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;

    height: 100%;

    display: block;
}

.slick-track:before,
.slick-track:after {
    display: table;

    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
    height: auto;
    width: 100%
}

.slide .rsTmb {
    display: none;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}


/*  Default Slick Slider Template Styles  */

/* Slider */
.slick-loading .slick-list
{
    background: #fff url('./ajax-loader.gif') center center no-repeat;
}

.home-slider {
    height: auto;
}

.slide {
    height: 100%;

    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    background-color: white;

    position: relative;
}

.slide-one   { background-image: url('../img/hero-bg-01.jpg'); }
.slide-two   { background-image: url('../img/slide2.jpg'); }
.slide-three { background-image: url('../img/slide3.jpg'); }
.slide-four  { background-image: url('../img/slide4.jpg'); }
.slide-five  { background-image: url('../img/slide5.jpg'); }

.rsContent { position: relative; }

.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    background: none;
    border: 0;
    color: transparent;
}

.product-thumbs .slick-prev,
.product-thumbs .slick-next {
    top: 0;
    z-index: 1;
}

.product-thumbs .thumbnail-slider .slick-prev,
.product-thumbs .thumbnail-slider .slick-next {
    top: 0;
    z-index: 10 !important;
}


.slick-prev:before,
.slick-next:before {
    display: block;
    color: white;
    font-size: 48px;
    font-family: 'icomoon';
    text-shadow: 0 2px black;
    text-shadow: 0 2px rgba(0, 0, 0, .9);
}

.slick-prev:before { content: "\e612"; /* Left Arrow */ }
.slick-next:before { content: "\e613"; /* Right Arrow */ }


.slick-prev { left:  0; }
.slick-next { right: 0; }

.slider-cta {
    position: absolute;
    bottom: 10%;
    margin-left: 120px;
}

.slider-cta h2 {
    color: #fff;
    margin: 0;
}

.slider-cta p {
    margin-bottom: 0;
}

.cta-black-box {
    background: black;
    background: rgb(28 44 72 / 80%);
    padding-top:    17px;
    padding-bottom: 17px;
    padding-right:  26px;
    padding-left:   26px;
    color: white;
}

.cta-black-box h1 {
    color: #fff;
    margin-bottom: 0;
    margin-top: 29px;
}

.cta-black-box:before,
.cta-black-box:after {
    content: "";
    display: block;

    position: absolute;
    background: white;
}

.cta-black-box:before {
    width: 3px;
    height: 105%;
    height: calc(100% + 7px);

    top: 0;
    left: -10px;
}

.cta-black-box:after {
    width: 58%;
    height: 3px;
    bottom: -10px;
    left: -10px;
}

.cta-black-box span,
.cta-black-box strong {
    display: block;
    text-transform: uppercase;
}

.cta-black-box span   { font-size: 25px; text-shadow: 2px 2px #101824;}
.cta-black-box strong { font-size: 31px; font-family: 'Asap'; font-weight: 700; text-shadow: 2px 2px #101824;}

.slider-button.button {
    position: absolute;
    right: -27px;
    bottom: -22px;
    font-size: 12.73px;
    text-shadow: 0 1px 0 rgba(0,0,0,.2);
    z-index: 100;
    padding:    5px 15px !important;
}

  .slider-button.button:after{
      font-size:9px;
      padding-left:5px;
  }

    .slider-button.button:hover:after{
        padding-left:8px;
    }

/**
 *  Homepage Banner Personalization
 */

.homepage-banner-personalization {
    display: block;
    position: relative;
}

.homepage-banner-personalization.slick-slide img {
    min-height: 150px;
}

@media (max-width: 599px) {

    .homepage-banner-personalization .cta-black-box span { line-height: 1.2; }

    .homepage-banner-personalization .cta-black-box span br { display: none; }

}

.sticky-promotion {
    position: fixed;
    left: 0;
    top: 25%;
    z-index:300;
    margin-left: -189px;
    z-index:97;
}

.sticky-promotion:nth-of-type(3n+1) {
    top: 25%
}

.sticky-promotion:nth-of-type(3n+2) {
    top: 40%
}

.sticky-promotion:nth-of-type(3n+3) {
    top: 55%
}

.sticky-promotion.sticky-map {
    top: 40% !important;
    z-index:99;
}

.sticky-promotion.sticky-phone {
    top: 55% !important;
    z-index:98;
}

.sticky-promotion:hover {
    left: 189px;
    cursor: pointer;
}

.sticky-promotion:hover .sticky-button {
    background: #00c100;
}

.sticky-promotion .sticky-button {
    background:#009200;
    z-index: 300;
    height: 56px;
    padding-right: 20px;
    float: left;
    width:110px;
}

  .sticky-promotion.sticky-map .sticky-button {
      background:#d10000;
      line-height:54px !important;
  }

    .sticky-promotion.sticky-map .sticky-button:after,
    .sticky-promotion.sticky-map:hover .sticky-button {
        background:#ff0000;
    }

    .sticky-promotion.sticky-map:hover .sticky-button:after { background:#d10000; }

  .sticky-promotion.sticky-phone .sticky-button {
      background:#518acd;
      line-height:54px !important;
  }

    .sticky-promotion.sticky-phone .sticky-button:after,
    .sticky-promotion.sticky-phone:hover .sticky-button {
        background:#71a9eb;
    }

      .sticky-promotion.sticky-phone:hover .sticky-button:after {
          background:#518acd;
      }

    .sticky-promotion.sticky-phone .sticky-button span,
    .sticky-promotion.sticky-map .sticky-button span {
        color: #fff;
        font-size: 26px;
        margin-left:8px;
    }


.sticky-promotion .sticky-slide {
    float: left;
    height: 126px;
    width: 189px;
    background: #fff;
    padding: 15px;
}

.sticky-promotion .sticky-slide p {
    margin-top: 0px;
    margin-bottom: 0px;
}

.promotion-text {
    text-align: center;
    line-height: 1.5;
}

.promotion-text span {
    font-size: 24px;
    font-family: 'Asap';
	font-weight: 700;
    line-height: 1;
}

.promotion-text .button {
    font-size: 14px;
    font-family: 'Asap';
	font-weight: 700;
}

.sticky-button {
    text-align: center;
    padding: 0 10px;
    line-height: 1;
    float:left;
}

.sticky-button:after {
    position: absolute;
    top: 0;
    right: -23px;
    font-size: 12px;
    background: #4a9e4a;
    height: 33px;
    padding: 23px 5px 0px 5px;
    color: #fff;
}

.sticky-button span {
    color: #fff;
    font-size: 18px;
    line-height: 56px;
    white-space: nowrap;
}

.home-content1,
.home-content2 {
    background-repeat: no-repeat;
    background-size: 50% ;
    border-top:#fff solid 1px;
}

@media (min-width:1025px) {
	.white--bg.extra-padding {
		padding: 50px 50px 100px;
	}

	.image-left-overlap {
		transform: translate(10%, 0) scale(1.15);
	}

	.image-right-overlap {
		transform: translate(-10%, 0) scale(1.15);
	}
}

.home-content1 .text,
.home-content2 .text {
    max-width:660px;
}

  .home-content1 .text { loat:left; }

  .home-content2 .text { float:right; }

.home-content1 .text p,
.home-content2 .text p {
    font-size: 15px;
    line-height: 27px;
    margin: 0px 0px 15px 0px;
}

.home-content1 h2,
.home-content2 h2 {
    font-size:39px;
    line-height:48px;
    margin-top:0 !important;
    margin-bottom:20px !important;
}

  .home-content1 h2:after,
  .home-content2 h2:after {
      content:'';
  }

.home-content1 h3,
.home-content2 h3 {
  font-size:25px !important;
  margin-top:0 !important;
  margin-bottom:20px !important;
  text-transform:uppercase;
}

.home-content1 .bg-image { background-position: right top; border-right:#fff solid 1px; min-height: 476px;}
.home-content2 { background-color: #e5e5e5; }
.home-content2 .bg-image { background-position: left top; min-height: 592px;}

.bg-image {
    background-size: cover;
}

.mobile-only {
    display: none;
}

.home-content1 .text {
    padding-right: 0 !important;
}

.home-content2 .text {
    padding-left:  50px !important;
}

 .home-content1,
 .home-content2 {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex
  }

.flex-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.flex-item.flex-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
    -o-object-position: center center;
       object-position: center center;
    display: block;
    position: absolute;
}

.flex-item.flex-img {
    overflow: hidden;
}

@media (max-width: 1024px) {

  .home-slider {
      height: auto;
  }

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

    .slider-cta {
        bottom: 10%;
    }

    .home-content1 {
        background-size: 100%;
        height: auto;
    }

  .home-content1 .text,
  .home-content2 .text {
      max-width:100%;
  }

    .home-content1 .bg-image {
        height: auto;
        min-height: 0;
        background-image: none !important;
        padding-left:  0 !important;
        padding-right: 0 !important;
        border:0 !important;
    }

    .mobile-only {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .home-content1 .text {
        padding-right: 50px !important;
    }

    .sticky-button span {
        color: #fff;
        font-size: 18px;
        line-height: 25px;
    }

    .home-content1,
    .home-content2 {
        display: block;
    }

    .flex-row {
        display: block;
    }

  .flex-item.flex-img img {
      position: relative;
  }

  .flex-item.flex-img {
      overflow: hidden;
  }
}

@media (max-width: 768px) {

  .home-slider {
      height: auto;
  }

  .slider-cta {
        margin-left: 40px;
    }

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

    .sticky-promotion {
        position: relative;
        left:0;
        margin-top: 15px;
        margin-bottom: 15px;
        margin-left: 0;
    }

    .sticky-promotion .sticky-slide { display: none; }

    .sticky-promotion:hover { left: inherit; }

    .sticky-promotion .sticky-button { width: 100%;   padding: 17px 0px; }

    .sticky-promotion .sticky-button span  { font-size: 24px; }

    .sticky-button:after { right: 0; }

    .sticky-promotion:nth-child(1n),
    .sticky-promotion:nth-child(2n) {
        top: auto;
    }

  .sticky-promotion.sticky-phone .sticky-button,
  .sticky-promotion.sticky-map .sticky-button{
      line-height:0 !important;
  }

}


@media (max-width: 640px) {
    .home-slider {
        height: 215px;
    }

    .slick-slide img {
        height: 100%;
    }

    .slick-prev,
    .slick-next {
        display: none !important;
    }

    .slider-cta {
        width: 90%;
        height: 55%;
        margin: auto;
        bottom: 0;
        top: 0;
        right: 0;
        left: 0;
    }

    .cta-black-box {
        width: 100%;
        margin: auto;
        padding-top:    15px;
        padding-left:   15px;
        padding-right:  15px;
        padding-bottom: 25px;
    }

    .cta-black-box span {
        font-size: 16px;
    }

    .cta-black-box strong {
        font-size: 20px;
    }

    .cta-black-box:before,
    .cta-black-box:after {
        display: none;
    }

    .slider-button.button {
        bottom: 0;
        right: 0;
    }

    .home-content1 .text {
        padding-right: 20px !important;
    }
}

@media (max-width: 500px) {
    .slider-button.button {
        bottom: -26px;
        right: 0;
        text-align: center;
        width: 100%;
    }

    .home-content1 {
        margin-top: 20px;
    }
}

/**
 * Services Section
 */
.services-section {
    padding: 43px 0px;
    position: relative;
    -webkit-box-shadow: 3px 3px 3px 3px rgba(0,0,0,.1);
            box-shadow: 3px 3px 3px 3px rgba(0,0,0,.1);
}

.services-block {
    display: block;
    color: #fff;
    font-size: 21px;
    text-transform: uppercase;
    background-size: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

    .services-block:hover {
        color: #fff;
        -webkit-transform: scale(.99,.99);
           -moz-transform: scale(.99,.99);
    }

.services-block span {
    font-size: 15px;
    line-height: 18px;
    text-transform: none;
    font-family: 'Asap';
    display:block;
}

.service-text {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px;
    text-shadow: 1px 1px 2px #000;
}

.services-section .icon-right-arrow {
    font-family: 'icomoon';
    display: inline-block;
    padding-left: 13px;
 }

 /**
 * Content Sections
 */

.home-content1 h2 {
    margin: 32px 0px 0 0 !important;
    font-size: 39px;
}

.home-content1 .text {
    padding: 40px 50px;
}

.home-content1 h2:after {
    color: #B30838;
    padding-left: 13px;
}

.home-content1 p {
    margin: 0px 0px 20px 0px
}

.home-content2 .text {
    padding: 40px 50px;
}

.home-content2 h2 {
    font-size:25px;
    margin-top: 20px;
    margin-bottom: 25px;
    line-height:25px;
}

body.home {
    background: url('../img/body-bg.jpg') center center no-repeat fixed;
    background-size: cover;
}

.section-testimonials {
    position: relative;
}

.section-testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.8;
}

.home-testimonials {
    padding: 149px 20px 90px;

}

.home-testimonials div:before {
    position: absolute;
    color: #fff;
    z-index: 200;
    font-size: 131px;
    top: 12px;
    left: -55px;
}

.home-testimonials div:after {
    position: absolute;
    color: #fff;
    z-index: 200;
    font-size: 108px;
    bottom: 14px;
    right: -55px;
}

.testimonial-name {
    float: right;
    padding-right: 63px;
    color: #fff;
    text-transform: uppercase;
}

.home-testimonials .button {
    font-size: 18px;
    color: #fff;
    padding-top:    0;
    padding-bottom: 0;
    padding-right:  0;
    padding-left: 20px;
}

.home-testimonials h2 {
    padding-left: 100px;
    color: #fff;
    font-size: 39px;
    margin: 0;
    margin-top:-5px;
    line-height: 37px;
}

.home-testimonials p {
    text-align: center;
    color: #fff;
    font-size: 18px;
    margin-top: 20px;
    line-height:37px;
}

.testimonial-name {
    font-size: 20px;
}

@media (min-width: 1300px) {
  .services-block {
      font-size: 29px;
   }

   .services-section .icon-right-arrow {
      font-size: 17px;
   }
}

@media (min-width: 1060px) {
   .single-clopay_collection .breadcrumbs {
      border-top: 0px solid #b60000;
    }
}

@media (max-width: 1024px) {
   .services-block {
      font-size: 16px;
   }

   .home-testimonials {
      padding: 50px 40px;
  }

  .home-content1 h2{
      font-size: 34px;
  }

}

@media (max-width: 850px) {
   .services-block {
      line-height: 18px;
   }
}

@media (max-width: 768px) {
  .home-testimonials h2 { font-size: 23px; }

  .home-testimonials .button { ont-size: 15px; }

  .home-content1 h2 { ont-size: 29px; padding:20px 0px; }

  body.home { background: none; }

  .home-testimonials { background: url('../img/testimonials-bg.jpg'); }

  .home-testimonials div:before {
    font-size: 73px;
    left: -15px;
  }

  .home-testimonials div:after {
    font-size: 73px;
    right: -15px;
  }
}

@media (max-width: 600px) {
   .services-block {
        font-size: 21px;
        line-height: 24px;
        margin-top: 20px;
   }

   .service-text {
        padding: 15px;
   }

   .home-content1 h2 {
        font-size: 27px;
        line-height: 40px;
    }

  .home-content1 .text {
      padding: 0px 0px;
  }

  .home-content2 .text {
      padding-left:  0px !important;
  }

  .services-section .icon-right-arrow {
      padding-left: 7px;
  }

  .services-section {
      padding: 5px 0px 20px 0px;
  }
}

/**
 * Lookbook/Design Section
 */

 .imagine-lookbook-section {
    padding-bottom: 139px;
    padding-top: 75px;
    border-top:#dbdbdb solid 2px;
 }

.lookbook-cta {
    position: relative;
    border-right: 1px solid #ccc;
    padding-right:60px;
}

.design-cta {
    position: relative;
    padding-left:60px;
}

.lookbook-img {
    margin-top: 40px;
}

.lookbook-text {
    width: 70%;
}

.design-text {
    width: 70%;
}

    .lookbook-text h3,
    .design-text h3 {
        font-size: 39px;
        margin: 0px;
    }

    .lookbook-text p,
    .design-text p {
        margin: 0;
        font-size: 20px;
        line-height: 1.6;
    }

/*.lookbook-cta .button,
.design-cta .button,*/
.lookbook-text p,
.design-text p { margin-bottom: 20px; }

.design-cta img { margin-top: 40px; }

.lookbook-cta .button,
.design-cta .button {
    font-family: 'Raleway', sans-serif;
}

@media (max-width: 1024px) {

  .imagine-lookbook-section{
      padding-bottom:35px;
      padding-top:35px;
  }

  .lookbook-text {
      width: 100%;
  }

  .design-text {
      width: 100%;
  }

  .imagine-lookbook-section .button {
      padding: 3px 3%;
      font-size: 14px;
  }

  .lookbook-text p, .design-text p {
      font-size: 16px;
  }

  .lookbook-text p, .design-text p {
      margin-top: 6px;
  }
}

@media (max-width: 768px) {
  .imagine-lookbook-section {
      padding: 0px 0px 35px 0px;
  }
}

.quote-box {
    position: relative;
    padding: 20px 50px 20px;
    margin-bottom: 25px;
}

.quote-box:before,
.quote-box:after {
    content: '';
    height: 2px;
    width: 95%;
    width: calc(100% - 50px);
    background: black;
    display: block;
    position: absolute;
    top: 25px;
    left: 25px;
    margin: 0 auto;
}

.quote-box:after {
    bottom: 25px;
    top: auto;
}


/**
 * Main Sidebar
 */

 .main-sidebar {
    margin-top: 40px;
 }

.main-sidebar ul {
    padding: 0px;
    margin-bottom: 0px;
}

.main-sidebar li:before {
    content: '';
    padding:0px;
}

.main-sidebar li a {
    font-size: 19px;
    text-transform: uppercase;
    color: #ffffff;
    padding: 15px 10px;
    border-top: 1px solid #505050;
    display: block;
    padding-left: 33px;
    position: relative;
}

.main-sidebar li a:after {
    font-size: 13px;
    padding-left: 15px;
    display: block;
    content: "\e60c";
    font-family: 'icomoon';
    position: absolute;
    top: 40%;
    right: 25px;
}

.main-sidebar li:hover > a,
.main-sidebar li.current-menu-ancestor > a,
.main-sidebar li.current-menu-parent > a,
.main-sidebar li.current-menu-item > a {
    color: #daa520;
    background: inherit;
}

.main-sidebar li:hover > a:after {
    right: 15px;
}

.main-sidebar li a:hover:after {
    padding-left: 20px;
}

.main-sidebar li.current-menu-item a {
    color: #B30838;;
}

.main-sidebar li:first-child a {
    border-top: 0px;
}

.sidebar-testimonial {
    padding: 5px 33px;
}

  .sidebar-testimonial h2{
      margin-bottom:0;
  }

.sidebar-imagination-cta,
.sidebar-lookbook-cta {
    position: relative;
    display: block;
}

.sidebar-imagination-cta span,
.sidebar-lookbook-cta span {
    position: absolute;
    bottom: 0;
    background-color: rgba(0, 146, 0, .7);
    color:#fff;
    text-align: center;
    text-transform: uppercase;
    display: block;
    width: 100%;
    font-size: 18px;
    font-family: 'Raleway', sans-serif;
    padding: 10px 0px;
}

.button--sidebar{
    font-family: 'Raleway', sans-serif !important;
    padding-left:40px;
    width: 100%;
    text-align: center;
}

.sidebar-testimonial-wrap {
    margin-bottom: 27px;
}

.sidebar-imagination-cta span:after,
.sidebar-lookbook-cta span:after {
    font-size: 12px;
    padding-left: 10px;
}

.sidebar-imagination-cta span:hover,
.sidebar-lookbook-cta span:hover {
    background-color: rgba(0, 146, 0, .9);
}

.sidebar-imagination-cta span:hover:after,
.sidebar-lookbook-cta span:hover:after {
    padding-left:15px;
}

.sidebar-imagination-cta,
.sidebar-lookbook-cta {
    margin-bottom:27px;
}

.main-sidebar .search-form input[type="search"] {
    font-size: 16px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.main-sidebar input[type="submit"],
.main-sidebar button[type="submit"] {
    float: none;
    width: 100%;
    margin-top: 10px;
}

.main-sidebar h3 {
    margin-bottom: 5px;
}

.main-sidebar .screen-reader-text {
    display: none;
}

.main-sidebar .widget {
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 20px;
}

.main-sidebar .widget_search,
.main-sidebar .widget.popular-posts h3,
.main-sidebar .widget.widget_recent_entries h3,
.main-sidebar .widget.widget_categories h3,
.main-sidebar .widget_archive {
    padding-left:  20px;
    padding-right: 20px;
}

.main-sidebar .widget ul {
    margin-top: 0;
}

.main-sidebar .widget li {
    padding-left: 0;
}

.main-sidebar .widget li a {
    font-size: 16px;
    line-height: 1.3;
    padding-left:   20px;
    padding-top:    20px;
    padding-bottom: 20px;
    padding-right:  50px;
}


  @media (max-width: 1024px) {

    .sidebar-imagination-cta span, .sidebar-lookbook-cta span {
        font-size:15px;
    }

    .main-sidebar li a {
        font-size: 15px;
        padding: 13px 15px;
    }

  }

  @media (max-width: 768px) {
      .sidebar-imagination-cta { margin-right: 0px; }
      .sidebar-lookbook-cta { margin-left: 0px; }
  }

  @media (max-width: 599px) {
      .sidebar-imagination-cta,
      .sidebar-lookbook-cta { margin-left: 0px; margin-right: 0px; }
  }

/**
 * Contact Sidebar
 */

 .contact-sidebar {
    border-left: 1px solid #ccc;
    padding-left: 18px;
    margin-top: 94px;
}

.contact-sidebar:before {
    position: absolute;
    font-size: 96px;
    color: #e5f0ff ;
    top: 72px;
    opacity: 0.25;
}

.contact-sidebar--address,
.contact-sidebar--hours {
    padding-left: 114px;
}

.contact-sidebar .icon-mobile:before,
.contact-sidebar .icon-clock:before,
.contact-sidebar .icon-location:before {
    color: #b30838;
    padding-right:10px;
}

.icon-clock,
.time-info {
    float: left;
    display: block;
}

.time-info {
    position: relative;
    top: -3px;
}

.contact-sidebar .phone,
.contact-sidebar .address,
.contact-sidebar--hours { margin-top:10px; line-height: 25px; color: #616161; }

.contact-sidebar--hours { margin-top:50px; }

.contact-sidebar h3 { margin: 0px; margin-bottom:10px; }

.contact-sidebar .location-info {
    display: inline-block;
    vertical-align: top;
}

@media (max-width: 1024px) {
    .contact-sidebar .phone,
    .contact-sidebar .address,
    .contact-sidebar--hours {
        font-size: 13px;
    }
}

/**
 * Innerpages
 */


.page-body {
    padding-right: 80px;
    margin-top: 60px;
    margin-bottom: 70px;
}

.page-body > p:first-child,
.page-body > h1:first-child,
.page-body > h2:first-child,
.page-body > h3:first-child,
.page-body > h4:first-child,
.page-body > h5:first-child,
.page-body > h6:first-child {
    margin-top: 0;
}

.product-family {
    padding-right: 0px;
}

.overview-video iframe,
.location-map iframe{
    width: 100%;
    margin: 20px 0px;
}

.bottom-content {
    padding: 80px 0;
}


@media (max-width: 1024px) {
   .page-body {
      padding-right: 23px;
  }
}

@media (max-width: 768px) {
  .page-body {
      padding-right: 0px;
      margin-top: 30px;
  }

  .bottom-content {
      padding: 10px 0;
  }
}



/**
 * Product Family Page
 */

.product-family-block {
    padding-top:    43px;
    padding-bottom: 43px;
    /*display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;*/
}

.product-family-block .product-img{
    height: 400px;
    position: relative;
}

.product-family-block .product-image {
  padding-left:8px !important;
  padding-right:8px !important;
  padding-bottom:16px !important;
}

.home .product-family-block .product-image:nth-of-type(3n+1) {
    clear: none;
}

.product-family-block .product-image:nth-of-type(3n+1) { clear: both; }

.product-family-block .product-image img {
    height: 100%;
    width: 100%;
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
    z-index: 1;
}

.product-family-block .product-text {
    position: absolute;
    top: 0;
    z-index: 80;
    width: 100%;
    text-align: center;
    padding: 20px;
    height:auto;
    background:rgba(4, 2, 2, 0.6);
}

.product-icon {
    opacity: 0;
    font-size: 40px;
    padding-right: 24px;
    color: #fff;
    display:none;
}

.product-text h3 {
    margin-top: 11px;
    padding: 0px 10px;
    margin-bottom: 0;
    font-size:22px;
    text-shadow: 2px 2px #101824;
}

  .product-text h3:after {
      font-size: 15px;
      margin-left:10px;
      margin-bottom: 0;
  }

  .product-text p {
      display: none;
  }

.product-family-block a {
    display:block;
    position: relative;
    border: 1px solid #ccc;
    height: 100%;
}

.product-family-block a:hover .product-text:after { content:''; border-bottom: 1px solid #fff; }

.product-family-block a:hover .product-text { max-height:100%; height:100%; padding-top:40%;}

.product-family-block a:hover .product-text.product-list-text { padding-top:20%; }

.product-family-block a:hover .product-icon { opacity: 1; display:block; }

.home .product-family-block a:hover .product-text { top:0; }

.home .product-text h3 { padding: 0px 0px; margin: 0; }

.home .product-text { padding: 10px 24px; }

.home .product-text h5 {
    margin: 0;
    font-size: 18px;
    font-weight: normal;
    font-family: 'Asap', arial;
    text-shadow: 2px 2px #080808;
}

.home .product-family-block .product-text {
    top:0;
    text-align: left;
    background:rgb(28 44 72 / 80%);
    min-height: 76px;
	border-bottom: 3px solid #1C2C48;
}

.home .product-family-block a:hover:after,
.home .product-family-block a:after {
    display:none;
}

.home .product-image:hover img, .home .product-image:hover .product-text { width: 100%; }

.product-family-content {
    margin-top: 70px;
    position: relative;
}

.product-family-content:before {
    display: none;
}

@media(min-width: 768px){
    .product-family-block .product-img{
        height: 320px;
    }
}

@media(min-width: 1025px){
    .product-family-block .product-img {
        height: 400px;
    }
}


@media (max-width: 1024px) {

  .product-text h3 {
      font-size: 18px;
      line-height: 23px;
      margin-bottom: 15px;
  }

  .product-family-content:before {
      display: none;
  }


  .home .product-text h5, .product-text p { line-height: 19px; display:none; }

  .home .product-text h3 { margin-bottom: 10px; }

  .product-family-block a:hover .product-text,
  .product-family-block a:hover .product-text.product-list-text {
      padding-top:20px;
      height:auto;
  }

  .product-family-block .product-icon { opacity: 1; display:block; }

}

@media (max-width: 768px) {

  .product-family-content:before {
      content:'';
  }

  .product-family-block .product-image {
      padding-left: 0px;
      padding-right: 0px;
  }

  .home .product-family-block .product-image {
      padding-bottom:20px;
  }

  .home .product-text h5 { font-size: 13px;}

  .product-text p { display:none; }
}

@media (max-width: 350px) {
  .product-text p { display:none; }
}

/**
 * Product Page Thumbnails
 */

.product-thumbs {
    margin-top: 15px;
    background-color: #f2f2f2;
    padding: 10px 0px;
    position: relative;
}

.product-thumbs .slick-list {
    padding-left: 40px;
    padding-right: 40px;
}

.product-thumbs .slick-prev,
.product-thumbs .slick-next {
    background: #9b9b9b;
    height: 100%;
    width: 30px;
    text-align: center;
    bottom: 0;
    position: absolute;
    outline: none;
    border: none;
}

.product-thumbs .slick-prev:before,
.product-thumbs .slick-next:before {
    font-size: 21px;
    text-shadow: none;
    position: absolute;
    right: 5px;
}

.thumbnail {
    padding-left:  10px;
    padding-right: 10px;
}

.thumbnail a {
    display: block;
}

.thumbnail img {
    width: 100%;
    height: auto;
}

@media (max-width: 600px) {
    .slick-prev,
    .slick-next {
        display: block !important;
    }

    .home-slider .slick-prev,
    .home-slider .slick-next {
        display: none !important;
    }

  .home .product-text h5 { font-size: 18px;}
}


/**
 * Product Page Tab styles
 */


.design-option {
    float: left;
    min-height: 240px;
    margin-bottom: 30px;
    line-height: 1em;
    text-align: center;
}

.design-option.colors {
    min-height: 100px;
}

.design-option span {
    display: block;
    text-align: center;
    line-height: 16px;
    margin-top: 10px;
}


/**
 * 404 Page
 */

.error-links { margin-top: 20px; }

.error-links-list { margin: 0; padding: 30px 20px; }

    .error-links-list li{ float: left; padding:0; }

    .error-links-list li:before {
        content: '|';
        position: relative;
        padding: 10px;
        top:0;
        color: #505050;
    }

  .error-links-list li:last-child{
        display: none;
    }

    .error-links-list li:first-child:before {
        content: '';
        display: none;
    }

       .error-links-list li a {
          color: #505050;
          text-transform: uppercase;
          font-size: 16px;
       }

      .error-links-list li a:hover{ color:#b30838; }

.error-404 p { margin: 5px 0px; }

@media (max-width: 600px) {
   .error-links-list li {
      float: none;
      border-bottom: 1px solid #505050;
      line-height: 15px;
  }

  .error-links-list li:last-child {
      border-bottom: 0px;
  }

  .error-links-list li a {
      padding: 20px 10px;
      display: block;
  }

  .error-links-list {
      padding: 0px;
  }

  .error-links-list li:after {
      content: '';
      display: none;
  }
}

/**
 * Search Results
 */

 .search-result-block p {
    margin:0px;
    padding: 0px;
 }

 .search-result-section {
    padding-bottom: 20px;
 }

 .search-result-section .button {
    margin-top: 20px;
 }

.search-result-section article h3:first-child {
    margin-bottom: 0;
}

.search-result-section article p {
    margin-top: 0;
}

/**
 * Product Details Page
 */

 .product-overview { margin-top: 100px; }

 .product-overview h1 {
    margin-top: 0px;
    line-height: 1;
    margin-bottom: 0px;
    font-size: 50px;
    position: relative;
}

.product-overview h1:before {
    font-size: 240px;
    position: absolute;
    z-index: 100;
    left: -50px;
    top: -50px;
    opacity: 0.25;
}

.product-overview h1 span {
    position: relative;
    z-index: 200;
}

.product-overview p {
    font-size: 33px;
    margin-top: 20px;
    position: relative;
    z-index: 200;
    line-height: 45px !important;
}

.button--fourth .icon-email { font-size: 11px; }
.button--fourth .icon-print { font-size: 13px; }

.product-description-heading {
    font-size: 20px;
    font-weight: normal;
}

.product-intro {
    padding-left: 40px;
}

.product-intro span {
    font-size: 12px;
}

.product-overview a {
    position: relative;
    z-index: 200;
}

.product-info .product-image {
    border: 1px solid #ccc;
}

.tabs {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
    overflow: hidden;
}

.tabs li:before {
    display: none;
}

.tab {
    float: left;
    cursor: pointer;
    background: #9b9b9b;
    font-size: 18px;
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-weight: normal;
    padding-left: 0;
}

.tab a {
    color: white;
    padding: 13px 20px 15px;
    display: block;
    background: #9b9b9b;
    position: relative;
    border-top:    10px solid white;
    border-bottom: 5px  solid white;
    border-left:   3px  solid white;
    border-right:  3px  solid white;
}

.tab--active a {
    border-top:    10px solid #b60000;
    border-bottom: 5px  solid #b60000;
    border-left:   3px  solid #b60000;
    border-right:  3px  solid #b60000;
    padding-right: 40px;
    background: #b60000;
}

.tab:hover a {
    background: #b60000;
}

.tab a:before,
.mobile-tab-header a:before {
    font-family: 'icomoon';
    content: "\e611";
    color: white;
    opacity: 0;
    position: absolute;
    right: 0;
}

.mobile-tab-header a:before {
    opacity: 1;
}

.tab--active a:before {
    opacity: 1;
    right: 10px;
}

.tab-details {
    border: 1px solid #9b9b9b;
    padding: 40px;
    clear: both;
}

.cross-sell {
    margin-left:  -40px;
    margin-right: -40px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.cross-sell h3 {
    color: #b30838;
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 0;
}

.cross-sell p {
    margin-top: 0;
}

.cross-sell img {
    width: 100%;
    height: auto;
}

.tab-details ul {
    padding-left: 0;
    margin-top: 0;
}

.mobile-tab-header {
    display: none;
}

.mobile-tab-header {
    background-color: #9b9b9b;
    color: white;
    font-size: 18px;
    margin: 0;
    display: block;
}

.mobile-tab-header a {
    color: white;
    display: none;
    padding: 10px 20px;
    cursor: pointer;
    position: relative;
}

.mobile-tab-header:hover a,
.mobile-tab-header.active a {
    background-color: #b30838;
}

.mobile-tab-header a:before {
    font-size: 20px;
    right: 20px;
}

.tab-data {
    display: none;
}

.tab-data .button {
    margin-bottom: 20px;
}

.tab-data.active {
    display: block;
}



@media (max-width: 1200px) {
    .product-overview h1 {
        font-size: 46px;
    }
}

@media (max-width: 1136px) {
    .tab {
        font-size: 18px;
    }

    .tab a {
        padding: 13px 15px 15px;
    }

    .tab--active a {
        padding-right: 30px;
    }
}

@media (max-width: 1024px) {
    .product-intro {
        border-left: 0 !important;
        padding-left: 20px !important;
    }

    .product-description-heading {
        margin-bottom: 0;
    }

    .product-overview p {
        font-size: 21px;
    }
}

@media (max-width: 1000px) {
    .product-overview h1 {
        font-size: 38px;
    }

    .tab {
        font-size: 16px;
    }

    .tab a {
        padding: 13px 10px 15px;
    }

    .tab--active a {
        padding-right: 30px;
    }

    .tab a:before {
        font-size: 16px;
    }
}

@media (max-width: 800px) {
    .tab {
        font-size: 14px;
    }

    .tab a {
        padding-top: 6px;
        padding-bottom: 6px;
        border-top-width: 2px;
    }

    .tab--active a {
        padding-right:  30px;
        padding-top:    7px;
        padding-bottom: 5px;
    }

    .tab a:before {
        font-size: 16px;
    }

    .search-result-block {
        padding-left: 0;
    }
}

@media (max-width: 700px) {
    .tab {
        float: none;
        display: none;
        margin-top: 0;
    }

    .tab-details {
        padding: 0;
        border: 0;
    }

    .tab a {
        padding-top: 6px;
        padding-bottom: 6px;
        border-top-width: 2px;
    }

    .tab--active a {
        padding-right:  30px;
        padding-top:    7px;
        padding-bottom: 5px;
    }

    .tab a:before {
        font-size: 16px;
    }

    .mobile-tab-header a {
        display: block;
    }

    .tab-data {
        padding: 20px;
        border: 1px solid #9b9b9b;
    }

    .tab-data ul {
        margin-top: 0;
    }

    .cross-sell {
        margin: 0;
    }
}

@media (max-width: 600px) {

.product-overview p {
    font-size: 20px;
}

  .product-overview h1:before {
      display: none;
  }
}




/**
 * Testimonials
 */

.testimonial-block h3,
.testimonial-block p { margin: 0px; }

.testimonial-block p { margin-top:30px; }

.testimonial-block h3 {
    font-size: 27px;
    line-height: 28px;
    padding-right: 40px;
}

.testimonial-block h4 {
    text-transform: none;
    margin: 0;
    font-size: 22px;
    font-weight: 100;
}

.testimonial-block { order-bottom: 1px solid #9B9B9B; }

.testimonial-block:first-child { padding-top:0px; }

.testimonials-page .row {
    border-bottom: 1px solid #bcbcbc;
    padding: 45px 0;
    position: relative;
}

.testimonial-text:before {
    font-size: 70px;
    position: absolute;
    left: -70px;
}

a.read-more.external {
    position: absolute;
    bottom: 0;
    right: 0;
}

.read-more:after {
    font-size: 11px;
    margin-left: 5px;
}

@media (max-width: 767px) {
    .testimonial-text:before {
        display: none;
    }
}

.team-member h3,
.team-member h4 {
    margin: 0;
}

.team-text {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 20px;
}

.team-member {
    border-bottom: 1px solid #bcbcbc;
    padding-bottom: 20px;
}

.team-member img {
    padding-top: 20px;
}

.team-member h3 {
    font-size: 27px;
}

.team-member h4 {
    font-size: 22px;
    text-transform: none;
}

@media (max-width: 767px) {
    .team-member img {
        width: auto;
        margin: 0 auto;
    }

    .team-text {
      display: block;
      margin-top: 20px;
      text-align: center;
  }
}


/**
 * Blog
 */

.form-submit {
    overflow: hidden;
}

.blog-post {
    border-top: 1px solid #d7d7d7;
    padding-top: 40px;
    margin-top: 40px;
}

.blog-post:first-child {
    border-top:  0;
    padding-top: 0;
    margin-top:  0;
}

.blog-post h2 {
    margin-bottom: 0;
    margin-top:    0;
}

.blog-post p {
    margin-top: 0;
}

.post-date {
    font-size: 14px;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 10px;
    color: #cdcdcd;
}

.post-image {
    margin: 20px 0;
}

.stButton .stFb, .stButton .stTwbutton, .stButton .stMainServices {
    height: 24px !important;
}

.stButton .stBubble_count {
    height: 41px !important;
}

.comments-title,
.comment-reply-title {
    margin-bottom: 0;
}

.logged-in-as {
    margin-top: 0;
}

.comment-form .form-submit {
    margin-top: 10px;
}

.comment-form-comment {
    margin-bottom: 0;
}

.comments-area {
    padding-top:    0;
    padding-right:  20px;
    padding-bottom: 20px;
    padding-left:   20px;
    margin-top: 40px;
    border: 1px solid #d7d7d7;
}

.comment-list {
    padding-left: 0;
}

.comment-content p {
    margin-top: 0;
}

.comment-list li {
    list-style: none;
}

.comment-body {
    padding-top:    20px;
    padding-bottom: 20px;
    padding-left:   20px;
    padding-right:  20px;
    border-top:    1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
}

.widget_wysija {
    padding-top:    0;
    padding-bottom: 20px;
    padding-right:  20px;
    padding-left:   20px;
}

.widget_wysija_cont .widget_wysija {
    padding-top:    0;
    padding-right:  0;
    padding-left:   0;
    padding-bottom: 40px;
}

.page-numbers {
    display: inline-block;
    border: 1px solid #e9e9e9;
    padding-bottom: 5px;
    padding-top:    5px;
    padding-left:   8px;
    padding-right:  8px;
    line-height: 1;
}

.pagination {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e9e9e9;
}

.entry-categories {
    margin-left: 10px;
    border-left: 1px solid #e9e9e9;
    padding-left: 10px;
}

.entry-categories a {
    font-family: 'Asap';
}


/*------------------------------------*\
    Print Stylesheet
\*------------------------------------*/

@media print {
    *,
    [class*=" icon-"],
    [class^=icon-] {
        font-size: 14px!important
    }
    #player,
    .black--bg-trans,
    .breadcrumbs,
    .button,
    .feature__image,
    .footer-bottom,
    .footer-social,
    .header--search,
    .home-content1 .bg-image,
    .home-content2 .bg-image .page__header-nav,
    .home-slider,
    .main-menu-toggle,
    .menu--tools,
    .nav--primary,
    .nav--secondary,
    .overview-video,
    .page-footer,
    .page-sidebar,
    .page__footer,
    .page__footer .nav--links,
    .page__header,
    .page__header-nav img,
    .player,
    .player .controls-wrapper,
    .player .video-wrapper,
    .product-intro a,
    .product-overview .options,
    .product-overview h1:before,
    .product-overview>p,
    .product-thumbs,
    .sticky-promotion,
    .prod_quickdrawbox,
    .tabs,
    a:after,
    a:before,
    head {
        display: none!important
    }

    * {
        overflow: visible!important;
        color: #000!important;
        text-align: left!important;
        opacity: 1!important;
        background: #fff!important
    }

    .page-body,
    body {
        margin: 0!important
    }

    .home-content2 .text {
        margin-left: 0;
        padding-left: 40px!important
    }

    body.home {
        background: 0 0
    }

    img {
        max-width: 50%!important;
        height: auto!important
    }

    a:after,
    a:before {
        text-decoration: underline!important
    }

    .site__header {
        position: static!important
    }

    .page__footer .col-lg-offset-1 {
        margin-left: 0!important
    }

    h1 {
        font-size: 32px!important
    }

    h2 {
        font-size: 24px!important
    }

    h3,
    h4 {
        font-size: 18px!important
    }

    h5 {
        font-size: 16px!important
    }

    h6,
    input,
    label,
    li,
    p,
    select,
    textarea,
    ul {
        font-size: 14px!important
    }

    .visible-print {
        display: block!important
    }

    table.visible-print {
        display: table
    }

    tr.visible-print {
        display: table-row!important
    }

    td.visible-print,
    th.visible-print {
        display: table-cell!important
    }

    .visible-print-block {
        display: block!important
    }

    .visible-print-inline {
        display: inline!important
    }

    .visible-print-inline-block {
        display: inline-block!important
    }

    .hidden-print {
        display: none!important
    }

    .col-xs-10,
    .col-xs-11,
    .col-xs-12,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9 {
        width: 100%;
        float: none
    }

    .col-xs-1,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6 {
        width: 100%
    }

    .footer-logos {
        float: none;
        text-align: center;
        width: 50%;
        margin: 20px auto 0;
        overflow: hidden
    }

    .home-content1 .text {
        padding-left: 40px;
    }

    .home-testimonials {
        padding-top: 0;
        padding-bottom: 0
    }

    .design-cta,
    .lookbook-cta {
        width: 50%!important;
        float: left!important
    }

    .img-responsive {
        max-width: 100%!important;
        width: auto!important;
        height: auto
    }

    .tab-details .tab-data {
        display: block!important
    }

    .tab-data img {
        max-height: 174px!important
    }

    .tab-data .col-xs-1,
    .tab-data .col-xs-2,
    .tab-data .col-xs-3,
    .tab-data .col-xs-4,
    .tab-data .col-xs-5,
    .tab-data .col-xs-6 {
        width: inherit!important
    }

    .masthead {
        min-height: 110px
    }
    .product-image {
        width: 50%
    }

    .product-overview a {
        display: none;
    }

    .mobile-tab-header a {
        padding: 0;
    }

    .page-body .push--ends {
        padding: 0
    }

    .tab-data,
    .tab-details {
        border: 0!important;
        padding: 0!important;
    }

    .border--left.product-intro {
        border: 0
    }

    .page__header {
        position: static
    }

    .product-image img {
        max-width: 100%;
        border: 0
    }

    .product-overview {
        margin-top: 20px
    }

    .product-overview h1 {
        font-size: 34px!important
    }

    .tab--active a {
        display: none!important
    }

    .mobile-tab-header,
    .mobile-tab-header a {
        display: block!important
    }

    .mobile-tab-header a {
        font-size: 20px!important;
        border-bottom: 1px solid #000;
        margin-bottom: 20px
    }

    .footer-logos,
    .footer-top {
        display: none
    }

    .footer-logos .col-xxs-6 {
        width: 120px!important
    }

    .footer-logos .col-xxs-3 {
        width: 60px!important
    }

    .masthead.inner {
        border-bottom: 0;
    }

    .mobile-tab-header {
        border-left: 0;
    }

    .bottom-additional-info {
        display: none;
    }
}

.footer-social .fa-500px {
    color: #0099e5
}

.footer-social .fa-adn {
    color: #4A484C
}

.footer-social .fa-amazon {
    color: #f90
}

.footer-social .fa-android {
    color: #a4c639
}

.footer-social .fa-angellist {
    color: #000
}

.footer-social .fa-apple {
    color: #979797
}

.footer-social .fa-behance,
.footer-social .fa-behance-square {
    color: #1769ff
}

.footer-social .fa-bitbucket,
.footer-social .fa-bitbucket-square {
    color: #205081
}

.footer-social .fa-bitcoin {
    color: #ee9209
}

.footer-social .fa-black-tie {
    color: #222
}

.footer-social .fa-btc {
    color: #ee9209
}

.footer-social .fa-buysellads {
    color: #c90100
}

.footer-social .fa-cc-amex {
    color: #007bc1
}

.footer-social .fa-cc-diners-club {
    color: #004A97
}

.footer-social .fa-cc-discover {
    color: #f68121
}

.footer-social .fa-cc-jcb {
    color: #003A8F
}

.footer-social .fa-cc-mastercard {
    color: #0a3a82
}

.footer-social .fa-cc-paypal {
    color: #253b80
}

.footer-social .fa-cc-stripe {
    color: #00afe1
}

.footer-social .fa-cc-visa {
    color: #0157a2
}

.footer-social .fa-chrome {
    color: #4587F3
}

.footer-social .fa-codepen {
    color: #000
}

.footer-social .fa-connectdevelop {
    color: #391448
}

.footer-social .fa-contao {
    color: #eb8623
}

.footer-social .fa-creative-commons {
    color: #231f20
}

.footer-social .fa-css3 {
    color: #1680C0
}

.footer-social .fa-dashcube {
    color: #7f7f7f
}

.footer-social .fa-delicious {
    color: #39f
}

.footer-social .fa-deviantart {
    color: #4e6252
}

.footer-social .fa-digg {
    color: #000
}

.footer-social .fa-dribbble {
    color: #444
}

.footer-social .fa-dropbox {
    color: #007ee5
}

.footer-social .fa-drupal {
    color: #0077c0
}

.footer-social .fa-empire {
    color: #000
}

.footer-social .fa-expeditedssl {
    color: #343433
}

.footer-social .fa-facebook,
.footer-social .fa-facebook-official,
.footer-social .fa-facebook-square {
    color: #3b5998
}

.footer-social .fa-firefox {
    color: #e66000
}

.footer-social .fa-flickr {
    color: #ff0084
}

.footer-social .fa-fonticons {
    color: #1C1E29
}

.footer-social .fa-forumbee {
    color: #83ad13
}

.footer-social .fa-foursquare {
    color: #0072b1
}

.footer-social .fa-ge {
    color: #000
}

.footer-social .fa-get-pocket {
    color: #d3505a
}

.footer-social .fa-gg,
.footer-social .fa-gg-circle {
    color: #000
}

.footer-social .fa-git,
.footer-social .fa-git-square,
.footer-social .fa-github,
.footer-social .fa-github-alt,
.footer-social .fa-github-square {
    color: #333
}

.footer-social .fa-gittip {
    color: #630
}

.footer-social .fa-google {
    color: #4285f4
}

.footer-social .fa-google-plus,
.footer-social .fa-google-plus-square {
    color: #dd4b39
}

.footer-social .fa-google-wallet {
    color: #4285f4
}

.footer-social .fa-hacker-news {
    color: #f60
}

.footer-social .fa-houzz {
    color: #7ac142
}

.footer-social .fa-html5 {
    color: #e34f26
}

.footer-social .fa-instagram {
    color: #3f729b
}

.footer-social .fa-internet-explorer {
    color: #1EBBEE
}

.footer-social .fa-ioxhost {
    color: #faa729
}

.footer-social .fa-joomla {
    color: #142849
}

.footer-social .fa-jsfiddle {
    color: #4679BD
}

.footer-social .fa-lastfm,
.footer-social .fa-lastfm-square {
    color: #c3000d
}

.footer-social .fa-leanpub {
    color: #0c0c0c
}

.footer-social .fa-linkedin,
.footer-social .fa-linkedin-square {
    color: #0976b4
}

.footer-social .fa-linux {
    color: #333
}

.footer-social .fa-maxcdn {
    color: #F60
}

.footer-social .fa-meanpath {
    color: #538ed7
}

.footer-social .fa-medium {
    color: #000
}

.footer-social .fa-odnoklassniki,
.footer-social .fa-odnoklassniki-square {
    color: #ed812b
}

.footer-social .fa-opencart {
    color: #2AC2EF
}

.footer-social .fa-openid {
    color: #F78C40
}

.footer-social .fa-opera {
    color: #cc0f16
}

.footer-social .fa-optin-monster {
    color: #83c11f
}

.footer-social .fa-pagelines {
    color: #000
}

.footer-social .fa-paypal {
    color: #253b80
}

.footer-social .fa-pied-piper,
.footer-social .fa-pied-piper-alt,
.footer-social .fa-pied-piper-square {
    color: #2f9f46
}

.footer-social .fa-pinterest,
.footer-social .fa-pinterest-p,
.footer-social .fa-pinterest-square {
    color: #cc2127
}

.footer-social .fa-qq,
.footer-social .fa-ra,
.footer-social .fa-rebel {
    color: #000
}

.footer-social .fa-reddit,
.footer-social .fa-reddit-square {
    color: #ff4500
}

.footer-social .fa-renren {
    color: #005EAC
}

.footer-social .fa-safari {
    color: #1B88CA
}

.footer-social .fa-sellsy {
    color: #1f78b9
}

.footer-social .fa-share-alt,
.footer-social .fa-share-alt-square {
    color: #01bf01
}

.footer-social .fa-shirtsinbulk {
    color: #dd3a26
}

.footer-social .fa-simplybuilt {
    color: #000
}

.footer-social .fa-skyatlas {
    color: #00adbb
}

.footer-social .fa-skype {
    color: #00aff0
}

.footer-social .fa-slack {
    color: #0f7965
}

.footer-social .fa-slideshare {
    color: #e98325
}

.footer-social .fa-soundcloud {
    color: #f80
}

.footer-social .fa-spotify {
    color: #7ab800
}

.footer-social .fa-stack-exchange {
    color: #000
}

.footer-social .fa-stack-overflow {
    color: #fe7a15
}

.footer-social .fa-steam,
.footer-social .fa-steam-square {
    color: #0B0B0B
}

.footer-social .fa-stumbleupon,
.footer-social .fa-stumbleupon-circle {
    color: #eb4924
}

.footer-social .fa-tencent-weibo {
    color: #74AF2C
}

.footer-social .fa-trello {
    color: #256a92
}

.footer-social .fa-tripadvisor {
    color: #589442
}

.footer-social .fa-tumblr,
.footer-social .fa-tumblr-square {
    color: #35465c
}

.footer-social .fa-twitch {
    color: #6441a5
}

.footer-social .fa-twitter,
.footer-social .fa-twitter-square {
    color: #55acee
}

.footer-social .fa-viacoin {
    color: #333
}

.footer-social .fa-vimeo,
.footer-social .fa-vimeo-square {
    color: #1ab7ea
}

.footer-social .fa-vine {
    color: #00b488
}

.footer-social .fa-vk {
    color: #45668e
}

.footer-social .fa-wechat {
    color: #93d034
}

.footer-social .fa-weibo {
    color: #E71D34
}

.footer-social .fa-weixin {
    color: #93d034
}

.footer-social .fa-wikipedia-w {
    color: #000
}

.footer-social .fa-windows {
    color: #00bcf2
}

.footer-social .fa-wordpress {
    color: #21759b
}

.footer-social .fa-xing,
.footer-social .fa-xing-square {
    color: #026466
}

.footer-social .fa-y-combinator,
.footer-social .fa-yc {
    color: #F0652F
}

.footer-social .fa-yahoo {
    color: #400191
}

.footer-social .fa-yelp {
    color: #af0606
}

.footer-social .fa-youtube,
.footer-social .fa-youtube-play,
.footer-social .fa-youtube-square {
    color: #e52d27
}

/* Residential Products/Garage Doors page fixed styling for button images layout */
    .post-1427 .product-image:nth-child(7) {
      clear: left;
}