/**
 * 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.
 * .................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
 */

* { box-sizing: border-box; }

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


/**
 * Sticky Footer
 */

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

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

@media (min-width: 1025px) {

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

}

/**
 * Images
 *
 * These are only used by wordpress wyswyg when adding images to content
 */

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

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

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



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


@font-face {
    font-family: 'proxima_nova_rgbold';
    src: url('../fonts/proximanova-bold-webfont.eot');
    src: url('../fonts/proximanova-bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/proximanova-bold-webfont.woff2') format('woff2'),
         url('../fonts/proximanova-bold-webfont.woff') format('woff'),
         url('../fonts/proximanova-bold-webfont.ttf') format('truetype'),
         url('../fonts/proximanova-bold-webfont.svg#proxima_nova_rgbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_nova_rgregular';
    src: url('../fonts/proximanova-reg-webfont.eot');
    src: url('../fonts/proximanova-reg-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/proximanova-reg-webfont.woff2') format('woff2'),
         url('../fonts/proximanova-reg-webfont.woff') format('woff'),
         url('../fonts/proximanova-reg-webfont.ttf') format('truetype'),
         url('../fonts/proximanova-reg-webfont.svg#proxima_nova_rgregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'proxima_nova_ththin';
    src: url('../fonts/proximanova-thin-webfont.eot');
    src: url('../fonts/proximanova-thin-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/proximanova-thin-webfont.woff2') format('woff2'),
         url('../fonts/proximanova-thin-webfont.woff') format('woff'),
         url('../fonts/proximanova-thin-webfont.ttf') format('truetype'),
         url('../fonts/proximanova-thin-webfont.svg#proxima_nova_ththin') format('svg');
    font-weight: normal;
    font-style: normal;
}

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

h1, h2, h3 {
  font-family: 'proxima_nova_rgbold';
  font-weight: normal;
  letter-spacing:1px;
}

h1 {
  font-size: 50px;
  line-height: 1.2;
  margin-top: 1.2em;
  margin-bottom: 1.2em;
}

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

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

h4 {
  font-size: 20px;
  color: #505050;
  letter-spacing:1px;
}

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

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

/* 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: #26316a;
    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: 'proxima_nova_rgbold'; font-weight: normal; }


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: 'proxima_nova_rgregular';
}

.text--red   {color: #e21f26;}
.text--white {color: #fff;}
.text--black {color: #000;}
.text--gray  {color: #505050;}

.bg--gray              {background: #e9e9e9;}
.bg--medium-gray       {background: #1c1c1c;}
.bg--light-gray        {background: #fafafa;}
.bg--black             {background: #000;}
.bg--red               {background: #ffffff;}
.bg--pattern           {background: #eaeaea; border-bottom:solid 1px #ccc;}
.bg--pattern-crossword {background: #eaeaea; margin-top:150px; border-top:#cccccc solid 1px; border-bottom:#cccccc solid 1px;}


.bg--opaque-black      {background: rgba(0, 0, 0, .8);}
.border--gray          {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: 1360px;
}

    @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; }
  }

.container-small{
	max-width:1150px;
}

@media (max-width: 1024px) {
      
	.container-small.bottom{
		max-width:76%;
	}

}



/**
 * 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  { 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,
.home .product-family-block .product-text,
.product-icon,
.product-img:after,
.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,

.button-slider,
.button-slider:after,

input,
button,
select,
textarea,
.selectric
 {
    -webkit-transition: all 250ms ease-in-out;
       -moz-transition: all 250ms ease-in-out;
        -ms-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;
       -moz-transition: height 0ms ease-in-out, border 250ms ease-in-out;
        -ms-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: #e21f26; 
    font-family: 'proxima_nova_rgbold'; 
    text-decoration: none;
}

a:hover {
  color:#26316a;
}

.button {
  padding: 10px 22px;
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing:1px;
  border: 0;
  font-family: 'proxima_nova_rgbold';
  position: relative;
  text-decoration: none;
  display: inline-block;
  line-height: 20px;
}

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

.button--primary {
   background: #26316a;
}

/*

    .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: #192046;
      color: #fff;
    }

.button--secondary {
  background: #35BD78;
  font-size:16px;
  font-family: 'proxima_nova_rgbold';
}

    .button--secondary:hover {
        background: #48cc89;
        color: #fff;
    }

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

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

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

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

.button--fourth {
    padding: 5px 10px;
    font-family: 'proxima_nova_rgbold';
	font-size:15px;
	color:#585858;
}

	.button--fourth:after{
		content: "\e613";
		font-family: 'icomoon';
		font-size:14px;
		position:relative;
		top:1px;
	}

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

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

.button--header{
	background:#e21f26;
	color:#fff;
    font-family: 'proxima_nova_rgbold';
	padding: 4px 12px;
	letter-spacing: 1px;
	font-size:13px;
}

	.button--header:hover{
		background:#26316a;
		color:#fff;
	}



.button--red{
	border:#ee7b7f solid 1px; 
	color:#e21f26;
    font-family: 'proxima_nova_rgbold';
	padding: 4px 12px;
	letter-spacing: 1px;
	font-size:13px;
}

.button--blue{
	border:#a6aac2 solid 1px; 
	color:#fff;
    font-family: 'proxima_nova_rgbold';
	padding: 3px 12px 2px;
	letter-spacing: 1px;
	font-size:12px;
}

	.button--blue:hover{
		color:#fff;
		border:#7f89c5 solid 1px; 
	}

@media (max-width: 1024px) { 
 
}

/**
 * Icons
 */



@font-face {
  font-family: 'icomoon';
  src:url('../icons/icomoon.eot?4ut6zk');
  src:url('../icons/icomoon.eot?#4ut6zk#iefix') format('embedded-opentype'),
    url('../icons/icomoon.woff?4ut6zk') format('woff'),
    url('../icons/icomoon.ttf?4ut6zk') format('truetype'),
    url('../icons/icomoon.svg?4ut6zk#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,
.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 h2:before,
.sticky-button: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-repair:before {
  content: "\e901";
}
.icon-commercail-garage:before {
  content: "\e902";
}
.icon-garage-openers:before {
  content: "\e905";
}
.icon-installation:before {
  content: "\e906";
}
.icon-maintenance:before {
  content: "\e907";
}
.icon-residential-garage:before {
  content: "\e908";
}

.icon-left-quote:before {
   content: "\e900";
	color:#26316a;
	font-size:30px;
}
.icon-file-empty:before {
  content: "\e924";
}
.icon-location:before {
  content: "\e947";
}
.icon-mobile:before {
  content: "\e958";
}
.icon-facebook:before {
  content: "\ea90";
}
.icon-google-plus:before {
  content: "\f0d5";
  color:#dd4b39;
}
.icon-pinterest-p:before {
  content: "\f231";
  color:#cb2027;
}
.icon-clipboard-edit:before {
  content: "\e903";
}
.icon-pinterest2:before {
  content: "\e904";
}
.icon-clipboard-edit:before {
  content: "\e903";
}
.icon-pinterest2:before {
  content: "\e904";
}
.icon-chevron-thin-down:before {
  content: "\e611";
}
.icon-chevron-thin-left:before {
  content: "\e612";
}
.icon-chevron-thin-right:before {
  content: "\e613";
}
.icon-chevron-thin-up:before {
  content: "\e614";
}
.icon-check:before {
  content: "\e615";
}
.icon-exit:before {
  content: "\e619";
}
.icon-menu:before {
  content: "\e618";
}
.icon-bottom-right-border:before {
  content: "\e616";
}
.icon-top-left-border:before {
  content: "\e617";
}
.icon-facebook2:before {
  content: "\e605";
}
.icon-googleplus:before {
  content: "\e609";
}
.icon-youtube:before {
  content: "\e60a";
}
.icon-pinterest:before {
  content: "\e610";
}
.icon-awnings:before {
  content: "\e905";
  font-size: 49px;
}
.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: "\e902";
}
.icon-garage-doors:before {
  content: "\e908";
  font-size: 49px;
}
.icon-print:before {
  content: "\e60b";
}
.icon-right-arrow:before {
  content: "\e60c";
}
.icon-search:before {
  content: "\e60d";
}
.icon-service:before {
  content: "\e60e";
}
.icon-square-marker:before {
  content: "\e60f";
}


.icon-houzz:before {
  content: "\f27c";
  color:#7ac143;
}


/**
 * 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 {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ccc;
  font-family: 'proxima_nova_rgregular';
}

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

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




/**
 * Forms
 */


fieldset {
  border: none;
}

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

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

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

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;

   -webkit-border-radius: 0;
           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: #35B5BD;
}

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

textarea.products {
  height:100px;
}

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

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:0;
}

.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;
}

.header--search-box{
	margin-right: -14px;
}

	.header--search-box form{
		line-height:0;
	}

		.header--search-box input{
			height:auto;
			padding:4px 4px 3px;
			width:auto;
			position:relative;
			z0index:1;
		}

		.header--search-box button[type="submit"]{
			background: transparent;
			padding: 0;
			height: auto;
			color: #26316a;
			font-size: 15px;
			z-index: 9;
			position: relative;
			left: -20px;
			top: 6px;
		}

			
			.header--search-box button[type="submit"]:hover{
				color: #e21f26;
			}

/*======================================
  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;
  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;
    -webkit-border-radius: 4px;
       -moz-border-radius: 4px;
            border-radius: 4px;
}

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

.fancybox-opened .fancybox-skin {
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
       -moz-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);
    -webkit-border-radius: 15px;
       -moz-border-radius: 15px;
            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: 0; margin: 0; }

.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: #35B5BD;
}

.wpcf7-response-output {
}

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

input.wpcf7-not-valid {
  background-color: #fedee7 !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: 0;}
}



@media (max-width:600px) {

    input#city{
		margin-bottom:25px;
	}

}


/**
 * Page-head
 */

.page__header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 500;
	border-bottom:#26316a solid 2px;
}


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

.logo img { display: block; }

.page__header-cta-phone {
    margin-right: 15px;
    font-family: 'proxima_nova_rgbold';
    font-size: 16px;
    display: inline-block;
    padding-top: 3px;
}
    
    .page__header-cta-phone a       { color: white; text-decoration: none; }
    .page__header-cta-phone a:hover { color: white; text-decoration: none; }
    
    .page__header-cta-phone .icon-mobile {
        position: relative;
        top: 1px;

    }

.nav--primary .header-phone {
	padding:0;
	margin:0;
}

.nav--primary .header-phone a{
	color:#e21f26;
	font-family: 'proxima_nova_rgbold';
	font-size:14px;
	padding-right:0;
}

.nav--primary .menu-item-has-children:before{
	content: "\e611";
	display: block;
	position: relative;
	font-family: 'icomoon';
	float: right;
	font-size: 7px;
	top: 8px;
	color: #8d9dcf;
	left: -2px;
}

.nav--primary a:hover,
.nav--primary li:hover > a,
.nav--primary .menu-item-has-children:hover:before,
.current_page_ancestor a,
.current_page_ancestor:before,
.current-menu-parent a,
.current-menu-parent:before,
.current-menu-item > a,
.current-menu-item:before,
.current-menu-ancestor > a,
.current-menu-ancestor:before{
	color:#e21f26 !important;
}


   /**
     * Fix Sticky Header Position 
     * for when admin bar visible
     */
     
    
    .admin-bar .page__header {
        top: 33px;
    }

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


/**
 * Navigation
 */

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

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

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

    color: #636363;
    font-family: "proxima_nova_rgregular";

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

/*
.nav--primary a:after {
    position: absolute;
    content: "";
    display: block;
    
    background: #b30838;
    height: 1px;

    width: 75%;

    /*  
        This calc handles the border on the bottom's width.
        It should be the padding-left and padding-right of the "a" tag combined.
    */

    width: calc(100% - 28px);
    bottom: 15px;

    opacity: 0;
}
*/
.header--main-menu {
    padding-right: 0;
}

.page__header-ctas {
    padding-right: 0;
	width:100%;
}

.page__header-ctas a{
	margin-left:13px;
}

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

    .page__header-ctas {
		width: 100%;
    }
}

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



    .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;
    }

/*
.nav--primary:after {
    content: "\e618";
    font-family: 'icomoon';
    color: #58585a;
    display: none;
}
*/
.page__header-nav {
	padding:12px 0 0 0;
    background: #fff;
	
}

.header--search{float: right; display:none;}

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

 .site-search-popup {
      background: rgba(0, 0, 0, .9);
      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);
         -moz-transform: translateY(40px);
          -ms-transform: translateY(40px);
           -o-transform: translateY(40px);
              transform: translateY(40px);
    }

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

        -webkit-transform: translateY(0);
           -moz-transform: translateY(0);
            -ms-transform: translateY(0);
             -o-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;
      color: black;
      font-size: 45px;
      background: none;
      border: 0;
      padding: 0;
      
    }

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

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

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

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

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

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

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

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

@media (max-width: 1280px) {
	.nav--primary a {font-size:13px;}
}

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

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

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

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

.mobile-header-sub{
	display:none;
}


@media (max-width: 1100px) {
    .page__header-nav {
        background: white;
        height: 100px;
    }

    .nav--primary:after {
        display: block;
    }

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

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

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

    .nav--primary:after {
        display: block;
    }

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

    .logo {
        left: 0;
    }

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

    .nav--primary.active {
        display: block;
        background: #7e85a2;
        color: white;

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

	.sub-menu.toggled{
		background: #a1a7c5 !important;
	}

	.nav--primary.active a{
		text-transform:uppercase;
		font-size: 13px;
	}

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

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

    .logo {
        height: 100%;
        width: auto;
    }
	
	.header--search{
		display:block;
	}

	.header--search-box{
		display:none;
	}

    .site-search {
        color: #26316a;
        font-size: 42px;

        position: absolute;

        right: 80px;
        top: 17px;
    }
    
    .main-menu-toggle {
        display: block;
        font-size: 35px;
        float: right;

        position: absolute;
        right: 20px;
        top: 17px;
		color:#26316a;
        cursor: pointer;
    }

    .menu-text {
        font-family: 'proxima_nova_rgregular', arial;
        font-size: 12px;
        text-transform: uppercase;
        position: absolute;
        bottom: -1.3em;
        left: 4px;
        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;
        top: 0;
        right: 0;
        cursor: pointer;
        display: block;
        width: 40px;
        height: 40px;
        background: #4e536a;
        text-align: center;
        line-height: 40px;
        
    }

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

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

    .page__header-ctas {
        display: none;
    }

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

    .page__header {position: relative;}

	.home-slideshow{
		margin-top:-12px;
	}

	.mobile-header-sub{
		display:inline-block;
		height:36px;
		width:100%;
		background-color:#26316a;
		color:#fff;
		padding:0px 20px;
	}

		.mobile-header-sub--number{
			float:left;
			font-family: "proxima_nova_rgbold";
			font-size:14px;
			padding: 2px 0 0;
		}

		.mobile-header-sub--btn{
			float:right;
		}

}

@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;
    }
}

@media (max-width: 600px) {

		.mobile-header-sub{
			height:auto;
			padding: 12px 0 6px;
		}

		.mobile-header-sub--number,
		.mobile-header-sub--btn{
			width:100%;
			text-align:center;
		}

    .search-form input {
      height: 50px;
      padding: 0 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: 0;
    }

		.slider-cta {
			bottom: 10%;
		}

  }

@media (max-width: 360px) { 
    .page__header-ctas .button {
        font-size: 13px;
    }


    .site-search {
        right: 70px;
    }

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

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

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

  .search-close {
    position: absolute;
    top: 0;
    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: #fff;
    z-index: 300;

    min-width: 250px;

    max-height: 0;
    opacity: 0;
    overflow: hidden;
	border-bottom:#cccccc solid 1px;
	border-top:solid 2px #26316a ;
}




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

.sub-menu li {
    float: none;
    position: relative;
	border-left:#cccccc solid 1px;
	border-right:#cccccc solid 1px;
}


.nav--primary .sub-menu .sub-menu,
.nav--primary .sub-menu .sub-menu li{
	border:0;
	background-color:#fff2f2;	
}

.sub-menu li:before{
	display:none !important;
}

.sub-menu a {
    padding-top:    0;
    padding-bottom: 0;
    text-transform: none;
	font-family: "proxima_nova_rgbold";
    font-size: 14px;
}

.sub-menu .current_page_item > a {
    background: #e21f26;
}

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

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

.nav--primary .sub-menu li:hover > a,
.nav--primary .sub-menu .current-menu-ancestor > a,
.nav--primary .sub-menu .current-menu-parent > a,
.nav--primary .sub-menu .current-menu-item > a {
    background-color: #e21f26;
	color:#fff !important;
}

.sub-menu .sub-menu {
    left: 100%;
    top: 0;
}

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

.sub-menu .sub-menu.toggled li {
	background:#b30838;
}

.nav--primary .sub-menu li:hover .sub-menu { 
	max-height: 9999px;
	opacity: 1;
}	

@media (max-width: 1060px) {
	
	.nav--primary .sub-menu li:hover .sub-menu {
        opacity: 0;
        max-height: 0;
	}

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

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

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

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

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

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

	.nav--primary .header-phone {
		display: none;
	}
}


/**
 * Masthead
 */

.masthead {
  min-height: 171px;
  position: relative;
  z-index: 100;
}

.masthead.inner {
  min-height: 171px;
  position: relative;
  background-color: #4e536a;
  z-index: 100;
  border-bottom:#cccccc solid 1px;
  margin-top: 90px;
  text-align:center;
}

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

.masthead-title {
  position: absolute;
  bottom: 19px;
  color: #fff;
}

.masthead-title h1 {
  margin-top: 14px;
  margin-bottom: 5px;
}

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

@media (max-width: 1100px) {


	.masthead { min-height: 326px; }

	.masthead.inner{
		margin-top:-12px;
		min-height:112px;
	}

	.masthead.inner p{
		margin:0;
	}

    .masthead-title h1 {
        margin-top: 0;
        margin-bottom: 0;
        line-height: 25px;
        font-size: 28px;
    }
}

@media (max-width: 1024px) {
    .masthead { min-height: 326px; }
}


@media (max-width: 599px) {
  .masthead {
    min-height: 190px;
  }

  .masthead-title h1 {
    line-height: 1.5;
    font-size: 22px;
    padding: 7px 0;
  }
	
	.breadcrumbs{
		display:none;
	}

	.masthead.inner {
		min-height: 85px;
	}
	
}


/**
 * Breadcrumbs
 */

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

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

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

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

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

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

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

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



/**
 * Page-footer
 */


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

.footer-top{
	text-align:center;
    font-size: 14px;
    color: #000000;
}

  .page__footer li a {
    color: #000000;
    text-transform: capitalize;
    font-size: 14px;
	font-family: "proxima_nova_rgregular",arial;
  }

  .page__footer li {
	margin:0 14px;
    margin-bottom: 10px;
	display:inline-block;
  }

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

.footer-contact {
    color: #fff; 
    margin-top: 30px;
    font-size: 14px;
 }

.footer-contact span {
  margin-bottom: 10px;
  line-height: 26px;
  clear: both;
}

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

.footer-top span:before {color: #e21f26;  padding-right: 5px;}

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

.footer-top { padding: 50px 0 20px; }

.footer-address { float: left; }
.footer-hours   { float: right; }

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

.button-footer { clear:both; float:right; margin-bottom:20px; width: 80%; text-align: center; }
.footer-logos  { float: right; overflow: hidden; }

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

.footer-contact:before {
  left: 0;
  position: absolute;
  font-size: 143px;

  z-index: 100;
}

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

  z-index: 100;
}

.footer-address,
.footer-hours {
    width: 50%;
    z-index: 300;
    position: relative;
}

.footer-bottom li {float:left; margin:0;}

.footer-bottom a {
    text-transform: none;
    color: #616161;
    font-family: 'proxima_nova_rgregular';
    font-size:12px;
 }

 .footer-bottom li:before {
    content: '|';
    padding: 0 13px; 
    display:inline-block;
    position:relative;
	font-size: 14px;
	top: 0px;
    color:#000;
 }

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

.footer-social {padding-top: 12px; text-align: right;}

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

.footer-social a {padding-right: 10px;}

.footer-social a:hover span:before {
  opacity:0.6;
}

.space-bar:before{
		content: "|";
		color: #000 !important;
		margin: 0 5px 0 30px;
		font-size: 19px;
		top: 1px;
		position: relative;
}

.footer-copyright {
  margin-top: 15px;
}

.footer-copyright p {
  margin-top: 5px;
  font-size: 13px;
  line-height:10px;
  float:left;
  color:#000000;
}

.footer-copyright li a{
  font-size: 13px;
}

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

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



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

  .page__footer img {
	margin:0 7px;
  }

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

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

  .footer-hours {
    float: left;
  }

  .button-footer {
    float: left;
  }

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

  }

  .footer-address h3 {
    margin-top: 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: 0;
  }

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

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

  .footer-copyright {float: none; margin-top: 20px;}

	.footer-copyright p,
	.footer-copyright nav{
		float: left; 
		width:100%;
	}

	.footer-copyright p{
		margin-bottom:5px;
	}

		.footer-bottom li:first-child:before {
			padding: 0;
			content:'';
		}

	.space-bar:before{
		content: "";
		display:block;
		color: #000 !important;
		margin: 0 5px 0 30px;
		font-size: 19px;
		top: 1px;
		position: relative;
		width:100%;
		height:4px;
}

  .footer-address h3 {
    margin-top: 19px;
  }
	.page__footer img {
		max-width: 20%;
	}

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

	.page__footer .nav--links {
		position: relative;
		z-index: 999;
	}

}


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


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


/**
 * Images
 */

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

.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; }


/**
 * 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: 1024px) {
    .hidden-sm { display: none !important; }
}

@media (min-width: 1025px) 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; }

.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
 */

..home-slideshow{}

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

    display: block;

    -moz-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);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-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;
	position:relative;
}

.home-slideshow .slick-slide:after{
	position:absolute;
	width:100%;
	height:100%;
	content:'';
	display:block;
	background-color:rgba(0,0,0, .40);
	top:0;
	left:0;
	z-index:5;
}

.thumbnail.slick-slide:after{display:none;}

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

.slick-slide img {
    display: block;
}

.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;
}

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

.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: inherit;
  z-index: 300;
}

.slick-prev:before,
.slick-next:before {
    display: block;
    color: white;
    font-size: 42px;
    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; }

.slick-dots{
	bottom: 0;
	left: 0;
    position: relative;
	top: -60px;
	width: 100%;
	max-width: 1360px;
	padding: 0 25px;
	margin: 0 auto;
}

.home-slider .container{
	width: 100%;
	max-width: 1360px;
	padding: 0 25px;
}

	.slick-dots li{
		display:inline-block;
		list-style:none;
		padding:0 10px 0 0;
	}

		.slick-dots li:before{content:'';}

		.slick-dots button{
			width:18px;
			height:18px;
			background:none;
			border:#fff solid 2px;
			font-size:0;
		}

		.slick-active button{
			background-color:#26316a;
			border:#26316a solid 2px;
		}		

		.home-testimonial .slick-dots {
			top: -40px;
		}

		.home-testimonial .slick-dots button{
			width:9px;
			height:12px;
			border-radius:50%;
			background:#26316a;
			border:0;
			font-size:0;

		}

		

		.home-testimonial .slick-active button{
			background-color:#e21f26;
			border:0;
		}


.slider-cta {
    position: absolute;
    bottom: 180px;
	z-index: 9;
}

.cta-black-box {
    padding: 20px 0; 
    color: white;
    position: relative;
}
/*
.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: -7px;
}

.cta-black-box:after {
    width: 53%;
    height: 3px;
    bottom: -7px;
    left: -7px;
}
*/
.cta-black-box span,
.cta-black-box strong {
    display: block;
}

.cta-black-box h1   { 
  font-size: 92px;
  margin: 0 0 30px; 
  font-family: 'proxima_nova_rgregular';
  font-weight:normal;
}

.cta-black-box p { 
  font-size: 92px;
  font-family: 'proxima_nova_rgbold';
  margin: 0 0 50px;
}

.slider-button.button {
  background-color: #26316a;
  font-family: 'proxima_nova_rgbold';
  position: absolute;
  font-size: 14px;
  z-index: 100;
  padding: 15px 0;
  width:342px;
  text-align:center;
  border-bottom:#192046 solid 3px;
}
/*
    .slider-button:after {
      content: "\e60c";
      font-size: 12px;
      font-family: 'icomoon';
      padding-left: 10px;
    }
*/
    .slider-button:hover {
      background-color: #192046;
      color: #fff;
    }

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

.sticky-promotion {  
  position: fixed;
  left: 0;
  left: 0;
  bottom: 0%;
  z-index:300;
  width:100%;
  background:#e21f26;
  text-align:center;
  padding:5px 0;
}

.sticky-promotion .sticky-button {
	font-size:20px;
    font-family: 'proxima_nova_rgbold', arial;
	letter-spacing:1px;
}

.sticky-button:after {
	content: "\e613";
	font-family: 'icomoon';
	font-size: 13px;
	padding-left: 3px;
	color:#fff;
}

.sticky-promotion .sticky-slide {
    float: left;
}

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

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

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

.promotion-text .button {
  font-size: 14px;
}

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

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

.home-content1,
.home-content2 {
    background-repeat: no-repeat;
    background-size: 50% ;
}

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

.home-content1 .text h3,
.home-content2 .text h3 {
  font-size: 40px;
}

.home-content1 .text h3 span,
.home-content2 .text h3 span{
  font-family: 'proxima_nova_rgregular', arial;
  display:block;
}

.home-content1 .bg-image { position:absolute; background-position: left top;  height:854px; width:100%; top:-44px; z-index:9;}
.home-content2 { background-color: white; position:relative; }
.home-content2 .bg-image { position:absolute; background-position: right top;  height:875px; width:100%; top:-44px; z-index:9;}

.bg-image {
    min-height: 450px;
    background-size: cover;
}

.mobile-only {
    display: none;
}

@media (max-width: 1200px) {
	.cta-black-box h1,
	.cta-black-box p{
		font-size: 80px;
	}
}
@media (min-width: 1024px) {
  .home-slider { height: 775px; }
}


@media (max-width: 1024px) {

	.sticky-promotion{display:none;}

	.home-slider {
		height: 458px;
	}

	.cta-black-box h1,
	.cta-black-box p{
		font-size: 52px;
		margin:0 0 8px;
	}

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

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

    .slider-cta {
        bottom: 45%;
    }

	.slick-dots {
	}

	.slider-button.button {
	  font-family: 'proxima_nova_rgbold';
	  font-size: 16px;
	  width:233px;
	  margin-top:20px;
	}

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

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

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

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

@media (max-width: 768px) {

    .slider-cta {
      bottom: 30%;
    }

	.cta-black-box h1,
	.cta-black-box p{
		font-size: 52px;
		margin:0;
	}

	.slick-dots{
		display:none;
		max-width: 1326px;
	}

    .cta-black-box { padding-bottom: 0; }

    .slider-button.button {
      position: relative;
      display: block;
      bottom: 0;
      margin: 20px -40px 0 0;
    }

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


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

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

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

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

    .sticky-promotion .sticky-button { width: 100%;   padding: 17px 0; }
    
    .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;
    }
}


@media (max-width: 640px) {

		

		.home-testimonial.slick-dots {
			top: 0;
		}
	
	.home-slider {
		height:320px;
	}

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

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

	

	.slider-button.button {
		padding: 8px 0;
	}

	

	.cta-black-box h1,
	.cta-black-box p{
		font-size: 22px;
	}

}

@media (max-width: 500px) {
    .home-content1 {
        margin-top: 20px;
    }

	
}

/**
 * Services Section
 */
.services-section {
    padding: 43px 0;
    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: 'proxima_nova_rgregular';
    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: 0;
    font-size: 32px;
}

.home-content1 .text {
    padding: 40px 50px;
	height:766px;
	color: #000;
}

.home-content1 .text h3 {
	color: #000;
}

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

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

.home-content2 .text {
    padding: 120px 50px;
	height: 835px;
}

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

body.home {
    background: #fff;
}

.home-testimonials {
  padding: 100px 20px;

}

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

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

.testimonial-name {  
  text-align:center;
  color: #636363;
  font-weight:700;
  font-size:14px;
  border-bottom: #ccc solid 1px;
  padding-bottom:40px;
}

.home-testimonials .button {
  font-size: 15px;
  color: #e21f26;

  padding-top:    0;
  padding-bottom: 0;
  padding:  0;
  margin-left:   20px;
  font-weight:700;
  letter-spacing:1px;
  border-bottom:solid 1px #e21f26;
}

.home-testimonials h2 {
  color: #636363; 
  font-size: 33px; 
  margin: 0; 
  line-height: 28px;
  font-family: 'proxima_nova_rgregular', arial;
  border-bottom:#d2d2d2 solid 1px;
  padding-bottom:25px;
}

.home-testimonials p {
    text-align: center;
	color: #636363;
	font-size: 15px;
	margin-top: 20px;
	line-height: 28px;
}


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

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

@media (max-width: 1024px) {

	.bg--pattern-crossword {
		margin-top: 30px;
	}

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

	.home-content2 .text {
		padding: 30px 0;
		height: auto;
	}
	
	
	.home-content1 .text h3,
	.home-content2 .text h3 {
	  font-size: 35px;
	  margin-top:0;
	}

   .services-block {
      font-size: 16px;
   }

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

	

	.home-testimonials h2 {
		font-size: 27px;
	}
}

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

@media (max-width: 768px) {

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

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

  body.home {background: none;}

  .home-testimonials {background: #fff; padding:40px 0;}

	
	.home-content1 .text h3,
	.home-content2 .text h3 {
	  font-size: 30px;
	  margin-top:0;
	}

}

@media (max-width: 600px) {
	

  .container-small.bottom {
    max-width: 100%;
  }

   .services-block {
      font-size: 21px;
      line-height: 24px;
      margin-top: 20px;
   }

   .service-text {
      padding: 15px;
   }

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

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

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

	.home-testimonials a {
		display:none;
	}

}

/* Homepage ReviewAccelerationFX */
.home-testimonials h2:has(+ .home-rafx) {
	border-bottom: none;
}

.home-rafx .slick-track {
  display: flex;
}

.home-rafx .slick-track::before,
.home-rafx .slick-track::after {
  display: none;
}

.home-rafx .mcfx-review {
	display: flex !important;
	flex-direction: column;
	align-items: center;
	align-self: stretch;
	background-color: #f7f7f7;
  margin-left: 8px;
  margin-right: 8px;
  padding: 20px 30px;
	height: auto !important;
	float: none !important;
  border: none;
  overflow: visible;
}

.home-rafx div[itemprop="reviewRating"] {
	order: 1;
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
}

.home-rafx .mcfx-review-stars {
	line-height: 1;
}

.home-rafx .mcfx-review-number-rating {
	line-height: 1;
	padding: 0;
	margin-top: 5px;
}

.home-rafx .mcfx-review-description {
	order: 2;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 86px;
}

.home-rafx .mcfx-review-author {
	order: 3;
	margin-top: 20px;
	position: absolute;
  bottom: 63px;
}

.home-rafx .mcfx-review-date {
	order: 4;
	padding: 0;
	position: absolute;
  bottom: 30px;
}

.home-rafx .slick-dots {
  top: unset;
  margin-top: 20px;
}

.home-rafx .slick-dots button {
	border-color: #e6e6e6;
}

.home-rafx .slick-dots li.slick-active button {
	border-color: #26316a;
}

/**
 * Lookbook/Design Section
 */

 .imagine-lookbook-section {
  padding: 0 0;
  background: #fff
 }

.lookbook-cta,
.design-cta {
  position: relative;
  text-align:center;
}

.lookbook-text {
  position: absolute;
  right: 37px;
  padding-right: 20px;
  width: 44%;
}

.design-text {
  width: 70%;
}

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

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

.lookbook-cta .button,
.design-cta .button,
.lookbook-text p,
.design-text p {position:relative; top:-27px;}

@media (max-width: 1024px) { 

  .imagine-lookbook-section .button {
      font-size: 16px;
    }

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

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

	.lookbook-cta .button, .design-cta .button, .lookbook-text p, .design-text p {
		top: 0;
		margin: 20px 0 0;
	}

	.design-cta{
		margin-top:50px;
	}

}

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


/**
 * Main Sidebar
 */

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

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

.main-sidebar li a {
    font-size: 19px;
    text-transform: uppercase;
    color: #505050;
    padding: 25px 0;
    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: #B30838;
    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: 0;
}

.sidebar-testimonial {
    padding: 15px 33px;
    border-top: 1px solid #505050;
    border-bottom: 2px solid #e9e9e9;
    border-left: 1px solid #e9e9e9;
    border-right: 1px solid #e9e9e9;
}

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

.sidebar-imagination-cta span,
.sidebar-lookbook-cta span {
    background-color: #26316a;
    color:#fff;
    text-align: center;
    text-transform: uppercase;
    font-size: 16px;
    font-family: 'proxima_nova_rgregular', arial;
    padding: 10px 20px;
	position: relative;
    top: -23px;
}

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

.sidebar-imagination-cta span:hover,
.sidebar-lookbook-cta span:hover {
    background-color:#3d4c99;
}

.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{
	padding-top:76px;
}

.main-content{
	border-right:#c3c3c3 solid 1px;
	margin:30px 0;
}

.main-sidebar .search-form input[type="search"] {
    font-size: 16px;

    -moz-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;
	padding-left: 19px;
}

.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: 5px;}
    .sidebar-lookbook-cta {margin-left: 5px;}
  }

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

	.main-sidebar {
		padding-top: 0;
	}
	.main-sidebar .col-xxs-12{ padding:0;}
  }

/**
 * Contact Sidebar
 */

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

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

.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: #e21f26;
    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: 0; margin-bottom:10px;}

@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: 0;
}

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

.video-thumb figcaption{
	height:50px;
}

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

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


/**
 * Product Family Page
 */

.product-family-block {
    padding-top:    64px;
    padding-bottom: 50px;
}

.product-family-block .product-image {
  padding-bottom: 40px;
  position:relative;
}

  .product-family-block .product-image img {position: relative;}

.product-family-block .product-image a img.img-hover-on { display: none !important }
.product-family-block .product-image a img.img-hover-off { /* No effect */ }
.product-family-block .product-image a:hover img.img-hover-on { display: inherit !important;}
.product-family-block .product-image a:hover img.img-hover-off { display: none !important }

.product-family-block .product-text {
  bottom: 0;
  z-index: 200;
  width: 100%;
  text-align: center;
  height:80px;
  background-color:#fff;
  color:#636363;

}

.clopay_collection .product-family-block a:hover .product-img,
.clopay_collection .product-family-block a:hover .product-img img {
  height: 100%;
  object-fit: cover;
}

.product-family-block {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}

.product-family-block a {
  height: 100%;
}

.clopay_collection .product-family-block a:hover .product-text {
  position: absolute;
}

.product-family-block .product-text .title{
  display: table;
  width:100%;
}

.product-family-block .product-text h3{
  display:table-cell;
  height:80px;
  vertical-align: middle;	
  text-align:center;
  width:100%;
  font-size:22px;
  font-family: 'proxima_nova_rgregular', arial;
}

.product-img{
	position:relative;
   text-align:center;
}

.product-icon {   
  	background:#fff;
	border: 1px solid #ccc;
    border-radius: 50%;
    bottom: -28px;
    color: #404a7c;
    display: inline-block;
    font-size: 35px;
    height: 67px;
    opacity: 1;
    padding: 13px 0 0;
    position: absolute;
    left: 43%;
    text-align: center;
    width: 67px;
    z-index:99;
}

.btn-view{
	display:none;
	font-size:25px;
	color:#e21f26;
	font-family: 'proxima_nova_rgbold';
}

.btn-view:after{
	font-family: 'icomoon';
	content: "\e613";
	font-size:12px;
	margin-left:5px;
}

.product-text h3 {margin-top: 11px; padding: 0 10px; margin-bottom: 0; font-size:16px;}


  .product-text h3:after {content:'';}
  .product-text h5 { margin: 6px 0 0; font-size: 15px; font-weight: normal; font-family: 'proxima_nova_rgregular', arial; line-height: 26px;}
  .product-text p {  margin: 0; padding: 0;  line-height: 19px;   font-family: 'proxima_nova_rgregular';   color: #fff; display:none;}

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

.table-row{
	display:table;
	width:100%;
	height:100%;
}
.table-cell{
	display:table-cell;
	width:100%;
	height:100%;
	vertical-align:middle;
}

 /* .product-family-block a:after {
    height: 40%;
    width: 100%;
    content: '';
    bottom: 0;
    position: absolute;
    /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC42NSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background-image: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.95) 100%); /* FF3.6+ */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.95))); /* Chrome,Safari4+ */
    background-image: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.95) 100%); /* Chrome10+,Safari5.1+ */
    background-image: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.95) 100%); /* Opera 11.10+ */
    background-image: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.95) 100%); /* IE10+ */
    background-image: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.95) 100%); /* W3C */
  }

  .product-family-block a:hover:after {
     /* IE9 SVG, needs conditional override of 'filter' to 'none' */
    background-color: rgba(0, 0, 0, .5);
    height: 100%;
  }

.product-family-block a:hover .product-img:after {z-index:5;content:''; background-color:rgba(0,0,0, .74); width:100%; height:100%; display:block; position:absolute; top:0; left:0;}
.clopay_collection .product-family-block a:hover .product-text {height:92%; width:94%; display:block; bottom: 4%; left:3%;border:#fff solid 1px; background:transparent;}
.clopay_collection .product-family-block a:hover .product-text h3{ font-size:33px; color:#fff; text-shadow: 2px 2px #000;}
.product-family-block a:hover .product-icon {background-color:#26316a; color:#fff;}

.product-family-block a:hover .btn-view {display:block;}

/*

.home .product-family-block a:hover .product-text { top:0; color:#26316a;}
.home .product-text h3 { padding: 0 0; }
.home .product-text { padding: 10px 30px; }
.home .product-text h5 { margin: 2px 0 0; font-size: 15px; font-weight: normal; font-family: 'proxima_nova_rgregular', arial; }


.home .product-family-block .product-text { top:0; padding:40px 50px 0 ;text-align: center; }

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

.home .product-family-block .product-text {
  bottom: 0;
  z-index: 200;
  width: 100%;
  text-align: center;
  padding: 40px 40px 0;
  height:192px;
  background-color:#fff;
  position:relative;
  color:#636363;
  z-index:1;
}
.home .product-family-block a:hover .product-text,
.home .product-family-block a:hover .product-text h3{ color:#26316a;}

.home .product-family-block .product-text h3{
	display:inline-block;
	height:auto;
	font-size: 16px;
	font-family: 'proxima_nova_rgbold';
}

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

.product-family-content:before {
  position: absolute;
  font-size: 243px;
  color: #feeef3;
  top: 31px;
}

@media (max-width: 1024px) {

	.home .product-family-block .product-image {
		min-height: 360px;
		padding-bottom: 10px;
	}

	

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

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

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

@media (max-width: 820px) {

	.home .product-family-block .product-image {
		min-height: 380px;
	}

}

@media (max-width: 768px) {
  .product-family-content:before {
    content:'';
  }  

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

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

@media (max-width: 500px) {

	.product-icon{
		left:40%;
	}

	.home .product-family-block .product-image {
		min-height: auto;
		padding-bottom: 40px;
	}

	.home .product-family-block .product-text {
		padding: 40px 40px 40px;
		height: auto;
	}

}

/**
 * Product Page Thumbnails
 */

.product-thumbs {
  margin-top: 5px;
  background-color: #4e536a;
  padding: 13px 0;
  position: relative;
}

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

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



.product-thumbs .slick-prev:before,
.product-thumbs .slick-next:before {
    font-size: 28px;
    text-shadow: none;

    position: absolute;
    right: 10px;
}

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

.thumbnail a {
    display: block;
}

.thumbnail img {
    width: 100%;
    height: auto;
	border:#fff solid 1px;
}

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

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


/**
 * Product Page Tab styles
 */


.design-option {
  float: left;
  margin-bottom: 50px;
  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;}

    .error-links-list li:before  {content: ''; display: none;}

    .error-links-list li:after {
      content: '|';
      position: relative;
      padding: 10px;
    }

    .error-links-list li:last-child:after {
      content: '';
      display: none;
    }

       .error-links-list li a {
          color: #505050;
          text-transform: uppercase;
          font-size: 16px;
       }

.error-404 p {margin: 5px 0;}

@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: 0;
  } 

  .error-links-list li a {
    padding: 20px 10px;
    display: block;
  }

  .error-links-list {
    padding: 0;
  }

  .error-links-list li:after {
    content: '';
    display: none;
  }
}

/**
 * Search Results
 */

 .search-result-block p {
  margin:0px;
  padding: 0;
 }

 .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: 75px; 
  line-height:25px;}

 .product-overview .button{
	margin:20px 0;
	padding-left:50px;
	padding-right:50px;
	font-family: 'proxima_nova_rgregular';
}

 .product-overview h2 {
  margin-top: 0;
  line-height: 1;
  margin-bottom: 0;
  font-size: 50px;
  position: relative;
}

.product-overview h2:before {
    color: #fbf2f5;
    font-size: 240px;
    position: absolute;
    z-index: 100;
    left: -50px;
    top: -50px;
} 

.product-overview h2 span {
    position: relative;
    z-index: 200;
}

.product-overview p {
  color:#000;
  font-size: 25px;
  margin-top: 10px;
  position: relative;
  z-index: 200;
  line-height: 34px;
}

.categ-desc{
	color:#000;
	font-size:18px;
	padding-top:40px;
}

.by-clopay{
	font-size:15px !important;
	font-family: 'proxima_nova_rgbold';
	line-height: 31px;
	color:#474749;
}

.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-tabs {
}

.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 #b30838;
    border-bottom: 5px  solid #b30838;
    border-left:   3px  solid #b30838;
    border-right:  3px  solid #b30838;

    padding-right: 40px;

    background: #b30838;
}

.tab:hover a {
    background: #b30838;
}

.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: #e3e3e3;
    color: #575757;
    font-size: 22px;
    margin: 15px 0 0;
    display: block;
    border-left:#4e536a solid 18px;
}


.mobile-tab-header a {
    color: #575757;
    display: none;
    padding: 16px 15px;
    cursor: pointer;
    position: relative;
}
	.mobile-tab-header a:after{
		content: "\e611";
		width:62px;
		font-family: 'icomoon';
		background-color:#707380;
		color:white;
		position:absolute;
		right:0;
		top:0;
		padding:16px 0;
		text-align:center;
	}

.mobile-tab-header:hover a, 
.mobile-tab-header.active a {
    background-color: #4e536a;
	color:white;
}

.mobile-tab-header.active a:after{
    background-color: #414558;
	content: "\e614";
}

.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 h2 {
        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) {

	.mobile-tab-header a {
		padding: 10px 15px;
		font-size: 20px;
	}
		.mobile-tab-header a:after{
			padding:10px 0;
			font-size: 16px;
			width: 50px;
		}


    .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 h2 {
        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;
    } 
}
.tab {
	float: none;
	display: none;
	margin-top: 0;
}


.tab-data {
	padding: 20px;
	border: 1px solid #9b9b9b;
}

@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;
    }
}
 .mobile-tab-header a {
        display: block;
    } 
@media (max-width: 600px) {

.product-overview p {
  font-size: 20px;
}

  .product-overview h2:before {
    display: none;
  }
}




/**
 * Testimonials
 */

.testimonial-block h3,
.testimonial-block p {margin: 0;}

.testimonial-block p {margin-top:30px;}


.testimonial-block {border-bottom: 1px solid #9B9B9B; padding: 40px 0 20px; margin-bottom:20px;}

.testimonial-block:first-child {padding-top:0px;}



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

.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: 'proxima_nova_rgregular';
}


.bottom-additional-info{
	width:100%;
	background-color:#e3e3e3;
	border-top:#cccccc solid 1px;
	border-bottom:#cccccc solid 1px;
	padding:40px 0;
	text-align:center;
}

	.bottom-additional-info h4{
		color:#000;
		margin:0 0 20px;
		font-family: 'proxima_nova_rgbold', arial;
		font-weight:normal;
	}

	.bottom-additional-info a{
		margin:8px;
	}

.category-content{
	background-color: #eaeaea;
	border-top: #cccccc solid 1px;
	border-bottom: #cccccc solid 1px;
	background-position:right;
	background-repeat:no-repeat;
	background-size:40% 100%;
	padding:30px 0;
	
}

.testimonial-content{
	background-color: #4e536a;
	border-top: #cccccc solid 1px;
	border-bottom: #cccccc solid 1px;
	background-position:left;
	color:#fff;
}



.testemonial-bottom-image{
	height:412px;
	background-image:url('../img/testemonial.jpg'); 
	background-repeat:no-repeat;
	background-size:90% auto;
}	


.testimonial-content h3{
	font-size:25px;
	border-bottom:#8f92a1 solid 1px;
	color:#fff;
	padding-bottom:10px;
}

.testimonial-content p,
.testimonial-content h5{
	color:#fff;
	font-size:20px;
}

.testimonial-content h5{
	letter-spacing:1px;
}

.product-family-content h3{
	color:#000;
}

#wp-realtime-sitemap-menu .sub-menu{
	padding:0;
}

#wp-realtime-sitemap-menu .sub-menu li{
	border:0;
}

.support-docs li,
.design-items li,
.window-list li,
.color-list li,
.tile{
	float:left;
	width:25%;
	text-align:center;
	margin-bottom:20px;
	padding: 0 20px;
}

.tile h3{font-size: 15px;}

.support-docs li:before,
.design-items li:before,
.color-list li:before,
.window-list li:before{
	content:'';
}

@media (max-width: 1024px) {
	.category-content{background: #eaeaea !important;}
	.testimonial-content{background: #4e536a !important;}

	
	.support-docs li,
	.design-items li,
	.window-list li,
	.color-list li,
	.tile{
		width:50%;
	}
}

@media (max-width: 400px) {
	.support-docs li,
	.design-items li,
	.window-list li,
	.color-list li,
	.tile{
		width:100%;
	}
}

/*------------------------------------*\
    Print Stylesheet
\*------------------------------------*/


@media print {
    * {
        overflow: visible !important;
        color: black !important;
        text-align: left !important;
        font-size: 14px !important;
        opacity: 1 !important;
        background: white !important;
    }

  .page-body, body { margin: 0 !important; }

    .home-content2 .bg-image
  .page__header-nav,
  .page__header-nav img,
  .main-menu-toggle,
  .black--bg-trans,
  .page__header,
  .product-overview .options,
  .page__footer,
  .breadcrumbs,
  .home-content1 .bg-image,
  .sticky-promotion,
  head,
  .home-slider,
  .menu--tools,
    .nav--secondary,
    .header--search,
    .nav--primary,
    .page-sidebar,
    .feature__image,
    .page-footer,
  .page__footer .nav--links,
  .footer-social,
  .button,
  .footer-bottom,
  .product-thumbs,
  .product-overview h2:before,
  .tabs,
  .product-overview > p,
  .product-intro a,
  #player,
  .player,
  .player .controls-wrapper, 
  .player .video-wrapper,
  .overview-video {
        display: none !important;
    }

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

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

    body.home {
        background: none;
    }

    [class^="icon-"], [class*=" icon-"] {
        font-size: 14px !important;
    }

    img {
        max-width: 50% !important;
        height: auto !important;
    }

    a:after,
    a:before {
        display: none !important;
        text-decoration: underline !important;
    }

    .visible-print {
        display: block !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 { font-size: 18px !important; }
    h4 { font-size: 18px !important; }
    h5 { font-size: 16px !important; }
    h6 { font-size: 14px !important; }

    p,
    ul,
    li,
    label,
    input,
    select,
    textarea  { font-size: 14px !important; }

    .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; }


    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12 {
        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;
        padding-right: 40px;
    }

    .home-testimonials {
        padding-top: 0;
        padding-bottom: 0;
    }

    .lookbook-cta,
    .design-cta {
        width: 50% !important;
        float: left !important;
    }

    .img-responsive {
        max-width: 100% !important;
        width: 100% !important;
        height: auto;
    }

    .tab-details .tab-data {
        display: block !important;

    }

    .tab-data img {
        width: auto  !important;
        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%; }

  .page-body .push--ends { padding: 0px; }

  .tab-details, .tab-data { border: 0px !important; padding: 0 !important; }

  .border--left.product-intro { border: 0px; }

    .page__header {
        position: static;
    }

    .product-image img {
        max-width: 100%;
        border:0;
    }

    .product-overview {
        margin-top: 20px;
    }

    .product-overview h2 {
        font-size: 34px !important;
    }

    .tab--active a {
        display: none !important;
    }

    .mobile-tab-header {
        display: block !important;
    }

    .mobile-tab-header a {
        display: block !important;
        font-size: 20px !important;
        border-bottom: 1px solid black;
        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;
    }
}
/**
 * MCFX Reviews
 */

.mcfx-review {
    padding-bottom: 20px;
    overflow: hidden;
}

    .mcfx-review + .mcfx-review {
        padding-top: 20px;
        border-bottom: 1px solid #eee;
    }

    .mcfx-review:last-of-type {
        border-bottom: 0;
    }

.mcfx-review-author {
    font-size:24px;
    font-weight: bold;
    float: left;
}

.mcfx-review-date {
    float: left;
    padding-left: 20px;
    color: #999;
    font-size: 14px;
}

.mcfx-review-number-rating,
.mcfx-review-stars {
    float: right;
    display: block;
}

.mcfx-review-number-rating {
    font-size: 14px;
    color: #999;
    padding-left: 10px;
}

.mcfx-review-description {
    display: block;
    clear: both;
}

.mcfx-star {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('https://admin.marketingcloudfx.com/img/star-rating.png');
    background-repeat: none;
}

    .mcfx-star-active {
        background-position: 0 -24px;
    }