﻿/**
 * CONTENTS............You’re reading it!
 * RESET...............See bootstrap.min.css
 * FONT-FACE...........Font family names
 * MIXINS..............LESS mixins
 * ELEMENTS............Extensions of bootstrap styles on basic tags
 * LAYOUT..............Template layout/structure
 * HOMEPAGE............Styles for homepage layout
 * CONTENT.............Styles for shared & inside content
 * FORMS...............Styles for forms
 * RESPONSIVE..........Responsive styles, mobile first
 */
/*------------------------------------*\
    #FONT-FACE
    font-family:'Gill Sans W01 Light';
    font-family:'Gill Sans W04 Roman';
\*------------------------------------*/
.gill-light {
  font-family: 'Gill Sans W01 Light';
}
.gill {
  font-family: 'Gill Sans W04 Roman';
}
/*------------------------------------*\
    #MIXINS
\*------------------------------------*/
.transition {
  transition: all 0.3s ease-out;
}
/*------------------------------------*\
    #ELEMENTS
\*------------------------------------*/
body {
  font-family: 'Verdana', sans-serif;
  color: #444;
  overflow-x: hidden;
}
a,
a:active {
  color: #22a3e0;
}
a:visited {
  color: #056594;
}
a:hover {
  color: #945405;
}
.btn {
  font-weight: normal;
  border-radius: 0;
  transition: all 0.3s ease-out;
}
.btn.btn-primary {
  color: #22a3e0;
  background: #d9d9d9;
  /* old browsers */
  background: -moz-linear-gradient(top, #d9d9d9 0%, #c7c7c7 100%);
  /* firefox */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d9d9d9), color-stop(100%, #c7c7c7));
  /* webkit */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d9d9d9', endColorstr='#c7c7c7', GradientType=0);
  /* ie */
  border: 1px solid #f2f2f2;
}
.btn.btn-primary:hover {
  border-color: #22a3e0;
}
.btn.btn-primary:active {
  transform: translateY(3px);
  -webkit-transform: translateY(3px);
}
.btn.btn-secondary {
  color: #ffffff;
  background: #00245d;
  border: none;
}
.btn.btn-secondary:hover {
  background: #22a3e0;
}
.btn.btn-secondary:active {
  transform: translateY(3px);
  -webkit-transform: translateY(3px);
}
.modal.custom-modal.in {
  display: block;
}
.modal-backdrop {
  position: fixed;
  /* keeps backdrop from scrolling on long modals */
}
/*------------------------------------*\
    #LAYOUT
    // megamenu taken from YAMM3 - http://geedmo.github.io/yamm3/
\*------------------------------------*/
.logo {
  float: left;
  margin: 30px 0 15px 0;
}
.utility {
  clear: left;
  padding: 0 30px;
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.71);
  transition: all 0.3s ease-out;
}
.utility.in {
  background-color: #ffffff;
}
.utility li {
  font-size: 13px;
  line-height: 45px;
}
.navbar-default {
  clear: both;
  background: #05183a;
  background: rgba(5, 24, 58, 0.6);
  border: none;
  border-radius: 0;
  transition: all 0.3s ease-out;
}
.navbar-default.in {
  background: #05183a;
}
.navbar-default .navbar-header .btn-group {
  float: right;
}
.navbar-default .navbar-header .btn-group .btn-link {
  margin-top: 8px;
  color: #22a3e0;
  font-family: 'Gill Sans W04 Roman';
  font-size: 16px;
  text-decoration: none;
  box-shadow: none;
}
.navbar-default .navbar-header .btn-group .navbar-toggle {
  border: none;
  border-radius: 0;
}
.navbar-default .navbar-header .btn-group .navbar-toggle .icon-bar {
  width: 30px;
  height: 3px;
  background-color: #22a3e0;
  border-radius: 0;
}
.navbar-default .navbar-nav > li > a {
  font-family: 'Gill Sans W01 Light';
  font-size: 16px;
  color: #ffffff;
  border: 1px solid rgba(222, 222, 222, 0);
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > li > a:hover {
  color: #05183a;
  background-color: #ffffff;
  border-color: #dedede;
  border-bottom-color: #ffffff;
}
.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:focus,
.navbar-default .navbar-nav > .open > a:hover {
  z-index: 1001;
  color: #05183a;
  background-color: #ffffff;
  border-color: #dedede;
  border-bottom-color: #ffffff;
}
.navbar-default .dropdown-menu a {
  text-decoration: none;
}
.navbar-default .dropdown-menu a.gill-light {
  display: block;
  margin-bottom: 15px;
  font-size: 16px;
  color: #05183a;
}
.navbar-default .dropdown-menu p {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}
.navbar-default .dropdown-menu p a.gill-light {
  display: inline;
  margin: 0;
}
.navbar-default .navbar-form {
  margin-left: 0;
  margin-right: 0;
  padding: 0;
  background-color: #ffffff;
  border: 1px solid #e4e4e4;
}
.navbar-default .navbar-form .search {
  position: relative;
  display: table;
  border-collapse: separate;
}
.navbar-default .navbar-form .search > span {
  position: relative;
  display: table-cell;
  /*width: 1%;*/
}
.navbar-default .navbar-form .searchBox {
  position: relative;
  display: table-cell;
  /*float: left;*/
  width: 100%;
  padding: 4px 12px;
  border: none;
}
.navbar-default .navbar-form .searchBtn {
  /*float: right;*/
  border: 1px solid #ffffff;
  border-radius: 0;
  background: #E6E6E6;
  /* old browsers */
  background: -moz-linear-gradient(top, #E6E6E6 0%, #D5D5D5 100%);
  /* firefox */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #E6E6E6), color-stop(100%, #D5D5D5));
  /* webkit */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e6e6e6', endColorstr='#d5d5d5', GradientType=0);
  /* ie */
  font-size: 14px;
  color: #22a3e0;
}
.mega .nav,
.mega .collapse,
.mega .dropup,
.mega .dropdown {
  position: static;
}
.mega .container {
  position: relative;
}
.mega .navbar-nav > li > .dropdown-menu {
  left: auto;
  margin-top: -3px;
  background-color: #ffffff;
  border: 1px solid #dedede;
  border-radius: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
.mega .mega-content {
  padding: 15px;
}
.mega .mega-content ul {
  min-width: 160px;
}
footer {
  padding-top: 30px;
  font-size: 12px;
}
/* Inside Template Layout */
.inside .content-wrapper {
  border-top: 4px solid #374661;
  background: url(../images/bg/inside-body.png) 0 190px repeat-x;
}
.error .content-wrapper {
  padding-top: 60px;
}
.page-header {
  margin-bottom: 0;
  border: none;
}
.page-header h1,
.page-header .breadcrumb {
  margin: 0;
  line-height: 1.5em;
}
.page-header h1 {
  font-family: 'Gill Sans W04 Roman';
  color: #00235d;
  text-align: right;
}
.page-header .breadcrumb {
  background: none;
}
.page-header .breadcrumb > li + li:before {
  content: '>';
  color: #444;
}
.page-header .breadcrumb .active {
  color: #444;
}
.page-content article {
  padding: 15px;
  background-color: #ffffff;
}
.page-content aside img {
  max-width: none;
  width: 100%;
  margin-bottom: 15px;
}
.background-image {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: auto;
}
/*------------------------------------*\
    #HOMEPAGE
\*------------------------------------*/
.home .content-wrapper {
  position: absolute;
  z-index: 1000;
  width: 100%;
  height: 100%;
  border-top: 4px solid #374661;
  background: url(/images/bg/white-bottom-fade.png) 0 250px repeat-x;
}
.home-headline {
  margin: 60px 0 60px;
  padding: 20px;
  background: rgba(5, 24, 58, 0.48);
  font-family: 'Gill Sans W04 Roman';
  font-size: 36px;
  color: #05183a;
}
.home-headline small {
  display: block;
  font-size: 24px;
  color: #ffffff;
}
#slides {
  position: relative;
}
#slides .slides-container {
  display: none;
}
#slides .scrollable {
  *zoom: 1;
  position: relative;
  top: 0;
  left: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  height: 100%;
}
#slides .scrollable:after {
  content: "";
  display: table;
  clear: both;
}
.slides-navigation {
  margin: 0 auto;
  position: absolute;
  z-index: 1000;
  top: 160px;
  width: 100%;
}
.slides-navigation a {
  position: absolute;
  display: block;
  width: 36px;
  height: 36px;
  font-size: 24px;
  line-height: 36px;
  text-align: center;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}
.slides-navigation a.prev {
  left: 15px;
}
.slides-navigation a.next {
  right: 15px;
}
.home-features img {
  width: 360px;
  margin: 0 auto 15px;
}
/*------------------------------------*\
    #CONTENT
\*------------------------------------*/
.categories li,
.product-listing li,
.style-list li {
  position: relative;
  min-height: 220px;
  text-align: center;
}
.categories li a,
.product-listing li a,
.style-list li a {
  position: relative;
  display: block;
  text-decoration: none;
}
.categories li a img,
.product-listing li a img,
.style-list li a img {
  display: block;
  margin: 0 auto;
  border-radius: 0;
}
.categories li a:hover img,
.product-listing li a:hover img,
.style-list li a:hover img {
  border-color: #22a3e0;
}
.categories li .newProduct,
.product-listing li .newProduct,
.style-list li .newProduct,
.categories li .comingsoon,
.product-listing li .comingsoon,
.style-list li .comingsoon,
.categories li .comingsoonProduct,
.product-listing li .comingsoonProduct,
.style-list li .comingsoonProduct {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 154px;
  max-height: 154px;
  margin: 0 auto;
}
.categories li .newProduct,
.product-listing li .newProduct,
.style-list li .newProduct {
  background: url(../images/newProd.png) 0 0 no-repeat;
}
.categories li .comingsoon,
.product-listing li .comingsoon,
.style-list li .comingsoon,
.categories li .comingsoonProduct,
.product-listing li .comingsoonProduct,
.style-list li .comingsoonProduct {
  background: url(../images/coming-soon.png) 0 0 no-repeat;
}
.section-links {
  margin-bottom: 15px;
  padding: 15px;
  background-color: #ffffff;
}
.section-links h3 {
  font-family: 'Gill Sans W04 Roman';
  color: #05183a;
}
.section-links li {
  margin-bottom: 5px;
}
.section-links a {
  text-decoration: none;
}
.section-links .active {
  display: block;
  margin-left: 10px;
  font-weight: bold;
  color: #945405;
}
.section-links .repair-links li,
.section-links .faq-links li {
  padding: 5px 0;
  font-size: 12px;
  border-bottom: 1px dotted #ccc;
}
/* Product/Collection Filter */
.product-filter {
  border: none;
  border-radius: 0;
  box-shadow: none;
  background-color: #e9e9e9;
}
.product-filter .form-group {
  margin: 0;
}
/* Styles Listing */
.style-list dt {
  font-size: 16px;
  line-height: 3em;
  font-weight: normal;
  border-bottom: 1px solid #f2f2f2;
}
.style-list dd {
  margin-top: 30px;
}
.finishes-list ul li {
  min-height: 240px;
}
/* Product Details */
#divComingSoon,
#divNew {
  margin: 16px 0px;
  padding: 5px;
  background: #22a3e0;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
}
.action-links .btn {
  margin-bottom: 15px;
  font-family: 'Gill Sans W04 Roman';
  line-height: 18px;
}
.action-links .icon-link {
  display: block;
  width: 32px;
  height: 32px;
  margin: 0 auto;
  background: url(/images/bg/product-icons.jpg);
  background-repeat: no-repeat;
}
.action-links .ada {
  cursor: help;
  background-position: 0 0;
}
.action-links .waterSense {
  background-position: -32px 0;
}
.action-links .finish-care {
  background-position: -64px 0;
}
.action-links .install {
  background-position: -96px 0;
}
.action-links .techSpecs {
  background-position: -128px 0;
}
.action-links .seriesFlyer {
  background-position: -160px 0;
}
.action-links .partsDiagram {
  background-position: -192px 0;
}
.action-links .text-center {
  font-family: 'Gill Sans W04 Roman';
  font-size: 14px;
}
.zoom-controls {
  z-index: 100;
}
.zoom-controls a {
  font-size: 16px;
  margin-right: 5px;
}
.finishes,
.related-products {
  margin: 0 42px;
}
.finishes button,
.related-products button {
  position: absolute;
  top: 50%;
  width: 42px;
  height: 42px;
  margin-top: -21px;
  background: #e4e4e4;
  color: #ffffff;
  border: none;
  border-radius: 50%;
}
.finishes button:hover,
.related-products button:hover {
  background-color: #22a3e0;
}
.finishes button.prev,
.related-products button.prev {
  left: -42px;
}
.finishes button.next,
.related-products button.next {
  right: -42px;
}
.finishes .slick-slide,
.related-products .slick-slide {
  text-align: center;
}
.finishes .slick-slide img,
.related-products .slick-slide img {
  margin: 0 auto;
}
.finishes .text-center img,
.related-products .text-center img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-slider {
  margin-bottom: 30px;
}
.nav-tabs > li > a {
  background-color: #f0f0f0;
  border-radius: 0;
}
.tab-content {
  min-height: 144px;
  padding-top: 30px;
}
.list-icon {
  display: block;
  float: left;
  width: 72px;
  background-image: url(../images/bg/tech-info-icons.gif);
  background-repeat: no-repeat;
}
.list-icon.doc-list {
  height: 59px;
  background-position: 0 0;
}
.list-icon.two-d {
  height: 53px;
  background-position: 0 -59px;
}
.list-icon.three-d {
  height: 52px;
  background-position: 0 -112px;
}
.tech-info-list {
  min-height: 108px;
  margin-left: 72px;
}
.popover {
  min-width: 280px;
  background-color: #e2e2e2;
  border-radius: 0;
}
.popover span {
  display: block;
  line-height: 24px;
}
.popover .fName {
  float: left;
  font-weight: bold;
}
.popover .fGroup {
  float: left;
  clear: left;
}
.popover .fPrice {
  float: right;
  font-size: 18px;
}
.popover .view-finish {
  display: block;
  clear: both;
}
.popover .readyShip {
  display: block;
  clear: both;
  height: 27px;
  border-top: 1px solid #bfbfbf;
  background: url(../images/bg/readyship-available.gif) center center no-repeat;
}
.popover.bottom > .arrow:after {
  border-bottom-color: #e2e2e2;
}
/* Finishes Page */
.finish-info {
  padding: 15px 0 30px;
}
/* Split Finishes Page */
.col-padding {
  padding-left: 0;
  padding-right: 0;
}
/* Jumbo/Hero Image (support, commitment, etc.) */
.hero-image {
  margin: -15px -15px 15px -15px;
}
.hero-image img {
  width: 100%;
  height: auto;
}
/* Support Pages */
.support-links li {
  margin-bottom: 15px;
}
.support-links li > a > i {
  display: inline-block;
  width: 2em;
  height: 2em;
  margin-bottom: 5px;
  font-size: 1.33333em;
  line-height: 2em;
  text-align: center;
  color: #ffffff;
  background-color: #22a3e0;
  border-radius: 50%;
}
.support-links .fa-stack {
  float: left;
  margin: 0 5px 5px 0;
  color: #ffffff;
  background-color: #22a3e0;
  border-radius: 50%;
}
.support-links .fa-stack .fa-file-o {
  position: relative;
  left: 3px;
  top: -3px;
}
.support-links a {
  text-decoration: none;
}
.support-links a:hover > i,
.support-links a:hover .fa-stack {
  background-color: #945405;
}
.glossaryTerms li {
  padding: 15px;
  border-bottom: 1px solid #CCC;
}
.glossaryTerms li:hover {
  background: #22a3e0;
  color: #FFF;
}
.tech-docs dt {
  padding: 30px 0;
}
.repairParts div,
.faqs div {
  display: none;
}
.repairParts div.active,
.faqs div.active {
  display: block;
}
.literature .text-center {
  padding: 15px 0;
}
.literature a:hover img {
  border-color: #056594;
}
.literature-entry {
  height: 290px;
  min-height: 290px;
}
.faq dt {
  padding-top: 15px;
}
.faq dd {
  padding: 15px 0;
  border-bottom: 1px solid #cccccc;
}
/* Design Center */
.panel-envision {
  background-color: #d3d9df;
}
.panel-envision:hover {
  background-color: #b5c0ca;
}
.panel-prepare {
  background-color: #e2e6ea;
}
.panel-prepare:hover {
  background-color: #c4cdd5;
}
.panel-choose {
  background-color: #edeff2;
}
.panel-choose:hover {
  background-color: #cfd5dd;
}
.panel-design img {
  margin-bottom: 15px;
}
.panel-design a p {
  color: #444444;
}
.panel-design a:hover {
  text-decoration: none;
}
.gallery .text-center {
  margin-bottom: 15px;
}
.design-articles .img-responsive {
  margin-top: 60px;
}
/* Where to Buy pages */
.label-absolute {
  position: absolute;
  top: 110%;
  left: 0;
}
.map-div {
  height: 400px;
}
.map-error {
  display: none;
}
.pagination.pagination-no-list > span > a,
.pagination.pagination-no-list > span > span {
  position: relative;
  float: left;
  display: inline-block;
  padding: 6px 12px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #056594;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}
.pagination.pagination-no-list > span > a:first-child,
.pagination.pagination-no-list > span > span:first-child {
  margin-left: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
.pagination.pagination-no-list > span > a:last-child,
.pagination.pagination-no-list > span > span:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.pagination.pagination-no-list > span > a:focus,
.pagination.pagination-no-list > span > a:hover,
.pagination.pagination-no-list > span > span:focus,
.pagination.pagination-no-list > span > span:hover {
  color: #05183a;
  background-color: #eee;
  border-color: #ddd;
}
.pagination-no-list > span > span.current-page {
  background-color: #05183a;
  color: #ffffff;
}
.showroom-result {
  padding-top: 15px;
  padding-bottom: 15px;
}
.showroomAddress,
.showroomPhone,
.showroomFax,
.showroomEmail,
.showroomDistance {
  display: block;
}
.salesReps li {
  margin: 15px 0;
}
/* Out Commitment pages */
.commitment-slideshow {
  margin: -15px -15px 15px -15px;
}
.commitment-slideshow ul {
  margin: 0;
  padding: 10px 0;
  background-color: #324173;
}
.commitment-slideshow ul a {
  display: block;
  margin: 10px 0;
  padding: 0 10px;
  color: #ffffff;
}
.commitment-slideshow ul a br {
  display: none;
}
.commitment-slideshow ul a:hover,
.commitment-slideshow ul a:focus {
  text-decoration: none;
}
.commitment-slideshow ul a:before,
.commitment-slideshow ul a:after {
  content: '';
  display: block;
  height: 2px;
  background-color: #ffffff;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.commitment-slideshow ul a:before {
  transform: translateY(-10px);
  -webkit-transform: translateY(-10px);
}
.commitment-slideshow ul a:after {
  transform: translateY(10px);
  -webkit-transform: translateY(10px);
}
.commitment-slideshow ul a:hover:before,
.commitment-slideshow ul a:focus:before,
.commitment-slideshow ul a.active:before {
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
  opacity: 1;
}
.commitment-slideshow ul a:hover:after,
.commitment-slideshow ul a:focus:after,
.commitment-slideshow ul a.active:after {
  transform: translateY(2px);
  -webkit-transform: translateY(2px);
  opacity: 1;
}
.commitment-slideshow .carousel-inner > .item > img {
  width: 100%;
}
/* About pages */
.awards-list {
  margin-top: 30px;
}
.awards-list img,
.awards-list li {
  margin-bottom: 15px;
}
/* Professionals pages */
.pro-doc-search {
  margin-bottom: 15px;
  padding: 15px;
  background-color: #bdc6cf;
}
.pro-doc-search legend {
  font-family: 'Gill Sans W04 Roman';
  font-size: 24px;
  color: #05183a;
  border: none;
}
.image-bank {
  margin-bottom: 15px;
  padding: 15px;
  background-color: #e9ecef;
}
.image-bank h3 {
  margin: 0;
  font-family: 'Gill Sans W04 Roman';
  color: #05183a;
}
.page-content aside .image-bank img {
  width: auto;
  max-width: 100%;
}
.panel-pro {
  border-radius: 0;
}
.panel-pro .panel-heading {
  font-family: 'Gill Sans W04 Roman';
  font-size: 18px;
  background-color: #e2e6ea;
  border-radius: 0;
}
.panel-pro .panel-body {
  background-color: #f8f9fa;
  box-shadow: none;
  border-radius: 0;
}
.panel-pro .panel-body img {
  border: 1px solid #ccbfac;
}
.panel-hero {
  margin: -30px -30px 5px -30px;
  border: none;
}
.panel-hero .panel-heading {
  padding: 10px 30px;
  background-color: #687591;
  border-radius: 0;
}
.panel-hero .panel-heading h2 {
  margin: 0;
  color: #ffffff;
}
.panel-hero .panel-body {
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 0;
  box-shadow: none;
}
/* Site Map */
ul.sitemap {
  list-style-type: none;
}
ul.sitemap li {
  list-style-type: none;
}
ul.sitemap ul {
  border-left: 1px solid #22a3e0;
}
ul.sitemap ul ul {
  border-left: 1px solid #056594;
}
ul.sitemap ul ul ul {
  border-left: 1px solid #444;
}
/*------------------------------------*\
    #FORMS
\*------------------------------------*/
.quick-contact {
  clear: both;
  padding: 30px 15px 15px;
  background-color: #e2e2e2;
  text-align: center;
}
.quick-contact legend {
  font-family: 'Gill Sans W04 Roman';
  color: #05183a;
  border: none;
  text-align: left;
}
.quick-contact ol {
  text-align: left;
}
.quick-contact .form-control:focus {
  border-color: #22a3e0;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(34, 163, 224, 0.6);
}
.quick-contact .btn {
  margin: 0 auto;
}
/*------------------------------------*\
    #RESPONSIVE
\*------------------------------------*/
@media screen and (min-width: 400px) {
  .page-content aside img {
    float: left;
    max-width: 48%;
    margin-right: 2%;
  }
}
@media screen and (max-width: 600px) {
  .col-xxs-6,
  .col-xxs-12 {
    position: relative;
    float: left;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
  }
  .col-xxs-6 {
    width: 50%;
  }
  .col-xxs-12 {
    width: 100%;
  }
  .col-xxs-pull-0 {
    right: auto;
  }
  .col-xxs-push-0 {
    left: auto;
  }
  /* Force table to not be like tables anymore */
  .table table,
  .table thead,
  .table tbody,
  .table th,
  .table td,
  .table tr {
    display: block;
  }
  /* Hide table headers (but not display: none;, for accessibility) */
  .table thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  .table tr {
    border: 1px solid #ccc;
  }
  .table > tbody > tr > td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid #eee;
    white-space: normal;
    text-align: left;
  }
  .table > tbody > tr > td.numerical {
    position: relative;
    padding-left: 50%;
  }
  .table > tbody > tr > td.numerical:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 6px;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    font-weight: bold;
  }
  /*
	Label the data
	*/
  .table td:before {
    content: attr(data-title);
  }
}
@media screen and (min-width: 600px) {
  .showroom-result {
    float: left;
    width: 50%;
    padding-right: 30px;
  }
  .showroom-result:nth-child(2n+1) {
    clear: left;
  }
}
@media screen and (min-width: 768px) {
  .utility {
    clear: none;
    float: right;
  }
  .utility li {
    display: inline;
    margin-right: 10px;
  }
  .utility li:last-child {
    margin-right: 0;
  }
  .navbar-default .container-fluid,
  .navbar-default .navbar-collapse {
    padding-left: 0;
  }
  .navbar-default .navbar-form {
    margin-right: -15px;
  }
  .home-headline {
    margin-bottom: 180px;
    padding: 30px 60px;
    font-size: 60px;
    letter-spacing: -0.03em;
    background: rgba(5, 24, 58, 0.24);
  }
  .home-headline small {
    font-size: 30px;
  }
  .home .content-wrapper {
    background-position: 0 500px;
  }
  .slides-navigation {
    top: 46%;
  }
  .page-content article {
    padding: 30px;
  }
  .page-content aside img {
    float: none;
    max-width: none;
    margin-right: 0;
  }
  .hero-image {
    margin: -30px -30px 30px -30px;
  }
  .doc-search .btn {
    margin-top: 14px;
  }
  .commitment-slideshow {
    margin: -30px -30px 30px -30px;
  }
  .commitment-slideshow ul {
    overflow: auto;
  }
  .commitment-slideshow ul li {
    float: left;
    width: 50%;
  }
}
@media screen and (min-width: 992px) {
  .inside .content-wrapper {
    background-position: 0 310px;
  }
  .page-header h1,
  .page-header .breadcrumb {
    line-height: 40px;
  }
  .commitment-slideshow ul li {
    width: 20%;
    text-align: center;
  }
  .commitment-slideshow ul li a {
    padding: 0;
  }
  .commitment-slideshow ul li a br {
    display: inline;
  }
  .commitment-slideshow ul li a:before,
  .commitment-slideshow ul li a:after {
    width: 75%;
    margin: 0 auto;
  }
  .showroom-result {
    width: 33.3333%;
  }
  .showroom-result:nth-child(2n+1) {
    clear: none;
  }
  .showroom-result:nth-child(3n+1) {
    clear: left;
  }
}
@media screen and (min-width: 1200px) {
  .inside .content-wrapper {
    background-position: 0 410px;
  }
}
/* Ferguson */
.ferguson-listing li {
  min-height: 400px;
}
.ferguson-listing li > .btn {
  margin-bottom: 4px;
}
.f-img-container {
  width: 120px;
  height: 120px;
  margin: auto;
}
.f-img-container .f-img {
  width: 120px;
  height: 120px;
  object-fit: scale-down;
}
@media screen and (min-width: 400px) {
  .f-img-container {
    width: 144px;
    height: 144px;
    margin: auto;
  }
  .f-img-container .f-img {
    width: 144px;
    height: 144px;
    object-fit: scale-down;
  }
}
.custom-object-fit {
  position: relative;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.custom-object-fit .f-img {
  opacity: 0;
}
.panel-ferguson .panel-title {
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 15px;
}
@media screen and (min-width: 400px) {
  .panel-ferguson .panel-title {
    font-size: 24px;
  }
}
.modal-window {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.25);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.modal-window:target {
  opacity: 1;
  pointer-events: auto;
}
.modal-window .modal-container {
  position: relative;
  width: 90%;
  margin: 30px auto;
  background: #ffffff;
  color: #333333;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  padding: 0px 0 30px;
}
@media screen and (min-width: 768px) {
  .modal-window .modal-container {
    position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}
.modal-window .modal-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  padding: 35px 35px 15px;
}
@media screen and (min-width: 768px) {
  .modal-window .modal-head {
    padding: 5px;
  }
}
.modal-window .modal-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  border-top: 1px solid rgba(0, 0, 0, 0.09);
}
.modal-window .modal-wrap figure {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 50%;
  flex: 0 1 50%;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  .modal-window .modal-wrap figure {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}
.modal-window .modal-wrap figcaption {
  font-size: 15px;
  font-weight: 600;
}
.modal-window header {
  font-weight: bold;
}
.modal-close {
  position: absolute!important;
  right: 5px;
  text-align: center;
  top: 8px;
  font-size: 1.5rem;
  line-height: 2.5rem;
  font-weight: 600;
  padding: 5px 15px;
}
.modal-close:hover {
  color: #000;
}
.none {
  display: none;
}
.external-links-wrap .image-bank {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}