/* Link Color Mixin 
  Who Likes being able to quickly over-ride default link static and hover colors?! You Do!
  use on the <a> selector (or whatever you are hovering) passing a $static and/or $hover color or neither (uses site defaults):
  @include link-color(color(swatch-one), color(swatch-two));
    OR
  @include link-color;
 */
*[class*=fa-] {
  opacity: 0;
  transition: opacity ease-in 0.3s;
  display: inline-block;
  width: 0.875em;
}
.wf-active *[class*=fa-] {
  opacity: 1;
}
.wf-inactive *[class*=fa-] {
  opacity: 1;
}
.wf-active *[class*=fa-]:not(.fa-fw, .fa-li) {
  width: auto;
}

*[class*=font-effects] {
  opacity: 0;
  transition: opacity ease 0.3s;
}
*[class*=font-effects] .wf-gfx-loaded {
  opacity: 1;
}

body {
  color: rgb(0, 0, 0);
  font-size: 17px;
  font-family: helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.375;
}

.link, a {
  text-decoration: none;
  will-change: color, text-shadow;
  transition: all 0.3s ease;
}
.link, a, .link:visited, .link:active, .link:visited:active {
  color: rgb(0, 68, 150);
}
.link:hover, a:hover, .link:visited:hover {
  color: #003a80;
}

.italic, i, em {
  font-style: italic;
}

.bold, b, strong {
  font-weight: 700;
}

.h1, h1 {
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1.75em;
  line-height: 1.25;
}
.wf-active .h1, .wf-active h1 {
  opacity: 1;
}
.wf-inactive .h1, .wf-inactive h1 {
  opacity: 1;
}
@media (min-width: 767px) {
  .h1, h1 {
    font-size: 2.75em;
    line-height: 1.125;
  }
}
@media (min-width: 992px) {
  .h1, h1 {
    font-size: 3em;
    line-height: 1.05;
  }
}

.h2, h2 {
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1.5em;
  line-height: 1.15384615;
}
.wf-active .h2, .wf-active h2 {
  opacity: 1;
}
.wf-inactive .h2, .wf-inactive h2 {
  opacity: 1;
}
@media (min-width: 767px) {
  .h2, h2 {
    font-size: 1.75em;
    line-height: 1.25;
  }
}
@media (min-width: 992px) {
  .h2, h2 {
    font-size: 2em;
    line-height: 1.25;
  }
}

.h3, h3 {
  font-family: helvetica, sans-serif;
  font-weight: 800;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1.25em;
  line-height: 1.13636364;
}
.wf-active .h3, .wf-active h3 {
  opacity: 1;
}
.wf-inactive .h3, .wf-inactive h3 {
  opacity: 1;
}
@media (min-width: 767px) {
  .h3, h3 {
    font-size: 1.5em;
    line-height: 1.25;
  }
}
@media (min-width: 992px) {
  .h3, h3 {
    font-size: 1.75em;
    line-height: 1.25;
  }
}

.h4, h4 {
  font-family: helvetica, sans-serif;
  font-weight: 800;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1.125em;
  line-height: 1.11111111;
}
.wf-active .h4, .wf-active h4 {
  opacity: 1;
}
.wf-inactive .h4, .wf-inactive h4 {
  opacity: 1;
}
@media (min-width: 767px) {
  .h4, h4 {
    line-height: 1.22222222;
  }
}

.h5, h5 {
  font-family: helvetica, sans-serif;
  font-weight: 800;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1.0625em;
  line-height: 1.11111111;
}
.wf-active .h5, .wf-active h5 {
  opacity: 1;
}
.wf-inactive .h5, .wf-inactive h5 {
  opacity: 1;
}

.h6, h6 {
  font-family: helvetica, sans-serif;
  font-weight: 800;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1em;
  line-height: 1.11111111;
}
.wf-active .h6, .wf-active h6 {
  opacity: 1;
}
.wf-inactive .h6, .wf-inactive h6 {
  opacity: 1;
}

.h1, h1, .h2, h2, .h3, h3, .h4, h4, .h5, h5, .h6, h6 {
  color: rgb(0, 68, 150);
  margin-top: 0.75em;
  margin-bottom: 0.15em;
}

.block-margins, ul, ol, pre, blockquote {
  margin: 1rem 0;
}

p {
  margin: 0 0 1rem 0;
}

blockquote {
  margin-left: 1em;
  margin-right: 1em;
}

p.intro-text {
  font-size: 1.4em;
}

.headroom {
  margin-top: 2em;
}

.less-headroom {
  margin-top: 1em;
}

.more-less-headroom {
  margin-top: 0.5em;
}

.no-headroom {
  margin-top: 0 !important;
}

.legroom {
  margin-bottom: 2em;
}

.less-legroom {
  margin-bottom: 1em;
}

.more-less-legroom {
  margin-bottom: 0.5em;
}

.no-legroom {
  margin-bottom: 0;
}

.no-margin {
  margin: 0 !important;
}

.no-border {
  border: none !important;
}

.center,
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.hide-text {
  font: 0/0 serif;
  text-shadow: none;
  color: transparent;
}

.hyphenate {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  hyphens: auto;
}

.list-reset {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.list-reset li {
  margin: 0;
}

.list-inline li {
  display: inline-block;
  float: left;
}
.list-inline li:not(:first-child) {
  margin-left: 0.5em;
}
.list-inline li:not(:last-child) {
  margin-right: 0.5em;
}

@media (min-width: 767px) {
  .mobile-only {
    display: none;
  }
}

.no-mobile {
  display: none;
}
@media (min-width: 767px) {
  .no-mobile {
    display: block;
  }
  .no-mobile ul li {
    display: list-item;
  }
}

.desktop-only {
  display: none;
}
@media (min-width: 992px) {
  .desktop-only {
    display: inline-block;
  }
}

.white ul li a {
  color: rgb(255, 255, 255) !important;
}

.blue-bg {
  background-color: color(swatch-one);
}

.not-brands li:nth-of-type(odd) {
  width: unset;
}
.not-brands li {
  float: unset;
}
.not-brands ul li ul {
  margin-top: 0;
}

.new-products-landing .title-bar {
  height: 240px;
  background-color: #7a7a7a;
  text-align: center;
  background-repeat: repeat, no-repeat;
  background-size: cover, cover;
  background-position: top center;
}
.new-products-landing .title-bar.showroom-blk-present {
  height: 360px;
}
.new-products-landing .title-bar.flooring-prod {
  box-sizing: border-box;
  padding: 20px 0;
  height: 360px;
}
.new-products-landing .title-bar.flooring-prod h1 {
  margin-top: 36px;
  text-align: left;
  color: rgb(255, 255, 255);
  font-size: 2.25em;
  text-transform: capitalize;
  letter-spacing: 3px;
}
.new-products-landing .title-bar.flooring-prod p {
  margin-top: 8px;
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  text-align: left;
  color: rgb(255, 255, 255);
}
.wf-active .new-products-landing .title-bar.flooring-prod p {
  opacity: 1;
}
.wf-inactive .new-products-landing .title-bar.flooring-prod p {
  opacity: 1;
}
.new-products-landing .title-bar a.floor-product-breadcrumb {
  margin: 48px 0 24px 0;
  padding: 0 0 24px 0;
  border-bottom: 1px solid rgb(233, 176, 49);
  font-family: industry, sans-serif;
  font-weight: 500;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  text-align: left;
  text-transform: uppercase;
  color: rgb(233, 176, 49);
  display: block;
}
.wf-active .new-products-landing .title-bar a.floor-product-breadcrumb {
  opacity: 1;
}
.wf-inactive .new-products-landing .title-bar a.floor-product-breadcrumb {
  opacity: 1;
}
.new-products-landing .title-bar a.floor-product-breadcrumb:before {
  content: "\f0d9";
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
  margin: 0 10px 0 0;
  color: rgb(233, 176, 49);
}
.new-products-landing .title-bar h1 {
  color: rgb(233, 176, 49);
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: 1.25em;
  margin: 60px 0 0 0;
}
.new-products-landing .title-bar h2 {
  color: rgb(255, 255, 255);
  font-size: 2em;
  margin: 8px 0 0 0;
}
.new-products-landing .showroom-block {
  margin: 0 auto 0 auto;
  padding: 140px 0 1em 0;
  background-color: rgb(0, 68, 150);
  background-repeat: no-repeat;
  background-size: 320px;
  background-position: center 12px;
  text-align: center;
  color: rgb(255, 255, 255);
}
.new-products-landing .showroom-block .showroom-blk-showroom {
  margin-bottom: 2.5em;
}
.new-products-landing .showroom-block h3 {
  font-family: industry, sans-serif;
  font-weight: 500;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  margin-top: 0;
  color: rgb(233, 176, 49);
  text-transform: uppercase;
  font-size: 1.125em;
}
.wf-active .new-products-landing .showroom-block h3 {
  opacity: 1;
}
.wf-inactive .new-products-landing .showroom-block h3 {
  opacity: 1;
}
.new-products-landing .showroom-block p {
  color: rgb(255, 255, 255);
  font-family: museo-slab, serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  margin: 0 0 1em 0;
}
.wf-active .new-products-landing .showroom-block p {
  opacity: 1;
}
.wf-inactive .new-products-landing .showroom-block p {
  opacity: 1;
}
.new-products-landing .showroom-block p a {
  color: rgb(255, 255, 255);
}
.new-products-landing .showroom-block p a:hover {
  text-decoration: underline;
}
@media (min-width: 580px) {
  .new-products-landing .showroom-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
  }
  .new-products-landing .showroom-block .showroom-blk-showroom {
    margin-bottom: 0;
  }
}
@media (min-width: 767px) {
  .new-products-landing .showroom-block {
    padding-top: 1em;
    background-position: center center;
    column-gap: 320px;
  }
}
.new-products-landing h2.underlined-subhead {
  font-size: 1.3em;
  margin: 3em auto 5em auto;
  padding: 0 0 12px 0;
  max-width: 350px;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid rgb(233, 176, 49);
}
.new-products-landing .spacer {
  height: 120px;
}
@media (min-width: 767px) {
  .new-products-landing .spacer {
    height: 160px;
  }
}
.new-products-landing .related-products-section {
  margin-top: -40px;
}
.new-products-landing .related-products-section .related-product {
  padding: 0 1em;
}
.new-products-landing .related-products-section .related-product .related-product-header {
  background-color: rgb(0, 68, 150);
  transform: skew(-10deg);
  position: relative;
  overflow: hidden;
}
.new-products-landing .related-products-section .related-product .related-product-header h3 {
  margin: 0;
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  color: rgb(255, 255, 255);
  text-align: center;
  display: flex;
  justify-content: center;
  flex-direction: column;
  height: 175px;
  transform: skew(10deg);
  font-size: 2.5em;
  line-height: 1;
}
.wf-active .new-products-landing .related-products-section .related-product .related-product-header h3 {
  opacity: 1;
}
.wf-inactive .new-products-landing .related-products-section .related-product .related-product-header h3 {
  opacity: 1;
}
.new-products-landing .related-products-section .related-product .related-product-info {
  padding: 2em 1em;
}
.new-products-landing .related-products-section .related-product .related-product-info ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.new-products-landing .related-products-section .related-product .related-product-info ul li {
  font-family: industry, sans-serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  padding: 8px 20px;
  color: #7a7a7a;
  border-bottom: 1px solid rgb(233, 176, 49);
}
.wf-active .new-products-landing .related-products-section .related-product .related-product-info ul li {
  opacity: 1;
}
.wf-inactive .new-products-landing .related-products-section .related-product .related-product-info ul li {
  opacity: 1;
}
.new-products-landing .related-products-section .related-product .related-product-info ul li:last-child {
  border-bottom: none;
  margin-bottom: 24px;
}
.new-products-landing .related-products-section .related-product .related-product-info a {
  display: block;
  width: 150px;
  margin: 0 auto;
  color: rgb(255, 255, 255);
}
.new-products-landing .flooring-products {
  margin-top: 120px;
  text-align: center;
}
.new-products-landing .flooring-products h3 {
  font-family: museo-slab, serif;
  font-weight: 800;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  text-transform: uppercase;
  font-size: 1.4em;
  letter-spacing: 3px;
}
.wf-active .new-products-landing .flooring-products h3 {
  opacity: 1;
}
.wf-inactive .new-products-landing .flooring-products h3 {
  opacity: 1;
}
.new-products-landing .flooring-products .flooring-prod-blocks {
  margin: 36px 0 72px 0;
}
.new-products-landing .flooring-products .flooring-prod-blocks .flooring-prod-block {
  margin: 0 0 48px 0;
  padding: 0 1em;
}
.new-products-landing .flooring-products .flooring-prod-blocks .flooring-prod-block .flooring-prod-block-image {
  margin: 0 0 12px 0;
  height: 225px;
  background-color: #ececec;
  transform: skew(-10deg);
  position: relative;
  overflow: hidden;
}
.new-products-landing .flooring-products .flooring-prod-blocks .flooring-prod-block .flooring-prod-block-image a {
  text-indent: -9999px;
  height: 225px;
  display: block;
}
.new-products-landing .flooring-products .flooring-prod-blocks .flooring-prod-block .flooring-prod-block-link {
  text-align: left;
  font-family: museo-slab, serif;
  font-weight: 800;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  text-transform: uppercase;
}
.wf-active .new-products-landing .flooring-products .flooring-prod-blocks .flooring-prod-block .flooring-prod-block-link {
  opacity: 1;
}
.wf-inactive .new-products-landing .flooring-products .flooring-prod-blocks .flooring-prod-block .flooring-prod-block-link {
  opacity: 1;
}
.new-products-landing .flooring-products .flooring-prod-blocks .flooring-prod-block .flooring-prod-block-link:after {
  content: "\f0da";
  font-family: FontAwesome;
  font-weight: 400;
  font-style: normal;
  margin: 0 0 0 4px;
  color: rgb(233, 176, 49);
}
.new-products-landing .big-blue-block-cta {
  padding: 80px 0;
  text-align: center;
}
.new-products-landing .big-blue-block-cta h3 {
  margin-top: 0;
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1.2em;
  color: rgb(255, 255, 255);
}
.wf-active .new-products-landing .big-blue-block-cta h3 {
  opacity: 1;
}
.wf-inactive .new-products-landing .big-blue-block-cta h3 {
  opacity: 1;
}
.new-products-landing .big-blue-block-cta h4 {
  margin-top: 24px;
  font-family: industry, sans-serif;
  font-weight: 500;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  color: rgb(233, 176, 49);
  text-transform: uppercase;
  font-size: 1em;
}
.wf-active .new-products-landing .big-blue-block-cta h4 {
  opacity: 1;
}
.wf-inactive .new-products-landing .big-blue-block-cta h4 {
  opacity: 1;
}
.new-products-landing .big-blue-block-cta p {
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  color: rgb(255, 255, 255);
}
.wf-active .new-products-landing .big-blue-block-cta p {
  opacity: 1;
}
.wf-inactive .new-products-landing .big-blue-block-cta p {
  opacity: 1;
}
.new-products-landing .product-page-cta {
  margin: 1.5em 0;
  padding: 2.5em 1.5em;
  background-color: rgb(0, 68, 150);
  text-align: center;
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  color: rgb(255, 255, 255);
}
.wf-active .new-products-landing .product-page-cta {
  opacity: 1;
}
.wf-inactive .new-products-landing .product-page-cta {
  opacity: 1;
}
.new-products-landing .product-page-cta p {
  margin: 0 0 2em 0;
  color: rgb(255, 255, 255);
}
.new-products-landing .prod-page-footer-block-container {
  background-repeat: no-repeat;
  background-size: 0 0;
}
.new-products-landing .product-page-footer-block {
  margin: 2em 0;
  text-align: center;
}
.new-products-landing .product-page-footer-block h3 {
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.3em;
  margin: 0 0 1.5em 0;
}
.wf-active .new-products-landing .product-page-footer-block h3 {
  opacity: 1;
}
.wf-inactive .new-products-landing .product-page-footer-block h3 {
  opacity: 1;
}
.new-products-landing .product-page-footer-block h3::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 100px;
  padding-top: 20px;
  border-bottom: 1px solid rgb(233, 176, 49);
}
.new-products-landing .product-page-footer-block p {
  font-family: museo-slab, serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  color: rgb(128, 128, 128);
  margin: 0 0 1.5em 0;
}
.wf-active .new-products-landing .product-page-footer-block p {
  opacity: 1;
}
.wf-inactive .new-products-landing .product-page-footer-block p {
  opacity: 1;
}
.new-products-landing .product-page-footer-block a {
  color: rgb(255, 255, 255);
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
}
.wf-active .new-products-landing .product-page-footer-block a {
  opacity: 1;
}
.wf-inactive .new-products-landing .product-page-footer-block a {
  opacity: 1;
}
.new-products-landing .flooring-product-description .slanted-image {
  position: relative;
  margin: -40px 0 0 0;
  height: 300px;
  background-color: gray;
  z-index: 1000;
  transform: skew(-10deg);
  overflow: hidden;
}
.new-products-landing .flooring-product-description .flr-prod-desc-text {
  margin: 48px 0;
}
@media (min-width: 992px) {
  .new-products-landing .flooring-product-description .slanted-image {
    width: 47%;
    height: 400px;
  }
}
.new-products-landing .opt-gray-block {
  padding: 60px 0;
}
.new-products-landing .opt-gray-block p {
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 1.1em;
  margin-bottom: 1.2em;
}
.wf-active .new-products-landing .opt-gray-block p {
  opacity: 1;
}
.wf-inactive .new-products-landing .opt-gray-block p {
  opacity: 1;
}
.new-products-landing #desktop-products h2.stocked-items-heading {
  font-size: 1.75em;
  margin-bottom: 1em;
  padding-bottom: 0.5em;
  font-family: museo-slab, serif;
  font-weight: 800;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  text-transform: uppercase;
  border-bottom: 1px solid rgb(233, 176, 49);
}
.wf-active .new-products-landing #desktop-products h2.stocked-items-heading {
  opacity: 1;
}
.wf-inactive .new-products-landing #desktop-products h2.stocked-items-heading {
  opacity: 1;
}
.new-products-landing #mobile-products h2.stocked-items-heading {
  font-family: museo-slab, serif;
  font-weight: 800;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  text-transform: uppercase;
}
.wf-active .new-products-landing #mobile-products h2.stocked-items-heading {
  opacity: 1;
}
.wf-inactive .new-products-landing #mobile-products h2.stocked-items-heading {
  opacity: 1;
}
.new-products-landing #brands-middle h3 {
  text-align: center;
  margin: 72px 0 24px 0;
  padding: 0 0 12px 0;
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  text-transform: uppercase;
  letter-spacing: 3px;
  border-bottom: 1px solid rgb(233, 176, 49);
}
.wf-active .new-products-landing #brands-middle h3 {
  opacity: 1;
}
.wf-inactive .new-products-landing #brands-middle h3 {
  opacity: 1;
}
.new-products-landing .col-sm-6.team-overlay-img.flooring-brands {
  width: 100%;
}
.new-products-landing .col-sm-6.team-overlay-img.flooring-brands figure {
  margin: 0 auto;
  width: 40%;
  text-align: center;
}
.new-products-landing .col-sm-6.team-overlay-img.flooring-brands figure img {
  margin-bottom: 1em;
}
.new-products-landing .inspiration-block {
  margin: 0 0 0 0;
  padding: 72px 0;
  text-align: center;
}
.new-products-landing .inspiration-block h3 {
  margin: 0 0 24px 0;
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  text-transform: uppercase;
  letter-spacing: 3px;
}
.wf-active .new-products-landing .inspiration-block h3 {
  opacity: 1;
}
.wf-inactive .new-products-landing .inspiration-block h3 {
  opacity: 1;
}
.new-products-landing .inspiration-block .hr-holder {
  margin: 0 auto 12px auto;
  width: 350px;
}
.new-products-landing .inspiration-block p {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.new-products-landing .inspiration-block .inspiration-image-block {
  margin: 36px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
}
.new-products-landing .inspiration-block .inspiration-image {
  margin: 0 0 24px 0;
}
.new-products-landing .inspiration-block .inspiration-image img {
  width: 100%;
  padding: 12px;
  box-shadow: 0px 0px 8px #ccc;
}
@media (min-width: 767px) {
  .new-products-landing .title-bar.flooring-prod p {
    margin-top: 12px;
  }
  .new-products-landing a.floor-product-breadcrumb {
    width: 50%;
  }
  .new-products-landing .flooring-product-description .slanted-image {
    margin-top: -100px;
    width: 50%;
    float: right;
  }
  .new-products-landing .flooring-product-description .flr-prod-desc-text {
    width: 45%;
    float: left;
  }
  .new-products-landing .related-products-section {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 12px;
  }
  .new-products-landing .related-products-section .related-product .related-product-header {
    height: 225px;
  }
  .new-products-landing .related-products-section .related-product .related-product-header h3 {
    font-size: 2em;
    height: 225px;
  }
  .new-products-landing .related-products-section .related-product .related-product-header a {
    margin-left: -50px;
  }
  .new-products-landing .flooring-prod-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 12px;
  }
  .new-products-landing .product-page-cta {
    padding: 1em 1.5em;
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
  .new-products-landing .product-page-cta .product-cta-message {
    position: relative;
  }
  .new-products-landing .product-page-cta .product-cta-message p {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
  }
  .new-products-landing .product-page-cta a {
    line-height: 32px;
    width: 80%;
  }
  .new-products-landing .prod-page-footer-block-container {
    background-position: right 0;
    background-size: 50% 100%;
  }
  .new-products-landing .product-page-footer-block {
    padding: 3em 0;
    width: 50%;
  }
  .new-products-landing .product-page-footer-block a {
    margin-left: -50px;
  }
}
@media (min-width: 992px) {
  .new-products-landing .title-bar.flooring-prod p {
    width: 45%;
    margin-top: 24px;
  }
  .new-products-landing .flooring-product-description .slanted-image {
    margin-top: -200px;
    margin-bottom: 60px;
  }
  .new-products-landing .flooring-product-description .flr-prod-desc-text {
    width: 40%;
    margin: 60px 0;
  }
  .new-products-landing .related-products-section {
    column-gap: 36px;
  }
  .new-products-landing .related-products-section .related-product .related-product-header h3 {
    font-size: 2.75em;
  }
  .new-products-landing .flooring-prod-blocks {
    column-gap: 36px;
  }
  .new-products-landing .prod-page-footer-block-container {
    background-size: auto 100%;
  }
  .new-products-landing .product-page-footer-block {
    padding: 4em 0;
    width: 65%;
  }
  .new-products-landing .inspiration-block .inspiration-image-block {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    column-gap: 36px;
  }
  .new-products-landing .inspiration-block .inspiration-image {
    margin-bottom: 36px;
  }
}

.new-product-page .title-bar, .new-product-options .title-bar {
  box-sizing: border-box;
  padding: 64px 0 32px 0;
  background-color: #1a5fb3;
  position: relative;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-position: center, center center;
}
.new-product-page .title-bar .container, .new-product-options .title-bar .container {
  padding: 0 2em;
}
.new-product-page .title-bar .back-link, .new-product-options .title-bar .back-link {
  border-bottom: 1px solid rgb(233, 176, 49);
  padding-bottom: 8px;
}
.new-product-page .title-bar .back-link a, .new-product-options .title-bar .back-link a {
  font-family: industry, sans-serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  color: rgb(233, 176, 49);
  font-weight: bold;
}
.wf-active .new-product-page .title-bar .back-link a, .wf-active .new-product-options .title-bar .back-link a {
  opacity: 1;
}
.wf-inactive .new-product-page .title-bar .back-link a, .wf-inactive .new-product-options .title-bar .back-link a {
  opacity: 1;
}
.new-product-page .title-bar h1, .new-product-options .title-bar h1 {
  margin-top: 2em;
  color: rgb(255, 255, 255);
  font-size: 2em;
  text-transform: uppercase;
}
.new-product-page .title-bar ul, .new-product-options .title-bar ul {
  font-family: industry, sans-serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  color: rgb(255, 255, 255);
  padding-inline-start: 20px;
  margin-bottom: 48px;
}
.wf-active .new-product-page .title-bar ul, .wf-active .new-product-options .title-bar ul {
  opacity: 1;
}
.wf-inactive .new-product-page .title-bar ul, .wf-inactive .new-product-options .title-bar ul {
  opacity: 1;
}
.new-product-page .title-bar.prod-options-title-bar, .new-product-options .title-bar.prod-options-title-bar {
  padding: 0;
}
.new-product-page .title-bar.prod-options-title-bar .container, .new-product-options .title-bar.prod-options-title-bar .container {
  padding: 0;
}
.new-product-page .title-bar.prod-options-title-bar .container .prod-options-image, .new-product-options .title-bar.prod-options-title-bar .container .prod-options-image {
  box-sizing: border-box;
  width: 100%;
  height: 300px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
.new-product-page .title-bar.prod-options-title-bar .container .prod-options-image.no-mobile, .new-product-options .title-bar.prod-options-title-bar .container .prod-options-image.no-mobile {
  display: none;
}
.new-product-page .title-bar.prod-options-title-bar .container .prod-options-text, .new-product-options .title-bar.prod-options-title-bar .container .prod-options-text {
  box-sizing: border-box;
  padding: 64px 2em 0 2em;
}
.new-product-page .form-container, .new-product-options .form-container {
  border-bottom: 1px solid #a0a0a0;
}
.new-product-page .form-container #about-employees, .new-product-options .form-container #about-employees {
  margin: 1em 0;
}
.new-product-page .form-container #about-employees h3 span, .new-product-options .form-container #about-employees h3 span {
  font-size: 0.6em;
  cursor: pointer;
  padding: 0 0 0 2em;
}
.new-product-page .product-detail-section, .new-product-options .product-detail-section {
  padding: 1em 0;
}
.new-product-page .product-detail-section h2, .new-product-options .product-detail-section h2 {
  margin: 2em 0 1em 0;
  padding: 0 0 0.5em 0;
  color: rgb(77, 77, 77);
  border-bottom: 1px solid rgb(233, 176, 49);
}
.new-product-page .product-detail-section h3, .new-product-options .product-detail-section h3 {
  font-family: museo-slab, serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  margin: 2em 0 1em 0;
}
.wf-active .new-product-page .product-detail-section h3, .wf-active .new-product-options .product-detail-section h3 {
  opacity: 1;
}
.wf-inactive .new-product-page .product-detail-section h3, .wf-inactive .new-product-options .product-detail-section h3 {
  opacity: 1;
}
.new-product-page .product-detail-section p, .new-product-page .product-detail-section ul, .new-product-page .product-detail-section li, .new-product-options .product-detail-section p, .new-product-options .product-detail-section ul, .new-product-options .product-detail-section li {
  font-family: industry, sans-serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  color: rgb(128, 128, 128);
}
.wf-active .new-product-page .product-detail-section p, .wf-active .new-product-page .product-detail-section ul, .wf-active .new-product-page .product-detail-section li, .wf-active .new-product-options .product-detail-section p, .wf-active .new-product-options .product-detail-section ul, .wf-active .new-product-options .product-detail-section li {
  opacity: 1;
}
.wf-inactive .new-product-page .product-detail-section p, .wf-inactive .new-product-page .product-detail-section ul, .wf-inactive .new-product-page .product-detail-section li, .wf-inactive .new-product-options .product-detail-section p, .wf-inactive .new-product-options .product-detail-section ul, .wf-inactive .new-product-options .product-detail-section li {
  opacity: 1;
}
.new-product-page .product-detail-section .option-slider, .new-product-options .product-detail-section .option-slider {
  margin-bottom: 2em;
}
.new-product-page .product-detail-section .option-slider .option-item img, .new-product-options .product-detail-section .option-slider .option-item img {
  border: 1px solid #e4e4e4;
}
.new-product-page .product-detail-section .option-slider .option-item h4, .new-product-options .product-detail-section .option-slider .option-item h4 {
  font-family: museo-slab, serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  color: #7a7a7a;
  font-size: 0.9em;
}
.wf-active .new-product-page .product-detail-section .option-slider .option-item h4, .wf-active .new-product-options .product-detail-section .option-slider .option-item h4 {
  opacity: 1;
}
.wf-inactive .new-product-page .product-detail-section .option-slider .option-item h4, .wf-inactive .new-product-options .product-detail-section .option-slider .option-item h4 {
  opacity: 1;
}
.new-product-page .product-detail-section .product-page-cta, .new-product-options .product-detail-section .product-page-cta {
  margin: 1.5em 0;
  padding: 2.5em 1.5em;
  background-color: rgb(0, 68, 150);
  text-align: center;
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  color: rgb(255, 255, 255);
}
.wf-active .new-product-page .product-detail-section .product-page-cta, .wf-active .new-product-options .product-detail-section .product-page-cta {
  opacity: 1;
}
.wf-inactive .new-product-page .product-detail-section .product-page-cta, .wf-inactive .new-product-options .product-detail-section .product-page-cta {
  opacity: 1;
}
.new-product-page .product-detail-section .product-page-cta p, .new-product-options .product-detail-section .product-page-cta p {
  margin: 0 0 2em 0;
  color: rgb(255, 255, 255);
}
.new-product-page .option-block, .new-product-options .option-block {
  margin: 2em 0 0 0;
}
.new-product-page .option-block ul, .new-product-options .option-block ul {
  padding: 0 1em;
}
.new-product-page .option-block ul li, .new-product-options .option-block ul li {
  font-family: museo-slab, serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  margin: 0 0 0.25em 0;
}
.wf-active .new-product-page .option-block ul li, .wf-active .new-product-options .option-block ul li {
  opacity: 1;
}
.wf-inactive .new-product-page .option-block ul li, .wf-inactive .new-product-options .option-block ul li {
  opacity: 1;
}
.new-product-page .option-block a, .new-product-options .option-block a {
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  color: rgb(233, 176, 49);
  text-decoration: underline;
}
.wf-active .new-product-page .option-block a, .wf-active .new-product-options .option-block a {
  opacity: 1;
}
.wf-inactive .new-product-page .option-block a, .wf-inactive .new-product-options .option-block a {
  opacity: 1;
}
.new-product-page .option-block a:hover, .new-product-options .option-block a:hover {
  color: #d99d17;
}
.new-product-page .option-block .option-block-image img, .new-product-options .option-block .option-block-image img {
  width: 100%;
}
.new-product-page .option-block .option-block-image h4, .new-product-options .option-block .option-block-image h4 {
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  margin: 0;
  padding: 1em 0;
  background-color: rgb(0, 68, 150);
  color: rgb(255, 255, 255);
  text-align: center;
}
.wf-active .new-product-page .option-block .option-block-image h4, .wf-active .new-product-options .option-block .option-block-image h4 {
  opacity: 1;
}
.wf-inactive .new-product-page .option-block .option-block-image h4, .wf-inactive .new-product-options .option-block .option-block-image h4 {
  opacity: 1;
}
.new-product-page .prod-page-footer-block-container, .new-product-options .prod-page-footer-block-container {
  background-repeat: no-repeat;
  background-size: 0 0;
}
.new-product-page .product-page-footer-block, .new-product-options .product-page-footer-block {
  margin: 2em 0;
  text-align: center;
}
.new-product-page .product-page-footer-block h3, .new-product-options .product-page-footer-block h3 {
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.3em;
  margin: 0 0 1.5em 0;
}
.wf-active .new-product-page .product-page-footer-block h3, .wf-active .new-product-options .product-page-footer-block h3 {
  opacity: 1;
}
.wf-inactive .new-product-page .product-page-footer-block h3, .wf-inactive .new-product-options .product-page-footer-block h3 {
  opacity: 1;
}
.new-product-page .product-page-footer-block h3::after, .new-product-options .product-page-footer-block h3::after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 100px;
  padding-top: 20px;
  border-bottom: 1px solid rgb(233, 176, 49);
}
.new-product-page .product-page-footer-block p, .new-product-options .product-page-footer-block p {
  font-family: museo-slab, serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  color: rgb(128, 128, 128);
  margin: 0 0 1.5em 0;
}
.wf-active .new-product-page .product-page-footer-block p, .wf-active .new-product-options .product-page-footer-block p {
  opacity: 1;
}
.wf-inactive .new-product-page .product-page-footer-block p, .wf-inactive .new-product-options .product-page-footer-block p {
  opacity: 1;
}
.new-product-page .product-page-footer-block a, .new-product-options .product-page-footer-block a {
  color: rgb(255, 255, 255);
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
}
.wf-active .new-product-page .product-page-footer-block a, .wf-active .new-product-options .product-page-footer-block a {
  opacity: 1;
}
.wf-inactive .new-product-page .product-page-footer-block a, .wf-inactive .new-product-options .product-page-footer-block a {
  opacity: 1;
}
@media (min-width: 580px) {
  .new-product-page .option-block-container, .new-product-options .option-block-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2em;
    margin: 0 0 2.5em 0;
  }
  .new-product-page .option-block-container .option-block ul, .new-product-options .option-block-container .option-block ul {
    padding: 0 1.5em;
  }
  .new-product-page .option-block-container .option-block a, .new-product-options .option-block-container .option-block a {
    padding: 0 0.5em;
  }
}
@media (min-width: 767px) {
  .new-product-page .title-bar.prod-options-title-bar .title-bar-contents, .new-product-options .title-bar.prod-options-title-bar .title-bar-contents {
    box-sizing: border-box;
    display: table;
    width: 100%;
    overflow: auto;
  }
  .new-product-page .title-bar.prod-options-title-bar .title-bar-contents .prod-options-image, .new-product-options .title-bar.prod-options-title-bar .title-bar-contents .prod-options-image {
    width: 50%;
  }
  .new-product-page .title-bar.prod-options-title-bar .title-bar-contents .prod-options-image.mobile-only, .new-product-options .title-bar.prod-options-title-bar .title-bar-contents .prod-options-image.mobile-only {
    display: none;
  }
  .new-product-page .title-bar.prod-options-title-bar .title-bar-contents .prod-options-image.no-mobile, .new-product-options .title-bar.prod-options-title-bar .title-bar-contents .prod-options-image.no-mobile {
    display: table-cell;
  }
  .new-product-page .title-bar.prod-options-title-bar .title-bar-contents .prod-options-text, .new-product-options .title-bar.prod-options-title-bar .title-bar-contents .prod-options-text {
    display: table-cell;
    width: 50%;
  }
  .new-product-page .product-detail-section .title-bar .title-bar-wrapper, .new-product-options .product-detail-section .title-bar .title-bar-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 24px;
  }
  .new-product-page .product-detail-section .title-bar .title-bar-wrapper .title-bar-cta-link, .new-product-options .product-detail-section .title-bar .title-bar-wrapper .title-bar-cta-link {
    text-align: right;
    padding-top: 6em;
  }
  .new-product-page .product-detail-section .product-page-cta, .new-product-options .product-detail-section .product-page-cta {
    padding: 1em 1.5em;
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
  .new-product-page .product-detail-section .product-page-cta .product-cta-message, .new-product-options .product-detail-section .product-page-cta .product-cta-message {
    position: relative;
  }
  .new-product-page .product-detail-section .product-page-cta .product-cta-message p, .new-product-options .product-detail-section .product-page-cta .product-cta-message p {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
  }
  .new-product-page .product-detail-section .product-page-cta a, .new-product-options .product-detail-section .product-page-cta a {
    line-height: 32px;
    width: 80%;
  }
  .new-product-page .prod-page-footer-block-container, .new-product-options .prod-page-footer-block-container {
    background-position: right 0;
    background-size: 50% 100%;
  }
  .new-product-page .product-page-footer-block, .new-product-options .product-page-footer-block {
    padding: 3em 0;
    width: 50%;
  }
  .new-product-page .product-page-footer-block a, .new-product-options .product-page-footer-block a {
    margin-left: -50px;
  }
}
@media (min-width: 992px) {
  .new-product-page .option-block-container, .new-product-options .option-block-container {
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 2.5em;
  }
  .new-product-page .prod-page-footer-block-container, .new-product-options .prod-page-footer-block-container {
    background-size: auto 100%;
  }
  .new-product-page .product-page-footer-block, .new-product-options .product-page-footer-block {
    padding: 4em 0;
    width: 65%;
  }
}

a.yellow-slant-btn {
  font-style: normal;
  background-color: rgb(233, 176, 49);
  transform: skew(-10deg);
  padding: 0.75em 1.75em;
  border-radius: 0;
  color: rgb(255, 255, 255);
}
a.yellow-slant-btn span {
  font-family: museo-slab, serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  transform: skew(10deg) !important;
  display: inline-block;
}
.wf-active a.yellow-slant-btn span {
  opacity: 1;
}
.wf-inactive a.yellow-slant-btn span {
  opacity: 1;
}
a.yellow-slant-btn:hover {
  background-color: #d99d17;
}

a.unslanted-yellow-button {
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-style: normal;
  background-color: rgb(233, 176, 49);
  padding: 0.75em 1.75em;
  border-radius: 0;
  color: rgb(255, 255, 255);
}
.wf-active a.unslanted-yellow-button {
  opacity: 1;
}
.wf-inactive a.unslanted-yellow-button {
  opacity: 1;
}
a.unslanted-yellow-button:hover {
  background-color: #d99d17;
}

a.showroom-image {
  position: relative;
  display: block;
}
a.showroom-image .hover-overlay {
  box-sizing: border-box;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
  color: white !important;
  padding: 17px;
  transition: all 0.3s ease-in;
  opacity: 0;
}
a.showroom-image .hover-overlay .overlay-icon {
  float: right;
  font-size: 24px;
}
a.showroom-image .hover-overlay .overlay-text {
  font-family: museo-slab, serif;
  font-weight: 700;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  font-size: 0.9em;
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 17px;
}
.wf-active a.showroom-image .hover-overlay .overlay-text {
  opacity: 1;
}
.wf-inactive a.showroom-image .hover-overlay .overlay-text {
  opacity: 1;
}
a.showroom-image:hover .hover-overlay {
  opacity: 1;
}

.accordion-group {
  margin-bottom: 1em;
}

section.accordion-content article {
  width: 100% !important;
}
section.accordion-content h4 {
  padding-left: 1.6em;
  cursor: pointer;
  margin-top: 0.5em;
  margin-bottom: 0;
}
section.accordion-content svg.trigger-plus {
  display: inline-block;
  float: left;
  width: 1.5em;
  height: 1.5em;
  margin-top: -2px;
  margin-left: -1.5em;
}
section.accordion-content div {
  padding-left: 1.6em;
}

.trigger-plus {
  fill: color(swatch-one);
  transition: transform ease 0.5s;
  transform: scale(0.5, 0.5);
  transform-origin: 50% 50%;
  will-change: transform;
}

.trigger-plus .vertical {
  transition: transform ease 0.5s;
  will-change: transform;
  transform-origin: 50% 50%;
}

.trigger-plus:hover,
*:hover > .trigger-plus {
  transform: scale(0.75, 0.75);
}

.open > * > .trigger-plus {
  transform: scale(0.5, 0.5);
}

.open > * > .trigger-plus .vertical {
  transform: scaleY(0);
}

.open > * > .trigger-plus:hover {
  transform: rotate(90deg) scale(0.5, 0.5);
}

.ghost-button {
  cursor: pointer;
  display: inline-block;
  padding: 0.5em 1em;
  color: rgb(77, 77, 77);
  background-color: rgb(255, 255, 255);
  border: 2px solid rgb(77, 77, 77);
  border-radius: 2px;
  text-align: center;
  outline: none;
  text-decoration: none;
  font-family: helvetica, sans-serif;
  font-weight: 400;
  opacity: 0;
  transition: opacity ease-in 0.3s;
  line-height: 1.2;
  transition: color 0.3s ease-out, background-color 0.3s ease-out, background-image 0.3s ease-out, border-color 0.3s ease-out;
}
.wf-active .ghost-button {
  opacity: 1;
}
.wf-inactive .ghost-button {
  opacity: 1;
}
.ghost-button:link, .ghost-button:visited {
  color: rgb(77, 77, 77);
}
.ghost-button:hover, .ghost-button:active, .ghost-button:visited:hover {
  background-color: rgb(77, 77, 77);
  border-color: rgb(77, 77, 77);
  color: rgb(255, 255, 255);
  transition: color 0.3s ease-in, background-color 0.3s ease-in, background-image 0.3s ease-in, border-color 0.3s ease-in;
}
.ghost-button.small {
  font-size: 0.85em;
}

.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-centered .owl-wrapper {
  display: table !important;
}

.owl-centered .owl-item {
  display: table-cell;
  float: none;
  max-height: 100px !important;
}

.owl-centered .owl-item > div {
  text-align: center;
  margin: 0 8px;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  height: 45px;
  width: 45px;
  color: rgb(233, 176, 49);
  margin-right: 6px;
  transition: all 0.3s ease;
  font-size: 40px;
}
.owl-carousel .owl-nav button.owl-next:hover, .owl-carousel .owl-nav button.owl-prev:hover {
  color: #d99d17;
}
.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  right: -50px;
}
.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  left: -50px;
}

.option-slider {
  width: 75vw;
  margin: 0 auto;
}

.swatch {
  display: inline-block;
  width: 100px;
  height: 100px;
  border: 1px solid lightgray;
}
.swatch.white {
  background-color: rgb(255, 255, 255);
}
.swatch.black {
  background-color: rgb(0, 0, 0);
}
.swatch.gray {
  background-color: rgb(128, 128, 128);
}
.swatch.gray-light {
  background-color: #a0a0a0;
}
.swatch.gray-medlight {
  background-color: #b9b9b9;
}
.swatch.gray-xlight {
  background-color: lightgray;
}
.swatch.gray-xxlight {
  background-color: #ececec;
}
.swatch.gray-dark {
  background-color: #606060;
}
.swatch.gray-meddark {
  background-color: #464646;
}
.swatch.gray-xdark {
  background-color: #2d2d2d;
}
.swatch.gray-xxdark {
  background-color: #202020;
}
.swatch.swatchone {
  background-color: rgb(0, 68, 150);
}
.swatch.swatchone-light {
  background-color: #1a5fb3;
}
.swatch.swatchone-medlight {
  background-color: #3993ff;
}
.swatch.swatchone-xlight {
  background-color: #81baff;
}
.swatch.swatchone-xxlight {
  background-color: #c9e1ff;
}
.swatch.swatchone-dark {
  background-color: #003a80;
}
.swatch.swatchone-meddark {
  background-color: #002c62;
}
.swatch.swatchone-xdark {
  background-color: #001f44;
}
.swatch.swatchone-xxdark {
  background-color: #001126;
}
.swatch.swatchtwo {
  background-color: rgb(77, 77, 77);
}
.swatch.swatchtwo-light {
  background-color: #7a7a7a;
}
.swatch.swatchtwo-medlight {
  background-color: #9d9d9d;
}
.swatch.swatchtwo-xlight {
  background-color: #c1c1c1;
}
.swatch.swatchtwo-xxlight {
  background-color: #e4e4e4;
}
.swatch.swatchtwo-dark {
  background-color: #414141;
}
.swatch.swatchtwo-meddark {
  background-color: #323232;
}
.swatch.swatchtwo-xdark {
  background-color: #232323;
}
.swatch.swatchtwo-xxdark {
  background-color: #131313;
}
.swatch.swatchthree {
  background-color: rgb(233, 176, 49);
}
.swatch.swatchthree-light {
  background-color: #efc465;
}
.swatch.swatchthree-medlight {
  background-color: #f3d48e;
}
.swatch.swatchthree-xlight {
  background-color: #f7e3b7;
}
.swatch.swatchthree-xxlight {
  background-color: #fcf3e0;
}
.swatch.swatchthree-dark {
  background-color: #d99d17;
}
.swatch.swatchthree-meddark {
  background-color: #a67812;
}
.swatch.swatchthree-xdark {
  background-color: #73530c;
}
.swatch.swatchthree-xxdark {
  background-color: #402e07;
}
