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

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use SASS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/******************************************************************
IMPORTS & DEPENDENCIES
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't
understand (what's inside the media queries). We also need to
import the mixins file so SASS can understand the variables.
******************************************************************/
/******************************************************************
Site Name:
Author:

Stylesheet: Grid Stylesheet

*/
*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

.omega {
  float: right;
  margin-right: 0; }

.container {
  max-width: 1015px;
  margin-left: auto;
  margin-right: auto;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  padding: 0;
  width: auto; }
  .container:after {
    content: " ";
    display: block;
    clear: both; }

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

Stylesheet: Variables

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

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name:
Author:

Stylesheet: 481px and Up Stylesheet

This stylesheet is loaded for larger devices. It's set to
481px because at 480px it would load on a landscaped iPhone.
This isn't ideal because then you would be loading all those
extra styles on that same mobile connection.

A word of warning. This size COULD be a larger mobile device,
so you still want to keep it pretty light and simply expand
upon your base.scss styles.

******************************************************************/
/*
IMPORTANT NOTE ABOUT SASS 3.3 & UP
You can't use @extend within media queries
anymore, so just be aware that if you drop
them in here, they won't work.
*/
/*********************
NAVIGATION STYLES
*********************/
/* .menu is clearfixed inside mixins.scss */
.menu {
  /* end .menu ul */ }
  .menu ul {
    /* end .menu ul li */
    /* highlight current page */
    /* end current highlighters */ }
    .menu ul li {
      /*
      plan your menus and drop-downs wisely.
      */ }
      .menu ul li a {
        /*
        you can use hover styles here even though this size
        has the possibility of being a mobile device.
        */ }

/* end .menu */
/*********************
POSTS & CONTENT STYLES
*********************/
/* entry content */
.entry-content {
  /* at this larger size, we can start to align images */ }
  .entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left; }
  .entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right; }
  .entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both; }

/* end .entry-content */
/*********************
FOOTER STYLES
*********************/
/*
check your menus here. do they look good?
do they need tweaking?
*/
/* end .footer-links */
/******************************************************************
Site Name:
Author:

Stylesheet: Tablet & Small Desktop Stylesheet

Here's where you can start getting into the good stuff.
This size will work on iPads, other tablets, and desktops.
So you can start working with more styles, background images,
and other resources. You'll also notice the grid starts to
come into play. Have fun!

******************************************************************/
/*********************
GENERAL STYLES
*********************/
.button {
  display: inline-block; }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1 {
  font-size: 37px; }

h2, .h2 {
  font-size: 1.6em;
  line-height: 1.4em; }

h3, .h3 {
  font-size: 1.3em;
  margin-bottom: 10px; }

h4, .h4 {
  font-size: 19px; }

/*********************
LAYOUT & GRID STYLES
*********************/
/*********************
HEADER STYLES
*********************/
.heading.heading-centered {
  font-size: 44px; }

.modal {
  width: 600px;
  left: 50%;
  top: 50%;
  margin-top: -200px;
  margin-left: -300px; }

.header {
  position: relative;
  width: 100%;
  padding: 22px 0 15px 0;
  background-color: #fff;
  border-bottom: 0;
  text-align: left;
  -moz-transition-property: top;
  -o-transition-property: top;
  -webkit-transition-property: top;
  transition-property: top;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out; }
  .header .logo .desktop-logo {
    display: block;
    width: 180px;
    height: auto; }
  .header .logo .mobile-logo {
    display: none; }
  .header .logo-container {
    margin-left: 0;
    text-align: center; }
  .header .logo {
    display: inline-block;
    margin-bottom: 0; }
  .header .top-nav {
    margin-top: 10px;
    padding-top: 0;
    text-align: center;
    display: none; }
    .header .top-nav .cart-contents:before {
      font-family: FontAwesome;
      content: "\f07a";
      margin-right: 10px; }
    .header .top-nav li {
      display: inline-block; }
    .header .top-nav a {
      display: inline-block;
      position: relative;
      text-transform: uppercase;
      font-weight: 600;
      padding: 12px 14px;
      color: #fff; }
  .header.stuck {
    position: fixed;
    z-index: 9999;
    top: 0;
    padding: 17px 0 9px 0;
    background-color: #fff;
    -moz-box-shadow: 0 1px 1px black(0.15);
    -webkit-box-shadow: 0 1px 1px black(0.15);
    box-shadow: 0 1px 1px black(0.15); }
    .header.stuck .sub-categories-list {
      background: #000;
      color: #fff; }
      .header.stuck .sub-categories-list .sub-categories-list-item a {
        color: #fff; }
    .header.stuck .mobile-menu-toggle {
      top: 2px; }
    .header.stuck .logo .desktop-logo {
      display: block;
      width: 180px;
      height: auto; }
    .header.stuck .logo .mobile-logo {
      display: none; }
    .header.stuck .top-nav li a {
      color: #000;
      -moz-transition-property: color, border-color;
      -o-transition-property: color, border-color;
      -webkit-transition-property: color, border-color;
      transition-property: color, border-color;
      -moz-transition-duration: 0.5s;
      -o-transition-duration: 0.5s;
      -webkit-transition-duration: 0.5s;
      transition-duration: 0.5s; }
      .header.stuck .top-nav li a:hover {
        color: #1a1a1a; }
  .header.hide {
    top: -100px; }

.home-link {
  display: block; }

.home .header {
  position: absolute;
  padding: 36px 0 30px 0; }
  .home .header .logo .mobile-logo {
    display: none; }
  .home .header .logo .desktop-logo {
    display: block;
    width: 250px;
    height: auto; }
  .home .header.stuck {
    background-color: #fff; }
    .home .header.stuck .mobile-logo {
      display: block;
      width: 280px;
      height: auto;
      padding-top: 3px; }
    .home .header.stuck .desktop-logo {
      display: none; }

.sub-nav-list .page_item, .sub-nav-list .menu-item, .sub-nav-list .back {
  display: inline-block;
  border-bottom: none; }
.sub-nav-list .back {
  display: inline-block; }
  .sub-nav-list .back a {
    border-right: 1px solid #e8e8e8;
    padding-right: 12px; }

.blog .blog-categories-list .cat-item, .single-post .blog-categories-list .cat-item, .category .blog-categories-list .cat-item {
  display: inline-block; }
  .blog .blog-categories-list .cat-item a, .single-post .blog-categories-list .cat-item a, .category .blog-categories-list .cat-item a {
    padding: 5px 10px; }
.blog .header .mobile-logo, .single-post .header .mobile-logo, .category .header .mobile-logo {
  display: block;
  width: 300px;
  height: auto; }
.blog .header .desktop-logo, .single-post .header .desktop-logo, .category .header .desktop-logo {
  display: none; }
.blog .header .top-nav li:last-child a, .single-post .header .top-nav li:last-child a, .category .header .top-nav li:last-child a {
  border: none;
  background: #83734d;
  color: #fff; }
  .blog .header .top-nav li:last-child a:hover, .single-post .header .top-nav li:last-child a:hover, .category .header .top-nav li:last-child a:hover {
    border: none; }
.blog .header .top-nav li a, .single-post .header .top-nav li a, .category .header .top-nav li a {
  color: #000;
  -moz-transition-property: color, border-color;
  -o-transition-property: color, border-color;
  -webkit-transition-property: color, border-color;
  transition-property: color, border-color;
  -moz-transition-duration: 0.5s;
  -o-transition-duration: 0.5s;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s; }
  .blog .header .top-nav li a:hover, .single-post .header .top-nav li a:hover, .category .header .top-nav li a:hover {
    color: #1a1a1a; }

/*********************
CONTENT STYLES
*********************/
.page-header {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  float: right;
  margin-right: 0;
  margin-bottom: 20px; }
  .page-header.page-header-full {
    padding-right: 25.50607%; }

.page .mobile-menu-toggle-home, .page .mobile-menu-toggle-login, .single .mobile-menu-toggle-home, .single .mobile-menu-toggle-login, .archive .mobile-menu-toggle-home, .archive .mobile-menu-toggle-login, .home .mobile-menu-toggle-home, .home .mobile-menu-toggle-login {
  display: none; }

.section {
  padding: 40px 2.02429%; }
  .section .app-column, .section .text-column {
    width: 48.98785%;
    float: left;
    margin-right: 2.02429%; }
  .section .text-column {
    min-height: 570px;
    display: flex;
    align-items: center; }
  .section .app-column {
    margin-bottom: 0; }
    .section .app-column img {
      width: 250px; }

.section-startpage {
  padding: 40px 2.02429%; }

.section-featured-categories {
  padding: 0 2.02429%;
  background-color: #000; }

.section-top {
  padding: 0;
  text-align: left;
  background-size: cover;
  overflow: hidden;
  background-position: right center;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none; }
  .section-top .section-push-link img {
    width: 100%; }
  .section-top .section-push-link h3 {
    margin-top: -30px; }
  .section-top .heading {
    font-size: 44px; }
  .section-top .top-features {
    width: 100%;
    float: left;
    margin-left: 0;
    margin-right: 0;
    padding-right: 8.50202%;
    padding-left: 8.50202%;
    text-align: center; }
  .section-top .tagline {
    margin-bottom: 40px; }
  .section-top .top-features-container {
    padding-top: 45px;
    padding-bottom: 45px;
    background-color: transparent; }

.page-template-page-showroom .section-top {
  padding-top: 0; }
  .page-template-page-showroom .section-top .top-features-container {
    padding-top: 65px;
    padding-bottom: 65px; }

.home .header {
  position: relative;
  padding: 0;
  height: 200px;
  width: 100%;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent; }
  .home .header .container, .home .header .logo-container {
    height: 100%; }
  .home .header .logo-home {
    display: block; }
  .home .header:before, .home .header:after {
    content: ' ';
    position: absolute;
    display: block;
    background-size: 115%;
    width: 235px;
    height: 210px;
    background-repeat: no-repeat;
    background-position: bottom left; }
  .home .header:before {
    background-size: 100%;
    width: 242px;
    height: 183px;
    left: 0;
    bottom: 0; }
  .home .header:after {
    right: 0;
    bottom: 0; }
  .home .header.stuck {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent; }
  .home .header .logo {
    display: block; }
    .home .header .logo .desktop-logo {
      display: none; }
    .home .header .logo .logo-home {
      display: inline-block;
      width: 540px;
      height: auto;
      margin-top: 26px; }
  .home .header .mobile-menu-toggle {
    top: 50%;
    margin-top: -16px;
    z-index: 999;
    right: 105px; }

.section-showroom {
  max-width: 123.5em;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 60px;
  text-align: left;
  color: #fff; }
  .section-showroom:after {
    content: " ";
    display: block;
    clear: both; }
  .section-showroom .showroom-text {
    width: 65.9919%;
    float: left;
    margin-right: 2.02429%;
    padding-right: 8.50202%; }
  .section-showroom .showroom-links {
    width: 31.98381%;
    float: left;
    margin-right: 2.02429%;
    float: right;
    margin-right: 0; }

.section-column {
  text-align: left; }
  .section-column .column-text {
    width: 49.24471%;
    float: left;
    margin-right: 1.51057%; }
  .section-column .section-column-pictures {
    margin-top: 0px;
    width: 49.24471%;
    float: left;
    margin-right: 1.51057%; }
    .section-column .section-column-pictures img {
      width: 100%;
      height: auto; }
  .section-column.section-column-left .column-text {
    padding-right: 6.34441%; }
  .section-column.section-column-left .section-column-pictures {
    float: right;
    margin-right: 0;
    padding-right: 6.34441%; }
  .section-column.section-column-right .column-text {
    float: right;
    margin-right: 0; }
  .section-column.section-column-right .section-column-pictures {
    padding-right: 6.34441%; }

.footer {
  text-align: left;
  max-width: 123.5em;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0; }
  .footer:after {
    content: " ";
    display: block;
    clear: both; }
  .footer .footer-item {
    margin-bottom: 0;
    width: 23.48178%;
    float: left; }
    .footer .footer-item:nth-child(4n + 1) {
      margin-left: 0;
      margin-right: -100%;
      clear: both;
      margin-left: 0; }
    .footer .footer-item:nth-child(4n + 2) {
      margin-left: 25.50607%;
      margin-right: -100%;
      clear: none; }
    .footer .footer-item:nth-child(4n + 3) {
      margin-left: 51.01215%;
      margin-right: -100%;
      clear: none; }
    .footer .footer-item:nth-child(4n + 4) {
      margin-left: 76.51822%;
      margin-right: -100%;
      clear: none; }
  .footer .nav-list a {
    display: inline-block;
    padding: 0;
    border-bottom: none; }
  .footer .nav-list li:first-child a {
    border-top: none; }

.section-contact .contact-text {
  width: 57.48988%;
  float: left;
  margin-right: 2.02429%; }
.section-contact .contact-form {
  width: 40.48583%;
  float: left;
  margin-right: 2.02429%;
  float: right;
  margin-right: 0; }

.main-section-single {
  padding-top: 40px;
  text-align: left;
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  padding-left: 8.50202%;
  padding-right: 8.50202%; }

.single-post .main-section .content-container, .page .main-section .content-container, .archive .main-section .content-container, .error404 .main-section .content-container {
  max-width: 123.5em;
  margin-left: auto;
  margin-right: auto; }
  .single-post .main-section .content-container:after, .page .main-section .content-container:after, .archive .main-section .content-container:after, .error404 .main-section .content-container:after {
    content: " ";
    display: block;
    clear: both; }
.single-post .main-section .sidebar, .page .main-section .sidebar, .archive .main-section .sidebar, .error404 .main-section .sidebar {
  margin-top: 0; }

.category .main-content, .blog .main-content, .single-post .main-content, .archive.category .main-content, .error404 .main-content, .search .main-content {
  max-width: 123.5em;
  margin-left: auto;
  margin-right: auto; }
  .category .main-content:after, .blog .main-content:after, .single-post .main-content:after, .archive.category .main-content:after, .error404 .main-content:after, .search .main-content:after {
    content: " ";
    display: block;
    clear: both; }

.blog .post, .category .post {
  min-height: 380px;
  max-height: 380px;
  overflow: hidden;
  border-right: 1px solid #ececec;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  float: left; }
  .blog .post:nth-child(2n + 1), .category .post:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both; }
  .blog .post:nth-child(2n + 2), .category .post:nth-child(2n + 2) {
    margin-left: 50%;
    margin-right: -100%;
    clear: none; }
  .blog .post .post-image, .category .post .post-image {
    width: 36.55589%;
    float: left;
    margin-right: 1.51057%; }
  .blog .post .post-content, .category .post .post-content {
    width: 61.93353%;
    float: left;
    margin-right: 1.51057%;
    padding-left: 6.34441%;
    float: right;
    margin-right: 0; }
  .blog .post:nth-child(odd) .post-content, .category .post:nth-child(odd) .post-content {
    padding-right: 6.34441%; }
  .blog .post:nth-child(even), .category .post:nth-child(even) {
    border-right: none; }
    .blog .post:nth-child(even) .post-image, .category .post:nth-child(even) .post-image {
      width: 42.9003%;
      float: left;
      margin-right: 1.51057%;
      padding-left: 6.34441%; }
    .blog .post:nth-child(even) .post-content, .category .post:nth-child(even) .post-content {
      width: 55.58912%;
      float: left;
      margin-right: 1.51057%;
      padding-left: 6.34441%;
      float: right;
      margin-right: 0; }
.blog .blog-categories-list .cat-item a, .category .blog-categories-list .cat-item a {
  display: inline-block; }

.single-post .post {
  padding-right: 17.00405%;
  padding-left: 17.00405%; }

.gallery-columns-2 .gallery-item {
  width: 48.98785%;
  float: left; }
  .gallery-columns-2 .gallery-item:nth-child(2n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .gallery-columns-2 .gallery-item:nth-child(2n + 2) {
    margin-left: 51.01215%;
    margin-right: -100%;
    clear: none; }

.gallery-columns-3 .gallery-item {
  width: 31.98381%;
  float: left; }
  .gallery-columns-3 .gallery-item:nth-child(3n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .gallery-columns-3 .gallery-item:nth-child(3n + 2) {
    margin-left: 34.0081%;
    margin-right: -100%;
    clear: none; }
  .gallery-columns-3 .gallery-item:nth-child(3n + 3) {
    margin-left: 68.01619%;
    margin-right: -100%;
    clear: none; }

.gallery-columns-4 .gallery-item {
  width: 23.48178%;
  float: left; }
  .gallery-columns-4 .gallery-item:nth-child(4n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .gallery-columns-4 .gallery-item:nth-child(4n + 2) {
    margin-left: 25.50607%;
    margin-right: -100%;
    clear: none; }
  .gallery-columns-4 .gallery-item:nth-child(4n + 3) {
    margin-left: 51.01215%;
    margin-right: -100%;
    clear: none; }
  .gallery-columns-4 .gallery-item:nth-child(4n + 4) {
    margin-left: 76.51822%;
    margin-right: -100%;
    clear: none; }

.gallery-columns-5 .gallery-item {
  width: 18.04878%;
  float: left; }
  .gallery-columns-5 .gallery-item:nth-child(5n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .gallery-columns-5 .gallery-item:nth-child(5n + 2) {
    margin-left: 20.4878%;
    margin-right: -100%;
    clear: none; }
  .gallery-columns-5 .gallery-item:nth-child(5n + 3) {
    margin-left: 40.97561%;
    margin-right: -100%;
    clear: none; }
  .gallery-columns-5 .gallery-item:nth-child(5n + 4) {
    margin-left: 61.46341%;
    margin-right: -100%;
    clear: none; }
  .gallery-columns-5 .gallery-item:nth-child(5n + 5) {
    margin-left: 81.95122%;
    margin-right: -100%;
    clear: none; }

.gallery-columns-6 .gallery-item {
  width: 14.97976%;
  float: left; }
  .gallery-columns-6 .gallery-item:nth-child(6n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .gallery-columns-6 .gallery-item:nth-child(6n + 2) {
    margin-left: 17.00405%;
    margin-right: -100%;
    clear: none; }
  .gallery-columns-6 .gallery-item:nth-child(6n + 3) {
    margin-left: 34.0081%;
    margin-right: -100%;
    clear: none; }
  .gallery-columns-6 .gallery-item:nth-child(6n + 4) {
    margin-left: 51.01215%;
    margin-right: -100%;
    clear: none; }
  .gallery-columns-6 .gallery-item:nth-child(6n + 5) {
    margin-left: 68.01619%;
    margin-right: -100%;
    clear: none; }
  .gallery-columns-6 .gallery-item:nth-child(6n + 6) {
    margin-left: 85.02024%;
    margin-right: -100%;
    clear: none; }

.post-product .product-images {
  width: 48.98785%;
  float: left;
  margin-right: 2.02429%; }
  .post-product .product-images .product-image-main {
    padding: 60px;
    border: 1px solid #ccc;
    display: block;
    width: 100%;
    height: auto; }
    .post-product .product-images .product-image-main img {
      max-width: 100%; }
  .post-product .product-images .product-image-thumbnails-list .product-image-thumbnails-list-item {
    width: 23.48178%;
    float: left; }
    .post-product .product-images .product-image-thumbnails-list .product-image-thumbnails-list-item:nth-child(4n + 1) {
      margin-left: 0;
      margin-right: -100%;
      clear: both;
      margin-left: 0; }
    .post-product .product-images .product-image-thumbnails-list .product-image-thumbnails-list-item:nth-child(4n + 2) {
      margin-left: 25.50607%;
      margin-right: -100%;
      clear: none; }
    .post-product .product-images .product-image-thumbnails-list .product-image-thumbnails-list-item:nth-child(4n + 3) {
      margin-left: 51.01215%;
      margin-right: -100%;
      clear: none; }
    .post-product .product-images .product-image-thumbnails-list .product-image-thumbnails-list-item:nth-child(4n + 4) {
      margin-left: 76.51822%;
      margin-right: -100%;
      clear: none; }
.post-product .product-content {
  width: 48.98785%;
  float: left;
  margin-right: 2.02429%;
  float: right;
  margin-right: 0; }

.page-template-default .main-content {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0;
  padding-left: 17.00405%;
  padding-right: 17.00405%;
  float: right;
  margin-right: 0; }

.page-template-page-contact .sidebar {
  width: 31.98381%;
  float: left;
  margin-right: 2.02429%;
  float: right;
  margin-right: 0; }
.page-template-page-contact .main-content {
  width: 65.9919%;
  float: left;
  margin-right: 2.02429%;
  padding-right: 8.50202%; }

.products-list .products-list-item {
  width: 23.48178%;
  float: left; }
  .products-list .products-list-item:nth-child(4n + 1) {
    margin-left: 0;
    margin-right: -100%;
    clear: both;
    margin-left: 0; }
  .products-list .products-list-item:nth-child(4n + 2) {
    margin-left: 25.50607%;
    margin-right: -100%;
    clear: none; }
  .products-list .products-list-item:nth-child(4n + 3) {
    margin-left: 51.01215%;
    margin-right: -100%;
    clear: none; }
  .products-list .products-list-item:nth-child(4n + 4) {
    margin-left: 76.51822%;
    margin-right: -100%;
    clear: none; }
.products-list img {
  padding: 0 30px; }
.products-list a {
  padding: 0 5px; }

.showroom-slider {
  padding: 20px 0 0 0; }
  .showroom-slider .showroom-slider-item .showroom-slider-item-content {
    padding: 40px 60px; }

.product-categories-list .product-categories-list-item .product-categories-list-item-image-wrapper {
  width: 23.48178%;
  float: left;
  margin-right: 2.02429%;
  text-align: center; }
  .product-categories-list .product-categories-list-item .product-categories-list-item-image-wrapper img {
    display: inline-block;
    max-width: 80%; }
.product-categories-list .product-categories-list-item .product-categories-list-item-content {
  width: 74.49393%;
  float: left;
  margin-right: 2.02429%;
  float: right;
  margin-right: 0; }
.product-categories-list .product-categories-list-item a {
  padding: 35px 45px 35px 15px; }

.customers {
  padding-bottom: 90px;
  text-align: left; }
  .customers .customer-list .list-item {
    width: 23.48178%;
    float: left;
    margin-right: 2.02429%; }
    .customers .customer-list .list-item:nth-child(4n+4) {
      float: right;
      margin-right: 0; }

.woocommerce div.product.product-type-composite div.images, .woocommerce #content div.product.product-type-composite div.images, .woocommerce-page div.product.product-type-composite div.images, .woocommerce-page #content div.product.product-type-composite div.images {
  width: 23.48178%;
  float: left;
  margin-right: 2.02429%; }
.woocommerce div.product.product-type-composite div.summary, .woocommerce #content div.product.product-type-composite div.summary, .woocommerce-page div.product.product-type-composite div.summary, .woocommerce-page #content div.product.product-type-composite div.summary {
  width: 74.49393%;
  float: left;
  margin-right: 2.02429%;
  float: right;
  margin-right: 0; }
.woocommerce .woocommerce-checkout-review-order-table, .woocommerce-page .woocommerce-checkout-review-order-table {
  width: 48.98785%;
  float: left;
  margin-right: 2.02429%; }
.woocommerce .woocommerce-checkout-payment, .woocommerce-page .woocommerce-checkout-payment {
  width: 100%;
  float: left;
  margin-left: 0;
  margin-right: 0; }
.woocommerce .woocommerce-checkout-payment, .woocommerce-page .woocommerce-checkout-payment {
  float: right;
  margin-right: 0; }
.woocommerce .products .product, .woocommerce-page .products .product {
  width: 23.48178%;
  float: left;
  margin-right: 2.02429%; }
  .woocommerce .products .product img, .woocommerce-page .products .product img {
    width: 100%;
    height: auto; }
  .woocommerce .products .product:nth-child(4n+4), .woocommerce-page .products .product:nth-child(4n+4) {
    float: right;
    margin-right: 0; }
.woocommerce .woocommerce-result-count, .woocommerce-page .woocommerce-result-count {
  width: 48.98785%;
  float: left;
  margin-right: 2.02429%; }
.woocommerce table.shop_table.woocommerce-checkout-review-order-table td, .woocommerce-page table.shop_table.woocommerce-checkout-review-order-table td {
  width: 50%; }
.woocommerce span.onsale, .woocommerce-page span.onsale {
  padding: 0; }
.woocommerce ul.component_option_thumbnails_container li.component_option_thumbnail_container, .woocommerce-page ul.component_option_thumbnails_container li.component_option_thumbnail_container {
  padding: 0 3.5% 0 0; }

/*********************
SIDEBARS & ASIDES
*********************/
.term-actions {
  display: flex;
  justify-content: space-between; }
  .term-actions a {
    margin-top: 0; }

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

Stylesheet: Desktop Stylsheet

This is the desktop size. It's larger than an iPad so it will only
be seen on the Desktop.

******************************************************************/
/*********************
CONTENT STYLES
*********************/
/*
you can call the larger styles if you want, but there's really no need
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
