@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
/******************************************************************************
* Base widths for desktop & devices
*/
/******************************************************************************
* Colors
*/
/******************************************************************************
* Fonts
*/
/******************************************************************************
 * Helper Mixins
 */
@import url(wysiwyg.css);
.clearfix:after, .field-name-body:after, .main-menu-header > ul:after, .content-bottom:after, .page-node-36 form#commentForm:after, .page-node-1642 form#commentForm:after, .page-node-1653 form#commentForm:after, .page-node-31 .field-name-body #steps:after {
  content: ".";
  visibility: hidden;
  display: block;
  height: 0;
  clear: both; }

body {
  font-family: "Helvetica", "Lucida Grande", "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 19px;
  color: #444444;
  font-weight: 300; }
  body.cke_editable {
    padding: 5px; }

h1 {
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 15px; }

h2 {
  font-size: 26px;
  line-height: 30px;
  margin-bottom: 15px; }

h3 {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 15px;
  margin-top: 20px; }

p {
  margin-bottom: 15px; }

table thead th {
  font-weight: bold;
  text-align: center;
  padding: 0px 5px 5px 5px; }

table tbody td {
  border: none;
  padding: 20px;
  vertical-align: top; }
  table tbody td p {
    margin-bottom: 0px; }

.field-name-body ul,
.views-field-body ul {
  padding-left: 25px;
  margin-top: 15px;
  margin-bottom: 15px; }
  .field-name-body ul li,
  .views-field-body ul li {
    list-style-type: disc;
    list-style-position: outside; }

.field-name-body ol,
.views-field-body ol {
  padding-left: 25px;
  margin-top: 15px;
  margin-bottom: 15px; }
  .field-name-body ol li,
  .views-field-body ol li {
    list-style-type: decimal;
    list-style-position: outside; }

.field-name-body a,
.views-field-body a {
  text-decoration: underline; }

hr {
  background-image: url("../images/hr-separator.png");
  background-position: top center;
  background-repeat: no-repeat;
  border: 0px;
  margin-top: 50px;
  margin-bottom: 50px; }

strong {
  font-weight: 600; }

a,
a:active {
  color: #444444;
  text-decoration: underline; }

.pathone-continuing-education-courses .field-name-body a, .path-commercial-continuing-education-courses .field-name-body a {
  text-decoration: none; }

a:hover {
  text-decoration: underline; }
  a:hover img {
    opacity: 0.8; }

li.active-trail, a.active-trail {
  font-weight: normal; }

a.external:after {
  content: ".";
  text-indent: -9999px;
  display: inline-block;
  margin-left: 8px;
  width: 10px;
  height: 10px;
  background-image: url("../images/link-external.png");
  background-repeat: no-repeat;
  background-position: top left; }

em {
  font-style: italic; }

.form-required {
  color: inherit; }

sub, sup {
  /* Specified in % so that the sup/sup is the
     right size relative to the surrounding text */
  font-size: 75%;
  /* Zero out the line-height so that it doesn't
     interfere with the positioning that follows */
  line-height: 0;
  /* Where the magic happens: makes all browsers position
     the sup/sup properly, relative to the surrounding text */
  position: relative;
  /* Note that if you're using Eric Meyer's reset.css, this
     is already set and you can remove this rule */
  vertical-align: baseline; }

sup {
  /* Move the superscripted text up */
  top: -0.5em; }

sub {
  /* Move the subscripted text down, but only
     half as far down as the superscript moved up */
  bottom: -0.25em; }

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

body,
html,
div {
  margin: 0;
  padding: 0; }

body {
  width: 100%;
  display: table; }

@media (max-width: 600px) {
  .only-mobile {
    display: block; }
  .only-desktop {
    display: none; } }

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

/* --------------------------------------------------------------

   forms.css
   * Sets up some default styling for forms
   * Gives you classes to enhance your forms

   Usage:
   * For text fields, use class .title or .text
   * For inline forms, use .inline (even when using columns)

-------------------------------------------------------------- */
form, form *,
form *:after,
form *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0; }

/*
  A special hack is included for IE8 since it does not apply padding
  correctly on fieldsets
 */
label {
  font-weight: bold; }

fieldset {
  padding: 0 1.4em 1.4em 1.4em;
  margin: 0 0 1.5em 0;
  border: 1px solid #ccc; }

legend {
  font-weight: bold;
  font-size: 1.2em;
  margin-top: -0.2em;
  margin-bottom: 1em; }

fieldset, #IE8#HACK {
  padding-top: 1.4em; }

legend, #IE8#HACK {
  margin-top: 0;
  margin-bottom: 0; }

/* Form fields
-------------------------------------------------------------- */
/*
  Attribute selectors are used to differentiate the different types
  of input elements, but to support old browsers, you will have to
  add classes for each one. ".title" simply creates a large text
  field, this is purely for looks.
 */
input[type=text], input[type=password], input[type="url"], input[type=email],
input.text, input.title,
textarea {
  background-color: #fff;
  border: 1px solid #bbb;
  color: #000; }

input[type=text]:focus, input[type=password]:focus, input[type="url"]:focus, input[type=email]:focus,
input.text:focus, input.title:focus,
textarea:focus {
  border-color: #666; }

select {
  background-color: #fff;
  border-width: 1px;
  border-style: solid; }

input[type=text], input[type=password], input[type="url"], input[type=email],
input.text, input.title,
textarea, select {
  margin: 0.5em 1em;
  padding: 6px;
  line-height: 1.5em;
  border: 1px solid #DDD;
  vertical-align: middle;
  border-radius: 0;
  -webkit-appearance: none; }

html.js input.form-autocomplete {
  background-position: 100% 8px; }

input.text,
input.title {
  width: 300px;
  padding: 5px; }

input.title {
  font-size: 1.5em; }

textarea {
  width: 390px;
  height: 250px;
  padding: 5px; }

/*
  This is to be used on forms where a variety of elements are
  placed side-by-side. Use the p tag to denote a line.
 */
form.inline {
  line-height: 3; }

form.inline p {
  margin-bottom: 0; }

.form-checkboxes label,
.form-radios label {
  font-weight: normal; }

#user-login label {
  width: 75px;
  display: inline-block; }

/* Success, info, notice and error/alert boxes
-------------------------------------------------------------- */
.error,
.alert,
.notice,
.success,
.info {
  padding: 0.8em;
  margin-bottom: 1em;
  margin-top: 1em;
  border: 2px solid #ddd; }

.error, .alert {
  background: #fbe3e4;
  color: #8a1f11;
  border-color: #fbc2c4; }

.notice {
  background: #fff6bf;
  color: #514721;
  border-color: #ffd324; }

.success {
  background: #e6efc2;
  color: #264409;
  border-color: #c6d880; }

.info {
  background: #d5edf8;
  color: #205791;
  border-color: #92cae4; }

.error a, .alert a {
  color: #8a1f11; }

.notice a {
  color: #514721; }

.success a {
  color: #264409; }

.info a {
  color: #205791; }

form.custom-forms {
  line-height: 1.5em; }
  form.custom-forms input[type=text],
  form.custom-forms textarea,
  form.custom-forms select {
    width: 80%;
    margin-left: 0;
    margin-right: 0;
    max-width: 350px; }
  form.custom-forms textarea {
    height: auto; }
  form.custom-forms input[type="checkbox"] {
    margin-right: 0.5em; }
  form.custom-forms label {
    font-weight: 300; }
  form.custom-forms .field-options {
    margin-bottom: 0.5em; }
  form.custom-forms .submit-note {
    vertical-align: sub; }

.form-column {
  float: left;
  margin: 0 4% 2em 0;
  width: 45%; }

#colorbox .form-column {
  margin: 0 3% 2em 3.9%;
  width: 43%; }

@media (max-width: 600px) {
  .form-column {
    margin: 0 3%;
    width: 93%; } }

.commercial-skyvault-form,
.commercial-request-information-form {
  display: block; }
  .commercial-skyvault-form:after,
  .commercial-request-information-form:after {
    display: table;
    content: '';
    clear: both; }
  .commercial-skyvault-form .form_item,
  .commercial-request-information-form .form_item {
    margin: 1em 0 1.5em;
    display: block;
    clear: both; }
    .commercial-skyvault-form .form_item:after,
    .commercial-request-information-form .form_item:after {
      display: table;
      clear: both;
      content: ''; }
  .commercial-skyvault-form label,
  .commercial-request-information-form label {
    text-align: left;
    font-weight: 100;
    display: block;
    margin: .5em 0; }
  .commercial-skyvault-form input[type=text],
  .commercial-request-information-form input[type=text] {
    display: block;
    margin: 0;
    width: auto;
    height: 24px;
    max-width: 350px;
    width: 80%; }
  .commercial-skyvault-form textarea,
  .commercial-request-information-form textarea {
    display: block;
    margin: 0;
    max-width: 350px;
    width: 80%;
    height: 66px; }
  .commercial-skyvault-form select,
  .commercial-request-information-form select {
    display: block;
    margin: 0;
    padding: 0px;
    height: 27px;
    line-height: 1em;
    width: auto;
    max-width: 350px; }
  .commercial-skyvault-form input[type=checkbox],
  .commercial-request-information-form input[type=checkbox] {
    float: left;
    margin-right: 10px;
    margin-top: 3px; }
  .commercial-skyvault-form .error,
  .commercial-request-information-form .error {
    font-size: 11px;
    border-width: 1px; }
  .commercial-skyvault-form label.error,
  .commercial-request-information-form label.error {
    background: none;
    border: 0px;
    padding: 0px;
    margin: 0 0 -1em; }
  .commercial-skyvault-form input.error,
  .commercial-request-information-form input.error {
    background: #FBE3E4 none repeat scroll 0% 0%;
    color: #8A1F11;
    border-color: #FBC2C4; }

.solatube-blocks-rfi-form textarea {
  display: block;
  height: 66px;
  margin: 0;
  max-width: 250px;
  width: 80%; }

.solatube-blocks-cpf-form textarea {
  display: block;
  height: 66px;
  margin: 0;
  max-width: 250px;
  width: 80%; }

.responsive-form textarea {
  min-width: 100%; }

.responsive-form .submit {
  background-color: #666;
  border: medium none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 10px 0 0;
  padding: 10px 35px;
  text-shadow: -1px 1px #666;
  min-width: 200px;
  -webkit-appearance: none;
  border-radius: 0; }

.responsive-form .form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .responsive-form .form-flex .responsive-item {
    width: 100%;
    margin-bottom: 15px; }
    .responsive-form .form-flex .responsive-item label {
      display: inline-block;
      text-align: left; }
    .responsive-form .form-flex .responsive-item input, .responsive-form .form-flex .responsive-item select {
      min-width: 100%;
      height: 30px; }
    @media (min-width: 769px) {
      .responsive-form .form-flex .responsive-item {
        width: calc(50% - 15px); } }

#banner-campaign {
  width: 100%;
  margin-bottom: -5px; }

.top-campaign-small-banner {
  background: #cbccce !important;
  cursor: pointer;
  margin: 5px 0; }
  .top-campaign-small-banner p {
    margin: 0;
    text-align: center;
    color: #fff;
    padding: 10px 40px; }
  @media (max-width: 768px) {
    .top-campaign-small-banner {
      width: 100% !important; } }

.top-campaign-banner-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #fff;
  margin: 5px 0; }
  .top-campaign-banner-area .banner-image {
    width: 100%;
    background: #808285;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
    @media (min-width: 769px) {
      .top-campaign-banner-area .banner-image {
        width: 43%; } }
    .top-campaign-banner-area .banner-image img {
      width: 100%;
      height: 100%; }
      @media (min-width: 769px) {
        .top-campaign-banner-area .banner-image img {
          position: relative;
          right: 24.6px; } }
    .top-campaign-banner-area .banner-image .text-container {
      position: relative;
      width: 85%;
      color: #fff;
      text-align: center;
      margin: 15px 0; }
      .top-campaign-banner-area .banner-image .text-container h2 {
        color: #fff;
        line-height: 1.2; }
      @media (min-width: 769px) {
        .top-campaign-banner-area .banner-image .text-container {
          text-align: left; } }
      .top-campaign-banner-area .banner-image .text-container h4 span {
        display: inline-block;
        width: 100%;
        text-transform: uppercase;
        line-height: 1.1; }
        .top-campaign-banner-area .banner-image .text-container h4 span.first-row {
          font-weight: 100; }
          @media (min-width: 769px) {
            .top-campaign-banner-area .banner-image .text-container h4 span.first-row {
              font-size: 1.4em; } }
        .top-campaign-banner-area .banner-image .text-container h4 span.second-row {
          font-size: 1.2em; }
          @media (min-width: 769px) {
            .top-campaign-banner-area .banner-image .text-container h4 span.second-row {
              font-size: 1.8em; } }
        .top-campaign-banner-area .banner-image .text-container h4 span.third-row {
          font-weight: 100;
          font-size: 1.6em; }
          @media (min-width: 769px) {
            .top-campaign-banner-area .banner-image .text-container h4 span.third-row {
              font-size: 2.4em; } }
      .top-campaign-banner-area .banner-image .text-container ul {
        padding-left: 30px; }
        .top-campaign-banner-area .banner-image .text-container ul li {
          list-style: disc; }
  .top-campaign-banner-area h2 {
    color: #5184bf;
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #D8D8D8;
    font-weight: 100;
    margin-top: 5px; }
  .top-campaign-banner-area .form-container {
    padding: 20px;
    text-align: center;
    width: 100%;
    min-height: 366px; }
    @media (min-width: 769px) {
      .top-campaign-banner-area .form-container {
        position: relative;
        width: 55%;
        min-height: 230px; } }
    .top-campaign-banner-area .form-container .ui-state-active, .top-campaign-banner-area .form-container .ui-widget-content .ui-state-active, .top-campaign-banner-area .form-container .ui-widget-header .ui-state-active {
      border: none; }
    .top-campaign-banner-area .form-container #banner-close-btn {
      position: absolute;
      top: 5px;
      right: 5px;
      height: 35px;
      width: 35px;
      cursor: pointer; }
      @media (min-width: 769px) {
        .top-campaign-banner-area .form-container #banner-close-btn {
          top: 2px;
          bottom: initial;
          right: 0px; } }
    .top-campaign-banner-area .form-container .steps ul {
      display: none; }
    .top-campaign-banner-area .form-container .checkbox-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: distribute;
      justify-content: space-around;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      margin-top: 20px; }
      .top-campaign-banner-area .form-container .checkbox-container input[type=checkbox] {
        display: none; }
        .top-campaign-banner-area .form-container .checkbox-container input[type=checkbox]:checked + label {
          background: #F7F6F5;
          border-color: #009DBD; }
          .top-campaign-banner-area .form-container .checkbox-container input[type=checkbox]:checked + label:after {
            content: '\002714';
            color: #009dbd;
            position: absolute;
            top: 0;
            left: 3px; }
      .top-campaign-banner-area .form-container .checkbox-container label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 130px;
        position: relative;
        border: 1px solid #707070;
        padding: 7px 15px;
        margin-bottom: 10px;
        font-weight: 100;
        font-size: .8em;
        cursor: pointer; }
        @media (min-width: 769px) {
          .top-campaign-banner-area .form-container .checkbox-container label {
            width: auto;
            margin-bottom: 0; } }
        .top-campaign-banner-area .form-container .checkbox-container label:hover {
          border-color: #009DBD; }
    .top-campaign-banner-area .form-container .input-flexer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      width: 80%;
      margin: 0 auto; }
      .top-campaign-banner-area .form-container .input-flexer .input-container {
        width: 100%;
        margin-bottom: 5px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap; }
        @media (min-width: 769px) {
          .top-campaign-banner-area .form-container .input-flexer .input-container {
            width: calc(50% - 5px); } }
        .top-campaign-banner-area .form-container .input-flexer .input-container .error {
          margin-top: 0; }
      .top-campaign-banner-area .form-container .input-flexer label {
        width: 100%;
        margin-bottom: 5px;
        font-weight: 100;
        text-align: left; }
      .top-campaign-banner-area .form-container .input-flexer input {
        width: 100%;
        margin: 0; }
      .top-campaign-banner-area .form-container .input-flexer .error {
        padding: 5px; }
    .top-campaign-banner-area .form-container .actions ul {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      margin: 25px auto 0;
      list-style: none; }
      @media (min-width: 769px) {
        .top-campaign-banner-area .form-container .actions ul {
          width: 45%; } }
      .top-campaign-banner-area .form-container .actions ul li a {
        color: #5184bf;
        text-decoration: none; }
      .top-campaign-banner-area .form-container .actions ul li:last-child a {
        background: #5184bf;
        color: #fff !important;
        padding: 8px 22px;
        text-decoration: none;
        -webkit-transition: all .5s ease-in-out;
        -o-transition: all .5s ease-in-out;
        transition: all .5s ease-in-out; }
        .top-campaign-banner-area .form-container .actions ul li:last-child a:hover {
          text-decoration: none;
          background: #4470a2; }
    .top-campaign-banner-area .form-container .g-recaptcha {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      margin: 10px auto 17px; }
  @media (max-width: 768px) {
    .top-campaign-banner-area {
      width: 100% !important; } }

.cta-button, a.cta-button {
  color: #FFF;
  background-color: #fdb927;
  padding: .5em 2em .5em 1.5em;
  display: inline-block;
  border-radius: 5px;
  position: relative; }

.cta-button:hover, a.cta-button:hover {
  text-decoration: none; }

.cta-button:after, a.cta-button:after {
  content: ">";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: .65em; }

.video-placeholder-container {
  position: relative; }
  .video-placeholder-container:after {
    content: '';
    display: block;
    position: absolute;
    pointer-events: none;
    width: 90px;
    height: 61px;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -45px;
    z-index: 100;
    background: url("https://static-assets-solatube.s3.amazonaws.com/youtube-play-sprite_0.png?GWSAm88iE__eXa4u9y6x6_e0KZ4QMk2R") no-repeat;
    background-position: 0 0;
    background-size: 90px auto; }
  .video-placeholder-container:hover {
    cursor: pointer; }
    .video-placeholder-container:hover:after {
      background-position: 0 -62px;
      cursor: pointer; }
  .video-placeholder-container.activated:after {
    display: none; }

nav.tabs {
  position: fixed;
  top: 50px;
  left: 0px;
  z-index: 100; }
  nav.tabs ul.primary {
    background-color: rgba(0, 0, 0, 0.6); }
    nav.tabs ul.primary li {
      display: block; }
      nav.tabs ul.primary li a {
        color: #FFF !important; }
  nav.tabs ul.secondary {
    background-color: rgba(0, 0, 0, 0.6);
    font-size: 13px; }
    nav.tabs ul.secondary li {
      display: block; }
      nav.tabs ul.secondary li a {
        color: #FFF !important; }

.field-collection-container {
  border: 0px;
  margin: 0px; }

.field-collection-view {
  border: 0px;
  padding: 0px;
  margin: 0px; }

.field-collection-container .field-items .field-item {
  margin: 0px; }

.flexslider {
  margin-bottom: 0px;
  border: 0px;
  border-radius: 0px;
  -webkit-box-shadow: none;
  box-shadow: none; }
  .flexslider .flex-direction-nav a {
    height: 60px;
    width: 35px;
    top: 350px; }
    .flexslider .flex-direction-nav a.flex-prev {
      background-image: url("../images/arrow-prev.png"); }
    .flexslider .flex-direction-nav a.flex-next {
      background-image: url("../images/arrow-next.png"); }
  .flexslider .flex-control-nav {
    bottom: auto;
    margin-top: -40px;
    right: 100px;
    z-index: 20;
    width: auto; }
    .flexslider .flex-control-nav li {
      margin: 0px 0px 0px 5px; }
      .flexslider .flex-control-nav li a {
        background-image: url("../images/pagination.png");
        width: 12px;
        height: 12px;
        background-position: left top;
        background-color: transparent; }
        .flexslider .flex-control-nav li a.flex-active {
          background-position: left -12px; }
  .flexslider a img {
    opacity: 1; }

/*
 * CSS Styles that are needed by jScrollPane for it to operate correctly.
 *
 * Include this stylesheet in your site or copy and paste the styles below into your stylesheet - jScrollPane
 * may not operate correctly without them.
 */
.jspContainer {
  overflow: hidden;
  position: relative; }

.jspPane {
  position: absolute; }

.jspVerticalBar {
  position: absolute;
  top: 0;
  right: 0;
  width: 7px;
  height: 100%;
  border-left: 2px solid #DEDEDE; }

.jspHorizontalBar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 16px;
  background: red;
  display: none; }

.jspVerticalBar *,
.jspHorizontalBar * {
  margin: 0;
  padding: 0; }

.jspCap {
  display: none; }

.jspHorizontalBar .jspCap {
  float: left;
  display: none; }

.jspTrack {
  background: #FFF;
  position: relative; }

.jspDrag {
  background: #7B797A;
  position: relative;
  border-radius: 5px;
  top: 0;
  left: 0;
  cursor: pointer; }

.jspHorizontalBar .jspTrack,
.jspHorizontalBar .jspDrag {
  float: left;
  height: 100%; }

.jspArrow {
  background: #50506d;
  text-indent: -20000px;
  display: block;
  cursor: pointer; }

.jspArrow.jspDisabled {
  cursor: default;
  background: #80808d; }

.jspVerticalBar .jspArrow {
  height: 16px; }

.jspHorizontalBar .jspArrow {
  width: 16px;
  float: left;
  height: 100%; }

.jspVerticalBar .jspArrow:focus {
  outline: none; }

.jspCorner {
  display: none;
  background: #eeeef4;
  float: left;
  height: 100%; }

/* Yuk! CSS Hack for IE6 3 pixel bug :( */
* html .jspCorner {
  margin: 0 -3px 0 0; }

/*
    ColorBox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden; }

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%; }

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left; }

#cboxContent {
  position: relative; }

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch; }

#cboxTitle {
  margin: 0; }

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer; }

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none; }

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0; }

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; }

/*
    User Style:
    Change the following styles to modify the appearance of ColorBox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: #000; }

#cboxWrapper {
  background: #FFF;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

#cboxContent {
  margin-top: 20px;
  overflow: visible; }

.cboxIframe {
  background: #fff; }

#cboxError {
  padding: 50px;
  border: 1px solid #ccc; }

#cboxLoadedContent {
  background: #FFF;
  padding: 0px; }

#cboxLoadingGraphic {
  background: url(../images/loading.gif) no-repeat center center; }

#cboxLoadingOverlay {
  background: #FFF; }

#cboxTitle {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #000;
  color: #FFF;
  background: #646464;
  background: rgba(0, 0, 0, 0.5);
  display: block;
  float: none !important;
  width: 100%;
  padding: 10px 15px 8px 15px; }

#cboxCurrent {
  position: absolute;
  top: -22px;
  right: 205px;
  text-indent: -9999px; }

#cboxSlideshow, #cboxClose {
  text-indent: -9999px;
  width: 16px;
  height: 16px;
  position: absolute;
  top: -20px;
  background-image: url("../images/controls.png");
  background-repeat: no-repeat;
  background-position: top left; }

#cboxPrevious {
  height: 60px;
  width: 35px;
  background-image: url("../images/arrow-prev.png");
  background-repeat: no-repeat;
  background-position: left center;
  position: absolute;
  top: 45%;
  left: 15px;
  text-indent: -9999px;
  z-index: 10; }

#cboxNext {
  height: 60px;
  width: 35px;
  background-image: url("../images/arrow-next.png");
  background-repeat: no-repeat;
  background-position: right center;
  position: absolute;
  top: 45%;
  right: 15px;
  text-indent: -9999px;
  z-index: 10; }

/* #cboxPrevious{background-position:0px 0px; right:49px;}
#cboxPrevious:hover{background-position:0px -25px;}
#cboxNext{background-position:-25px 0px; right:27px;}
#cboxNext:hover{background-position:-25px -25px;}*/
#cboxClose {
  background-position: -50px 0px;
  right: 8px; }

#cboxClose:hover {
  background-position: -50px -25px; }

.cboxSlideshow_on #cboxPrevious, .cboxSlideshow_off #cboxPrevious {
  right: 66px; }

.cboxSlideshow_on #cboxSlideshow {
  background-position: -75px -25px;
  right: 44px; }

.cboxSlideshow_on #cboxSlideshow:hover {
  background-position: -100px -25px; }

.cboxSlideshow_off #cboxSlideshow {
  background-position: -100px 0px;
  right: 44px; }

.cboxSlideshow_off #cboxSlideshow:hover {
  background-position: -75px -25px; }

.sidebartab-menu::-webkit-scrollbar {
  -webkit-appearance: none;
  width: 7px; }

.sidebartab-menu::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, 0.5); }

body {
  background-color: #f2f2f2;
  margin: 0 auto;
  padding-top: 0px;
  min-height: 100%; }

#main-wrapper {
  margin: 0 auto;
  width: 1120px;
  position: relative;
  -webkit-box-shadow: 0px 0px 30px -10px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 30px -10px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 30px -10px rgba(0, 0, 0, 0.75);
  background: #fff; }

.noscroll {
  position: fixed;
  overflow-y: scroll;
  height: 100%;
  width: 100%; }

.container {
  padding: 0 15px; }
  @media screen and (min-width: 814px) {
    .container {
      padding: 0 42px; } }

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

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }

.justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around; }

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center; }

.col-3 {
  width: 53%; }
  @media screen and (min-width: 480px) {
    .col-3 {
      width: 37%; } }
  @media screen and (min-width: 814px) {
    .col-3 {
      width: 22%; } }

.main-menu-header > ul {
  margin: 0;
  background: #808285;
  list-style: none;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .main-menu-header > ul ul {
    display: none; }
    .main-menu-header > ul ul .expanded.level-2:after {
      content: "+";
      color: #fff;
      width: 10px;
      height: 19px;
      display: inline-block;
      position: absolute;
      top: 9px;
      right: 10px;
      font-size: 15px;
      cursor: pointer; }
  .main-menu-header > ul li.level-1:hover > ul {
    display: block; }
  .main-menu-header > ul > li {
    position: relative;
    border-right: 1px solid #c9c9c9; }
    .main-menu-header > ul > li:last-child {
      border-right: none; }
    .main-menu-header > ul > li:hover {
      background: #6b6d6f; }
    .main-menu-header > ul > li.active-trail, .main-menu-header > ul > li.active {
      background: #4085c4; }
    .main-menu-header > ul > li > a {
      color: #FFFFFF;
      display: block;
      font-size: 12px;
      padding: 11px 0;
      min-width: 159px;
      text-align: center;
      text-decoration: none; }
  .main-menu-header > ul > li > ul {
    position: absolute;
    width: 100%;
    z-index: 200;
    background: #ffffff;
    -webkit-box-shadow: 0px 0px 40px -10px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 40px -10px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 50px -10px rgba(0, 0, 0, 0.75);
    margin-left: 0;
    padding: 0 20px; }
    .main-menu-header > ul > li > ul > li {
      position: relative; }
      .main-menu-header > ul > li > ul > li .active-trail {
        color: #4085c4; }
      .main-menu-header > ul > li > ul > li > ul > li > a {
        text-transform: capitalize;
        padding-left: 15px;
        font-size: 12px; }
      .main-menu-header > ul > li > ul > li > ul > li .active-trail {
        color: #4085c4; }
      .main-menu-header > ul > li > ul > li > ul {
        display: none; }
      .main-menu-header > ul > li > ul > li:hover ul {
        display: block; }
      .main-menu-header > ul > li > ul > li a {
        font-size: 14px;
        font-weight: 400;
        padding: 5px 0;
        display: block;
        color: #7f8285;
        text-transform: uppercase; }
        .main-menu-header > ul > li > ul > li a:hover {
          color: #555555;
          text-decoration: none; }

.grey {
  color: #666; }

.header-region {
  padding-bottom: 25px;
  position: relative; }
  .header-region .logo {
    padding-left: 78px;
    padding-top: 25px; }
  .header-region .header-region-inner {
    float: right;
    padding-right: 64px;
    font-size: 12px;
    color: #666;
    padding-top: 15px; }
    .header-region .header-region-inner .free-home-guide {
      margin-left: -50px; }
    .header-region .header-region-inner .call {
      color: #666; }
    .header-region .header-region-inner .phone-container {
      display: inline-block;
      margin-right: 30px; }
      .header-region .header-region-inner .phone-container span.line-seperator {
        margin: 0 15px; }
      .header-region .header-region-inner .phone-container a {
        display: inline-block; }
    .header-region .header-region-inner .cta-find-dealer {
      float: right;
      margin-top: 15px;
      font-size: 13px; }
      .header-region .header-region-inner .cta-find-dealer form {
        display: inline-block; }
        .header-region .header-region-inner .cta-find-dealer form .find {
          display: block; }
        .header-region .header-region-inner .cta-find-dealer form input[type=text] {
          width: 105px;
          height: 30px;
          margin: 6px; }
        .header-region .header-region-inner .cta-find-dealer form input[type=submit] {
          width: 35px;
          height: 30px;
          color: #fff;
          margin-left: -4px;
          background-color: #4486c2;
          border: 0px; }
  .header-region .breadcrumb {
    padding-left: 136px;
    color: #58595b;
    font-size: 12px; }
    .header-region .breadcrumb .breadcrumb-selected {
      color: #0083c7; }
  .header-region .block-front-business-opportunities {
    position: absolute;
    left: 20px;
    top: 27px; }

input[type=text].submit-short {
  width: 120px;
  height: 24px;
  margin: 0px; }

input[type=submit].submit-short {
  background-image: url("../images/submit-button.png");
  width: 30px;
  height: 24px;
  background-color: transparent;
  text-indent: -9999px;
  border: 0px; }

#main-content > h1 {
  /*padding-left: 75px;
    padding-right: 64px;*/
  padding: 20px 85px;
  font-size: 28px;
  line-height: 30px; }

#main-content .field-name-body {
  /*padding-left: 75px;
    padding-right: 64px;*/
  padding: 20px 85px; }

#main-content .large-body .field-name-body {
  padding-left: 65px;
  padding-right: 65px; }

.pathone-continuing-education-courses #main-content .field-name-body, .path-commercial-continuing-education-courses #main-content .field-name-body {
  padding: 0; }

.front #block-block-9 {
  padding: 0px 107px; }

.page-node-377 #block-block-14 {
  display: none; }

.content-intensive-page #main-content > h1 {
  padding-left: 192px;
  padding-right: 192px; }

.content-intensive-page #main-content .field-name-body {
  padding-left: 192px;
  padding-right: 192px; }
  .content-intensive-page #main-content .field-name-body hr {
    margin-left: -107px;
    margin-right: -107px; }

.content-bottom {
  background-repeat: no-repeat;
  background-position: top center;
  padding-top: 28px;
  margin-top: 30px;
  padding-bottom: 28px;
  padding-left: 42px;
  padding-right: 42px; }
  .content-bottom .call-today,
  .content-bottom .find-dealer,
  .content-bottom .contact-specialist,
  .content-bottom .news-special-offers,
  .content-bottom .free-daylighting-guide,
  .content-bottom .promo-block {
    float: left;
    background-image: url("../images/vertical-separator.png");
    background-repeat: no-repeat;
    background-position: top left;
    min-height: 165px;
    font-size: 20px;
    line-height: 26px;
    padding-top: 30px; }
    .content-bottom .call-today > h3,
    .content-bottom .find-dealer > h3,
    .content-bottom .contact-specialist > h3,
    .content-bottom .news-special-offers > h3,
    .content-bottom .free-daylighting-guide > h3,
    .content-bottom .promo-block > h3 {
      margin-top: 0px; }
  .content-bottom > div:first-child {
    background-image: none; }
  .content-bottom .block-block {
    width: 100%; }
  .content-bottom .front-main-content {
    width: 100%; }
  .content-bottom .call-today {
    /*width: 445px;*/ }
  .content-bottom .find-dealer {
    /*width: 295px;*/ }
    .content-bottom .find-dealer form {
      margin-left: auto;
      margin-right: auto;
      width: 114px; }
      .content-bottom .find-dealer form input[type=text] {
        width: 80px;
        height: 24px;
        margin: 0px; }
      .content-bottom .find-dealer form input[type=submit] {
        background-image: url("../images/submit-button.png");
        width: 30px;
        height: 24px;
        background-color: transparent;
        text-indent: -9999px;
        border: 0px; }
  .content-bottom .contact-specialist {
    /*width: 380px;*/ }
  .content-bottom .journal {
    background-image: url("../images/icon-journal.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    width: 62px;
    height: 51px;
    margin: 10px auto; }
    .content-bottom .journal a {
      display: block;
      height: 100%;
      width: 100%; }
      .content-bottom .journal a:hover {
        text-decoration: none; }
  .content-bottom .guide {
    background-image: url("../images/icon-guide.jpg");
    background-repeat: no-repeat;
    background-position: top center;
    width: 53px;
    height: 66px;
    margin: 10px auto; }
    .content-bottom .guide a {
      display: block;
      height: 100%;
      width: 100%; }
      .content-bottom .guide a:hover {
        text-decoration: none; }
  .content-bottom p {
    text-align: center; }
  .content-bottom .cta-block {
    width: 250px;
    margin: 0 auto;
    text-align: center;
    float: left; }
  .content-bottom .cta-block-separator {
    padding-top: 45px;
    background-image: url("../images/icon-arrow.png");
    background-repeat: no-repeat;
    background-position: middle center;
    width: 45px;
    height: 140px;
    margin: 10px auto;
    text-align: center;
    float: left; }
  .content-bottom p.cta {
    background-color: #666;
    color: #fff;
    text-align: center;
    font-size: 14px;
    display: inline-block;
    width: 203px;
    padding: 4px;
    align: center; }
    .content-bottom p.cta a {
      display: block;
      height: 100%;
      width: 100%;
      color: #fff; }
      .content-bottom p.cta a:hover {
        text-decoration: none; }
  .content-bottom .specs {
    background-image: url("../images/icon-specs.png");
    background-repeat: no-repeat;
    background-position: top center;
    width: 72px;
    height: 71px;
    margin: 10px auto; }
    .content-bottom .specs a {
      display: block;
      height: 100%;
      width: 100%;
      color: #fff; }
      .content-bottom .specs a:hover {
        text-decoration: none; }
  .content-bottom .price {
    background-image: url("../images/price.png");
    background-repeat: no-repeat;
    background-position: top center;
    width: 72px;
    height: 71px;
    margin: 10px auto; }
    .content-bottom .price a {
      display: block;
      height: 100%;
      width: 100%;
      color: #fff; }
      .content-bottom .price a:hover {
        text-decoration: none; }
  .content-bottom .phone {
    background-image: url("../images/icon-phone.png");
    background-repeat: no-repeat;
    background-position: top center;
    width: 40px;
    height: 58px;
    margin: 10px auto; }
    .content-bottom .phone a {
      display: block;
      height: 100%;
      width: 100%;
      color: #fff; }
      .content-bottom .phone a:hover {
        text-decoration: none; }
  .content-bottom .cphone {
    background-image: url("../images/icon-cphone.png");
    background-repeat: no-repeat;
    background-position: top center;
    width: 72px;
    height: 71px;
    margin: 10px auto; }
    .content-bottom .cphone a {
      color: #fff;
      display: block;
      height: 100%;
      width: 100%; }
      .content-bottom .cphone a:hover {
        text-decoration: none; }
  .content-bottom .ccalc {
    background-image: url("../images/icon-calc.png");
    background-repeat: no-repeat;
    background-position: top center;
    width: 72px;
    height: 71px;
    margin: 10px auto; }
    .content-bottom .ccalc a {
      color: #fff;
      display: block;
      height: 100%;
      width: 100%; }
      .content-bottom .ccalc a:hover {
        text-decoration: none; }
  .content-bottom .check {
    background-image: url("../images/icon-check.png");
    background-repeat: no-repeat;
    background-position: top center;
    width: 72px;
    height: 71px;
    margin: 10px auto; }
    .content-bottom .check a {
      color: #fff;
      display: block;
      height: 100%;
      width: 100%; }
      .content-bottom .check a:hover {
        text-decoration: none; }
  .content-bottom .mail {
    background-image: url("../images/icon-mail.png");
    background-repeat: no-repeat;
    background-position: top center;
    width: 72px;
    height: 71px;
    margin: 10px auto; }
    .content-bottom .mail a {
      color: #fff;
      display: block;
      height: 100%;
      width: 100%; }
      .content-bottom .mail a:hover {
        text-decoration: none; }
  .content-bottom .person {
    background-image: url("../images/icon-person.png");
    background-repeat: no-repeat;
    background-position: top center;
    width: 72px;
    height: 71px;
    margin: 10px auto; }
    .content-bottom .person a {
      color: #fff;
      display: block;
      height: 100%;
      width: 100%; }
      .content-bottom .person a:hover {
        text-decoration: none; }
  .content-bottom .map {
    background-image: url("../images/icon-map.png");
    background-repeat: no-repeat;
    background-position: top center;
    width: 72px;
    height: 71px;
    margin: 10px auto; }
    .content-bottom .map a {
      color: #fff;
      display: block;
      height: 100%;
      width: 100%; }
      .content-bottom .map a:hover {
        text-decoration: none; }

footer .block-menu-block {
  background-color: #EBEBEB; }
  footer .block-menu-block > ul.menu {
    color: #666;
    font-size: 10px;
    padding: 10px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    footer .block-menu-block > ul.menu a {
      color: #666; }
    footer .block-menu-block > ul.menu > li {
      width: 40%; }
      @media screen and (min-width: 992px) {
        footer .block-menu-block > ul.menu > li {
          width: 33%; } }
      @media screen and (min-width: 814px) {
        footer .block-menu-block > ul.menu > li {
          width: 12%; }
          footer .block-menu-block > ul.menu > li:last-child {
            width: auto; } }
      footer .block-menu-block > ul.menu > li > a {
        font-weight: bold; }
      footer .block-menu-block > ul.menu > li > ul {
        padding-left: 8px; }
      footer .block-menu-block > ul.menu > li.menu-mlid-218 {
        display: none; }

footer .footer-copyright {
  font-size: 12px;
  color: #666;
  line-height: 34px;
  padding-left: 22px;
  padding-top: 25px; }
  footer .footer-copyright .facebook,
  footer .footer-copyright .twitter,
  footer .footer-copyright .linkedin,
  footer .footer-copyright .pinterest,
  footer .footer-copyright .youtube,
  footer .footer-copyright .gplus {
    width: 32px;
    height: 32px;
    float: left;
    text-indent: -9999px;
    margin-right: 3px; }
  footer .footer-copyright .facebook {
    background-image: url("../images/icon-fb.png"); }
  footer .footer-copyright .twitter {
    background-image: url("../images/icon-twitter.png"); }
  footer .footer-copyright .linkedin {
    background-image: url("../images/icon-linkedin.png"); }
  footer .footer-copyright .pinterest {
    background-image: url("../images/icon-pinterest.png"); }
  footer .footer-copyright .youtube {
    background-image: url("../images/icon-youtube.png"); }
  footer .footer-copyright .gplus {
    background-image: url("../images/icon-gplus.png"); }
  footer .footer-copyright p {
    margin-bottom: 0px; }

footer .bottom-international-dropdown-block {
  float: right;
  padding-top: 60px;
  margin-right: 70px;
  position: relative;
  z-index: 50; }

.home-hero-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .home-hero-container .hero-nav-container {
    position: relative;
    width: 100%; }
    .home-hero-container .hero-nav-container img {
      width: 100%; }
    .home-hero-container .hero-nav-container .home-hero-text {
      width: 100%;
      position: absolute;
      margin-top: 30px;
      text-align: center;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
      .home-hero-container .hero-nav-container .home-hero-text h2 {
        text-transform: uppercase;
        color: #444444; }
      .home-hero-container .hero-nav-container .home-hero-text a {
        margin: 10px; }
  @media screen and (min-width: 814px) {
    .home-hero-container {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .home-hero-container .hero-nav-container {
        width: 49.7%; } }

.front .header-region {
  padding-bottom: 10px; }

.front .logo {
  padding-top: 10px;
  padding-left: 65px; }

.front .header-region-inner {
  padding-top: 15px;
  width: 220px; }

.front .home-hero-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .front .home-hero-container .hero-nav-container {
    position: relative;
    width: 100%; }
    .front .home-hero-container .hero-nav-container .home-hero-text {
      width: 100%;
      position: absolute;
      margin-top: 175px;
      text-align: center;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
      .front .home-hero-container .hero-nav-container .home-hero-text h2 {
        text-transform: uppercase;
        color: #414042;
        margin-bottom: 8px;
        font-size: 28px; }
      .front .home-hero-container .hero-nav-container .home-hero-text a {
        margin: 10px; }
  @media screen and (min-width: 814px) {
    .front .home-hero-container {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .front .home-hero-container .hero-nav-container {
        width: 49.7%; } }

.front .content-bottom {
  background-position: center bottom;
  padding-bottom: 50px;
  margin-bottom: 60px;
  padding-left: 85px;
  padding-right: 85px;
  margin-top: 0px;
  padding-top: 35px; }

.front .international-dropdown {
  text-align: center;
  padding-bottom: 60px; }

.page-node-36 h2, .page-node-1642 h2, .page-node-1653 h2 {
  font-size: 24px; }

.page-node-36 .contact-address-box, .page-node-1642 .contact-address-box, .page-node-1653 .contact-address-box {
  float: right;
  padding-right: 26px;
  padding-left: 52px;
  background-image: url("../images/vertical-separator.png");
  background-position: top left;
  background-repeat: no-repeat;
  min-height: 180px;
  margin-left: 100px;
  width: 310px; }
  .page-node-36 .contact-address-box h3, .page-node-1642 .contact-address-box h3, .page-node-1653 .contact-address-box h3 {
    margin-top: 0px;
    font-weight: bold; }

.page-node-36 form#commentForm .form-image,
.page-node-36 form#commentForm img, .page-node-1642 form#commentForm .form-image,
.page-node-1642 form#commentForm img, .page-node-1653 form#commentForm .form-image,
.page-node-1653 form#commentForm img {
  float: right; }

.page-node-36 form#commentForm .form_item, .page-node-1642 form#commentForm .form_item, .page-node-1653 form#commentForm .form_item {
  margin: .5em 0;
  text-align: left; }

.page-node-36 form#commentForm label, .page-node-1642 form#commentForm label, .page-node-1653 form#commentForm label {
  width: 100%;
  text-align: left;
  font-weight: 100;
  display: block; }
  @media (min-width: 814px) {
    .page-node-36 form#commentForm label, .page-node-1642 form#commentForm label, .page-node-1653 form#commentForm label {
      width: 300px; } }

.page-node-36 form#commentForm label.error, .page-node-1642 form#commentForm label.error, .page-node-1653 form#commentForm label.error {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: normal;
  color: #990000;
  text-align: left;
  vertical-align: top;
  padding-left: 260px;
  width: 460px;
  padding-top: 0px;
  padding-right: 0px;
  padding-bottom: 0px;
  margin: 0px;
  position: relative;
  clear: both;
  z-index: 0;
  float: none;
  height: 1px;
  background: transparent;
  border: 0px; }

.page-node-36 form#commentForm input.error, .page-node-1642 form#commentForm input.error, .page-node-1653 form#commentForm input.error {
  background: #fbe3e4;
  border-color: #fbc2c4; }

.page-node-36 form#commentForm input[type=text], .page-node-1642 form#commentForm input[type=text], .page-node-1653 form#commentForm input[type=text] {
  width: 100%;
  max-width: none; }
  @media (min-width: 814px) {
    .page-node-36 form#commentForm input[type=text], .page-node-1642 form#commentForm input[type=text], .page-node-1653 form#commentForm input[type=text] {
      width: 300px; } }

.page-node-36 form#commentForm input.checkbox, .page-node-1642 form#commentForm input.checkbox, .page-node-1653 form#commentForm input.checkbox {
  float: left;
  margin-right: 10px;
  margin-left: 110px; }

.page-node-36 form#commentForm textarea, .page-node-1642 form#commentForm textarea, .page-node-1653 form#commentForm textarea {
  width: 100%;
  height: 66px;
  vertical-align: top;
  margin: 0px 14px;
  max-width: none; }
  .page-node-36 form#commentForm textarea.comments, .page-node-1642 form#commentForm textarea.comments, .page-node-1653 form#commentForm textarea.comments {
    height: 60px;
    margin-bottom: 15px; }
  @media (min-width: 814px) {
    .page-node-36 form#commentForm textarea, .page-node-1642 form#commentForm textarea, .page-node-1653 form#commentForm textarea {
      width: 300px; } }

.page-node-36 form#commentForm select, .page-node-1642 form#commentForm select, .page-node-1653 form#commentForm select {
  width: 200px;
  height: 24px;
  margin: 0 10px;
  padding: 0px; }

.page-node-36 form#commentForm p.legend, .page-node-1642 form#commentForm p.legend, .page-node-1653 form#commentForm p.legend {
  font-size: 12px;
  padding-top: 15px;
  float: left; }

.page-node-36 form#commentForm input[type=submit], .page-node-1642 form#commentForm input[type=submit], .page-node-1653 form#commentForm input[type=submit] {
  background-color: #666;
  border: medium none;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #fff;
  display: inline-block;
  font-size: 14px;
  line-height: 1.8;
  margin: 0 10px 0 0;
  padding: 10px 35px;
  min-width: 200px;
  -webkit-appearance: none;
  border-radius: 0;
  cursor: pointer;
  text-transform: uppercase; }
  .page-node-36 form#commentForm input[type=submit]:hover, .page-node-1642 form#commentForm input[type=submit]:hover, .page-node-1653 form#commentForm input[type=submit]:hover {
    background: #167ac6; }

.view-display-id-main_images_block {
  margin-bottom: 60px; }

.field-name-field-ref-top-section {
  text-align: center; }
  .field-name-field-ref-top-section .field-item {
    padding: 0px;
    margin: 0px;
    display: inline-block; }
    .field-name-field-ref-top-section .field-item div {
      display: inline;
      float: none;
      width: auto; }
  .field-name-field-ref-top-section .field-collection-view {
    padding: 0px;
    margin: 0px;
    border: 0px; }
  .field-name-field-ref-top-section .field-collection-container {
    margin: 0px;
    padding: 0px;
    border: 0px; }

.views-slideshow-cycle-main-frame {
  margin-left: auto;
  margin-right: auto; }
  .views-slideshow-cycle-main-frame .views-slideshow-pager-field-item {
    float: left;
    margin-right: 20px; }

.view-showcase {
  padding-left: 85px;
  padding-right: 85px; }
  .view-showcase table {
    width: 100%; }
    .view-showcase table td {
      padding: 10px;
      text-align: center;
      border: 0px; }
      .view-showcase table td.col-first {
        padding-left: 0px; }
      .view-showcase table td.col-last {
        padding-right: 0px; }
  .view-showcase .image-slideshow {
    width: 950px;
    text-align: center; }
  .view-showcase .image-legend {
    width: 600px;
    text-align: left;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
    padding-top: 15px;
    text-align: center; }
  .view-showcase .views-slideshow-controls-bottom {
    width: 690px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px; }
  .view-showcase .views-slideshow-pager-field-item {
    float: left;
    width: 230px;
    text-align: center; }
    .view-showcase .views-slideshow-pager-field-item .views-content-field-images {
      width: 230px;
      height: 230px;
      text-align: center;
      display: table-cell;
      vertical-align: middle; }
      .view-showcase .views-slideshow-pager-field-item .views-content-field-images:hover {
        cursor: pointer; }

.field-name-field-collec-tab {
  margin-left: 85px;
  margin-right: 85px;
  border: 1px solid #A4A4A4;
  border-radius: 3px; }
  .field-name-field-collec-tab .tab-menu {
    display: table;
    width: 100%;
    table-layout: fixed; }
    .field-name-field-collec-tab .tab-menu a {
      font-size: 14px;
      display: table-cell;
      text-align: center;
      height: 50px;
      vertical-align: middle;
      background: #808285;
      color: #fff;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#616161', endColorstr='#616161', GradientType=0);
      border-left: 1px solid #cbc9c3; }
      .field-name-field-collec-tab .tab-menu a:first-child {
        border-left: 0px; }
      .field-name-field-collec-tab .tab-menu a:hover {
        background: #2286c5;
        text-decoration: none; }
      .field-name-field-collec-tab .tab-menu a.active {
        background: #4f4f50;
        font-weight: inherit;
        border-left-color: transparent;
        text-decoration: none; }
        .field-name-field-collec-tab .tab-menu a.active + a {
          border-left-color: transparent; }
  .field-name-field-collec-tab > .field-items > .field-item {
    display: none; }
    .field-name-field-collec-tab > .field-items > .field-item:first-child {
      display: block; }

.field-name-field-collec-tab-items {
  display: table;
  width: 100%; }
  .field-name-field-collec-tab-items > .sidebartab-menu {
    display: table-cell;
    vertical-align: top;
    display: inline-block;
    float: left;
    border-right: 2px solid #D3D3D3;
    width: 25%;
    height: 726px;
    overflow-y: auto;
    overflow-x: hidden; }
    .field-name-field-collec-tab-items > .sidebartab-menu .sidebartab-menu-item {
      display: block;
      border-bottom: 2px solid #D3D3D3; }
      .field-name-field-collec-tab-items > .sidebartab-menu .sidebartab-menu-item:hover {
        cursor: pointer; }
      .field-name-field-collec-tab-items > .sidebartab-menu .sidebartab-menu-item:last-child {
        border-bottom: 0px; }
      .field-name-field-collec-tab-items > .sidebartab-menu .sidebartab-menu-item.active {
        background-color: #C7C9CA; }
      .field-name-field-collec-tab-items > .sidebartab-menu .sidebartab-menu-item img {
        position: relative;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
  .field-name-field-collec-tab-items > .field-items {
    vertical-align: top;
    display: inline-block;
    width: 75%;
    height: 726px;
    overflow-y: scroll;
    overflow-x: hidden; }
    .field-name-field-collec-tab-items > .field-items .field-item {
      display: none; }
      .field-name-field-collec-tab-items > .field-items .field-item:first-child {
        display: block; }

.view-id-technical_resources {
  margin-left: 80px;
  margin-right: 80px;
  border-right: 1px solid #CBC9C3;
  border-bottom: 1px solid #CBC9C3;
  border-left: 1px solid #CBC9C3; }
  #main-content .view-id-technical_resources .field-name-body {
    padding-left: 0px;
    padding-right: 0px; }
  .view-id-technical_resources .field-name-field-text-tab-title {
    font-weight: bold;
    padding-bottom: 2px;
    padding-top: 2px;
    padding-left: 2px;
    border-bottom: 1px solid #CBC9C3;
    font-size: 11px;
    background-color: #f7f6f2; }
  .view-id-technical_resources .field-name-field-tech-resources-file > .field-items > .field-item {
    padding-bottom: 1px;
    border-top: 1px solid #CBC9C3;
    padding-left: 10px; }
  .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-name-field-text-tech-resource-title {
    display: inline-block; }
  .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file {
    display: inline-block;
    float: right; }
    .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div {
      display: inline-block; }
    .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a {
      display: inline-block;
      text-indent: -9999px;
      text-align: left;
      width: 20px;
      padding: 2px 2px 2px 20px;
      background-repeat: no-repeat;
      background-position: left center; }
      .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".doc"], .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".docx"] {
        background-image: url("../images/doc.gif"); }
      .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".dxf"] {
        background-image: url("../images/dxf.gif"); }
      .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".dwg"], .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".DWG"] {
        background-image: url("../images/dwg.gif"); }
      .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".dwf"] {
        background-image: url("../images/dwf.gif"); }
      .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".dgn"] {
        background-image: url("../images/dgn.gif"); }
      .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".rfa"] {
        background-image: url("../images/rfa.gif"); }
      .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".txt"] {
        background-image: url("../images/txt.gif"); }
  .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-link-field {
    display: inline-block;
    float: right; }
    .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-link-field div {
      display: inline-block; }
    .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-link-field a {
      display: inline-block;
      text-indent: -9999px;
      text-align: left;
      width: 20px;
      padding: 2px 2px 2px 20px;
      background-repeat: no-repeat;
      background-position: left center;
      background-image: url("../images/dwf.gif"); }
      .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-link-field a[href$=".txt"] {
        background-image: url("../images/txt.gif"); }
  .view-id-technical_resources h2 {
    display: block;
    font-weight: bold;
    color: #333;
    text-decoration: none;
    font-size: 11px;
    line-height: 14px;
    height: 20px;
    padding: 2px 0px 0px 25px;
    border-top: 1px solid #CBC9C3;
    margin: 0px;
    background-image: url("../images/tab-techresources-off.gif");
    background-repeat: no-repeat;
    background-position: top left; }
    .view-id-technical_resources h2:hover {
      background-image: url("../images/tab-techresources-off-hover.gif");
      cursor: pointer; }
    .view-id-technical_resources h2.open {
      background-image: url("../images/tab-techresources-on.gif");
      color: #FFF; }
      .view-id-technical_resources h2.open ~ .content {
        display: block !important; }
  .view-id-technical_resources .node-technical-resources > .content {
    display: none;
    font-size: 11px;
    color: #000000;
    background-image: url("../images/content-techresources-shadow.gif");
    background-repeat: repeat-x;
    background-position: left top;
    padding-top: 30px;
    padding-right: 20px;
    padding-bottom: 10px;
    padding-left: 15px;
    overflow-x: hidden;
    overflow-y: scroll;
    height: 350px; }

body.node-type-international-pages .field-name-field-image {
  float: right;
  margin-right: 85px;
  margin-top: 40px; }

body.page-node-8 #main-content .field-name-body {
  padding-left: 77px;
  padding-right: 63px; }

.tabbox-two-rows-one-col-two-cols .first-row {
  border-bottom: 2px solid #D3D3D3;
  line-height: 0px; }

.tabbox-two-rows-one-col-two-cols .second-row .second-col {
  float: right;
  border-left: 2px solid #D3D3D3;
  line-height: 0px; }

.tabbox-two-rows-one-col-two-cols .second-row .first-col {
  padding: 25px;
  display: table-cell;
  vertical-align: middle; }

.tabbox-two-cols .second-col {
  float: right;
  border-left: 2px solid #D3D3D3;
  line-height: 0px;
  margin-left: 25px; }

.tabbox-two-cols .first-col {
  padding: 25px;
  display: block;
  vertical-align: middle; }

.tabbox-two-rows .first-row {
  line-height: 0px; }

.tabbox-two-rows .second-row {
  padding: 25px;
  display: table-cell;
  vertical-align: middle; }

/* Do that in template.php */
.node-tab-box > h2 {
  display: none; }

.cksmall {
  font-size: 11px; }

/* */
.vertical-separator {
  background-image: url("../images/vertical-separator.png");
  background-repeat: no-repeat;
  background-position: right center; }

/* Product Registration Form */
.page-node-31 .field-name-body .producttableborder {
  border-bottom: 1px solid #999999;
  border-style: none none solid;
  color: #000000;
  font-size: 14px;
  font-weight: normal;
  padding: 8px 2px;
  text-align: left;
  vertical-align: top;
  line-height: 17px; }

.page-node-31 .field-name-body #steps {
  margin: 0px;
  padding: 0px; }
  .page-node-31 .field-name-body #steps li {
    float: left;
    color: #bdbdbd;
    font-weight: bold;
    list-style-type: none;
    width: 225px; }
    .page-node-31 .field-name-body #steps li span {
      display: block;
      font-weight: normal;
      padding-top: 15px;
      padding-bottom: 20px; }
    .page-node-31 .field-name-body #steps li.current {
      color: #000000; }

.page-node-31 .field-name-body fieldset {
  background-color: #F4EEE2;
  border: 0px; }

.page-node-31 .field-name-body legend {
  display: none; }

.page-node-31 .field-name-body label {
  text-align: right;
  width: 198px;
  font-weight: normal;
  display: inline-block; }

.page-node-31 .field-name-body .checkbox-wrapper {
  margin-top: -17px;
  width: 337px;
  display: block;
  float: left;
  margin-left: 209px; }

.page-node-31 .field-name-body .checkbox-label {
  text-align: left;
  width: auto;
  display: block;
  margin-bottom: 5px; }

.page-node-31 .field-name-body .stars-wrapper {
  display: inline-block;
  padding-left: 15px; }

.page-node-31 .field-name-body textarea {
  width: 156px;
  height: 32px; }

.page-node-31 .field-name-body input[type=text] {
  height: 22px;
  width: 148px; }

.page-node-31 .field-name-body input[type=submit] {
  width: 227px;
  border-width: 1px;
  border-style: solid;
  font-weight: bold;
  font-size: 17px;
  margin-left: 0;
  color: #555555;
  background-color: #f1f1f1;
  border-color: #cccccc;
  margin: 15px 0px 0px 150px;
  padding: 8px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px; }
  .page-node-31 .field-name-body input[type=submit]:hover {
    background-color: #DDDDDD;
    cursor: pointer; }

.node-page,
.node-showcase {
  position: relative; }

.addthis_wrapper {
  position: absolute;
  right: 20px;
  top: -35px; }

.view-id-faq {
  padding-left: 85px;
  padding-right: 85px; }
  .view-id-faq .view-header {
    line-height: 30px;
    margin-bottom: 30px; }
    .view-id-faq .view-header a {
      text-decoration: underline; }
  .view-id-faq .view-filters {
    background-color: #6C6D6F;
    overflow: hidden; }
    .view-id-faq .view-filters .views-exposed-widgets {
      margin-bottom: 0px;
      float: right;
      padding: 0px;
      padding-right: 10px; }
      .view-id-faq .view-filters .views-exposed-widgets label {
        display: none; }
      .view-id-faq .view-filters .views-exposed-widgets .views-exposed-widget {
        padding: 0px; }
      .view-id-faq .view-filters .views-exposed-widgets input[type=text] {
        height: 28px;
        border-radius: 14px;
        padding-left: 10px;
        padding-right: 10px; }
      .view-id-faq .view-filters .views-exposed-widgets input[type=submit] {
        margin-top: 12px; }
  .view-id-faq .view-main-content {
    background-image: url("../images/bg-sidebar-faq.png");
    background-repeat: repeat-y;
    background-position: top left;
    overflow: hidden;
    padding-top: 32px;
    padding-right: 20px; }
  .view-id-faq .view-footer {
    float: left;
    width: 215px; }
    .view-id-faq .view-footer .view-id-categories > .item-list ul, .view-id-faq .view-footer .view-id-categories > .item-list li {
      margin: 0px; }
    .view-id-faq .view-footer .view-id-categories > .item-list a {
      padding-top: 4px;
      padding-bottom: 4px;
      margin-bottom: 3px;
      display: block; }
      .view-id-faq .view-footer .view-id-categories > .item-list a.active {
        background-color: #FFF;
        font-weight: inherit; }
    .view-id-faq .view-footer .view-id-categories > .item-list > ul > li {
      margin-bottom: 30px; }
      .view-id-faq .view-footer .view-id-categories > .item-list > ul > li > .views-field-name a {
        padding-left: 10px;
        text-transform: uppercase;
        font-weight: 300; }
      .view-id-faq .view-footer .view-id-categories > .item-list > ul > li > .item-list > ul > li > .views-field-name a {
        padding-left: 10px;
        font-weight: bold; }
      .view-id-faq .view-footer .view-id-categories > .item-list > ul > li > .item-list > ul > li > .item-list > ul > li > .views-field-name a {
        padding-left: 20px; }
  .view-id-faq .view-content {
    margin-left: 240px; }
    .view-id-faq .view-content .views-row {
      margin-bottom: 20px; }
    .view-id-faq .view-content .views-field-title {
      background-image: url("../images/faq-plus.png");
      background-repeat: no-repeat;
      background-position: top left;
      padding-left: 25px;
      padding-bottom: 6px;
      padding-top: 2px;
      font-weight: bold; }
      .view-id-faq .view-content .views-field-title:hover {
        text-decoration: underline;
        cursor: pointer; }
    .view-id-faq .view-content .views-field-body {
      display: none;
      padding-left: 25px; }
    .view-id-faq .view-content .views-row.open .views-field-title {
      background-image: url("../images/faq-minus.png"); }
    .view-id-faq .view-content .views-row.open .views-field-body {
      display: block; }

/*

.view-id-blog {
  padding-left: 85px;
  padding-right: 85px;
  .view-header {
    line-height: 30px;
    margin-bottom: 30px;
    .rssfeed {
      background-image: url('../images/RSS.png');
      background-repeat: no-repeat;
      background-position: top left;
      display: block;
      padding-left: 40px;
      line-height: 32px;
    }
  }
  .view-filters {
    background-color: #6C6D6F;
    overflow: hidden;
    .views-exposed-widgets {
      margin-bottom: 0px;
      float: right;
      padding: 0px;
      padding-right: 10px;
      label {
        display: none;
      }
      .views-exposed-widget {
        padding: 0px;
      }
      input[type=text] {
        height: 28px;
        border-radius: 14px;
        padding-left: 10px;
        padding-right: 10px;
      }
      input[type=submit] {
        margin-top: 12px;
      }
    }
  }
  .view-main-content {
    background-image: url('../images/bg-sidebar-blog.png');
    background-repeat: repeat-y;
    background-position: top right;
    overflow: hidden;
    padding-top: 0px;
    padding-right: 0px;
  }
  .view-footer {
    float: right;
    width: 215px;
    .view-header {
      margin-bottom: 0px;
    }
    h3 {
      padding-left: 18px;
      text-transform: uppercase;
      font-weight: 300;
      font-size: 16px;
      margin-top: 12px;
      margin-bottom: 5px;
      letter-spacing: 1px;
    }

    .view-id-categories > .item-list {
      ul, li {
        margin: 0px;
      }
      a {
        padding-top: 4px;
        padding-bottom: 4px;
        margin-bottom: 3px;
        display: block;
        &.active {
          background-color: #FFF;
          font-weight: inherit;
        }
      }
      & > ul > li {
        margin-bottom: 5px;
        & > .views-field-name a {
          padding-left: 18px;
          font-weight: bold;
          padding-right: 8px;
        }
      }
    }
  }
  .view-content {
    margin-right: 240px;
    .views-row {
      margin-bottom: 50px;
      overflow: auto;
      margin-top: 30px;
    }
    .views-field-field-image {
      float: right;
      margin: 10px;
      img {
        border: 4px solid #FFF;
        box-shadow: 0px 0px 10px #999;
      }
    }
    .views-field-created {
      text-transform: uppercase;
      font-weight: 300;
      font-size: 16px;
      letter-spacing: 1px;
      margin-left: 52px;
      margin-bottom: 15px;
      margin-top: 10px;
    }

    .views-field-title {
      /*background-image: url('../images/faq-plus.png');
      background-repeat: no-repeat;
      background-position: top left;
      /*padding-left: 25px;
      margin-left: 52px;
      padding-bottom: 6px;
      padding-top: 2px;
      font-weight: bold;
      a {
        text-decoration: underline;
      }
      &:hover {
        text-decoration: underline;
        cursor: pointer;
      }
    }
    .views-field-body {
      display: block;
      padding-left: 52px;
      .views-more-link {
        text-transform: uppercase;
        font-weight: 300;
        letter-spacing: 1px;
      }
    }
    .views-row.open {
      .views-field-title {
        background-image: url('../images/faq-minus.png');
      }
      .views-field-body {
        display: block;
      }
    }
  }
}
*/
.view-display-id-embed_showcase_page {
  padding-left: 0px;
  padding-right: 0px; }
  .view-display-id-embed_showcase_page .views-row {
    float: left;
    width: 240px;
    height: 225px;
    text-align: center; }
    .view-display-id-embed_showcase_page .views-row .views-field {
      display: table-row;
      width: 240px;
      height: 225px; }
      .view-display-id-embed_showcase_page .views-row .views-field .field-content {
        width: 240px;
        height: 225px;
        display: table-cell;
        text-align: center;
        vertical-align: middle; }

.submit-btn {
  background: url("../images/bg-submit.jpg") repeat-x;
  border: none;
  color: #fff;
  font-size: 1.3em;
  height: 46px; }

.node-type-landing-page-template .page-banner {
  position: relative;
  vertical-align: bottom; }
  .node-type-landing-page-template .page-banner .page-headline {
    font-size: 20px;
    position: absolute;
    left: 85px;
    top: 40px;
    text-shadow: -1px 2px 2px rgba(110, 110, 110, 0.85); }
    .node-type-landing-page-template .page-banner .page-headline h1 {
      font-size: 40px; }
  .node-type-landing-page-template .page-banner .field-name-field-banner-image {
    overflow: hidden; }
    .node-type-landing-page-template .page-banner .field-name-field-banner-image img {
      vertical-align: bottom; }
  .node-type-landing-page-template .page-banner .field-name-field-attached-form {
    background: rgba(255, 255, 255, 0.75);
    color: #585453;
    padding: 20px;
    overflow: hidden;
    position: absolute;
    right: 90px;
    top: 20px;
    width: 300px; }
    .node-type-landing-page-template .page-banner .field-name-field-attached-form label {
      display: none; }
    .node-type-landing-page-template .page-banner .field-name-field-attached-form input,
    .node-type-landing-page-template .page-banner .field-name-field-attached-form textarea {
      margin-left: 0;
      max-height: 100px;
      width: 100%; }
    .node-type-landing-page-template .page-banner .field-name-field-attached-form input.submit-btn {
      height: 30px;
      margin-top: 10px; }

.node-type-landing-page-template .page-sub-headline {
  background: #d8dfe6;
  color: #000000;
  font-size: 28px;
  margin-bottom: 45px;
  padding: 25px 25px 25px 85px; }
  .node-type-landing-page-template .page-sub-headline p {
    margin: 0; }

.node-type-landing-page-template-video .page-banner {
  color: #fff;
  position: relative; }
  .node-type-landing-page-template-video .page-banner .field-name-field-banner-image {
    overflow: hidden; }
    .node-type-landing-page-template-video .page-banner .field-name-field-banner-image img {
      vertical-align: bottom; }
  .node-type-landing-page-template-video .page-banner .banner-content-wrapper {
    position: absolute;
    bottom: 20px;
    left: 80px; }
    .node-type-landing-page-template-video .page-banner .banner-content-wrapper .page-headline {
      font-size: 20px;
      margin-bottom: 20px;
      text-align: center;
      text-shadow: -1px 2px 2px rgba(110, 110, 110, 0.85);
      width: 100%; }
      .node-type-landing-page-template-video .page-banner .banner-content-wrapper .page-headline h1 {
        font-size: 40px; }
    .node-type-landing-page-template-video .page-banner .banner-content-wrapper .form-video {
      background: rgba(255, 255, 255, 0.75);
      color: #585453;
      height: auto;
      overflow: hidden;
      width: 964px; }
      .node-type-landing-page-template-video .page-banner .banner-content-wrapper .form-video .field-name-field-attached-form {
        float: left;
        width: 570px;
        overflow: hidden;
        padding: 20px; }
        .node-type-landing-page-template-video .page-banner .banner-content-wrapper .form-video .field-name-field-attached-form label {
          display: none; }
        .node-type-landing-page-template-video .page-banner .banner-content-wrapper .form-video .field-name-field-attached-form input,
        .node-type-landing-page-template-video .page-banner .banner-content-wrapper .form-video .field-name-field-attached-form textarea {
          float: left;
          margin: 5px 15px 5px 0;
          max-height: 100px;
          width: 250px; }
        .node-type-landing-page-template-video .page-banner .banner-content-wrapper .form-video .field-name-field-attached-form input.submit-btn {
          height: 30px;
          margin-top: 10px;
          width: 515px; }
      .node-type-landing-page-template-video .page-banner .banner-content-wrapper .form-video .field-name-field-attached-video {
        float: right;
        padding: 20px;
        width: 40%; }

.node-type-landing-page-template-video .page-sub-headline {
  background: #7f7f7f;
  color: #fff;
  font-size: 28px;
  margin-bottom: 45px;
  padding: 25px 25px 25px 85px; }
  .node-type-landing-page-template-video .page-sub-headline p {
    margin: 0; }

.node-type-blog #comments .comment {
  padding-bottom: 20px; }
  .node-type-blog #comments .comment .author, .node-type-blog #comments .comment .author a {
    font-weight: bold;
    color: #686868;
    float: left;
    margin-right: 40px; }
  .node-type-blog #comments .comment .date {
    color: #686868; }
  .node-type-blog #comments .comment .content {
    padding-top: 8px;
    clear: both; }

.node-type-blog #comments .comment-form .field-name-comment-body .filter-wrapper {
  display: none; }

.node-type-blog #comments .comment-form .field-name-comment-body .grippie {
  display: none; }

.node-type-blog #comments .comment-form label {
  display: block; }

.node-type-blog #comments .comment-form input[type=text] {
  margin: 5px 0px;
  width: 240px; }

.node-type-blog #comments .comment-form textarea {
  margin: 5px 0px;
  height: 140px; }

.node-type-blog .captcha legend {
  display: none; }

.view-id-blog .pager-wrapper {
  margin-right: 240px;
  margin-left: 52px; }

.pager-wrapper .pager-label {
  font-size: 14px;
  line-height: 25px;
  float: left;
  padding-right: 10px; }

.pager-wrapper .pager {
  clear: none;
  text-align: left; }
  .pager-wrapper .pager li.pager-previous, .pager-wrapper .pager li.pager-next {
    display: none; }
  .pager-wrapper .pager li {
    color: #888888;
    display: inline-block;
    margin-right: 2px;
    margin-left: 2px;
    background-color: #DADADA;
    border: 1px solid #CCCCCC;
    font-size: 11px;
    padding: 0px; }
    .pager-wrapper .pager li a {
      display: block;
      width: 100%;
      height: 100%;
      padding: 3px 8px;
      color: #888888; }
      .pager-wrapper .pager li a:hover {
        background-color: #AAA;
        text-decoration: none;
        color: #FFF; }
    .pager-wrapper .pager li.pager-current {
      background-color: #003AD2;
      border: 1px solid #94A5EB;
      color: #FFF;
      padding: 3px 8px; }
    .pager-wrapper .pager li.pager-ellipsis {
      border: none;
      background-color: transparent; }

.history-timeline {
  margin: 0px 0px 0px 64px;
  padding-left: 203px; }
  .history-timeline .time-row {
    min-height: 110px;
    padding-top: 18px;
    margin-bottom: 15px; }
    .history-timeline .time-row h3 {
      margin: 0px; }
  .history-timeline .indented {
    margin-left: 50px; }

.page-node-466 #main-content .node .field-name-body {
  padding: 0; }

.page-node-466 #commercial-skyvault-contact-form {
  padding: 20px; }
  .page-node-466 #commercial-skyvault-contact-form label {
    display: block; }
  .page-node-466 #commercial-skyvault-contact-form input {
    margin: 0 0 20px 0; }

.node-residential-premiere-dealer-oppo .top-video-section {
  margin-bottom: 0; }
  .node-residential-premiere-dealer-oppo .top-video-section .video-text {
    margin-bottom: 0; }
    .node-residential-premiere-dealer-oppo .top-video-section .video-text h1 {
      font-size: 30px;
      line-height: 1.1; }
    .node-residential-premiere-dealer-oppo .top-video-section .video-text .cta-btn {
      padding: 10px 35px; }
  @media screen and (min-width: 620px) {
    .node-residential-premiere-dealer-oppo .top-video-section .video-text {
      position: relative;
      top: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      text-align: center; } }
  @media screen and (min-width: 768px) {
    .node-residential-premiere-dealer-oppo .top-video-section {
      margin-bottom: 0; }
      .node-residential-premiere-dealer-oppo .top-video-section .video-text {
        position: absolute;
        left: 0;
        top: 95px;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        text-align: left;
        max-width: 328px;
        margin-left: 2.5%;
        padding: 30px;
        background: rgba(255, 255, 255, 0.75); } }
  @media screen and (min-width: 814px) {
    .node-residential-premiere-dealer-oppo .top-video-section .video-text {
      background: none; } }

.node-residential-premiere-dealer-oppo #form {
  padding: 30px;
  background: #eee; }
  .node-residential-premiere-dealer-oppo #form .submitbutton {
    cursor: pointer;
    background: #808285;
    text-transform: uppercase;
    text-shadow: none;
    font-weight: 300; }
  .node-residential-premiere-dealer-oppo #form .form_contact h2 {
    text-align: center;
    margin-bottom: 30px; }
  @media screen and (min-width: 814px) {
    .node-residential-premiere-dealer-oppo #form .form_contact {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; }
      .node-residential-premiere-dealer-oppo #form .form_contact h2 {
        width: 25%;
        tex-align: left; }
      .node-residential-premiere-dealer-oppo #form .form_contact .responsive-form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        width: 75%; }
        .node-residential-premiere-dealer-oppo #form .form_contact .responsive-form .form-flex {
          width: 61.5%;
          margin-right: 2.5%; }
        .node-residential-premiere-dealer-oppo #form .form_contact .responsive-form .submitbutton:hover {
          background: #2286c5; } }

.node-residential-premiere-dealer-oppo .bottom-section {
  padding: 30px 30px 0; }
  .node-residential-premiere-dealer-oppo .bottom-section .opportunity-flexer {
    margin-top: 30px; }
  @media screen and (min-width: 768px) {
    .node-residential-premiere-dealer-oppo .bottom-section .opportunity-flexer {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-flex-pack: distribute;
      justify-content: space-around;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start; }
      .node-residential-premiere-dealer-oppo .bottom-section .opportunity-flexer .opportunity-container {
        width: 30%; } }

.path-commercial-retrofit-interiortech .page-banner .field-name-field-attached-form {
  left: 30px;
  top: 0;
  padding-top: 0;
  width: 310px; }

.path-commercial-retrofit-interiortech #commercial-skyvault-contact-form {
  padding: 20px; }
  .path-commercial-retrofit-interiortech #commercial-skyvault-contact-form form {
    width: 600px; }
    .path-commercial-retrofit-interiortech #commercial-skyvault-contact-form form label,
    .path-commercial-retrofit-interiortech #commercial-skyvault-contact-form form input {
      display: block;
      font-weight: normal;
      margin: 0;
      height: 24px; }

.path-commercial-retrofit-interiortech .page-sub-headline {
  display: none; }

body.page-tech-resources .view-tech-resources,
body.path-support-technical-resources-list .view-tech-resources {
  padding: 0 20px 0 380px; }
  @media only screen and (max-width: 767px) {
    body.page-tech-resources .view-tech-resources,
    body.path-support-technical-resources-list .view-tech-resources {
      padding: 0 30px; } }
  body.page-tech-resources .view-tech-resources h2,
  body.path-support-technical-resources-list .view-tech-resources h2 {
    font-size: 22px;
    line-height: 24px;
    margin-bottom: 5px;
    margin-top: 10px;
    font-weight: bold; }
  body.page-tech-resources .view-tech-resources h3,
  body.path-support-technical-resources-list .view-tech-resources h3 {
    font-size: 18px;
    margin-bottom: 5px; }
  body.page-tech-resources .view-tech-resources .taxonomy-term-description,
  body.path-support-technical-resources-list .view-tech-resources .taxonomy-term-description {
    margin-top: 20px; }
    body.page-tech-resources .view-tech-resources .taxonomy-term-description ul,
    body.path-support-technical-resources-list .view-tech-resources .taxonomy-term-description ul {
      padding-left: 25px; }
      body.page-tech-resources .view-tech-resources .taxonomy-term-description ul li,
      body.path-support-technical-resources-list .view-tech-resources .taxonomy-term-description ul li {
        list-style: initial; }
  body.page-tech-resources .view-tech-resources .field-name-field-text-tech-resource-title,
  body.path-support-technical-resources-list .view-tech-resources .field-name-field-text-tech-resource-title {
    margin: 0 0 5px 10px;
    display: inline-block;
    width: 90%;
    background-color: #e6e6e6; }
  body.page-tech-resources .view-tech-resources .field-name-field-files,
  body.path-support-technical-resources-list .view-tech-resources .field-name-field-files {
    margin: 0 0 0 15px;
    font-size: 12px; }
  body.page-tech-resources .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".doc"], body.page-tech-resources .view-tech-resources .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".docx"],
  body.path-support-technical-resources-list .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".doc"],
  body.path-support-technical-resources-list .view-tech-resources .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".docx"] {
    background-image: url(/sites/all/themes/solatube/images/doc.gif); }
  body.page-tech-resources .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".rfa"],
  body.path-support-technical-resources-list .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".rfa"] {
    background-image: url(/sites/all/themes/solatube/images/rfa.gif); }
  body.page-tech-resources .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".dwg"], body.page-tech-resources .view-tech-resources .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".DWG"],
  body.path-support-technical-resources-list .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".dwg"],
  body.path-support-technical-resources-list .view-tech-resources .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".DWG"] {
    background-image: url(/sites/all/themes/solatube/images/dwg.gif); }
  body.page-tech-resources .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".DWG"], body.page-tech-resources .view-tech-resources .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".DWG"],
  body.path-support-technical-resources-list .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".DWG"],
  body.path-support-technical-resources-list .view-tech-resources .view-id-technical_resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".DWG"] {
    background-image: url(/sites/all/themes/solatube/images/dwg.gif); }
  body.page-tech-resources .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".dxf"],
  body.path-support-technical-resources-list .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".dxf"] {
    background-image: url(/sites/all/themes/solatube/images/dxf.gif); }
  body.page-tech-resources .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".dgn"],
  body.path-support-technical-resources-list .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-file div.file a[href$=".dgn"] {
    background-image: url(/sites/all/themes/solatube/images/dgn.gif); }
  body.page-tech-resources .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-link-field a,
  body.path-support-technical-resources-list .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-link-field a {
    text-indent: -9999px;
    text-align: left;
    width: 20px;
    padding: 2px 2px 2px 25px;
    background-repeat: no-repeat;
    background-position: left center;
    background-image: url(/sites/all/themes/solatube/images/dwf.gif);
    font-size: 12px; }
  body.page-tech-resources .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-link-field a[href$=".txt"],
  body.path-support-technical-resources-list .view-tech-resources .field-collection-item-field-tech-resources-file .field-type-link-field a[href$=".txt"] {
    background-image: url(/sites/all/themes/solatube/images/txt.gif); }
  body.page-tech-resources .view-tech-resources .ui-icon,
  body.path-support-technical-resources-list .view-tech-resources .ui-icon {
    display: inline-block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
    margin-top: -.25em; }

body.page-tech-resources .block-views,
body.path-support-technical-resources-list .block-views {
  padding: 0 0 0 10px; }

body.page-tech-resources .sola_facets,
body.path-support-technical-resources-list .sola_facets {
  height: 100%;
  width: 375px;
  float: left;
  padding: 0 0 0 10px; }
  @media only screen and (max-width: 767px) {
    body.page-tech-resources .sola_facets,
    body.path-support-technical-resources-list .sola_facets {
      width: 100%; } }
  body.page-tech-resources .sola_facets label,
  body.path-support-technical-resources-list .sola_facets label {
    font-weight: normal; }
  body.page-tech-resources .sola_facets .form-item, body.page-tech-resources .sola_facets .form-actions,
  body.path-support-technical-resources-list .sola_facets .form-item,
  body.path-support-technical-resources-list .sola_facets .form-actions {
    margin: 0; }
  body.page-tech-resources .sola_facets h2,
  body.path-support-technical-resources-list .sola_facets h2 {
    font-size: 20px;
    line-height: 22px;
    margin-bottom: 5px;
    margin-top: 10px; }

body.page-tech-resources .views-exposed-form label,
body.path-support-technical-resources-list .views-exposed-form label {
  font-weight: normal; }

body.page-tech-resources .views-exposed-form .views-exposed-widget,
body.path-support-technical-resources-list .views-exposed-form .views-exposed-widget {
  float: left;
  padding: .5em 5px 0 0; }

body.page-tech-resources .views-exposed-form #edit-submit-tech-resources,
body.path-support-technical-resources-list .views-exposed-form #edit-submit-tech-resources {
  width: 30px;
  height: 28px;
  color: #fff;
  background-color: #666;
  border: 0px;
  margin-top: 18px;
  -webkit-appearance: none;
  border-radius: 0; }

body.path-skyvault-lp-a .header-region-inner,
body.path-skyvault-lp-b .header-region-inner,
body.page-node-467 .header-region-inner {
  color: #000000;
  padding-top: 50px; }

body.path-skyvault-lp-a .field-name-body .banner-content,
body.path-skyvault-lp-b .field-name-body .banner-content,
body.page-node-467 .field-name-body .banner-content {
  position: absolute;
  top: -535px;
  width: 950px; }
  body.path-skyvault-lp-a .field-name-body .banner-content .embedded-vid,
  body.path-skyvault-lp-b .field-name-body .banner-content .embedded-vid,
  body.page-node-467 .field-name-body .banner-content .embedded-vid {
    border: 6px solid #d5d4d4;
    float: left;
    overflow: hidden;
    height: 270px;
    width: 480px;
    margin-top: 96px; }
  body.path-skyvault-lp-a .field-name-body .banner-content .top-right-form,
  body.path-skyvault-lp-b .field-name-body .banner-content .top-right-form,
  body.page-node-467 .field-name-body .banner-content .top-right-form {
    color: #fff;
    float: right;
    margin-top: 25px;
    width: 250px; }
    body.path-skyvault-lp-a .field-name-body .banner-content .top-right-form h2,
    body.path-skyvault-lp-b .field-name-body .banner-content .top-right-form h2,
    body.page-node-467 .field-name-body .banner-content .top-right-form h2 {
      margin: 0; }
    body.path-skyvault-lp-a .field-name-body .banner-content .top-right-form h4,
    body.path-skyvault-lp-b .field-name-body .banner-content .top-right-form h4,
    body.page-node-467 .field-name-body .banner-content .top-right-form h4 {
      margin-top: 5px; }
    body.path-skyvault-lp-a .field-name-body .banner-content .top-right-form label,
    body.path-skyvault-lp-b .field-name-body .banner-content .top-right-form label,
    body.page-node-467 .field-name-body .banner-content .top-right-form label {
      display: none; }
    body.path-skyvault-lp-a .field-name-body .banner-content .top-right-form textarea,
    body.path-skyvault-lp-a .field-name-body .banner-content .top-right-form input,
    body.path-skyvault-lp-b .field-name-body .banner-content .top-right-form textarea,
    body.path-skyvault-lp-b .field-name-body .banner-content .top-right-form input,
    body.page-node-467 .field-name-body .banner-content .top-right-form textarea,
    body.page-node-467 .field-name-body .banner-content .top-right-form input {
      border: 1px solid #d5d4d4;
      margin: 10px 0 0 0;
      max-height: 110px;
      min-height: 40px;
      width: 250px;
      -moz-border-radius: 2px;
      -webkit-border-radius: 2px;
      border-radius: 2px;
      -khtml-border-radius: 2px; }

body.path-skyvault-lp-a .field-name-body .page-content,
body.path-skyvault-lp-b .field-name-body .page-content,
body.page-node-467 .field-name-body .page-content {
  padding-left: 20px; }

body.path-skyvault-lp-a #commercial-skyvault-contact-form form,
body.path-skyvault-lp-b #commercial-skyvault-contact-form form,
body.page-node-467 #commercial-skyvault-contact-form form {
  width: 600px; }
  body.path-skyvault-lp-a #commercial-skyvault-contact-form form label,
  body.path-skyvault-lp-a #commercial-skyvault-contact-form form input,
  body.path-skyvault-lp-b #commercial-skyvault-contact-form form label,
  body.path-skyvault-lp-b #commercial-skyvault-contact-form form input,
  body.page-node-467 #commercial-skyvault-contact-form form label,
  body.page-node-467 #commercial-skyvault-contact-form form input {
    display: block;
    font-weight: normal;
    margin: 5px 0;
    height: 24px; }

body.path-skyvault-lp-a .content-bottom,
body.path-skyvault-lp-b .content-bottom,
body.page-node-467 .content-bottom {
  padding: 0 42px 20px; }

body.page-node-467 .field-name-body .banner-content {
  position: relative;
  left: -85px;
  top: 0;
  overflow: hidden;
  width: 1120px; }
  body.page-node-467 .field-name-body .banner-content .top-right-form {
    background: rgba(255, 255, 255, 0.75);
    padding: 30px 20px 20px 20px;
    position: absolute;
    right: 80px;
    top: 0;
    width: 300px; }
    body.page-node-467 .field-name-body .banner-content .top-right-form h1 {
      color: #585453;
      font-size: 22px; }
    body.page-node-467 .field-name-body .banner-content .top-right-form input,
    body.page-node-467 .field-name-body .banner-content .top-right-form textarea {
      max-width: 100%; }

body.page-node-467 .field-name-body .page-content {
  margin-top: 60px;
  color: #585453; }
  body.page-node-467 .field-name-body .page-content .img-container h3 {
    font-size: 18px;
    margin-bottom: 5px; }
  body.page-node-467 .field-name-body .page-content .img-container p {
    font-size: 12px;
    margin: 0 auto;
    vertical-align: bottom !important; }
  body.page-node-467 .field-name-body .page-content .img-container > div {
    height: 791px; }
  body.page-node-467 .field-name-body .page-content .img-container div div {
    height: 85px; }

body.page-showcase-embed {
  background-image: none;
  background-color: #FFF; }
  body.page-showcase-embed .top-header-region,
  body.page-showcase-embed header,
  body.page-showcase-embed .content-bottom,
  body.page-showcase-embed footer,
  body.page-showcase-embed #admin-menu {
    display: none; }
  body.page-showcase-embed #main-wrapper {
    width: auto; }

body.pathone-support {
  background-color: #f2f2f2;
  background-image: url(../images/bg_body.gif); }

body.node-type-commercial-thank-you-page article.node-commercial-thank-you-page {
  position: relative;
  background: url(https://static-assets-solatube.s3.amazonaws.com/commercial-daylighting-mobile.jpg);
  background-size: cover;
  height: 50vh; }
  body.node-type-commercial-thank-you-page article.node-commercial-thank-you-page .field-name-body {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
    background: rgba(255, 255, 255, 0.7);
    padding: 15px; }
    body.node-type-commercial-thank-you-page article.node-commercial-thank-you-page .field-name-body h1 {
      font-size: 43px;
      margin-bottom: 15px;
      line-height: 1.3; }
    body.node-type-commercial-thank-you-page article.node-commercial-thank-you-page .field-name-body p {
      font-size: 20px;
      line-height: 1.4; }

body.node-type-commercial-thank-you-page .content-bottom {
  margin-top: 0; }

@media screen and (min-width: 768px) {
  body.node-type-commercial-thank-you-page article.node-commercial-thank-you-page {
    background: url(https://static-assets-solatube.s3.amazonaws.com/commercial-daylighting-desktop.jpg);
    background-size: cover;
    height: 85vh; }
    body.node-type-commercial-thank-you-page article.node-commercial-thank-you-page .field-name-body {
      position: relative;
      top: 30px;
      max-width: 550px;
      left: 0;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      width: auto;
      background: none;
      padding: 0; } }

body.node-type-residential-thank-you-page article.node-residential-thank-you-page {
  position: relative;
  background: url(https://static-assets-solatube.s3.amazonaws.com/residential-daylighting-mobile.jpg);
  background-size: cover;
  height: 50vh; }
  body.node-type-residential-thank-you-page article.node-residential-thank-you-page .field-name-body {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 90%;
    background: rgba(255, 255, 255, 0.7);
    padding: 15px; }
    body.node-type-residential-thank-you-page article.node-residential-thank-you-page .field-name-body h1 {
      font-size: 43px;
      margin-bottom: 15px;
      line-height: 1.3; }
    body.node-type-residential-thank-you-page article.node-residential-thank-you-page .field-name-body p {
      font-size: 20px;
      line-height: 1.4; }

body.node-type-residential-thank-you-page .content-bottom {
  margin-top: 0; }

@media screen and (min-width: 768px) {
  body.node-type-residential-thank-you-page article.node-residential-thank-you-page {
    position: relative;
    background: url(https://static-assets-solatube.s3.amazonaws.com/residential-daylighting-desktop.jpg);
    background-size: cover;
    height: 85vh; }
    body.node-type-residential-thank-you-page article.node-residential-thank-you-page .field-name-body {
      position: relative;
      top: 30px;
      max-width: 550px;
      left: 0;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      width: auto;
      background: none;
      padding: 0; } }

/**
 * A simple sample carousel skin.
 *
 * This skin includes a sample arrows.svg file that may be edited with the free
 * illustration application InkScape (http://inkscape.org).
 *
 * CSS and icons by Nathan Haug.  techresources
 */
.jcarousel-skin-techresources {
  text-align: center; }

.jcarousel-skin-techresources .jcarousel-container-horizontal {
  width: 80%;
  height: 178px;
  padding: 20px 40px;
  margin: auto; }

.jcarousel-skin-techresources .jcarousel-container-vertical {
  width: 102px;
  height: 440px;
  padding: 40px 20px;
  margin: auto; }

.jcarousel-skin-techresources .jcarousel-clip-horizontal {
  width: 100%;
  overflow: hidden; }

.jcarousel-skin-techresources .jcarousel-clip-vertical {
  height: 440px;
  overflow: hidden; }

.jcarousel-skin-techresources .jcarousel-item {
  padding: 0 2px 0 2px;
  width: 158px;
  height: 178px;
  overflow: hidden;
  list-style: none;
  background: #fff none; }

.jcarousel-skin-techresources .jcarousel-item-horizontal {
  margin: 0 4px; }

.jcarousel-skin-techresources .jcarousel-item-vertical {
  margin: 4px 0; }

.jcarousel-skin-techresources .jcarousel-item-placeholder {
  background: #fff url(/sites/all/modules/custom/solatube_blocks/skins/techresources/throbber.gif) no-repeat center center;
  color: #000; }

/**
 * Buttons
 */
.jcarousel-skin-techresources .jcarousel-next {
  display: block;
  width: 32px;
  height: 178px;
  background-image: url(/sites/all/modules/custom/solatube_blocks/skins/techresources/rightArrow.png);
  background-repeat: no-repeat;
  background-position: center; }

.jcarousel-skin-techresources .jcarousel-prev {
  display: block;
  width: 32px;
  height: 178px;
  background-image: url(/sites/all/modules/custom/solatube_blocks/skins/techresources/leftArrow.png);
  background-repeat: no-repeat;
  background-position: center; }

.jcarousel-skin-techresources .jcarousel-next-disabled,
.jcarousel-skin-techresources .jcarousel-prev-disabled {
  display: none; }

/**
 * Horizontal Buttons
 */
.jcarousel-skin-techresources .jcarousel-prev-horizontal {
  position: absolute;
  top: 20px;
  left: 10px;
  background-color: #EBEBEC; }

.jcarousel-skin-techresources .jcarousel-prev-horizontal:hover {
  background-position: -32px 0; }

.jcarousel-skin-techresources .jcarousel-prev-horizontal:active {
  background-position: -64px 0; }

.jcarousel-skin-techresources .jcarousel-next-horizontal {
  position: absolute;
  top: 20px;
  right: 5px;
  background-color: #EBEBEC; }

.jcarousel-skin-techresources .jcarousel-next-horizontal:hover {
  background-position: -32px -32px; }

.jcarousel-skin-techresources .jcarousel-next-horizontal:active {
  background-position: -64px -32px; }

/**
 * Vertical Buttons
 */
.jcarousel-skin-techresources .jcarousel-prev-vertical {
  position: absolute;
  top: 10px;
  left: 55px;
  background-position: 0 -64px; }

.jcarousel-skin-techresources .jcarousel-prev-vertical:hover {
  background-position: -32px -64px; }

.jcarousel-skin-techresources .jcarousel-prev-vertical:active {
  background-position: -64px -64px; }

.jcarousel-skin-techresources .jcarousel-next-vertical {
  position: absolute;
  bottom: 10px;
  left: 55px;
  background-position: 0 -96px; }

.jcarousel-skin-techresources .jcarousel-next-vertical:hover {
  background-position: -32px -96px; }

.jcarousel-skin-techresources .jcarousel-next-vertical:active {
  background-position: -64px -96px; }

.jcarousel-skin-techresources .jcarousel-navigation {
  margin: 0;
  padding: 0; }

.jcarousel-skin-techresources .jcarousel-navigation li {
  display: inline;
  margin: 0 2px 0 0;
  padding: 0;
  background: none; }

.jcarousel-skin-techresources .jcarousel-navigation li.active a {
  font-weight: bold;
  text-decoration: none; }

.techform {
  width: 100%;
  padding: 0;
  margin: auto; }
  .techform .searchform {
    width: 100%;
    margin: 30px auto 0; }
  @media only screen and (min-width: 767px) {
    .techform {
      padding: 30px 40px 0 40px; }
      .techform .searchform {
        width: 100%;
        margin: 0 auto 30px; } }

.searchform {
  width: 100%;
  margin: 30px auto; }

.searchform input[type="text"],
.searchform input[type="password"],
.searchform input[type="email"],
.searchform input[type="tel"],
.searchform input[type="number"],
.searchform input[type="month"],
.searchform input[type="time"],
.searchform input[type="date"],
.searchform select,
.searchform textarea {
  border: 1px solid #c2c2c2;
  border-radius: 0;
  background-color: #fff;
  color: #696969;
  font-size: 14px;
  padding: 11px 10px;
  display: block;
  width: 100%;
  max-width: 80%;
  margin: 4px 0 6px 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  float: left; }

#edit-submit {
  background: #666;
  border: 1px solid #4f4f50;
  width: 165px;
  height: 45px;
  text-transform: uppercase;
  line-height: 1;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 11px 10px;
  margin: 0 0 0 10px; }

.tech-resource-category {
  padding: 0 3em; }
  .tech-resource-category h1 {
    text-align: center; }
  .tech-resource-category .resource-nav {
    text-align: center;
    padding: 1em 0 4em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .tech-resource-category .resource-nav .resource-selectors {
      background: #959596;
      color: #fff;
      border: none;
      width: calc(100% - 10px);
      padding: .7em 0;
      margin: 0 5px;
      text-transform: uppercase;
      font-size: 1.3em;
      font-weight: 300;
      cursor: pointer; }
      .tech-resource-category .resource-nav .resource-selectors:first-child {
        margin-bottom: 15px; }
      @media only screen and (min-width: 767px) {
        .tech-resource-category .resource-nav .resource-selectors {
          width: calc(50% - 10px); }
          .tech-resource-category .resource-nav .resource-selectors:first-child {
            margin-bottom: 0; } }
      .tech-resource-category .resource-nav .resource-selectors.active {
        background: #666666; }
  .tech-resource-category .flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    margin-top: 3em; }
    .tech-resource-category .flex-container .category {
      width: 100%;
      padding: 30px 40px;
      border: solid 2px #808285;
      background: #f5f5f5;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-bottom: 20px; }
      .tech-resource-category .flex-container .category .item-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 100%;
        text-align: center; }
        .tech-resource-category .flex-container .category .item-container img {
          height: 75px; }
        .tech-resource-category .flex-container .category .item-container h3 {
          margin-bottom: 1.4em; }
        .tech-resource-category .flex-container .category .item-container select {
          width: 250px;
          content: '';
          background: url(https://static-assets-solatube.s3.amazonaws.com/selector-arrow.png) no-repeat #fff;
          background-size: 22px;
          background-position: 95% 8px;
          border-color: #000;
          cursor: pointer; }
        .tech-resource-category .flex-container .category .item-container a {
          border: 1px solid #000000;
          padding: 4px 15px;
          text-decoration: none;
          width: 160px;
          background: #fff; }
          .tech-resource-category .flex-container .category .item-container a:hover {
            background: #959596;
            color: #fff;
            border-color: #959596; }
    .tech-resource-category .flex-container.product-container {
      -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
      justify-content: space-evenly; }
      .tech-resource-category .flex-container.product-container .category {
        border: none;
        padding: 0;
        background: none; }
  @media only screen and (min-width: 590px) {
    .tech-resource-category .flex-container .category {
      width: calc(50% - 20px);
      padding: 30px 80px; } }
  @media only screen and (min-width: 767px) {
    .tech-resource-category .flex-container .category {
      width: calc(33% - 20px); }
      .tech-resource-category .flex-container .category .item-container select {
        width: 150px; } }

.taxonomy-term-description .desktop_solarepresentive {
  width: 420px;
  margin: 2em 0 0;
  display: block !important; }
  .taxonomy-term-description .desktop_solarepresentive .find {
    font-weight: bold;
    font-size: .9em; }
  .taxonomy-term-description .desktop_solarepresentive p {
    display: inline-block; }
  .taxonomy-term-description .desktop_solarepresentive .selector {
    height: 66px;
    overflow: hidden;
    display: inline; }
  @media only screen and (min-width: 813px) {
    .taxonomy-term-description .desktop_solarepresentive {
      display: -webkit-box !important;
      display: -ms-flexbox !important;
      display: flex !important; }
      .taxonomy-term-description .desktop_solarepresentive .selector {
        display: inline-block;
        width: 170px;
        height: 66px;
        overflow: hidden;
        margin-top: -15px; } }

.taxonomy-term-description .spec-wizard {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 330px;
  margin: 1.5em 0; }
  .taxonomy-term-description .spec-wizard a {
    text-transform: capitalize; }
    .taxonomy-term-description .spec-wizard a:first-child {
      margin-right: 10px; }

h3#photometric-ies, h3#daylight-modeling {
  display: none; }

@media only screen and (max-width: 767px) {
  /* phones */
  .jcarousel-skin-techresources {
    text-align: center;
    width: 450px; }
  .jcarousel-skin-techresources .jcarousel-container-horizontal {
    height: 178px;
    padding: 10px 10px;
    margin: auto; }
  #left {
    width: 100%;
    padding-bottom: 25px; }
  #right {
    width: 100%;
    padding-bottom: 25px; }
  #center {
    width: 100%;
    padding-bottom: 25px; }
  .form-item.form-item-search {
    display: inline-block;
    width: 70%;
    border-radius: 0;
    margin: 0; }
  #edit-submit {
    border-radius: 0;
    -webkit-appearance: none;
    background: #666;
    border: 1px solid #bcbdc0;
    width: 28%;
    height: 45px;
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin: 0;
    vertical-align: top; }
  .view-tech-resources {
    padding: 0 30px !important; } }

@media only screen and (max-width: 767px) and (orientation: portrait) {
  /* portrait phones */
  /* phones */
  .jcarousel-skin-techresources {
    text-align: center;
    width: 100%; }
  .jcarousel-skin-techresources .jcarousel-container-horizontal {
    width: 100%;
    height: 178px;
    padding: 10px 10px;
    margin: auto; } }

.mix-container .mix-button-group {
  background-color: #808285; }
  .mix-container .mix-button-group .show-info {
    padding: 13px;
    width: 300px;
    font-size: 15px;
    text-align: center;
    margin: 15px;
    background: #aaa;
    color: #fff;
    border-right: none; }
    .mix-container .mix-button-group .show-info.active {
      background: #aaa; }
    @media screen and (min-width: 814px) {
      .mix-container .mix-button-group .show-info {
        display: none; } }
  .mix-container .mix-button-group .hidden-content {
    display: none; }
    @media screen and (min-width: 814px) {
      .mix-container .mix-button-group .hidden-content {
        display: block; } }
    .mix-container .mix-button-group .hidden-content .button-flexing {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center; }
  .mix-container .mix-button-group div.button-group-white {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; }
  .mix-container .mix-button-group button {
    background: #808285;
    border-right: none;
    border-left: 0;
    border-top: 0;
    border-bottom: 0;
    border-radius: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: "Helvetica","Lucida Grande","HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,sans-serif;
    font-size: 12px;
    font-weight: 100;
    padding: 13px 10px 12px;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s; }
    @media screen and (min-width: 814px) {
      .mix-container .mix-button-group button {
        border-right: 1px solid #c9c9c9; }
        .mix-container .mix-button-group button:first-child {
          border-left: 1px solid #c9c9c9; } }
  .mix-container .mix-button-group button:hover {
    background: #6b6d6f; }
  .mix-container .mix-button-group button.active {
    background: #4085c4; }

.mix-container .mix-content {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly; }
  @media screen and (min-width: 814px) {
    .mix-container .mix-content {
      padding: 30px 60px; } }
  .mix-container .mix-content div.mix {
    display: inline-block;
    max-width: 315px;
    width: 100%;
    margin-bottom: 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    @media screen and (min-width: 525px) {
      .mix-container .mix-content div.mix {
        width: calc(50% - 20px); } }
    @media screen and (min-width: 680px) {
      .mix-container .mix-content div.mix {
        width: calc(33% - 20px); } }
    @media screen and (min-width: 814px) {
      .mix-container .mix-content div.mix {
        margin: 0 10px 20px; } }
    .mix-container .mix-content div.mix img {
      display: block;
      height: auto;
      max-width: 100%; }
    .mix-container .mix-content div.mix iframe {
      width: 100%;
      height: 100%;
      max-height: 180px; }
    .mix-container .mix-content div.mix.is-expanded .image--expand {
      max-height: 1000px;
      margin-bottom: 10px; }
    .mix-container .mix-content div.mix.is-collapsed .arrow--up {
      display: block;
      height: 10px;
      width: 100%; }
    .mix-container .mix-content div.mix.is-expanded .arrow--up {
      display: block;
      border-bottom: 8px solid #808285;
      border-left: 8px solid transparent;
      border-right: 8px solid transparent;
      height: 0;
      width: 0;
      margin: 2px auto 0; }
  .mix-container .mix-content .image--expand {
    padding: 0 5px;
    overflow: hidden;
    background: #808285;
    -webkit-transition: max-height .3s ease-in-out, margin-bottom .1s .2s;
    -o-transition: max-height .3s ease-in-out, margin-bottom .1s .2s;
    transition: max-height .3s ease-in-out, margin-bottom .1s .2s;
    width: 100%; }
    .mix-container .mix-content .image--expand .content-flexer-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      padding: 30px; }
      .mix-container .mix-content .image--expand .content-flexer-container .expanded-image-container {
        width: 100%;
        margin-top: 45px; }
        @media screen and (min-width: 680px) {
          .mix-container .mix-content .image--expand .content-flexer-container .expanded-image-container {
            width: 55%;
            margin-top: 0; } }
      .mix-container .mix-content .image--expand .content-flexer-container .link-text-container {
        width: 100%;
        color: #fff; }
        @media screen and (min-width: 680px) {
          .mix-container .mix-content .image--expand .content-flexer-container .link-text-container {
            width: calc(45% - 30px);
            padding: 30px; } }
        .mix-container .mix-content .image--expand .content-flexer-container .link-text-container .cta-btn {
          background: #2793e6;
          margin-right: 20px; }
          .mix-container .mix-content .image--expand .content-flexer-container .link-text-container .cta-btn:hover {
            background: #167ac6; }
        .mix-container .mix-content .image--expand .content-flexer-container .link-text-container .download-image-button {
          display: inline-block;
          position: relative;
          top: 12px; }
          .mix-container .mix-content .image--expand .content-flexer-container .link-text-container .download-image-button svg {
            width: 35px; }
  .mix-container .mix-content .expand__close {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #fff;
    font-size: 50px;
    line-height: 50px;
    text-decoration: none;
    z-index: 100; }
  .mix-container .mix-content .image--large {
    max-width: 100%;
    position: relative;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .mix-container .mix-content .expand__close:before {
    content: '×'; }
  .mix-container .mix-content .expand__close:hover {
    color: #333; }

.path-commercial-showcase .skyvault {
  background: none;
  width: auto;
  height: auto;
  margin-left: 0;
  margin-right: 0; }

#cboNext {
  left: auto; }

body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body,
body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body,
body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body,
body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body {
  padding: 0; }
  body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body .padding70,
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body .padding70,
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body .padding70,
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body .padding70 {
    padding: 0 70;
    float: left;
    clear: left; }
  body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body .fixtures,
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body .fixtures,
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body .fixtures,
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body .fixtures {
    float: left;
    clear: left; }
  body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.padding85,
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.padding85,
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.padding85,
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.padding85 {
    padding: 0 85px; }
  body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture,
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture,
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture,
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture {
    float: left;
    height: 280px;
    margin-bottom: 20px;
    position: relative;
    width: 560px; }
    body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-image,
    body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-image,
    body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture div.feature-image,
    body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-image {
      position: absolute;
      top: 10px;
      z-index: 10; }
    body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-info,
    body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-info,
    body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture div.feature-info,
    body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-info {
      display: inline-block;
      height: 280px;
      width: 240px; }
      body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-info h2,
      body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-info h2,
      body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture div.feature-info h2,
      body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-info h2 {
        border-bottom: 1px solid #58595b;
        height: 50px;
        padding-bottom: 20px;
        position: relative;
        widht: 240px; }
        body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-info h2 span,
        body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-info h2 span,
        body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture div.feature-info h2 span,
        body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-info h2 span {
          position: absolute;
          left: 0;
          bottom: 0;
          width: 240px; }
      body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-info span.description,
      body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-info span.description,
      body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture div.feature-info span.description,
      body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-info span.description {
        display: block;
        margin-bottom: 20px;
        width: 150px; }
      body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-info span.available,
      body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-info span.available,
      body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture div.feature-info span.available,
      body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture div.feature-info span.available {
        display: block;
        width: 150px; }
  body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:first-child, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(3), body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(5), body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(7),
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:first-child,
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(3),
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(5),
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(7),
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:first-child,
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(3),
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(5),
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(7),
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:first-child,
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(3),
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(5),
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(7) {
    text-align: right; }
    body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:first-child div.feature-info, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(3) div.feature-info, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(5) div.feature-info, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(7) div.feature-info,
    body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:first-child div.feature-info,
    body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(3) div.feature-info,
    body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(5) div.feature-info,
    body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(7) div.feature-info,
    body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:first-child div.feature-info,
    body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(3) div.feature-info,
    body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(5) div.feature-info,
    body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(7) div.feature-info,
    body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:first-child div.feature-info,
    body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(3) div.feature-info,
    body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(5) div.feature-info,
    body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(7) div.feature-info {
      margin-right: 20px; }
      body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:first-child div.feature-info span.description, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:first-child div.feature-info span.available, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(3) div.feature-info span.description, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(3) div.feature-info span.available, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(5) div.feature-info span.description, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(5) div.feature-info span.available, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(7) div.feature-info span.description, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(7) div.feature-info span.available,
      body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:first-child div.feature-info span.description,
      body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:first-child div.feature-info span.available,
      body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(3) div.feature-info span.description,
      body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(3) div.feature-info span.available,
      body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(5) div.feature-info span.description,
      body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(5) div.feature-info span.available,
      body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(7) div.feature-info span.description,
      body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(7) div.feature-info span.available,
      body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:first-child div.feature-info span.description,
      body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:first-child div.feature-info span.available,
      body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(3) div.feature-info span.description,
      body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(3) div.feature-info span.available,
      body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(5) div.feature-info span.description,
      body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(5) div.feature-info span.available,
      body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(7) div.feature-info span.description,
      body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(7) div.feature-info span.available,
      body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:first-child div.feature-info span.description,
      body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:first-child div.feature-info span.available,
      body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(3) div.feature-info span.description,
      body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(3) div.feature-info span.available,
      body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(5) div.feature-info span.description,
      body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(5) div.feature-info span.available,
      body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(7) div.feature-info span.description,
      body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(7) div.feature-info span.available {
        float: right;
        clear: both; }
  body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(2) div.feature-info, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(4) div.feature-info, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(6) div.feature-info, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(8) div.feature-info,
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(2) div.feature-info,
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(4) div.feature-info,
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(6) div.feature-info,
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(8) div.feature-info,
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(2) div.feature-info,
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(4) div.feature-info,
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(6) div.feature-info,
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(8) div.feature-info,
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(2) div.feature-info,
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(4) div.feature-info,
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(6) div.feature-info,
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(8) div.feature-info {
    margin-left: 20px; }
  body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(2) div.feature-image, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(4) div.feature-image, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(6) div.feature-image, body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(8) div.feature-image,
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(2) div.feature-image,
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(4) div.feature-image,
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(6) div.feature-image,
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(8) div.feature-image,
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(2) div.feature-image,
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(4) div.feature-image,
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(6) div.feature-image,
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(8) div.feature-image,
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(2) div.feature-image,
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(4) div.feature-image,
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(6) div.feature-image,
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(8) div.feature-image {
    right: 0; }
  body.path-residential-daylighting-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(8) div.feature-image,
  body.path-commercial-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(8) div.feature-image,
  body.path-commercial-brighten-up-decorative-fixture div#main-content div.field-name-body div.fixture:nth-child(8) div.feature-image,
  body.path-residential-smart-led-decorative-fixtures div#main-content div.field-name-body div.fixture:nth-child(8) div.feature-image {
    top: -20px; }

body.path-residential-blog div#main-content {
  clear: both; }
  body.path-residential-blog div#main-content h1 {
    padding: 0;
    text-align: center; }

.view-id-blog {
  clear: both;
  position: relative; }
  .view-id-blog .view-header {
    padding: 0 85px;
    text-align: center; }
  .view-id-blog .view-filters {
    overflow: hidden; }
    @media screen and (min-width: 814px) {
      .view-id-blog .view-filters {
        position: absolute;
        right: 0;
        top: -100px;
        margin: 20px 0;
        overflow: hidden; } }
    .view-id-blog .view-filters .views-exposed-widgets {
      margin-bottom: 0px;
      padding: 0px;
      padding-left: 15px; }
      @media screen and (min-width: 814px) {
        .view-id-blog .view-filters .views-exposed-widgets {
          float: right;
          padding-right: 85px; } }
      .view-id-blog .view-filters .views-exposed-widgets label {
        display: none; }
      .view-id-blog .view-filters .views-exposed-widgets .views-exposed-widget {
        padding: 0px; }
      .view-id-blog .view-filters .views-exposed-widgets input[type=text] {
        height: 28.25px;
        padding-left: 10px;
        padding-right: 10px;
        position: relative;
        top: 6px; }
      .view-id-blog .view-filters .views-exposed-widgets input[type=submit] {
        height: 28px;
        line-height: 28px;
        margin: 0.5em 0;
        text-transform: uppercase;
        font-family: 'Helvetia Neue', 'Helvetica', Arial, sans-serif;
        background: #3e3e3e;
        color: #fff;
        font-weight: 100;
        display: inline-block;
        padding: 1px 11px;
        border: none;
        cursor: pointer; }
  .view-id-blog .view-main-content {
    padding: 0 15px; }
    @media screen and (min-width: 814px) {
      .view-id-blog .view-main-content {
        padding: 0 85px; } }
    .view-id-blog .view-main-content .view-content .views-row {
      float: left;
      clear: both;
      width: 100%;
      padding-bottom: 30px;
      border-bottom: 1px solid #c3c3c3;
      margin-bottom: 60px; }
      .view-id-blog .view-main-content .view-content .views-row .views-field-field-image {
        margin: 0 0 20px 0; }
        @media screen and (min-width: 814px) {
          .view-id-blog .view-main-content .view-content .views-row .views-field-field-image {
            margin: 0 20px 20px 0;
            float: left; } }
      .view-id-blog .view-main-content .view-content .views-row .views-field-created {
        font-size: 12px;
        margin-bottom: 10px; }
      .view-id-blog .view-main-content .view-content .views-row .views-field-title {
        font-weight: 700;
        font-size: 18px;
        width: 100%;
        margin-bottom: 15px; }
      .view-id-blog .view-main-content .view-content .views-row .views-field-body {
        font-size: 16px;
        line-height: 1.6;
        width: 100%; }
        .view-id-blog .view-main-content .view-content .views-row .views-field-body a {
          color: #2384c6;
          display: block;
          margin-top: 10px;
          text-decoration: none; }
        .view-id-blog .view-main-content .view-content .views-row .views-field-body a:hover {
          text-decoration: underline; }
    .view-id-blog .view-main-content .pager-wrapper {
      float: left;
      clear: left;
      margin: 0;
      width: 100%; }
  .view-id-blog .view-footer {
    float: right;
    width: 25%;
    padding-left: 30px; }
    .view-id-blog .view-footer .view-header {
      padding: 0;
      text-align: left; }
      .view-id-blog .view-footer .view-header h3 {
        border-bottom: 1px solid #373737;
        font-weight: 700;
        padding-bottom: 10px; }
    .view-id-blog .view-footer div.item-list ul {
      margin: 0 0 30px 0; }
      .view-id-blog .view-footer div.item-list ul li {
        margin: 0 0 5px 0; }
  .view-id-blog .view-content {
    margin-top: 20px; }

.view-display-id-residential_features {
  padding: 0 85px; }
  .view-display-id-residential_features .node-blog.node-teaser {
    background: black;
    height: 300px;
    width: 950px;
    overflow: hidden;
    position: relative; }
    .view-display-id-residential_features .node-blog.node-teaser h2 {
      position: absolute;
      bottom: 20px;
      background: rgba(0, 0, 0, 0.55);
      -webkit-box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.55);
      box-shadow: 4px 4px 4px 0 rgba(0, 0, 0, 0.55);
      padding: 10px 30px; }
      .view-display-id-residential_features .node-blog.node-teaser h2 a {
        color: white; }
    .view-display-id-residential_features .node-blog.node-teaser a:hover img {
      opacity: 1; }
  .view-display-id-residential_features .slick-next {
    right: 35px; }
  .view-display-id-residential_features .slick-prev {
    left: 35px; }
  .view-display-id-residential_features .slick-next:before, .view-display-id-residential_features .slick-prev:before {
    color: #373737; }

.page-blog .page {
  padding-top: 60px; }

body.node-type-blog #main-content > h1 {
  padding-left: 85px;
  padding-right: 85px; }

body.node-type-blog #main-content article.node-blog {
  padding-left: 85px;
  padding-right: 85px;
  padding-top: 60px; }
  body.node-type-blog #main-content article.node-blog hr {
    margin-left: -107px;
    margin-right: -107px; }
  body.node-type-blog #main-content article.node-blog .field-name-body {
    padding-left: 0px;
    padding-right: 0px;
    line-height: 1.6; }
  body.node-type-blog #main-content article.node-blog img {
    margin: 0 0 30px; }
    @media screen and (max-width: 814px) {
      body.node-type-blog #main-content article.node-blog img {
        /*max-width: none;*/
        max-width: 100% !important;
        height: auto !important; } }
  body.node-type-blog #main-content article.node-blog h1 {
    font-weight: 400; }
  body.node-type-blog #main-content article.node-blog.main-image-right .field-name-field-image {
    float: right;
    margin: 0px 0px 0px 20px; }
  body.node-type-blog #main-content article.node-blog.main-image-left .field-name-field-image {
    float: left;
    margin: 0px 20px 0px 0px; }

div.thirty-thirty-thirty section#thirty-hero {
  clear: left;
  float: left;
  padding: 0 50px;
  margin-bottom: 30px; }
  div.thirty-thirty-thirty section#thirty-hero header.hero {
    margin-bottom: 40px;
    text-align: center; }
    div.thirty-thirty-thirty section#thirty-hero header.hero h1 {
      font-size: 45px;
      font-weight: 700; }
  div.thirty-thirty-thirty section#thirty-hero div.hero {
    color: #808080;
    float: left;
    width: 582px; }
    div.thirty-thirty-thirty section#thirty-hero div.hero h2 {
      font-size: 35px;
      font-weight: 700;
      line-height: 1.3;
      margin: 30px 20px 20px;
      padding-right: 40px; }
    div.thirty-thirty-thirty section#thirty-hero div.hero ul {
      margin: 0 20px;
      padding-right: 40px; }
      div.thirty-thirty-thirty section#thirty-hero div.hero ul li {
        background: left top no-repeat;
        line-height: 1.5;
        margin-bottom: 20px;
        padding: 5px 0 0 52px; }
      div.thirty-thirty-thirty section#thirty-hero div.hero ul li:nth-child(1) {
        background-image: url("../images/thirty/1.png"); }
      div.thirty-thirty-thirty section#thirty-hero div.hero ul li:nth-child(2) {
        background-image: url("../images/thirty/2.png"); }
      div.thirty-thirty-thirty section#thirty-hero div.hero ul li:nth-child(3) {
        background-image: url("../images/thirty/3.png"); }
  div.thirty-thirty-thirty section#thirty-hero div.dealers {
    float: left;
    width: 424px; }
    div.thirty-thirty-thirty section#thirty-hero div.dealers section.dealer-form {
      background: #282936; }
      div.thirty-thirty-thirty section#thirty-hero div.dealers section.dealer-form header {
        background: #259CA7;
        color: #FFFFFF;
        font-size: 22px;
        font-weight: 700;
        padding: 30px 30px 20px;
        text-align: left; }
      div.thirty-thirty-thirty section#thirty-hero div.dealers section.dealer-form div.form {
        background: url("../images/thirty/arrow.png") 34px 0 no-repeat; }
        div.thirty-thirty-thirty section#thirty-hero div.dealers section.dealer-form div.form p, div.thirty-thirty-thirty section#thirty-hero div.dealers section.dealer-form div.form label {
          color: #FFFFFF;
          display: block;
          font-weight: 300; }
        div.thirty-thirty-thirty section#thirty-hero div.dealers section.dealer-form div.form p {
          padding: 50px 50px 0; }
        div.thirty-thirty-thirty section#thirty-hero div.dealers section.dealer-form div.form form {
          padding: 20px 50px 50px; }
          div.thirty-thirty-thirty section#thirty-hero div.dealers section.dealer-form div.form form input[type="text"] {
            display: block;
            margin: 0 0 20px;
            padding: 10px;
            width: 100%; }
          div.thirty-thirty-thirty section#thirty-hero div.dealers section.dealer-form div.form form span.checkbox {
            color: #FFFFFF;
            font-size: 12px; }
          div.thirty-thirty-thirty section#thirty-hero div.dealers section.dealer-form div.form form #form-submit {
            background: #E44F3D;
            border: none;
            border-radius: 10px;
            color: #FFFFFF;
            display: block;
            font-size: 16px;
            font-weight: 700;
            margin-top: 20px;
            padding: 20px 20px;
            width: 100%;
            text-align: center; }
    div.thirty-thirty-thirty section#thirty-hero div.dealers div.dealer-testimonial {
      background: url("../images/thirty/testimonial.png") no-repeat;
      height: 190px;
      margin: 20px 10px 20px;
      padding: 20px;
      position: relative;
      width: 404px; }
      div.thirty-thirty-thirty section#thirty-hero div.dealers div.dealer-testimonial p {
        color: #808080;
        font-size: 13px;
        font-style: italic;
        font-weight: 700;
        line-height: 1.4; }
      div.thirty-thirty-thirty section#thirty-hero div.dealers div.dealer-testimonial span.author {
        position: absolute;
        font-size: 13px;
        color: #808080;
        left: 80px;
        bottom: 20px; }

div.thirty-thirty-thirty section#thirty-reasons {
  float: left;
  width: 100%; }
  div.thirty-thirty-thirty section#thirty-reasons header.reasons {
    background: #259CA7;
    float: left;
    width: 100%; }
    div.thirty-thirty-thirty section#thirty-reasons header.reasons h2 {
      color: #FFFFFF;
      font-size: 35px;
      font-weight: 700;
      line-height: 1;
      margin: 0;
      padding: 35px 30px 30px;
      text-align: center; }
  div.thirty-thirty-thirty section#thirty-reasons div.reasons {
    float: left;
    padding: 40px 50px 0; }
    div.thirty-thirty-thirty section#thirty-reasons div.reasons div.reason {
      float: left;
      width: 289px;
      margin: 0 75px 40px 0; }
      div.thirty-thirty-thirty section#thirty-reasons div.reasons div.reason h3 {
        color: #259CA7;
        font-size: 20px;
        font-weight: 700; }
  div.thirty-thirty-thirty section#thirty-reasons p {
    color: #808080;
    line-height: 1.5; }

div.thirty-thirty-thirty footer {
  background: #E44F3D;
  float: left;
  width: 100%; }
  div.thirty-thirty-thirty footer h2 {
    color: #FFFFFF;
    font-size: 35px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    padding: 45px 30px 40px;
    text-align: center; }

article#daylighting-ppc {
  color: #58595B; }
  article#daylighting-ppc div.hero {
    float: left;
    margin: 50px 0; }
  article#daylighting-ppc header.headline {
    float: left;
    padding: 0 50px; }
  article#daylighting-ppc section.video {
    float: left;
    margin: 50px 0; }
  article#daylighting-ppc section.systems {
    float: left;
    padding: 50px 0; }
    article#daylighting-ppc section.systems section.system {
      float: left;
      margin: 0 24.5px;
      width: 324px; }
  article#daylighting-ppc section.affordable {
    background: #F3F1EC;
    float: left;
    padding: 50px 0; }
    article#daylighting-ppc section.affordable header {
      float: left;
      margin-bottom: 50px;
      padding: 0 24.5px; }
    article#daylighting-ppc section.affordable section.example {
      float: left;
      margin: 0 24.5px;
      width: 324px; }
      article#daylighting-ppc section.affordable section.example ul {
        margin-bottom: 10px; }
        article#daylighting-ppc section.affordable section.example ul li {
          list-style: disc inside;
          margin-bottom: 5px; }
    article#daylighting-ppc section.affordable footer {
      float: left;
      font-size: 14px;
      margin-top: 20px;
      padding: 0 24.5px; }
  article#daylighting-ppc section.dealer-search {
    background: url("../images/daylighting-ppc/background-dealer.jpg") top center no-repeat;
    background-size: cover;
    padding: 170px 0; }
    article#daylighting-ppc section.dealer-search header h3 {
      color: #FFFFFF;
      font-weight: bold;
      text-align: center; }
    article#daylighting-ppc section.dealer-search div.form {
      text-align: center; }
      article#daylighting-ppc section.dealer-search div.form input[type="submit"] {
        border: 1px solid #FFFFFF;
        border-radius: 4px;
        color: #FFFFFF;
        font-weight: 700;
        padding: 5px 20px;
        /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ccdc10+0,699707+100 */
        background: #ccdc10;
        /* Old browsers */
        background: -moz-linear-gradient(top, #ccdc10 0%, #699707 100%);
        /* FF3.6-15 */
        background: -webkit-linear-gradient(top, #ccdc10 0%, #699707 100%);
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, left bottom, from(#ccdc10), to(#699707));
        background: -o-linear-gradient(top, #ccdc10 0%, #699707 100%);
        background: linear-gradient(to bottom, #ccdc10 0%, #699707 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ccdc10', endColorstr='#699707',GradientType=0 );
        /* IE6-9 */ }
    article#daylighting-ppc section.dealer-search p {
      color: #FFFFFF;
      padding: 0 300px;
      text-align: center;
      margin: 20px 0 0; }
  article#daylighting-ppc section.add-daylighting {
    float: left;
    padding: 50px 0; }
    article#daylighting-ppc section.add-daylighting header h3 {
      font-weight: bold;
      text-align: center; }
    article#daylighting-ppc section.add-daylighting section.steps {
      float: left; }
      article#daylighting-ppc section.add-daylighting section.steps section.step {
        float: left;
        margin: 0 24.5px;
        text-align: center;
        width: 324px; }
        article#daylighting-ppc section.add-daylighting section.steps section.step a {
          background: #666666;
          color: #FFFFFF;
          display: inline-block;
          padding: 10px 20px;
          font-weight: 700;
          width: 250px; }

form#solatube-blocks-rfi-form {
  padding: 0 15px; }
  form#solatube-blocks-rfi-form #edit-describe {
    display: none; }
  form#solatube-blocks-rfi-form label[for="edit-services"], form#solatube-blocks-rfi-form label[for="edit-commetns"] {
    font-weight: 100;
    font-size: 18px;
    margin-bottom: 15px; }
  form#solatube-blocks-rfi-form label[for="edit-optin"] {
    font-weight: 300;
    font-size: 16px;
    padding-left: 10px; }
  form#solatube-blocks-rfi-form fieldset {
    border: none;
    padding: 0; }
    form#solatube-blocks-rfi-form fieldset legend {
      font-weight: 100;
      font-size: 18px;
      margin-bottom: 20px; }
  form#solatube-blocks-rfi-form #edit-rfiselect #edit-services {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 1em; }
    form#solatube-blocks-rfi-form #edit-rfiselect #edit-services div.form-item {
      margin-top: 0;
      width: 100%; }
      form#solatube-blocks-rfi-form #edit-rfiselect #edit-services div.form-item label {
        font-weight: 100;
        margin-left: 5px; }
  form#solatube-blocks-rfi-form #edit-rfiselect div.form-item.form-item-describe {
    clear: left; }
    form#solatube-blocks-rfi-form #edit-rfiselect div.form-item.form-item-describe input {
      margin-left: 18px;
      margin-top: 0;
      min-width: 100%; }
  form#solatube-blocks-rfi-form #edit-rficontact .fieldset-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  form#solatube-blocks-rfi-form #edit-rficontact div.form-item {
    width: 100%;
    margin: 0 0 20px 0; }
    form#solatube-blocks-rfi-form #edit-rficontact div.form-item input, form#solatube-blocks-rfi-form #edit-rficontact div.form-item select {
      margin: 0;
      width: 100%;
      max-width: none; }
  form#solatube-blocks-rfi-form textarea {
    height: 150px;
    width: 100%;
    max-width: none; }
  form#solatube-blocks-rfi-form div.form-item-optin {
    margin: 30px 0; }
  form#solatube-blocks-rfi-form input[type="submit"] {
    background-color: #666;
    border: medium none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 10px 0 0;
    padding: 10px 35px;
    text-shadow: -1px 1px #666;
    cursor: pointer;
    width: 200px; }
  @media (min-width: 620px) {
    form#solatube-blocks-rfi-form #edit-rfiselect #edit-services div.form-item {
      width: calc(50% - 15px); }
    form#solatube-blocks-rfi-form #edit-rficontact div.form-item {
      width: calc(50% - 15px); } }

form#solatube-blocks-cpf-form {
  padding: 0 15px; }
  form#solatube-blocks-cpf-form #edit-describe {
    display: none; }
  form#solatube-blocks-cpf-form .fieldset-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  form#solatube-blocks-cpf-form label[for="edit-services"], form#solatube-blocks-cpf-form label[for="edit-commetns"] {
    float: left;
    font-weight: 100;
    font-size: 18px;
    margin-bottom: 15px; }
  form#solatube-blocks-cpf-form label[for="edit-optin"] {
    font-weight: 300;
    font-size: 16px;
    padding-left: 10px; }
  form#solatube-blocks-cpf-form fieldset {
    border: none;
    padding: 0; }
    form#solatube-blocks-cpf-form fieldset legend {
      font-weight: 100;
      font-size: 18px;
      margin-bottom: 20px; }
  form#solatube-blocks-cpf-form #edit-rfiselect #edit-services {
    float: left;
    clear: left; }
    form#solatube-blocks-cpf-form #edit-rfiselect #edit-services div.form-item {
      margin-top: 0; }
      form#solatube-blocks-cpf-form #edit-rfiselect #edit-services div.form-item label {
        font-weight: 100; }
  form#solatube-blocks-cpf-form #edit-rfiselect div.form-item.form-item-describe {
    clear: left; }
    form#solatube-blocks-cpf-form #edit-rfiselect div.form-item.form-item-describe input {
      margin-left: 18px;
      margin-top: 0;
      width: 382px; }
  form#solatube-blocks-cpf-form #edit-rficontact div.form-item {
    width: 100%;
    margin: 0 0 20px 0; }
    form#solatube-blocks-cpf-form #edit-rficontact div.form-item input, form#solatube-blocks-cpf-form #edit-rficontact div.form-item select {
      margin: 0;
      width: 100%;
      max-width: none; }
  form#solatube-blocks-cpf-form textarea {
    clear: left;
    height: 150px;
    min-width: 100%; }
  form#solatube-blocks-cpf-form div.form-item-optin {
    margin: 30px 0; }
  form#solatube-blocks-cpf-form input[type="submit"] {
    background-color: #666;
    border: medium none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    line-height: 1.8;
    margin: 0 10px 0 0;
    padding: 10px 35px;
    text-shadow: -1px 1px #666;
    width: 200px; }
  @media (min-width: 620px) {
    form#solatube-blocks-cpf-form {
      padding: 0 85px; }
      form#solatube-blocks-cpf-form #edit-rficontact div.form-item {
        width: calc(50% - 15px); } }

body.path-spectral-reflectance {
  /* ----- STANDARD FORM STYLING ----- */ }
  body.path-spectral-reflectance .wrapper {
    overflow: hidden; }
  body.path-spectral-reflectance .wrapper div {
    min-height: 200px; }
  body.path-spectral-reflectance #ctaone {
    float: left;
    width: 50%;
    text-align: right;
    padding: 20px 10px 0px 20px; }
    body.path-spectral-reflectance #ctaone img {
      cursor: pointer; }
  body.path-spectral-reflectance #ctatwo {
    overflow: hidden;
    text-align: left;
    padding: 20px 20px 0px 10px; }
    body.path-spectral-reflectance #ctatwo img {
      cursor: pointer; }
  body.path-spectral-reflectance .form-wrapper {
    padding: 20px; }
  body.path-spectral-reflectance #one {
    float: left;
    width: 50%;
    text-align: center;
    padding: 0px 10px 20px 20px; }
  body.path-spectral-reflectance #two {
    overflow: hidden;
    min-height: 170px;
    text-align: center;
    padding: 0px 20px 20px 10px; }
  body.path-spectral-reflectance #three {
    float: left;
    width: 50%;
    text-align: center;
    padding: 20px 10px 20px 20px; }
  body.path-spectral-reflectance #four {
    overflow: hidden;
    min-height: 170px;
    text-align: center;
    padding: 20px 20px 20px 10px; }
  @media screen and (max-width: 690px) {
    body.path-spectral-reflectance #one {
      float: none;
      margin-right: 0;
      width: auto;
      text-align: center;
      padding: 20px; }
    body.path-spectral-reflectance #three {
      float: none;
      margin-right: 0;
      width: auto;
      text-align: center;
      padding: 20px; }
    body.path-spectral-reflectance .contact-popup {
      width: 30%; } }
  body.path-spectral-reflectance .sr-popup-wrapper {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9994;
    background: rgba(250, 250, 250, 0.4);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow-y: scroll; }
  body.path-spectral-reflectance .contact-popup {
    width: 530px;
    margin: 5% auto 20px auto;
    padding: 30px;
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4);
    position: relative;
    z-index: 9995;
    background: #fff;
    border-top-color: #ff0000; }
  body.path-spectral-reflectance .popup-close {
    background: #749200;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: .9;
    display: block;
    height: 33px;
    width: 33px;
    padding: 9px;
    font-size: 18px;
    border-radius: 18px;
    -webkit-box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.4);
    position: absolute;
    right: -10px;
    top: -10px;
    z-index: 9999; }
  body.path-spectral-reflectance .contact-popup p,
  body.path-spectral-reflectance .contact-form p {
    text-align: left; }
  body.path-spectral-reflectance .popup-head {
    height: 10px;
    width: 100%;
    background-color: #749200; }
  body.path-spectral-reflectance .contact-popup h2,
  body.path-spectral-reflectance .contact-form h2 {
    font-size: 24px;
    color: #749200;
    font-weight: 300; }
  body.path-spectral-reflectance .contact-popup .popup-phonelink {
    font-size: 30px;
    color: #6a6a6a;
    font-weight: 400; }
  body.path-spectral-reflectance .contact-popup .form-standard-sr,
  body.path-spectral-reflectance .contact-form .form-standard-sr {
    margin-top: 30px; }
  body.path-spectral-reflectance .contact-popup .form-standard-sr label,
  body.path-spectral-reflectance .contact-form .form-standard-sr label {
    font-size: 14px;
    text-transform: uppercase; }
  body.path-spectral-reflectance .contact-popup .form-standard-sr textarea,
  body.path-spectral-reflectance .contact-form .form-standard-sr textarea {
    max-width: 400px; }
  body.path-spectral-reflectance .contact-popup .form-standard-sr .button,
  body.path-spectral-reflectance .contact-form .form-standard-sr .button {
    background: #749200;
    color: #fff;
    border: 0px;
    margin: 10px 0 5px 0; }
  body.path-spectral-reflectance .contact-popup p.fineprint,
  body.path-spectral-reflectance .contact-form p.fineprint {
    font-size: 13px;
    margin-top: 25px;
    text-align: left; }
  body.path-spectral-reflectance .form-standard-sr {
    position: relative;
    line-height: 1.1; }
  body.path-spectral-reflectance .form-standard-sr label {
    color: #393939;
    font-size: 12px;
    font-size: 1.5rem;
    line-height: 1.1;
    padding: 1px 1px 1px 5px; }
  body.path-spectral-reflectance .form-standard-sr label span {
    font-size: 11px;
    font-size: 1.1rem;
    float: right;
    margin-top: 6px;
    color: #838383; }
  body.path-spectral-reflectance .form-standard-sr input[type="text"],
  body.path-spectral-reflectance .form-standard-sr input[type="password"],
  body.path-spectral-reflectance .form-standard-sr input[type="email"],
  body.path-spectral-reflectance .form-standard-sr input[type="tel"],
  body.path-spectral-reflectance .form-standard-sr input[type="number"],
  body.path-spectral-reflectance .form-standard-sr input[type="month"],
  body.path-spectral-reflectance .form-standard-sr input[type="time"],
  body.path-spectral-reflectance .form-standard-sr input[type="date"],
  body.path-spectral-reflectance .form-standard-sr select,
  body.path-spectral-reflectance .form-standard-sr textarea {
    border: 1px solid #c2c2c2;
    border-radius: 18px;
    background-color: #fff;
    color: #696969;
    /*    font-size          : 15px;
	    font-size          : 1.5rem;
	    padding            : 11px 10px;*/
    display: block;
    width: 100%;
    max-width: 250px;
    margin: 4px 0 6px 0;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none; }
  body.path-spectral-reflectance .form-standard-sr input[type="checkbox"] {
    border: 1px solid #c2c2c2;
    background-color: #fff;
    color: #696969;
    font-size: 15px;
    padding: 11px 10px; }
  body.path-spectral-reflectance .button {
    background: #fff;
    border: 1px solid #bcbdc0;
    width: 185px;
    height: 41px;
    border-radius: 19px;
    text-transform: uppercase;
    line-height: 1;
    color: #6b6f70;
    text-align: center;
    font-size: 14px;
    padding: 13px;
    margin: 25px 0 15px 0;
    display: inline-block; }
  body.path-spectral-reflectance .button.alt {
    background: #101f44;
    border: 1px solid #9D9EA1;
    color: #fff;
    width: 196px;
    height: 36px;
    padding: 10px; }
  body.path-spectral-reflectance .button:hover {
    cursor: pointer; }
  body.path-spectral-reflectance table tbody td {
    width: 50%;
    padding: 10px; }

/* SITE VARIABLES */
/* Breakpoints */
/* Column %s */
.solatube-europe {
  padding: 15px;
  max-width: 1140px;
  margin: 0 auto; }
  .solatube-europe h1 {
    color: #0082c4;
    font-size: 35px;
    text-align: left;
    font-weight: 400;
    margin-bottom: 20px; }
  .solatube-europe section {
    padding: 15px; }
    .solatube-europe section h2 {
      font-size: 23px;
      font-weight: 400;
      font-style: normal; }
    .solatube-europe section p {
      font-size: 16px; }
    .solatube-europe section p,
    .solatube-europe section li {
      color: #777777;
      font-weight: 100;
      line-height: 1.66em; }
    .solatube-europe section a {
      color: #0083C7; }
      .solatube-europe section a:active, .solatube-europe section a:focus, .solatube-europe section a:hover, .solatube-europe section a:link, .solatube-europe section a:visited {
        outline: 0;
        text-decoration: none; }
    .solatube-europe section.intro p {
      text-align: justify; }
    .solatube-europe section.intro .img-container {
      max-width: 150px;
      width: 100%;
      margin: 0 auto; }
    .solatube-europe section.importance .img-container {
      width: 100%; }
      .solatube-europe section.importance .img-container img {
        width: 100%; }
    .solatube-europe section.ce-standards ul {
      margin-left: 1.5em;
      margin-bottom: 1em;
      list-style-type: disc;
      padding: 0; }
      .solatube-europe section.ce-standards ul li {
        font-size: 14px;
        margin-left: 0.85em; }
    .solatube-europe section.responsibility {
      margin-bottom: 2em; }
      .solatube-europe section.responsibility .img-container {
        -webkit-box-shadow: 6px 6px 20px 0px rgba(0, 0, 0, 0.5);
        box-shadow: 6px 6px 20px 0px rgba(0, 0, 0, 0.5);
        width: 200px;
        margin: 2em auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .solatube-europe section.responsibility .img-container img {
          -webkit-box-shadow: 0 0 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 0 4px rgba(0, 0, 0, 0.25); }
    .solatube-europe section.dop {
      background: #FDB927;
      padding: 15px;
      min-height: 350px;
      margin: 2em 0;
      display: block; }
      .solatube-europe section.dop div.text-container {
        width: 100%; }
        .solatube-europe section.dop div.text-container h3 {
          text-align: center;
          font-weight: 400;
          font-style: normal;
          font-size: 24px;
          color: #404040;
          text-transform: uppercase;
          margin: 4em 0 1.5em 0; }
        .solatube-europe section.dop div.text-container div.circle-arrow-right {
          text-align: center; }
          .solatube-europe section.dop div.text-container div.circle-arrow-right svg {
            fill: #fff; }
      .solatube-europe section.dop form {
        width: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center; }
        .solatube-europe section.dop form div.steps-container {
          width: 100%; }
          .solatube-europe section.dop form div.steps-container h3 {
            display: none !important; }
          .solatube-europe section.dop form div.steps-container h4 {
            color: #777777 !important; }
            .solatube-europe section.dop form div.steps-container h4 .required-star {
              color: #790000;
              margin-left: 4px; }
          .solatube-europe section.dop form div.steps-container section input,
          .solatube-europe section.dop form div.steps-container section label {
            width: 100%;
            max-width: none;
            display: block; }
          .solatube-europe section.dop form div.steps-container section label {
            margin: 0.5em 0 1em 0;
            font-size: 0.813em;
            color: #777777 !important; }
          .solatube-europe section.dop form div.steps-container section input {
            line-height: 2;
            padding: 10px;
            width: calc(100% - 20px);
            border: 1px solid #e3e3e3 !important;
            color: #767676 !important;
            line-height: 14px;
            margin-bottom: 15px !important; }
          .solatube-europe section.dop form div.steps-container section select {
            border: 1px solid #e3e3e3;
            background: url(https://static-assets-solatube.s3.amazonaws.com/selectbox-arrow.png) right center no-repeat;
            -webkit-appearance: none;
            -moz-appearance: none;
            appearance: none;
            padding: 12px 14px 12px 20px;
            font-size: 12px;
            line-height: 14px;
            color: #252525;
            border-radius: 0 !important;
            font-weight: 700;
            min-width: 240px;
            max-width: 100%;
            width: 100%;
            display: block; }
          .solatube-europe section.dop form div.steps-container div.steps.clearfix {
            display: none !important; }
          .solatube-europe section.dop form div.steps-container div.actions ul {
            padding: 0;
            margin: 15px 0; }
            .solatube-europe section.dop form div.steps-container div.actions ul li {
              display: block;
              margin: 1em 0;
              text-align: center;
              background: #252525; }
              .solatube-europe section.dop form div.steps-container div.actions ul li.disabled {
                background: #959595 !important;
                display: none !important; }
              .solatube-europe section.dop form div.steps-container div.actions ul li:last-child {
                width: 100%;
                background: #0083C7 !important; }
              .solatube-europe section.dop form div.steps-container div.actions ul li a {
                color: #fff;
                font-size: 12px;
                display: block;
                padding: 12px 15px;
                font-weight: 700;
                text-transform: uppercase;
                line-height: 13px !important;
                letter-spacing: 1px;
                text-align: center; }
    @media screen and (min-width: 768px) {
      .solatube-europe section {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        padding: 0; }
        .solatube-europe section h2 {
          margin-top: 0; }
        .solatube-europe section .img-container img {
          width: 100%; }
        .solatube-europe section.intro p {
          width: 66.66667%; }
        .solatube-europe section.intro .img-container {
          width: 33.33333%;
          padding: 15px; }
        .solatube-europe section.importance .img-container {
          width: 33.33333%;
          padding: 15px; }
        .solatube-europe section.importance .text-container {
          padding: 15px;
          width: 66.66667%; }
          .solatube-europe section.importance .text-container h2 {
            margin-top: 0; }
        .solatube-europe section.ce-standards .text-container {
          width: 66.66667%;
          padding: 15px; }
        .solatube-europe section.ce-standards .img-container {
          width: 33.33333%;
          padding: 15px; }
          .solatube-europe section.ce-standards .img-container img {
            width: auto; }
        .solatube-europe section.international-products .text-container {
          width: 66.66667%;
          padding: 15px; }
        .solatube-europe section.international-products .img-container {
          width: 33.33333%;
          padding: 15px; }
          .solatube-europe section.international-products .img-container img {
            padding-top: 4em; }
        .solatube-europe section.responsibility .text-container {
          width: 66.66667%;
          padding: 15px; }
          .solatube-europe section.responsibility .text-container p {
            padding-right: 30px; }
        .solatube-europe section.responsibility .kitchen {
          width: 33.33333%;
          padding: 15px; }
        .solatube-europe section.dop {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex; }
          .solatube-europe section.dop div.text-container {
            width: 50%; }
          .solatube-europe section.dop form {
            width: 50%;
            padding-left: 1.5em; }
            .solatube-europe section.dop form div.steps-container section {
              display: block; }
              .solatube-europe section.dop form div.steps-container section#steps-uid-0-p-0 div {
                width: calc(50% - 10px);
                float: left;
                padding: 0 10px; }
                .solatube-europe section.dop form div.steps-container section#steps-uid-0-p-0 div:first-of-type {
                  padding-left: 0; }
                .solatube-europe section.dop form div.steps-container section#steps-uid-0-p-0 div:last-of-type {
                  padding-right: 0; }
              .solatube-europe section.dop form div.steps-container section#steps-uid-0-p-0 #email {
                width: calc(50% - 30px); }
              .solatube-europe section.dop form div.steps-container section#steps-uid-0-p-1 div input {
                width: calc(50% - 25px); }
              .solatube-europe section.dop form div.steps-container section#steps-uid-0-p-1 select {
                width: 50%; }
            .solatube-europe section.dop form div.steps-container div.actions {
              padding: 0; }
              .solatube-europe section.dop form div.steps-container div.actions ul li {
                display: inline-block;
                width: 25%;
                margin: 0 1em; }
                .solatube-europe section.dop form div.steps-container div.actions ul li:first-of-type {
                  margin-left: 0; }
                .solatube-europe section.dop form div.steps-container div.actions ul li:nth-child(2) {
                  margin-left: 0; }
                .solatube-europe section.dop form div.steps-container div.actions ul li:last-child {
                  width: auto; } }
  .solatube-europe .logo-slides {
    max-width: 1200px;
    width: 100%;
    overflow: hidden; }
    .solatube-europe .logo-slides .slick-track {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; }
    .solatube-europe .logo-slides div.logo {
      max-width: 200px;
      width: 33%;
      margin: 0 30px; }
      .solatube-europe .logo-slides div.logo img {
        max-width: 100%;
        margin: auto; }

#reviews h1 {
  margin: 30px 0; }

#reviews .disclaimer {
  font-size: 85%;
  margin: 5px 0 0; }

#reviews h2 {
  margin-top: 30px; }

#reviews form {
  margin-bottom: 30px; }
  #reviews form .submit {
    border: none;
    line-height: 1.8;
    margin: 0 10px 0 0;
    padding: 3.6px 35px;
    cursor: pointer;
    margin-left: -5px; }
    @media screen and (min-width: 814px) {
      #reviews form .submit {
        padding: 4.6px 35px; } }

#reviews .hero-container {
  margin-bottom: 30px; }
  #reviews .hero-container .hero-text {
    margin-bottom: 30px; }
    #reviews .hero-container .hero-text ul {
      padding-left: 18px; }
      #reviews .hero-container .hero-text ul li {
        list-style: disc; }
  #reviews .hero-container .video-placeholder-container {
    position: relative;
    padding-bottom: 250px; }
    #reviews .hero-container .video-placeholder-container img {
      position: absolute;
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover;
      top: 0;
      left: 0;
      z-index: 0; }
    #reviews .hero-container .video-placeholder-container iframe {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 101; }
  @media screen and (min-width: 814px) {
    #reviews .hero-container {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      #reviews .hero-container .hero-text {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1; }
      #reviews .hero-container .video-placeholder-container {
        -webkit-box-flex: 1;
        -ms-flex: 1;
        flex: 1;
        margin-left: 30px; } }

#reviews .reviews-section .fa-star {
  color: #f35015; }
  #reviews .reviews-section .fa-star:not(:last-child) {
    margin-right: 5px; }

#reviews .reviews-section .rating {
  margin-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  #reviews .reviews-section .rating .stars-container {
    margin-right: 15px; }
  #reviews .reviews-section .rating span.value {
    font-weight: 600;
    font-size: 1.2em; }

#reviews .reviews-section .review-row:not(:last-child) {
  margin-bottom: 30px; }

#reviews .reviews-section .review-row .review-platform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 5px; }
  #reviews .reviews-section .review-row .review-platform .stars-date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 15px; }
    #reviews .reviews-section .review-row .review-platform .stars-date .stars-container {
      margin-bottom: 5px; }
    #reviews .reviews-section .review-row .review-platform .stars-date .date {
      margin: 0 0 0 15px;
      font-size: .8em;
      color: #959ba1; }

#reviews .reviews-section .review-row .solatube-reply {
  border-left: solid 2px #118fd9;
  padding: 10px 0 10px 16px;
  background-color: #f4f6f8; }
  #reviews .reviews-section .review-row .solatube-reply .reply-title {
    color: #37556e;
    font-size: 12px; }

body.page-tech-resources h3#daylighting-photometric-ies, body.path-support-technical-resources-list h3#daylighting-photometric-ies {
  display: none; }

body.page-tech-resources div#block-views-exp-tech-resources-page, body.path-support-technical-resources-list div#block-views-exp-tech-resources-page {
  margin-bottom: 30px;
  padding: 0 30px; }

body.page-tech-resources #block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 h2.title, body.page-tech-resources #block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe h2.title, body.path-support-technical-resources-list #block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 h2.title, body.path-support-technical-resources-list #block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe h2.title {
  cursor: pointer; }

body.page-tech-resources #facetapi-facet-search-apitech-resources-block-field-tech-category-wrapper, body.page-tech-resources #facetapi-facet-search-apitech-resources-block-field-product-type-wrapper, body.path-support-technical-resources-list #facetapi-facet-search-apitech-resources-block-field-tech-category-wrapper, body.path-support-technical-resources-list #facetapi-facet-search-apitech-resources-block-field-product-type-wrapper {
  display: none; }

body.page-tech-resources .ui-state-default, body.page-tech-resources .ui-widget-content .ui-state-default, body.page-tech-resources .ui-widget-header .ui-state-default, body.path-support-technical-resources-list .ui-state-default, body.path-support-technical-resources-list .ui-widget-content .ui-state-default, body.path-support-technical-resources-list .ui-widget-header .ui-state-default {
  background: #ebebeb; }

body.page-tech-resources div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6,
body.page-tech-resources div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe, body.path-support-technical-resources-list div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6,
body.path-support-technical-resources-list div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe {
  padding: 0 30px; }
  body.page-tech-resources div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 h2,
  body.page-tech-resources div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe h2, body.path-support-technical-resources-list div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 h2,
  body.path-support-technical-resources-list div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe h2 {
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 20px;
    margin-top: 0;
    padding-bottom: 10px; }
  body.page-tech-resources div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li,
  body.page-tech-resources div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li, body.path-support-technical-resources-list div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li,
  body.path-support-technical-resources-list div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li {
    margin-bottom: 15px;
    margin-left: 0; }
    body.page-tech-resources div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li div.form-item,
    body.page-tech-resources div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li div.form-item, body.path-support-technical-resources-list div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li div.form-item,
    body.path-support-technical-resources-list div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li div.form-item {
      position: relative; }
      body.page-tech-resources div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li div.form-item input,
      body.page-tech-resources div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li div.form-item input, body.path-support-technical-resources-list div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li div.form-item input,
      body.path-support-technical-resources-list div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li div.form-item input {
        margin: 0;
        position: absolute;
        top: 1px;
        left: 0; }
      body.page-tech-resources div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li div.form-item label,
      body.page-tech-resources div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li div.form-item label, body.path-support-technical-resources-list div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li div.form-item label,
      body.path-support-technical-resources-list div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li div.form-item label {
        display: block;
        padding-left: 20px; }
    body.page-tech-resources div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li ul,
    body.page-tech-resources div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li ul, body.path-support-technical-resources-list div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li ul,
    body.path-support-technical-resources-list div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li ul {
      margin: 20px 0 20px 20px; }
  body.page-tech-resources div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li.expanded label,
  body.page-tech-resources div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li.expanded label, body.path-support-technical-resources-list div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li.expanded label,
  body.path-support-technical-resources-list div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li.expanded label {
    color: #0083c7; }
  body.page-tech-resources div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li.expanded ul li label,
  body.page-tech-resources div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li.expanded ul li label, body.path-support-technical-resources-list div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li.expanded ul li label,
  body.path-support-technical-resources-list div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li.expanded ul li label {
    color: black;
    font-size: 14px; }
  body.page-tech-resources div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li.expanded ul li.facetapi-active label,
  body.page-tech-resources div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li.expanded ul li.facetapi-active label, body.path-support-technical-resources-list div#block-facetapi-41rsnc5qw18f1ja0icrdqmiskmh9kbr6 ul li.expanded ul li.facetapi-active label,
  body.path-support-technical-resources-list div#block-facetapi-fcl8ybuq2kkv3u0qgnvsn1c0spxnnhhe ul li.expanded ul li.facetapi-active label {
    color: #0083c7; }

body.page-tech-resources div.view-tech-resources, body.path-support-technical-resources-list div.view-tech-resources {
  padding-right: 30px; }
  body.page-tech-resources div.view-tech-resources div.view-grouping, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping {
    border-bottom: 1px solid #f2f2f2;
    margin-bottom: 40px;
    padding-bottom: 40px; }
    body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-header h2, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-header h2 {
      font-weight: 300;
      font-size: 20px;
      line-height: 22px;
      border-bottom: 2px solid #808285;
      margin-bottom: 20px;
      margin-top: 0;
      padding-bottom: 10px; }
    body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-accordion-header, body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-helper-reset, body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-state-default, body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-corner-all, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-accordion-header, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-helper-reset, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-state-default, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-corner-all {
      cursor: pointer;
      border-radius: 0;
      line-height: 1;
      padding: 12px 10px 6px 30px;
      font-family: "Helvetica","Lucida Grande","HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,sans-serif !important;
      font-size: 18px !important;
      line-height: 22px !important;
      font-weight: 300;
      position: relative; }
      body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-accordion-header span.ui-icon, body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-helper-reset span.ui-icon, body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-state-default span.ui-icon, body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-corner-all span.ui-icon, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-accordion-header span.ui-icon, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-helper-reset span.ui-icon, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-state-default span.ui-icon, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-corner-all span.ui-icon {
        background: url("../images/accordian-arrow.png");
        width: 30px;
        height: 30px;
        margin-top: 0;
        position: absolute;
        top: 4px;
        left: 0; }
      body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-accordion-header span.ui-icon-triangle-1-s, body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-helper-reset span.ui-icon-triangle-1-s, body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-state-default span.ui-icon-triangle-1-s, body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-corner-all span.ui-icon-triangle-1-s, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-accordion-header span.ui-icon-triangle-1-s, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-helper-reset span.ui-icon-triangle-1-s, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-state-default span.ui-icon-triangle-1-s, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content h3.ui-corner-all span.ui-icon-triangle-1-s {
        background-position: -30px 0; }
    body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content div.cat-content, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content div.cat-content {
      margin-bottom: 5px; }
    body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content div.field-name-field-text-tech-resource-title, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content div.field-name-field-text-tech-resource-title {
      margin: 0;
      padding: 10px 10px 5px 30px;
      width: 100%;
      font-family: "Helvetica","Lucida Grande","HelveticaNeue-Light","Helvetica Neue Light","Helvetica Neue",Helvetica,Arial,sans-serif !important;
      font-size: 16px !important;
      line-height: 18px !important;
      font-weight: 300; }
    body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content div.field-name-field-files,
    body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content div.field-name-field-links, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content div.field-name-field-files,
    body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content div.field-name-field-links {
      margin: 0;
      width: 100%;
      padding: 10px 5px 0px 30px; }
      body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content div.field-name-field-files div.field-item,
      body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content div.field-name-field-links div.field-item, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content div.field-name-field-files div.field-item,
      body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content div.field-name-field-links div.field-item {
        margin-bottom: 15px; }
        body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content div.field-name-field-files div.field-item a.file-icon,
        body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content div.field-name-field-links div.field-item a.file-icon, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content div.field-name-field-files div.field-item a.file-icon,
        body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content div.field-name-field-links div.field-item a.file-icon {
          padding-left: 30px; }
  body.page-tech-resources div.view-tech-resources div.view-grouping:last-child, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping:last-child {
    border-bottom: none; }

body.page-tech-resources div.view-tech-resources div.view-grouping div.view-grouping-content div.cat-content, body.path-support-technical-resources-list div.view-tech-resources div.view-grouping div.view-grouping-content div.cat-content {
  height: auto !important;
  margin-bottom: 5px; }

/* --- Categories Section --- */
/*---- COMMERCIAL PAGE ----*/
.center {
  text-align: center; }

.hidden {
  display: none; }

.cta-btn {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  background: #808285;
  margin: 5px 0; }

body.path-commercial {
  color: #444444; }

.path-commercial h2.section-head {
  font-size: 30px;
  line-height: 1.05;
  margin-bottom: 10px; }

.path-commercial p {
  font-size: 17px;
  /*    line-height: 1.4;*/ }

/* --- Top Video Section --- */
.top-video-section {
  position: relative;
  margin: 5px 0; }

.video-placeholder {
  position: relative;
  display: block;
  z-index: 0; }

.hero-iframe-container {
  padding-top: 60%;
  position: relative; }
  .hero-iframe-container iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 101; }
  .hero-iframe-container .video-placeholder {
    top: 0;
    left: 0;
    z-index: 0; }

.path-commercial-technology .hero-iframe-container {
  padding-top: 0; }

.hide-first, .hide-second {
  display: none; }

.top-video-section .video-text {
  position: relative;
  width: 300px;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  color: #444444;
  text-align: center;
  margin-bottom: 30px; }
  @media screen and (min-width: 620px) {
    .top-video-section .video-text {
      position: absolute;
      left: 0;
      width: 500px;
      -webkit-transform: none;
      -ms-transform: none;
      transform: none;
      text-align: left;
      margin-left: 5%;
      margin-bottom: 0;
      z-index: 100; } }

.led-cta-background {
  width: 100%;
  padding: 10px;
  background: #0e2143; }
  .led-cta-background a {
    display: block;
    color: #fff;
    text-decoration: none; }
  .led-cta-background .led-text {
    font-size: 1.25em;
    text-align: center;
    text-transform: uppercase;
    line-height: 1; }
    .led-cta-background .led-text span.larger {
      text-transform: uppercase;
      color: #d7c399;
      font-weight: 600; }
    .led-cta-background .led-text span.smaller {
      text-transform: capitalize; }
  @media screen and (min-width: 710px) {
    .led-cta-background {
      width: 200px;
      height: 200px;
      position: absolute;
      top: 0;
      right: 0;
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%);
      clip-path: polygon(0 0, 100% 0, 100% 100%); }
      .led-cta-background .led-text {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        position: relative;
        top: 20px;
        left: 37px; }
        .led-cta-background .led-text span.larger {
          display: block;
          font-size: 1.6em; }
        .led-cta-background .led-text span.smaller {
          font-size: .7em; } }

.path-commercial-technology .top-video-section .video-text, .pathone-continuing-education-courses .top-video-section .video-text, .path-commercial-continuing-education-courses .top-video-section .video-text, .path-attic-fans .top-video-section .video-text {
  color: #444444; }
  @media screen and (min-width: 620px) {
    .path-commercial-technology .top-video-section .video-text, .pathone-continuing-education-courses .top-video-section .video-text, .path-commercial-continuing-education-courses .top-video-section .video-text, .path-attic-fans .top-video-section .video-text {
      color: #fff; } }

.path-attic-fans .top-video-section .video-text {
  max-width: 335px; }
  .path-attic-fans .top-video-section .video-text h1.section-head {
    font-weight: 600; }
  .path-attic-fans .top-video-section .video-text p {
    line-height: 1.3;
    font-size: 1.5em; }

@media screen and (min-width: 620px) {
  .pathone-continuing-education-courses .top-video-section .video-text, .path-commercial-continuing-education-courses .top-video-section .video-text {
    top: 120px; } }

.hero-hide-text {
  display: none; }

h2.section-head {
  font-size: 35px;
  line-height: 1.05;
  margin-bottom: 10px; }

.video-text p {
  font-size: 17px; }

.video-text .section-head {
  margin-top: 10px;
  line-height: 1; }

.video-text.alt {
  max-width: 580px; }
  .video-text.alt .section-head {
    font-size: 52px;
    color: #030303; }
  .video-text.alt p {
    line-height: 28px;
    font-size: 22px; }

/* --- Carousel Section --- */
.applications-section {
  text-align: center;
  padding: 30px 0 15px; }

.applications-carousel {
  margin-top: 35px; }

.applications-carousel .carousel-item {
  margin-right: 20px; }

.applications-carousel .carousel-item h4 {
  margin: 10px 0; }

.applications-section .slick-next, .applications-section .slick-prev {
  z-index: 1000;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.5);
  top: 40%; }

.slick-prev:before, .slick-next:before {
  font-size: 30px; }

.applications-section .slick-prev {
  left: 8px; }

.applications-section .slick-next {
  right: 20px; }

/* --- Text on White --- */
.text-on-white {
  width: 90%;
  margin: 0 auto 60px auto;
  line-height: 1.5; }
  @media screen and (min-width: 768px) {
    .text-on-white {
      width: 75%; } }

.text-on-white.last-psg-cta {
  margin: 75px auto !important; }

/* --- Features Blocks Section --- */
.features-blocks-section .row {
  margin-bottom: 40px; }

.features-blocks-section .feature-block {
  padding: 25px; }

.path-commercial-solamaster-2018 .features-blocks-section .row:first-child .blue-block {
  padding: 0 0 2px;
  line-height: 0; }

.features-blocks-section .blue-block {
  background: #98a6ae;
  position: relative; }

.features-blocks-section .blue-block:after {
  top: 99.5%;
  left: 60px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-top-color: #98a6ae;
  border-width: 20px; }

.features-blocks-section .text-block {
  line-height: 1.6; }

.features-blocks-section .text-block h3 {
  font-size: 24px;
  margin-top: 15px; }

/* --- SkyVault Technology Callout --- */
.technology-callout {
  background-position: right center !important;
  background-repeat: no-repeat !important;
  background-size: auto 100% !important;
  background-color: #f1f1f1 !important;
  margin: 40px 0;
  padding: 7% 0 12% 6%; }

.technology-callout h2 {
  text-shadow: 0px 0px 10px rgba(250, 250, 250, 0.7);
  font-size: 32px; }

/* --- VIDEO BANNER SECTION --- */
.video-banner {
  margin: 40px 0; }
  .video-banner iframe {
    width: 100%; }
  .video-banner .video-banner-text {
    padding: 25px; }
  .video-banner .video-banner-text h3 {
    font-size: 24px; }

.cat-item {
  position: relative;
  margin-bottom: 30px;
  text-align: center; }

.cat-item .image-and-info,
.cat-item img {
  position: relative;
  display: block;
  width: 100%; }

.cat-item a:hover img {
  opacity: inherit; }

.cat-item .hover-text {
  display: none; }

.cat-item .hover-text:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(34, 134, 197, 0.9);
  mix-blend-mode: multiply;
  color: #fff; }

.cat-item .hover-text p {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  mix-blend-mode: normal;
  color: #fff;
  z-index: 99;
  font-size: 19px; }

.cat-item .hover-text p span {
  display: block;
  margin: 20px 0; }

.cat-item h4.cat-title {
  text-align: center;
  font-size: 23px;
  margin: 15px auto;
  display: inline-block;
  background: #808285;
  color: #fff;
  padding: 12px 22px; }

.cat-item h4.cat-title a,
.cat-item h4.cat-title a:hover {
  color: #fff; }

.cat-item .info-icon-wrapper {
  display: block;
  width: 70px;
  height: 70px;
  position: absolute;
  padding: 20px;
  bottom: 1px;
  right: 1px;
  background: rgba(20, 60, 80, 0.3);
  -webkit-transition: background .4s;
  -o-transition: background .4s;
  transition: background .4s; }

.cat-item .info-icon-wrapper.active {
  background: rgba(250, 250, 250, 0.3);
  -webkit-transition: background .4s;
  -o-transition: background .4s;
  transition: background .4s; }

.cat-item .info-icon {
  display: block;
  width: 33px;
  height: 33px;
  border: 2px solid #fff;
  border-radius: 20px;
  padding: 5px;
  text-align: center;
  font-family: 'Times New Roman', serif;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  text-shadow: 0px 0px 7px rgba(0, 0, 0, 0.15); }

.divider {
  text-align: center;
  margin: 20px 0; }

/* --- Technology Section --- */
.technology-headline {
  text-align: center;
  margin: 30px 0;
  padding: 0 20px; }

.tech-item {
  margin-bottom: 20px; }

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

.tech-item .tech-text {
  padding: 20px 27px; }

.tech-item .tech-text h3 {
  margin-top: 0;
  font-size: 22px;
  line-height: 1.2; }

/* --- Resources Section --- */
.resources-section {
  margin-top: 30px; }

.resources-section h2.section-head {
  padding: 0 20px;
  text-align: center;
  margin-bottom: 30px; }

.resource-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly; }

.resource-icons .resource-link {
  -ms-flex-preferred-size: 45%;
  flex-basis: 45%;
  padding: 10px; }

.resource-icons .resource-link img {
  display: block;
  width: 100%; }

/* --- Service Section --- */
.service-section {
  padding: 0 30px; }

.service-section h2.section-head {
  margin-bottom: 30px; }

.service-section .cta-btn {
  margin: 15px auto 30px auto; }

/* --- Videos Section --- */
.videos-section {
  margin-top: 50px; }

.videos-section h2 {
  text-align: center;
  margin: 20px 0; }

.videos-section h2 svg {
  width: 400px;
  max-width: 80%; }

.video-item {
  margin: 30px auto;
  padding: 0 20px; }

.video-item .video-thumb-link {
  margin-bottom: 20px;
  display: block;
  -webkit-box-shadow: -4px 4px 8px rgba(100, 100, 100, 0.3);
  box-shadow: -4px 4px 8px rgba(100, 100, 100, 0.3);
  line-height: .3;
  position: relative; }

.video-item .video-thumb-link:after {
  content: '';
  display: block;
  width: 15%;
  height: 20%;
  position: absolute;
  left: 42%;
  top: 40%;
  background-image: url("../images/commercial/video-play-btn.png");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10; }

.video-item .video-title {
  font-size: 25px;
  font-weight: normal;
  line-height: 1.15;
  margin-bottom: 10px; }

.more-videos {
  text-align: center;
  margin: 10px 0; }

/* --- Bottom Services Links --- */
.bottom-services-links .service-link {
  display: block;
  margin: 5px 0;
  color: #fff;
  background-color: #808285;
  padding: 20px;
  font-size: 24px;
  vertical-align: middle;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1.4; }

.bottom-services-links .service-link:hover {
  text-decoration: none; }

.bottom-services-links .service-link:hover img {
  opacity: 1; }

.bottom-services-links .service-link img {
  display: inline-block;
  width: 60px;
  height: auto;
  margin-right: 3px;
  position: relative;
  left: -2px;
  bottom: -8px; }

.bottom-services-links .service-link span {
  display: inline-block;
  text-align: left;
  line-height: 1.2;
  position: relative; }

.path-home-ventilation-solutions .bottom-services-links .service-link, .node-type-residential-ventilation-subpages .bottom-services-links .service-link {
  width: 100%;
  text-align: left; }
  @media screen and (min-width: 640px) {
    .path-home-ventilation-solutions .bottom-services-links .service-link, .node-type-residential-ventilation-subpages .bottom-services-links .service-link {
      width: calc(25% - 8px);
      text-align: center; } }

/*
.bottom-services-links .service-link span:before{
    content: '';
    display: inline-block;
    background-size: 60px auto;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 50px;
    height: 50px;
}
.service-link.design-consultation span:before{
    background-image: url('../img/icon-design-consultation.png');
}
.service-link.daylighting-calculations span:before{
    background-image: url('../img/icon-daylighting-calculations.png');
}
.service-link.spec-writing span:before{
    background-image: url('../img/icon-spec-writing.png');
}
.service-link.price-estimate span:before{
    background-image: url('../img/icon-price-estimate.png');
}*/
.path-commercial footer,
.path-commercial footer p {
  font-size: 12px; }

.highlights-blocks-section {
  text-align: center; }
  .highlights-blocks-section h3 {
    font-size: 42px;
    color: #444;
    line-height: 1; }
  .highlights-blocks-section img {
    margin-bottom: 25px; }
  .highlights-blocks-section a.cta-btn {
    font-size: 20px;
    padding: 20px 50px; }

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

                                RESIDENTIAL VENTILATION

\*-------------------------------------------------------------------------------*/
.node-type-residential-ventilation-subpages p {
  line-height: 1.6; }

.product-uses-section h2 {
  margin: 0 0 50px; }

.product-intro-section {
  margin-top: 60px; }

.product-overview-section .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px; }
  .product-overview-section .row .product-row-info {
    width: 100%;
    padding: 0 30px; }
    .product-overview-section .row .product-row-info h3 {
      margin-top: 0;
      font-size: 24px;
      font-weight: 400; }
      @media screen and (min-width: 640px) {
        .product-overview-section .row .product-row-info h3 {
          font-size: 25px; } }
    .product-overview-section .row .product-row-info h4 {
      font-size: 20px;
      margin-bottom: 15px;
      font-weight: 400; }
  .product-overview-section .row .product-row-image {
    width: 100%; }
  @media screen and (min-width: 640px) {
    .product-overview-section .row {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .product-overview-section .row .product-row-info {
        width: 50%; }
        .product-overview-section .row .product-row-info.left {
          -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
          order: 1;
          text-align: right; }
        .product-overview-section .row .product-row-info.right {
          -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
          order: 2;
          text-align: left; }
      .product-overview-section .row .product-row-image {
        width: 50%; }
        .product-overview-section .row .product-row-image.left {
          -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
          order: 2; }
        .product-overview-section .row .product-row-image.right {
          -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
          order: 1; } }
  .product-overview-section .row .product-overview-highlight-info {
    margin-top: 40px; }
    .product-overview-section .row .product-overview-highlight-info ul li {
      margin: 0 20px 15px;
      color: #373737; }

.product-options-section .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px; }
  .product-options-section .row .product-row-info {
    width: 100%;
    padding: 0 30px; }
    .product-options-section .row .product-row-info h3 {
      margin-top: 0;
      font-size: 24px;
      font-weight: 400; }
      @media screen and (min-width: 640px) {
        .product-options-section .row .product-row-info h3 {
          font-size: 25px; } }
    .product-options-section .row .product-row-info h4 {
      font-size: 20px;
      margin-bottom: 15px;
      font-weight: 400; }
  .product-options-section .row .product-row-image {
    width: 100%; }
  @media screen and (min-width: 640px) {
    .product-options-section .row {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .product-options-section .row .product-row-info {
        width: 50%; }
        .product-options-section .row .product-row-info.left {
          -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
          order: 1;
          text-align: right; }
        .product-options-section .row .product-row-info.right {
          -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
          order: 2;
          text-align: left; }
      .product-options-section .row .product-row-image {
        width: 50%; }
        .product-options-section .row .product-row-image.left {
          -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
          order: 2; }
        .product-options-section .row .product-row-image.right {
          -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
          order: 1; } }

.detailed-product-options-section .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px; }
  .detailed-product-options-section .row .detailed-product-option-info {
    width: 100%;
    padding: 0 60px; }
    .detailed-product-options-section .row .detailed-product-option-info h3 {
      margin-top: 0;
      font-size: 24px;
      font-weight: 400; }
      @media screen and (min-width: 640px) {
        .detailed-product-options-section .row .detailed-product-option-info h3 {
          font-size: 25px; } }
    .detailed-product-options-section .row .detailed-product-option-info h4 {
      font-size: 20px;
      margin-bottom: 15px;
      font-weight: 400; }
    .detailed-product-options-section .row .detailed-product-option-info.above {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2; }
  .detailed-product-options-section .row .detailed-product-option-image {
    width: 100%;
    z-index: 0; }
    .detailed-product-options-section .row .detailed-product-option-image.above {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1; }
  @media screen and (min-width: 640px) {
    .detailed-product-options-section .row {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .detailed-product-options-section .row .detailed-product-option-info.left {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        text-align: right;
        width: 50%; }
      .detailed-product-options-section .row .detailed-product-option-info.right {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        text-align: left;
        width: 50%; }
      .detailed-product-options-section .row .detailed-product-option-info.above {
        width: 100%; }
      .detailed-product-options-section .row .detailed-product-option-image.left {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
        width: 50%; }
      .detailed-product-options-section .row .detailed-product-option-image.right {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        width: 50%; }
      .detailed-product-options-section .row .detailed-product-option-image.above {
        width: 100%; } }

.path-attic-fans .detailed-product-options-info-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .path-attic-fans .detailed-product-options-info-container .row {
    width: 100%;
    display: -webkit-box; }
    @media screen and (min-width: 400px) {
      .path-attic-fans .detailed-product-options-info-container .row {
        width: 49%; } }
    @media screen and (min-width: 640px) {
      .path-attic-fans .detailed-product-options-info-container .row {
        width: 24.5%; } }
    .path-attic-fans .detailed-product-options-info-container .row img {
      width: 100%;
      height: 100%; }
    .path-attic-fans .detailed-product-options-info-container .row .detailed-product-option-image {
      width: 100%;
      min-height: 165px;
      margin-bottom: 15px; }
      @media screen and (min-width: 400px) {
        .path-attic-fans .detailed-product-options-info-container .row .detailed-product-option-image {
          max-height: 165px; } }
      @media screen and (min-width: 640px) {
        .path-attic-fans .detailed-product-options-info-container .row .detailed-product-option-image {
          max-height: 126px;
          min-height: 126px; } }
      @media screen and (min-width: 814px) {
        .path-attic-fans .detailed-product-options-info-container .row .detailed-product-option-image {
          max-height: 165px;
          min-height: 165px; } }
    .path-attic-fans .detailed-product-options-info-container .row .detailed-product-option-info {
      width: 100%;
      text-align: center;
      padding: 0 10px; }

.path-whole-house-fans {
  /* Styed bullets */ }
  .path-whole-house-fans .top-video-section .video-text {
    top: 0; }
  .path-whole-house-fans .product-overview-info {
    text-align: left; }
  .path-whole-house-fans .product-options-section .product-row-info.above {
    width: 100%;
    text-align: center;
    padding: 0 75px;
    margin-bottom: 30px; }
  .path-whole-house-fans .detailed-product-options-section .row .detailed-product-option-info {
    text-align: center; }
    @media screen and (min-width: 640px) {
      .path-whole-house-fans .detailed-product-options-section .row .detailed-product-option-info {
        text-align: left; }
        .path-whole-house-fans .detailed-product-options-section .row .detailed-product-option-info.above {
          text-align: center; } }

.detailed-product-option-info ol {
  list-style: none;
  counter-reset: li;
  text-align: left; }

.detailed-product-option-info ol li {
  counter-increment: li;
  margin: 10px; }

.detailed-product-option-info ol li:before {
  content: counter(li);
  color: #ffffff;
  display: inline-block;
  width: 25px;
  height: 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 14px;
  margin-left: -25px;
  position: relative;
  left: -10px;
  top: 4px;
  text-align: center;
  padding: 5px;
  direction: rtl;
  background: #0874b7;
  /* Old browsers */
  background: -moz-linear-gradient(left, #0874b7 0%, #1fa5df 100%);
  background: -webkit-linear-gradient(left, #0874b7 0%, #1fa5df 100%);
  background: -webkit-gradient(linear, left top, right top, from(#0874b7), to(#1fa5df));
  background: -o-linear-gradient(left, #0874b7 0%, #1fa5df 100%);
  background: linear-gradient(to right, #0874b7 0%, #1fa5df 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0874b7', endColorstr='#1fa5df',GradientType=1 ); }

/* Product Details Table */
.path-whole-house-fans .detailed-product-options-section .detailed-product-option-info.left table, .path-whole-house-fans .detailed-product-options-section .detailed-product-option-info.right table, .path-whole-house-fans .detailed-product-options-section .detailed-product-option-info.above table {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

@media screen and (min-width: 640px) {
  .path-whole-house-fans .detailed-product-options-section .detailed-product-option-info.left table {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; } }

@media screen and (min-width: 640px) {
  .path-whole-house-fans .detailed-product-options-section .row:nth-child(3) .detailed-product-option-info {
    position: relative;
    top: 30px; }
  .path-whole-house-fans .detailed-product-options-section .row:nth-child(3) h4 {
    text-align: right;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(9%);
    -ms-transform: translateX(9%);
    transform: translateX(9%);
    display: inline-block; }
    .path-whole-house-fans .detailed-product-options-section .row:nth-child(3) h4:after {
      position: absolute;
      top: 20px;
      left: 0;
      content: '';
      background: #b3b3b3;
      width: 350px;
      height: 1px;
      z-index: -1; } }
    @media screen and (min-width: 640px) and (min-width: 814px) {
      .path-whole-house-fans .detailed-product-options-section .row:nth-child(3) h4:after {
        width: 500px; } }

@media screen and (min-width: 640px) {
  .path-whole-house-fans .detailed-product-options-section .row:nth-child(3) table {
    -webkit-transform: translateX(-25%);
    -ms-transform: translateX(-25%);
    transform: translateX(-25%); } }

@media screen and (min-width: 640px) {
  .path-whole-house-fans .detailed-product-options-section .row:nth-child(4) .detailed-product-option-info {
    position: relative;
    top: 30px; }
  .path-whole-house-fans .detailed-product-options-section .row:nth-child(4) h4 {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-117%);
    -ms-transform: translateX(-117%);
    transform: translateX(-117%);
    display: inline-block; }
    .path-whole-house-fans .detailed-product-options-section .row:nth-child(4) h4:after {
      position: absolute;
      top: 20px;
      right: 0;
      content: '';
      background: #b3b3b3;
      width: 350px;
      height: 1px;
      z-index: -1; } }
    @media screen and (min-width: 640px) and (min-width: 814px) {
      .path-whole-house-fans .detailed-product-options-section .row:nth-child(4) h4:after {
        width: 500px; } }

.detailed-product-option-info table tr td {
  padding: 4px;
  font-size: 15px; }

.detailed-product-option-info table tr td:first-child {
  text-align: right;
  padding-right: 10px; }

.detailed-product-option-info table tr td:last-child {
  text-align: left; }

.product-accessories-section .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 30px; }
  .product-accessories-section .row .product-row-info {
    width: 100%;
    padding: 0 30px; }
    .product-accessories-section .row .product-row-info h3 {
      margin-top: 0;
      font-size: 24px;
      font-weight: 400; }
      @media screen and (min-width: 640px) {
        .product-accessories-section .row .product-row-info h3 {
          font-size: 25px; } }
    .product-accessories-section .row .product-row-info h4 {
      font-size: 20px;
      margin-bottom: 15px;
      font-weight: 400; }
  .product-accessories-section .row .product-row-image {
    width: 100%; }
  @media screen and (min-width: 640px) {
    .product-accessories-section .row {
      -webkit-box-pack: justify;
      -ms-flex-pack: justify;
      justify-content: space-between; }
      .product-accessories-section .row .product-row-info {
        width: 50%; }
        .product-accessories-section .row .product-row-info.left {
          -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
          order: 1;
          text-align: right; }
        .product-accessories-section .row .product-row-info.right {
          -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
          order: 2;
          text-align: left; }
      .product-accessories-section .row .product-row-image {
        width: 50%; }
        .product-accessories-section .row .product-row-image.left {
          -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
          order: 2; }
        .product-accessories-section .row .product-row-image.right {
          -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
          order: 1; } }

.product-bottom-cta-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .product-bottom-cta-section .full-width-bottom-cta-container {
    margin-bottom: 30px;
    position: relative;
    width: 100%;
    background: #EBEBEB;
    padding: 80px 15px 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .product-bottom-cta-section .full-width-bottom-cta-container .product-cta-info {
      margin-bottom: 30px; }
    @media screen and (min-width: 814px) {
      .product-bottom-cta-section .full-width-bottom-cta-container {
        padding: 15px; }
        .product-bottom-cta-section .full-width-bottom-cta-container .product-cta-info, .product-bottom-cta-section .full-width-bottom-cta-container .product-cta-image {
          width: 50%;
          margin-bottom: 0; } }
    .product-bottom-cta-section .full-width-bottom-cta-container .cta-icon {
      position: absolute;
      top: 15px;
      left: 15px; }
    .product-bottom-cta-section .full-width-bottom-cta-container .cta-text-container {
      position: relative;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      width: 75%;
      text-align: right; }
  .product-bottom-cta-section .bottom-cta-container {
    width: 100%; }
    .product-bottom-cta-section .bottom-cta-container a:hover {
      text-decoration: none; }
    @media screen and (min-width: 640px) {
      .product-bottom-cta-section .bottom-cta-container {
        width: 49.5%; } }

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

                         RESIDENTIAL DAYLIGHTING PAGES

\*-------------------------------------------------------------------------------*/
.node-type-page.path-residential-skylights #main-content .field-name-body {
  padding: 0; }

.node-type-page.path-residential-skylights .content-bottom {
  display: none; }

.node-type-page.path-residential-skylights .home-hero-container .hero-nav-container img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover; }

.node-type-page.path-residential-skylights .home-hero-container .hero-nav-container .home-hero-text {
  max-width: 340px;
  margin-top: 45px; }
  .node-type-page.path-residential-skylights .home-hero-container .hero-nav-container .home-hero-text h2, .node-type-page.path-residential-skylights .home-hero-container .hero-nav-container .home-hero-text h1 {
    text-transform: uppercase;
    font-weight: 400;
    font-size: 28px; }
  .node-type-page.path-residential-skylights .home-hero-container .hero-nav-container .home-hero-text a {
    text-decoration: none; }
  @media screen and (min-width: 814px) {
    .node-type-page.path-residential-skylights .home-hero-container .hero-nav-container .home-hero-text {
      margin-top: 80px; } }

.node-type-page.path-residential-skylights .home-hero-container img {
  max-width: none !important; }

@media screen and (min-width: 814px) {
  .node-type-page.path-residential-skylights .home-hero-container {
    margin-bottom: .7%; } }

.node-type-residential-daylighting-hse-over .wrapper, .node-type-residential-daylighting-hse-inst .wrapper {
  padding: 0 15px; }
  @media screen and (min-width: 814px) {
    .node-type-residential-daylighting-hse-over .wrapper, .node-type-residential-daylighting-hse-inst .wrapper {
      padding: 0 42px; } }

.node-type-residential-daylighting-hse-over p, .node-type-residential-daylighting-hse-inst p {
  line-height: 1.6; }

.node-type-residential-daylighting-hse-over .top-video-section h1, .node-type-residential-daylighting-hse-inst .top-video-section h1 {
  text-align: center;
  margin: 1em 0;
  line-height: 1.2; }

.node-type-residential-daylighting-hse-over .top-video-section .video-text, .node-type-residential-daylighting-hse-inst .top-video-section .video-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  max-width: none;
  margin-left: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.node-type-residential-daylighting-hse-over .top-video-section .play-btn:hover img, .node-type-residential-daylighting-hse-inst .top-video-section .play-btn:hover img {
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); }

.node-type-residential-daylighting-hse-over .skylight-types, .node-type-residential-daylighting-hse-inst .skylight-types {
  margin-top: 60px; }
  .node-type-residential-daylighting-hse-over .skylight-types .product-overview-section, .node-type-residential-daylighting-hse-inst .skylight-types .product-overview-section {
    position: relative; }
    .node-type-residential-daylighting-hse-over .skylight-types .product-overview-section h4, .node-type-residential-daylighting-hse-inst .skylight-types .product-overview-section h4 {
      font-weight: 100; }
    .node-type-residential-daylighting-hse-over .skylight-types .product-overview-section small, .node-type-residential-daylighting-hse-inst .skylight-types .product-overview-section small {
      font-size: 90%; }
    .node-type-residential-daylighting-hse-over .skylight-types .product-overview-section hr, .node-type-residential-daylighting-hse-inst .skylight-types .product-overview-section hr {
      display: none; }
    .node-type-residential-daylighting-hse-over .skylight-types .product-overview-section .row, .node-type-residential-daylighting-hse-inst .skylight-types .product-overview-section .row {
      margin-bottom: 0; }
      .node-type-residential-daylighting-hse-over .skylight-types .product-overview-section .row:not(:last-child), .node-type-residential-daylighting-hse-inst .skylight-types .product-overview-section .row:not(:last-child) {
        margin-bottom: 30px; }
    @media screen and (min-width: 814px) {
      .node-type-residential-daylighting-hse-over .skylight-types .product-overview-section hr, .node-type-residential-daylighting-hse-inst .skylight-types .product-overview-section hr {
        display: block;
        position: absolute;
        width: 70%;
        top: 44%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        background-size: contain;
        left: -3px;
        z-index: 1; }
      .node-type-residential-daylighting-hse-over .skylight-types .product-overview-section .row:not(:last-child), .node-type-residential-daylighting-hse-inst .skylight-types .product-overview-section .row:not(:last-child) {
        margin-bottom: 70px; }
      .node-type-residential-daylighting-hse-over .skylight-types .product-overview-section .row:last-child img, .node-type-residential-daylighting-hse-inst .skylight-types .product-overview-section .row:last-child img {
        position: relative;
        bottom: 70px;
        z-index: 0; } }

.node-type-residential-daylighting-hse-over .mid-page-cta, .node-type-residential-daylighting-hse-inst .mid-page-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 30px 0; }
  .node-type-residential-daylighting-hse-over .mid-page-cta .cta-text, .node-type-residential-daylighting-hse-inst .mid-page-cta .cta-text {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    background: #808285;
    color: #fff;
    padding: 15px; }
    .node-type-residential-daylighting-hse-over .mid-page-cta .cta-text h2, .node-type-residential-daylighting-hse-inst .mid-page-cta .cta-text h2 {
      max-width: 350px; }
    .node-type-residential-daylighting-hse-over .mid-page-cta .cta-text .cta-btn, .node-type-residential-daylighting-hse-inst .mid-page-cta .cta-text .cta-btn {
      background: #fff;
      color: #808285;
      -webkit-transition: all .3s ease-in-out;
      -o-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out; }
  .node-type-residential-daylighting-hse-over .mid-page-cta .cta-image, .node-type-residential-daylighting-hse-inst .mid-page-cta .cta-image {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1; }
  @media screen and (min-width: 814px) {
    .node-type-residential-daylighting-hse-over .mid-page-cta .cta-text, .node-type-residential-daylighting-hse-inst .mid-page-cta .cta-text {
      width: 45%;
      text-align: right;
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: end;
      -ms-flex-align: end;
      align-items: flex-end;
      padding-left: 30px; }
      .node-type-residential-daylighting-hse-over .mid-page-cta .cta-text .cta-btn:hover, .node-type-residential-daylighting-hse-inst .mid-page-cta .cta-text .cta-btn:hover {
        color: #fff;
        background: #4085c4; }
    .node-type-residential-daylighting-hse-over .mid-page-cta .cta-image, .node-type-residential-daylighting-hse-inst .mid-page-cta .cta-image {
      width: 55%;
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2; } }

.node-type-residential-daylighting-hse-over .hse, .node-type-residential-daylighting-hse-inst .hse {
  margin: 60px 0; }
  .node-type-residential-daylighting-hse-over .hse h2, .node-type-residential-daylighting-hse-inst .hse h2 {
    margin-bottom: 1.5em; }
  .node-type-residential-daylighting-hse-over .hse .row, .node-type-residential-daylighting-hse-inst .hse .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline; }
    .node-type-residential-daylighting-hse-over .hse .row .item-container, .node-type-residential-daylighting-hse-inst .hse .row .item-container {
      width: 100%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      text-align: center;
      margin-bottom: 30px; }
      .node-type-residential-daylighting-hse-over .hse .row .item-container h3, .node-type-residential-daylighting-hse-inst .hse .row .item-container h3 {
        margin-bottom: 5px; }
      .node-type-residential-daylighting-hse-over .hse .row .item-container p, .node-type-residential-daylighting-hse-inst .hse .row .item-container p {
        margin-bottom: 0; }
    @media screen and (min-width: 768px) {
      .node-type-residential-daylighting-hse-over .hse .row .item-container, .node-type-residential-daylighting-hse-inst .hse .row .item-container {
        width: calc(33.33% - 15px);
        margin-bottom: 0; } }

.node-type-residential-daylighting-hse-over .product-details p.center, .node-type-residential-daylighting-hse-inst .product-details p.center {
  margin-bottom: 60px; }

@media screen and (min-width: 768px) {
  .node-type-residential-daylighting-hse-over .product-details .row, .node-type-residential-daylighting-hse-inst .product-details .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .node-type-residential-daylighting-hse-over .product-details .row div, .node-type-residential-daylighting-hse-inst .product-details .row div {
      width: calc(50% - 30px); }
    .node-type-residential-daylighting-hse-over .product-details .row:nth-child(odd) .image-container, .node-type-residential-daylighting-hse-inst .product-details .row:nth-child(odd) .image-container {
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2; }
    .node-type-residential-daylighting-hse-over .product-details .row:nth-child(odd) .text-container, .node-type-residential-daylighting-hse-inst .product-details .row:nth-child(odd) .text-container {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1; }
    .node-type-residential-daylighting-hse-over .product-details .row hr, .node-type-residential-daylighting-hse-inst .product-details .row hr {
      width: 100%;
      -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
      order: 3; } }

@media screen and (min-width: 768px) {
  .node-type-residential-daylighting-hse-over .bottom-cta-section, .node-type-residential-daylighting-hse-inst .bottom-cta-section {
    margin-bottom: 60px; }
    .node-type-residential-daylighting-hse-over .bottom-cta-section .text-on-white, .node-type-residential-daylighting-hse-inst .bottom-cta-section .text-on-white {
      width: 67%; } }

.node-type-residential-daylighting-hse-over .bottom-cta-section .row .text-container, .node-type-residential-daylighting-hse-inst .bottom-cta-section .row .text-container {
  padding: 30px; }

.node-type-residential-daylighting-hse-over .bottom-cta-section .row .cta-find-dealer, .node-type-residential-daylighting-hse-inst .bottom-cta-section .row .cta-find-dealer {
  text-align: center; }
  .node-type-residential-daylighting-hse-over .bottom-cta-section .row .cta-find-dealer form, .node-type-residential-daylighting-hse-inst .bottom-cta-section .row .cta-find-dealer form {
    margin-bottom: 10px; }
  .node-type-residential-daylighting-hse-over .bottom-cta-section .row .cta-find-dealer .find, .node-type-residential-daylighting-hse-inst .bottom-cta-section .row .cta-find-dealer .find {
    display: block;
    color: #2286c5;
    font-weight: 400;
    font-size: 1.4em;
    margin-bottom: 10px; }
  .node-type-residential-daylighting-hse-over .bottom-cta-section .row .cta-find-dealer input[name="zipcode"], .node-type-residential-daylighting-hse-inst .bottom-cta-section .row .cta-find-dealer input[name="zipcode"] {
    width: 200px; }
  .node-type-residential-daylighting-hse-over .bottom-cta-section .row .cta-find-dealer input[type="submit"], .node-type-residential-daylighting-hse-inst .bottom-cta-section .row .cta-find-dealer input[type="submit"] {
    background: #4086c5;
    color: #fff;
    border: none;
    padding: 8.5px;
    margin-left: -4px;
    cursor: pointer; }
  .node-type-residential-daylighting-hse-over .bottom-cta-section .row .cta-find-dealer .call, .node-type-residential-daylighting-hse-inst .bottom-cta-section .row .cta-find-dealer .call {
    margin-bottom: 20px;
    display: block; }
  .node-type-residential-daylighting-hse-over .bottom-cta-section .row .cta-find-dealer a.cta-btn, .node-type-residential-daylighting-hse-inst .bottom-cta-section .row .cta-find-dealer a.cta-btn {
    display: inline-block;
    width: 165px;
    text-align: center; }

@media screen and (min-width: 768px) {
  .node-type-residential-daylighting-hse-over .bottom-cta-section .row, .node-type-residential-daylighting-hse-inst .bottom-cta-section .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .node-type-residential-daylighting-hse-over .bottom-cta-section .row .cta-find-dealer, .node-type-residential-daylighting-hse-inst .bottom-cta-section .row .cta-find-dealer {
      text-align: left; }
      .node-type-residential-daylighting-hse-over .bottom-cta-section .row .cta-find-dealer input[type="submit"], .node-type-residential-daylighting-hse-inst .bottom-cta-section .row .cta-find-dealer input[type="submit"] {
        padding: 9.5px; }
      .node-type-residential-daylighting-hse-over .bottom-cta-section .row .cta-find-dealer a.cta-btn, .node-type-residential-daylighting-hse-inst .bottom-cta-section .row .cta-find-dealer a.cta-btn {
        display: block; }
    .node-type-residential-daylighting-hse-over .bottom-cta-section .row .image-container, .node-type-residential-daylighting-hse-inst .bottom-cta-section .row .image-container {
      width: 55%;
      -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
      order: 2; }
    .node-type-residential-daylighting-hse-over .bottom-cta-section .row .text-container, .node-type-residential-daylighting-hse-inst .bottom-cta-section .row .text-container {
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;
      width: 45%;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center; } }

.node-type-residential-daylighting-hse-over .content-bottom, .node-type-residential-daylighting-hse-inst .content-bottom {
  display: none; }

.node-type-residential-daylighting-hse-inst .bottom-cta-section .row .image-container {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1; }

.node-type-residential-daylighting-hse-inst .bottom-cta-section .row .text-container {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2; }

.day {
  background: #fff !important; }

.night {
  background: #0f0f13 !important; }

.node-type-residential-daylighting-homepage {
  color: #444444; }
  .node-type-residential-daylighting-homepage p {
    line-height: 1.6; }
  .node-type-residential-daylighting-homepage .rendering-bg {
    max-width: 640px;
    margin: 0 auto; }
  .node-type-residential-daylighting-homepage .tube-overlay {
    display: none; }
    @media screen and (min-width: 770px) {
      .node-type-residential-daylighting-homepage .tube-overlay {
        display: block;
        position: absolute;
        top: 1126px;
        left: -64px;
        width: 78%;
        z-index: 0; } }
    @media screen and (min-width: 814px) {
      .node-type-residential-daylighting-homepage .tube-overlay {
        width: 76%;
        top: 1230px;
        left: -125px; } }
  .node-type-residential-daylighting-homepage .intro-and-video {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .node-type-residential-daylighting-homepage .text-on-white.intro-text {
    text-align: center;
    margin: 60px auto; }
  @media screen and (min-width: 770px) {
    .node-type-residential-daylighting-homepage .intro-video-container {
      width: 50%;
      z-index: 100;
      margin-left: auto; } }
  @media screen and (min-width: 814px) {
    .node-type-residential-daylighting-homepage .intro-video-container {
      width: 60%; } }
  .node-type-residential-daylighting-homepage .intro-video-container .video-placeholder {
    width: 100%; }
  .node-type-residential-daylighting-homepage .intro-video-container iframe {
    width: 100%; }
  .node-type-residential-daylighting-homepage .step-one-text .description-text-container {
    position: absolute;
    margin: 10px;
    background: #ffffffba;
    padding: 10px;
    max-width: 550px; }
    @media screen and (min-width: 375px) {
      .node-type-residential-daylighting-homepage .step-one-text .description-text-container {
        background: none;
        padding: 0;
        max-width: 480px;
        margin-top: 20px; } }
    @media screen and (min-width: 770px) {
      .node-type-residential-daylighting-homepage .step-one-text .description-text-container {
        position: relative;
        width: 45%;
        margin-top: 7px;
        -webkit-transform: translateX(114%);
        -ms-transform: translateX(114%);
        transform: translateX(114%);
        max-width: none; } }
    @media screen and (min-width: 805px) {
      .node-type-residential-daylighting-homepage .step-one-text .description-text-container {
        margin-top: 5px;
        width: 44%; } }
    @media screen and (min-width: 814px) {
      .node-type-residential-daylighting-homepage .step-one-text .description-text-container {
        width: 40%;
        margin-top: 30px;
        -webkit-transform: translateX(125%);
        -ms-transform: translateX(125%);
        transform: translateX(125%); } }
  @media screen and (min-width: 770px) {
    .node-type-residential-daylighting-homepage .step-one-text img {
      display: none; } }
  .node-type-residential-daylighting-homepage .step-two-text {
    position: relative;
    margin-bottom: 100px; }
    .node-type-residential-daylighting-homepage .step-two-text .description-text-container {
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-32%);
      -ms-transform: translateY(-32%);
      transform: translateY(-32%);
      padding: 0 15px; }
      @media screen and (min-width: 340px) {
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container {
          -webkit-transform: translateY(-32%);
          -ms-transform: translateY(-32%);
          transform: translateY(-32%); } }
      @media screen and (min-width: 400px) {
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container {
          -webkit-transform: translateY(-32%);
          -ms-transform: translateY(-32%);
          transform: translateY(-32%); } }
      @media screen and (min-width: 440px) {
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container {
          -webkit-transform: translateY(-26%);
          -ms-transform: translateY(-26%);
          transform: translateY(-26%); } }
      @media screen and (min-width: 470px) {
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container {
          -webkit-transform: translateY(-24%);
          -ms-transform: translateY(-24%);
          transform: translateY(-24%); } }
      @media screen and (min-width: 490px) {
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container {
          -webkit-transform: translateY(-19%);
          -ms-transform: translateY(-19%);
          transform: translateY(-19%); } }
      @media screen and (min-width: 550px) {
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container {
          -webkit-transform: translateY(-13%);
          -ms-transform: translateY(-13%);
          transform: translateY(-13%); } }
      @media screen and (min-width: 595px) {
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container {
          -webkit-transform: translateY(-10%);
          -ms-transform: translateY(-10%);
          transform: translateY(-10%); } }
      @media screen and (min-width: 620px) {
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container {
          -webkit-transform: translateY(-6%);
          -ms-transform: translateY(-6%);
          transform: translateY(-6%); } }
      @media screen and (min-width: 770px) {
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container {
          position: relative;
          z-index: 100;
          margin: 0 0 0 30px;
          padding: 0;
          -webkit-transform: none;
          -ms-transform: none;
          transform: none; }
          .node-type-residential-daylighting-homepage .step-two-text .description-text-container img {
            display: none; } }
      .node-type-residential-daylighting-homepage .step-two-text .description-text-container #block-one {
        width: 60%;
        margin-bottom: 38px;
        padding: 1px 15px;
        background: #ffffffb3; }
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container #block-one h3 {
          max-width: 135px; }
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container #block-one .tradmark-symbol {
          font-size: 11px;
          position: relative;
          bottom: 5px;
          left: 2px; }
        @media screen and (min-width: 340px) {
          .node-type-residential-daylighting-homepage .step-two-text .description-text-container #block-one {
            width: 54%;
            padding: 0;
            background: none; } }
        @media screen and (min-width: 400px) {
          .node-type-residential-daylighting-homepage .step-two-text .description-text-container #block-one {
            margin-bottom: 55px; } }
        @media screen and (min-width: 470px) {
          .node-type-residential-daylighting-homepage .step-two-text .description-text-container #block-one {
            margin-bottom: 115px; } }
        @media screen and (min-width: 400px) {
          .node-type-residential-daylighting-homepage .step-two-text .description-text-container #block-one {
            margin-bottom: 75px; } }
        @media screen and (min-width: 770px) {
          .node-type-residential-daylighting-homepage .step-two-text .description-text-container #block-one {
            width: 27%;
            margin-bottom: 30px; } }
        @media screen and (min-width: 814px) {
          .node-type-residential-daylighting-homepage .step-two-text .description-text-container #block-one {
            width: 24%; } }
      @media screen and (min-width: 400px) {
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container #block-two {
          max-width: 300px; } }
      @media screen and (min-width: 770px) {
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container #block-two {
          width: 31%; } }
      @media screen and (min-width: 814px) {
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container #block-two {
          width: 25%; } }
      .node-type-residential-daylighting-homepage .step-two-text .description-text-container .block-three h3 {
        max-width: 195px; }
      @media screen and (min-width: 400px) {
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container .block-three {
          max-width: 285px; } }
      @media screen and (min-width: 770px) {
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container .block-three {
          margin: 15px 0;
          width: 68%;
          max-width: 510px; } }
      @media screen and (min-width: 814px) {
        .node-type-residential-daylighting-homepage .step-two-text .description-text-container .block-three {
          width: 50%;
          margin: 40px 0; } }
    @media screen and (min-width: 340px) {
      .node-type-residential-daylighting-homepage .step-two-text {
        margin-bottom: 60px; } }
    @media screen and (min-width: 360px) {
      .node-type-residential-daylighting-homepage .step-two-text {
        margin-bottom: 40px; } }
    @media screen and (min-width: 400px) {
      .node-type-residential-daylighting-homepage .step-two-text {
        max-height: 1000px;
        overflow: hidden; } }
    @media screen and (min-width: 470px) {
      .node-type-residential-daylighting-homepage .step-two-text {
        max-height: 1050px; } }
    @media screen and (min-width: 525px) {
      .node-type-residential-daylighting-homepage .step-two-text {
        max-height: 1100px; } }
    @media screen and (min-width: 580px) {
      .node-type-residential-daylighting-homepage .step-two-text {
        max-height: 1150px; } }
    @media screen and (min-width: 595px) {
      .node-type-residential-daylighting-homepage .step-two-text {
        max-height: 1200px; } }
    @media screen and (min-width: 770px) {
      .node-type-residential-daylighting-homepage .step-two-text {
        margin-top: 210px;
        max-height: none;
        overflow: inherit; }
        .node-type-residential-daylighting-homepage .step-two-text img {
          display: none; } }
    @media screen and (min-width: 814px) {
      .node-type-residential-daylighting-homepage .step-two-text {
        margin-top: 305px; } }
  .node-type-residential-daylighting-homepage .switch-field {
    padding: 22px 4px;
    overflow: hidden;
    margin-bottom: 7px; }
    .node-type-residential-daylighting-homepage .switch-field .switch-title {
      margin-bottom: 6px; }
    .node-type-residential-daylighting-homepage .switch-field input {
      display: none; }
    .node-type-residential-daylighting-homepage .switch-field label {
      loat: left; }
    .node-type-residential-daylighting-homepage .switch-field label {
      display: inline-block;
      width: 70px;
      margin: -3px;
      color: #2385c6;
      font-size: 14px;
      font-weight: normal;
      text-align: center;
      text-shadow: none;
      background: #fff;
      padding: 6px 14px;
      border: 1px solid rgba(0, 0, 0, 0.2);
      -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1);
      box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3), 0 1px rgba(255, 255, 255, 0.1); }
      .node-type-residential-daylighting-homepage .switch-field label:hover {
        cursor: pointer; }
    .node-type-residential-daylighting-homepage .switch-field input:checked + label {
      background-color: #2385c6;
      color: #fff;
      -webkit-box-shadow: none;
      box-shadow: none; }
  .node-type-residential-daylighting-homepage .technology-callout h2 {
    text-shadow: none;
    color: #fff;
    font-size: 42px;
    line-height: 1.1; }
    @media screen and (min-width: 640px) {
      .node-type-residential-daylighting-homepage .technology-callout h2 {
        font-size: 32px;
        color: inherit; } }
  .node-type-residential-daylighting-homepage .video-banner {
    margin-top: 15px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
    .node-type-residential-daylighting-homepage .video-banner h3 {
      line-height: 1.2;
      max-width: 306px; }
    .node-type-residential-daylighting-homepage .video-banner .video-placeholder-container {
      cursor: pointer;
      -webkit-box-flex: 1;
      -ms-flex: 1;
      flex: 1; }
  .node-type-residential-daylighting-homepage .applications-section {
    position: relative;
    z-index: 100;
    background: #fff; }
  .node-type-residential-daylighting-homepage .lower-content {
    background: #fff; }

#night-tube {
  display: none;
  position: absolute;
  top: -2px;
  left: -10px;
  max-width: none;
  width: 141.5%; }
  @media screen and (min-width: 814px) {
    #night-tube {
      top: -4px;
      left: -14px; } }

@media screen and (min-width: 992px) {
  .node-type-residential-daylighting-homepage .features-blocks-section .row:first-child .blue-block {
    height: 357px; }
  .node-type-residential-daylighting-homepage .text-on-white {
    margin: 0 auto 115px auto; } }

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

                 OLD RESIDENTIAL TECHNOLOGY AND COMMERCIAL TECHNOLOGY

\*-------------------------------------------------------------------------------*/
.path-residential-technology .imagecenter, .path-commercial-technology .imagecenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap; }
  .path-residential-technology .imagecenter a, .path-commercial-technology .imagecenter a {
    text-decoration: none;
    width: 230px; }
    .path-residential-technology .imagecenter a img, .path-commercial-technology .imagecenter a img {
      width: 100%;
      height: auto; }
    .path-residential-technology .imagecenter a p, .path-commercial-technology .imagecenter a p {
      margin-top: 15px; }

.path-residential-technology .text-on-white, .path-commercial-technology .text-on-white {
  margin: 80px auto 0px auto;
  width: 95%; }

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

                                COMMERCIAL
                                RESPONSIVE

\*-------------------------------------------------------------------------------*/
@media screen and (min-width: 360px) {
  /* Mobile */
  .path-commercial h2.section-head {
    font-size: 33px;
    line-height: 1.05;
    margin-bottom: 10px; }
  .path-commercial p {
    font-size: 17px;
    /*line-height: 1.45;*/ } }

@media screen and (min-width: 480px) {
  /* Large Mobile */
  /* --- TOP VIDEO SECTION --- */
  .video-text p {
    width: auto; }
  /* --- Resources Section --- */
  .resource-icons .resource-link {
    -ms-flex-preferred-size: 33%;
    flex-basis: 33%; }
  /* --- Bottom Services Links --- */
  .bottom-services-links {
    /* display: flex; */
    /* flex-flow: row wrap; */
    -webkit-box-pack: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly; }
  .bottom-services-links .service-link {
    /* flex-basis: 49%; */
    width: 49%;
    text-align: center;
    float: left;
    margin: 2px; } }

@media screen and (min-width: 640px) {
  /* Mobile */
  /* --- Categories Section --- */
  .categories-section {
    display: -webkit-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .cat-item {
    -ms-flex-preferred-size: 32.7%;
    flex-basis: 32.7%; }
  .cat-item.solamaster {
    -ms-flex-preferred-size: 34.8%;
    flex-basis: 34.8%; }
  .cat-item h4.cat-title {
    font-size: 19px; }
  /* --- SLIDER SECTION --- */
  .applications-section .slick-prev {
    left: 20px; }
  .applications-section .slick-next {
    right: 30px; }
  /* --- Technology Section --- */
  .tech-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 10px; }
  .tech-item > div {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%; }
  .tech-text p {
    font-size: 15px; }
  /* --- Resources Section --- */
  .resource-icons .resource-link {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    padding: 5px; }
  /* --- Videos Section --- */
  .videos-section .videos {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap; }
  .video-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%; }
  /* COMMERCIAL SUBPAGES*/
  /* -- Features Blocks Section -- */
  .features-blocks-section .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .features-blocks-section .row:nth-child(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse; }
  .features-blocks-section .feature-block {
    padding: 25px; }
  .path-commercial-solamaster-2018 .features-blocks-section .row:first-child .blue-block {
    padding: 0; }
  .features-blocks-section .blue-block {
    width: calc(40% - 3px); }
  .features-blocks-section .text-block {
    width: calc(60% - 3px); }
  .features-blocks-section .blue-block:after {
    left: 99.5%;
    top: 8.5%;
    border-top-color: transparent;
    border-left-color: #98a6ae; }
  .features-blocks-section .row:nth-child(even) .blue-block:after {
    left: auto;
    right: 99.5%;
    border-left-color: transparent;
    border-right-color: #98a6ae; }
  .features-blocks-section .text-block {
    line-height: 1.3; }
  .features-blocks-section .row:nth-child(even) .text-block {
    text-align: right; }
  .technology-callout .cta-btn {
    margin-top: 20px; }
  /* --- VIDEO BANNER SECTION --- */
  .video-banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    .video-banner iframe {
      width: 55%;
      z-index: 101; }
    .video-banner .video-banner-text {
      width: 45%; }
      .video-banner .video-banner-text p {
        line-height: 1.5; } }

@media screen and (min-width: 768px) {
  /* Tablets */
  /* --- TOP VIDEO SECTION --- */
  .top-video-section .video-text {
    width: auto;
    top: 40px;
    max-width: 450px; }
  .node-type-residential-ventilation-subpages .top-video-section .video-placeholder-container:after {
    top: 190px;
    left: 100px; }
  .node-type-commercial-sub-page-template .top-video-section .video-placeholder-container:after {
    top: 170px;
    left: 100px; }
  .path-home-ventilation-solutions .top-video-section .video-text {
    top: 0; }
  /* --- Commercial Sub Page Hero Section --- */
  h1.section-head {
    font-size: 40px; }
  /* --- POPUP VIDEO COLORBOX --- */
  #cboxContent {
    left: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none; }
  /* --- Resources Section --- */
  .resource-icons .resource-link {
    -ms-flex-preferred-size: 19%;
    flex-basis: 19%;
    padding: 10px; }
  /* --- Services Section --- */
  .service-section {
    text-align: center;
    padding: 0 15%; }
  /* --- Videos Section --- */
  .video-item {
    -ms-flex-preferred-size: 46%;
    flex-basis: 46%; }
  .video-item .video-thumb-link {
    -webkit-box-shadow: -5px 5px 12px rgba(100, 100, 100, 0.4);
    box-shadow: -5px 5px 12px rgba(100, 100, 100, 0.4); }
  .video-item .video-title {
    font-size: 27px; }
  /* ------ COMMERCIAL SUBPAGES ------ */
  /* -- Features Blocks Section -- */
  .features-blocks-section .row {
    margin-bottom: 2px; }
  .features-blocks-section .blue-block,
  .features-blocks-section .text-block {
    width: calc(50% - 3px); }
  /* --- SkyVault Technology Callout --- */
  .technology-callout h2 {
    text-shadow: 0px 0px 10px rgba(250, 250, 250, 0.2); } }

@media screen and (min-width: 814px) {
  .path-home-ventilation-solutions .top-video-section .video-text {
    top: 40px; } }

@media screen and (min-width: 992px) {
  /* Small Laptop */
  .cta-btn:hover {
    text-decoration: none;
    background: #2286c5;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
  .cta-btn:active,
  .cta-btn:focus {
    text-decoration: none; }
  .path-commercial h2.section-head {
    font-size: 37px; }
  /* --- Categories Section --- */
  .cat-item .info-icon-wrapper {
    display: none; }
  .cat-item .image-and-info .hover-text {
    display: none !important; }
  .cat-item .image-and-info:hover .hover-text {
    display: block !important; }
  .cat-item h4.cat-title {
    display: block;
    background: transparent;
    color: #444;
    padding: 3px;
    font-size: 25px; }
  .cat-item h4.cat-title a,
  .cat-item h4.cat-title a:hover {
    color: #444; }
  /* --- Technology Section --- */
  .technology-headline h2,
  .technology-headline .cta-btn {
    display: inline-block; }
  .technology-headline .cta-btn {
    margin-left: 10px;
    position: relative;
    top: -5px; }
  .tech-text p {
    font-size: 17px; }
  /* --- Resources Section --- */
  .resource-icons .resource-link {
    -ms-flex-preferred-size: 17%;
    flex-basis: 17%; }
  .resource-icons .resource-link:hover .svg-icon-bg {
    fill: #2286c5 !important; }
  .resource-icons .resource-link:hover .svg-icon-stroke {
    fill: #7AB3EC !important; }
  /* --- Videos Section --- */
  .videos-section h2 a:hover,
  .videos-section h2 a svg:hover {
    cursor: pointer; }
  .videos-section h2 a:hover svg .player-icon {
    fill: #2286c5; }
  .video-item .video-thumb-link {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
  .video-item .video-thumb-link:hover {
    -webkit-box-shadow: -5px 5px 20px rgba(70, 70, 70, 0.7);
    box-shadow: -5px 5px 20px rgba(70, 70, 70, 0.7);
    -webkit-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s; }
  .video-item .video-thumb-link:hover img {
    opacity: 1; }
  /* --- Bottom Services Links --- */
  .bottom-services-links {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
  .bottom-services-links .service-link {
    /* flex-basis: 20.5%; */
    width: 24.5%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    float: left;
    margin: 2px; }
  .bottom-services-links .service-link:hover {
    background: #2286c5;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
  /* COMMERCIAL SUB PAGE TEMPLATES*/
  /* -- Features Blocks Section -- */
  .features-blocks-section .text-block {
    line-height: 1.6; }
  .features-blocks-section .feature-block {
    padding: 30px; }
  .features-blocks-section .text-block h3 {
    margin-top: 10px; } }

.local-dealer-btn {
  display: inline-block;
  border-radius: 0;
  background-color: #808285;
  border: none;
  -webkit-transition: all 500ms ease-in-out;
  -o-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  padding: 10px 40px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: .9em;
  color: #fff;
  text-decoration: none; }
  .local-dealer-btn:hover {
    background-color: #4085c4;
    text-decoration: none; }

.path-attic-fans h3, .path-attic-fans h4 {
  font-weight: 100 !important; }

.path-attic-fans p {
  line-height: 1.4; }

.path-attic-fans .mb-6 {
  margin-bottom: 60px; }

.path-attic-fans .cta-btn {
  text-decoration: none; }

@media screen and (min-width: 640px) {
  .path-attic-fans .mt {
    margin-top: 60px !important; } }

.path-attic-fans .field.field-name-body.field-type-text-with-summary img {
  max-width: 100%; }

.path-attic-fans .field-name-body ul {
  padding: 0; }

.path-attic-fans #main-content .field-name-body {
  padding: 0; }
  .path-attic-fans #main-content .field-name-body .product-intro-section h2 {
    font-size: 32px; }
  .path-attic-fans #main-content .field-name-body .product-intro-section p {
    font-size: 18px; }
  .path-attic-fans #main-content .field-name-body .attic-fan-video {
    margin-bottom: 2em; }
    .path-attic-fans #main-content .field-name-body .attic-fan-video .responsive-video {
      overflow: hidden;
      padding-bottom: 56.25%;
      position: relative;
      height: 0; }
      .path-attic-fans #main-content .field-name-body .attic-fan-video .responsive-video iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        min-width: 100%;
        position: absolute;
        border: none; }
    .path-attic-fans #main-content .field-name-body .attic-fan-video p {
      margin-top: 30px; }
  .path-attic-fans #main-content .field-name-body .product-overview-section {
    background: #f5f5f5;
    padding: 2em 1em; }
    @media screen and (min-width: 640px) {
      .path-attic-fans #main-content .field-name-body .product-overview-section {
        padding: 3em; } }
    .path-attic-fans #main-content .field-name-body .product-overview-section .section-head {
      font-size: 2.2em;
      line-height: 1.1;
      text-align: center; }
      @media screen and (min-width: 640px) {
        .path-attic-fans #main-content .field-name-body .product-overview-section .section-head {
          margin-bottom: 1.5em; } }
    .path-attic-fans #main-content .field-name-body .product-overview-section .local-dealer-btn {
      position: relative;
      left: 50%;
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
      text-decoration: none; }
  .path-attic-fans #main-content .field-name-body .rm2400-details.product-overview-section {
    background: none;
    padding: 3em 0 0; }
    .path-attic-fans #main-content .field-name-body .rm2400-details.product-overview-section .rm2400-main-img {
      margin-bottom: 3em; }
    .path-attic-fans #main-content .field-name-body .rm2400-details.product-overview-section .row {
      padding: 0 3em; }
      .path-attic-fans #main-content .field-name-body .rm2400-details.product-overview-section .row:not(:last-child) {
        margin-bottom: 60px; }
  .path-attic-fans #main-content .field-name-body .other-attic-fans.product-options-section {
    padding: 0 1em; }
    @media screen and (min-width: 640px) {
      .path-attic-fans #main-content .field-name-body .other-attic-fans.product-options-section {
        padding: 0 3em; } }
    .path-attic-fans #main-content .field-name-body .other-attic-fans.product-options-section .detailed-product-option-image img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
      object-fit: cover; }
  .path-attic-fans #main-content .field-name-body .roof-types {
    padding: 0 1em; }
    @media screen and (min-width: 640px) {
      .path-attic-fans #main-content .field-name-body .roof-types {
        padding: 0 3em; } }
    .path-attic-fans #main-content .field-name-body .roof-types .detailed-product-option-info {
      text-align: left;
      height: 100%; }
      .path-attic-fans #main-content .field-name-body .roof-types .detailed-product-option-info h4 {
        font-size: 1.3em;
        margin-bottom: .7em; }
  .path-attic-fans #main-content .field-name-body .product-accessories-section {
    padding: 0 1em; }
    @media screen and (min-width: 640px) {
      .path-attic-fans #main-content .field-name-body .product-accessories-section {
        padding: 0 3em; } }
    @media screen and (min-width: 640px) {
      .path-attic-fans #main-content .field-name-body .product-accessories-section .row .product-row-info {
        width: 65%; }
      .path-attic-fans #main-content .field-name-body .product-accessories-section .row .product-row-image {
        width: 35%; } }
  .path-attic-fans #main-content .field-name-body .product-bottom-cta-section {
    padding: 0 1em; }
    @media screen and (min-width: 640px) {
      .path-attic-fans #main-content .field-name-body .product-bottom-cta-section {
        padding: 0 3em; } }
    .path-attic-fans #main-content .field-name-body .product-bottom-cta-section .full-width-bottom-cta-container {
      margin-bottom: 3em; }
      .path-attic-fans #main-content .field-name-body .product-bottom-cta-section .full-width-bottom-cta-container .cta-text-container {
        text-align: left; }
        .path-attic-fans #main-content .field-name-body .product-bottom-cta-section .full-width-bottom-cta-container .cta-text-container a {
          text-decoration: none; }
  .path-attic-fans #main-content .field-name-body .call-cta {
    margin: 3em 0 0; }
    .path-attic-fans #main-content .field-name-body .call-cta .phone {
      color: #4085c4;
      font-size: 1.5em;
      text-decoration: none; }

@media screen and (min-width: 480px) {
  .path-attic-fans .bottom-services-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center; } }

.node-psg {
  /* ---------- MOBILE FIRST STYLING  ---------- */
  /* clear */
  /* ---------- UNIVERSAL STYLING  ---------- */
  /*-------------------------------------------------------------------------------*\

                                  RESPONSIVE

  \*-------------------------------------------------------------------------------*/
  /*------------------------------------*\
      PRINT
  \*------------------------------------*/ }
  .node-psg > h2 {
    display: none; }
  .node-psg ul.links {
    display: none; }
  .node-psg blockquote {
    border-left: 0.3rem solid #d1d1d1;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem 1.5rem; }
  .node-psg blockquote *:last-child {
    margin-bottom: 0; }
  .node-psg .button:focus, .node-psg .button:hover,
  .node-psg button:focus,
  .node-psg button:hover,
  .node-psg input[type='button']:focus,
  .node-psg input[type='button']:hover,
  .node-psg input[type='reset']:focus,
  .node-psg input[type='reset']:hover,
  .node-psg input[type='submit']:focus,
  .node-psg input[type='submit']:hover {
    background-color: #606c76;
    border-color: #606c76;
    color: #fff;
    outline: 0; }
  .node-psg .button[disabled],
  .node-psg button[disabled],
  .node-psg input[type='button'][disabled],
  .node-psg input[type='reset'][disabled],
  .node-psg input[type='submit'][disabled] {
    cursor: default;
    opacity: .5; }
  .node-psg .button[disabled]:focus, .node-psg .button[disabled]:hover,
  .node-psg button[disabled]:focus,
  .node-psg button[disabled]:hover,
  .node-psg input[type='button'][disabled]:focus,
  .node-psg input[type='button'][disabled]:hover,
  .node-psg input[type='reset'][disabled]:focus,
  .node-psg input[type='reset'][disabled]:hover,
  .node-psg input[type='submit'][disabled]:focus,
  .node-psg input[type='submit'][disabled]:hover {
    background-color: #9b4dca;
    border-color: #9b4dca; }
  .node-psg .button.button-outline,
  .node-psg button.button-outline,
  .node-psg input[type='button'].button-outline,
  .node-psg input[type='reset'].button-outline,
  .node-psg input[type='submit'].button-outline {
    background-color: transparent;
    color: #9b4dca; }
  .node-psg .button.button-outline:focus, .node-psg .button.button-outline:hover,
  .node-psg button.button-outline:focus,
  .node-psg button.button-outline:hover,
  .node-psg input[type='button'].button-outline:focus,
  .node-psg input[type='button'].button-outline:hover,
  .node-psg input[type='reset'].button-outline:focus,
  .node-psg input[type='reset'].button-outline:hover,
  .node-psg input[type='submit'].button-outline:focus,
  .node-psg input[type='submit'].button-outline:hover {
    background-color: transparent;
    border-color: #606c76;
    color: #606c76; }
  .node-psg .button.button-outline[disabled]:focus, .node-psg .button.button-outline[disabled]:hover,
  .node-psg button.button-outline[disabled]:focus,
  .node-psg button.button-outline[disabled]:hover,
  .node-psg input[type='button'].button-outline[disabled]:focus,
  .node-psg input[type='button'].button-outline[disabled]:hover,
  .node-psg input[type='reset'].button-outline[disabled]:focus,
  .node-psg input[type='reset'].button-outline[disabled]:hover,
  .node-psg input[type='submit'].button-outline[disabled]:focus,
  .node-psg input[type='submit'].button-outline[disabled]:hover {
    border-color: inherit;
    color: #9b4dca; }
  .node-psg .button.button-clear,
  .node-psg button.button-clear,
  .node-psg input[type='button'].button-clear,
  .node-psg input[type='reset'].button-clear,
  .node-psg input[type='submit'].button-clear {
    background-color: transparent;
    border-color: transparent;
    color: #9b4dca; }
  .node-psg .button.button-clear:focus, .node-psg .button.button-clear:hover,
  .node-psg button.button-clear:focus,
  .node-psg button.button-clear:hover,
  .node-psg input[type='button'].button-clear:focus,
  .node-psg input[type='button'].button-clear:hover,
  .node-psg input[type='reset'].button-clear:focus,
  .node-psg input[type='reset'].button-clear:hover,
  .node-psg input[type='submit'].button-clear:focus,
  .node-psg input[type='submit'].button-clear:hover {
    background-color: transparent;
    border-color: transparent;
    color: #606c76; }
  .node-psg .button.button-clear[disabled]:focus, .node-psg .button.button-clear[disabled]:hover,
  .node-psg button.button-clear[disabled]:focus,
  .node-psg button.button-clear[disabled]:hover,
  .node-psg input[type='button'].button-clear[disabled]:focus,
  .node-psg input[type='button'].button-clear[disabled]:hover,
  .node-psg input[type='reset'].button-clear[disabled]:focus,
  .node-psg input[type='reset'].button-clear[disabled]:hover,
  .node-psg input[type='submit'].button-clear[disabled]:focus,
  .node-psg input[type='submit'].button-clear[disabled]:hover {
    color: #9b4dca; }
  .node-psg code {
    background: #f4f5f6;
    border-radius: .4rem;
    font-size: 86%;
    margin: 0 .2rem;
    padding: .2rem .5rem;
    white-space: nowrap; }
  .node-psg pre {
    background: #f4f5f6;
    border-left: 0.3rem solid #9b4dca;
    overflow-y: hidden; }
  .node-psg pre > code {
    border-radius: 0;
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre; }
  .node-psg input[type='email'],
  .node-psg input[type='number'],
  .node-psg input[type='password'],
  .node-psg input[type='search'],
  .node-psg input[type='tel'],
  .node-psg input[type='text'],
  .node-psg input[type='url'],
  .node-psg textarea,
  .node-psg select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 0.1rem solid #d1d1d1;
    border-radius: .4rem;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
    height: 3.8rem;
    padding: .6rem 1.0rem;
    width: 100%; }
  .node-psg input[type='email']:focus,
  .node-psg input[type='number']:focus,
  .node-psg input[type='password']:focus,
  .node-psg input[type='search']:focus,
  .node-psg input[type='tel']:focus,
  .node-psg input[type='text']:focus,
  .node-psg input[type='url']:focus,
  .node-psg textarea:focus,
  .node-psg select:focus {
    border-color: #9b4dca;
    outline: 0; }
  .node-psg select {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#d1d1d1" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>') center right no-repeat;
    padding-right: 3.0rem; }
  .node-psg select:focus {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#9b4dca" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>'); }
  .node-psg textarea {
    min-height: 6.5rem; }
  .node-psg label,
  .node-psg legend {
    display: block;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: .5rem; }
  .node-psg fieldset {
    border-width: 0;
    padding: 0; }
  .node-psg input[type='checkbox'],
  .node-psg input[type='radio'] {
    display: inline; }
  .node-psg small {
    font-size: 60%;
    position: relative;
    top: -10px;
    margin-left: 5px; }
  .node-psg .label-inline {
    display: inline-block;
    font-weight: normal;
    margin-left: .5rem; }
  .node-psg .ui-state-active {
    border: none; }
  .node-psg .container {
    margin: 0 auto;
    max-width: 112.0rem;
    padding: 0 2.0rem;
    position: relative;
    width: 100%; }
  .node-psg .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    width: 100%; }
  .node-psg .row.row-no-padding {
    padding: 0; }
  .node-psg .row.row-no-padding > .column {
    padding: 0; }
  .node-psg .row.row-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .node-psg .row.row-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .node-psg .row.row-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }
  .node-psg .row.row-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .node-psg .row.row-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch; }
  .node-psg .row.row-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline; }
  .node-psg .row .column {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-left: 0;
    max-width: 100%;
    width: 100%; }
  .node-psg .row .column.column-offset-10 {
    margin-left: 10%; }
  .node-psg .row .column.column-offset-20 {
    margin-left: 20%; }
  .node-psg .row .column.column-offset-25 {
    margin-left: 25%; }
  .node-psg .row .column.column-offset-33, .node-psg .row .column.column-offset-34 {
    margin-left: 33.3333%; }
  .node-psg .row .column.column-offset-50 {
    margin-left: 50%; }
  .node-psg .row .column.column-offset-66, .node-psg .row .column.column-offset-67 {
    margin-left: 66.6666%; }
  .node-psg .row .column.column-offset-75 {
    margin-left: 75%; }
  .node-psg .row .column.column-offset-80 {
    margin-left: 80%; }
  .node-psg .row .column.column-offset-90 {
    margin-left: 90%; }
  .node-psg .row .column.column-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%; }
  .node-psg .row .column.column-20 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .node-psg .row .column.column-25 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .node-psg .row .column.column-33, .node-psg .row .column.column-34 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    max-width: 33.3333%; }
  .node-psg .row .column.column-40 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .node-psg .row .column.column-50 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .node-psg .row .column.column-60 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .node-psg .row .column.column-66, .node-psg .row .column.column-67 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666%;
    flex: 0 0 66.6666%;
    max-width: 66.6666%; }
  .node-psg .row .column.column-75 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .node-psg .row .column.column-80 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .node-psg .row .column.column-90 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%; }
  .node-psg .row .column .column-top {
    -ms-flex-item-align: start;
    align-self: flex-start; }
  .node-psg .row .column .column-bottom {
    -ms-flex-item-align: end;
    align-self: flex-end; }
  .node-psg .row .column .column-center {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center; }
  @media (min-width: 40rem) {
    .node-psg .row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      margin-left: -.5rem;
      width: calc(100% + 2.0rem); }
    .node-psg .row .column {
      margin-bottom: inherit;
      padding: 0 1.0rem; } }
  .node-psg a {
    color: #9b4dca;
    text-decoration: none; }
  .node-psg a:focus, .node-psg a:hover {
    color: #606c76; }
  .node-psg dl,
  .node-psg ol,
  .node-psg ul {
    list-style: none;
    margin-top: 0;
    padding-left: 0; }
  .node-psg dl dl,
  .node-psg dl ol,
  .node-psg dl ul,
  .node-psg ol dl,
  .node-psg ol ol,
  .node-psg ol ul,
  .node-psg ul dl,
  .node-psg ul ol,
  .node-psg ul ul {
    font-size: 90%;
    margin: 1.5rem 0 1.5rem 3.0rem; }
  .node-psg ol {
    list-style: decimal inside; }
  .node-psg ul li {
    list-style: circle inside; }
  .node-psg .button,
  .node-psg button,
  .node-psg dd,
  .node-psg dt,
  .node-psg li {
    margin-bottom: 1.0rem; }
  .node-psg fieldset,
  .node-psg input,
  .node-psg select,
  .node-psg textarea {
    margin-bottom: 1.5rem; }
  .node-psg blockquote,
  .node-psg dl,
  .node-psg figure,
  .node-psg form,
  .node-psg ol,
  .node-psg p,
  .node-psg pre,
  .node-psg table,
  .node-psg ul {
    margin-bottom: 2.5rem; }
  .node-psg table {
    border-spacing: 0;
    width: 100%; }
  .node-psg td,
  .node-psg th {
    border-bottom: 0.1rem solid #e1e1e1;
    padding: 1.2rem 1.5rem;
    text-align: left; }
  .node-psg td:first-child,
  .node-psg th:first-child {
    padding-left: 0; }
  .node-psg td:last-child,
  .node-psg th:last-child {
    padding-right: 0; }
  .node-psg b,
  .node-psg strong {
    font-weight: bold; }
  .node-psg p {
    margin-top: 0; }
  .node-psg h1,
  .node-psg h2,
  .node-psg h3,
  .node-psg h4,
  .node-psg h5,
  .node-psg h6 {
    font-weight: 300;
    letter-spacing: -.1rem;
    margin-bottom: 2.0rem;
    margin-top: 0; }
  .node-psg h1 {
    font-size: 4.6rem;
    line-height: 1.2; }
  .node-psg h2 {
    font-size: 2.5rem;
    line-height: 1.25; }
  .node-psg h3 {
    font-size: 2rem;
    line-height: 1.3; }
  .node-psg h4 {
    font-size: 1.8rem;
    letter-spacing: -.08rem;
    line-height: 1.35; }
  .node-psg h5 {
    font-size: 1.8rem;
    letter-spacing: -.05rem;
    line-height: 1.5; }
  .node-psg h6 {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 1.4; }
  .node-psg img {
    height: auto; }
  .node-psg .clearfix:after {
    clear: both;
    content: ' ';
    display: table; }
  .node-psg .float-left {
    float: left; }
  .node-psg .float-right {
    float: right; }
  .node-psg html {
    height: 100%;
    width: 100%; }
  .node-psg ::-moz-selection {
    background: #b3d4fc;
    text-shadow: none; }
  .node-psg ::selection {
    background: #b3d4fc;
    text-shadow: none; }
  .node-psg .clear:before,
  .node-psg .clear:after {
    content: ' ';
    display: table; }
  .node-psg .clear:after {
    clear: both; }
  .node-psg .clear {
    *zoom: 1; }
  .node-psg img {
    vertical-align: middle; }
  .node-psg a {
    color: #444; }
  .node-psg a:focus {
    outline: 0; }
  .node-psg a:hover,
  .node-psg a:active {
    outline: 0;
    cursor: pointer; }
  .node-psg input {
    border: 1px solid #ccc; }
  .node-psg input::-webkit-outer-spin-button,
  .node-psg input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */ }
  .node-psg form, .node-psg label, .node-psg input {
    display: block;
    box-shadow: none;
    -webkit-box-shadow: none; }
  .node-psg section {
    position: relative; }
  .node-psg .wrapper {
    margin: 0 auto;
    padding: 0 15px;
    position: relative; }
  .node-psg .center {
    text-align: center; }
  .node-psg .hidden {
    display: none; }
  .node-psg .btn {
    border: 1px solid #898989;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 5px 30px;
    font-size: 1.1rem; }
  .node-psg .popup-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    background: rgba(250, 250, 250, 0.6);
    display: none;
    z-index: 2147483647; }
  .node-psg .popup-wrapper .popup-content {
    background: #fff;
    max-width: 1100px;
    margin: 0 auto;
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
    height: 90vh;
    max-height: 90vh;
    padding: 30px;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .node-psg .close-popup {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
    position: absolute;
    right: 3px;
    top: 2px;
    height: 20px;
    width: 20px;
    font-weight: bold;
    color: #a5a5a5;
    font-size: 22px; }
  .node-psg .noscroll {
    /*overflow: hidden;
    padding-right: 20px;*/
    position: fixed;
    overflow-y: scroll;
    height: 100%;
    width: 100%; }
  .node-psg section {
    padding: 40px 0 0; }
  .node-psg .textwrap {
    padding: 0 15px; }
  .node-psg .product-grid .field-collection-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1;
    flex: 0 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 100%; }
  .node-psg .product-grid .field-collection-view {
    text-align: center;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin: 20px 0;
    padding: 5px; }
  .node-psg .product-grid .item h4 {
    margin: 10px 0; }
  .node-psg .product-grid .item .description {
    display: none; }
  .node-psg .video-thumb-container {
    position: relative;
    cursor: pointer; }
    .node-psg .video-thumb-container .textblock {
      margin: 3em 0; }
    .node-psg .video-thumb-container.activated .video-responsive {
      overflow: hidden;
      padding-bottom: 100%;
      position: relative;
      height: 0; }
      .node-psg .video-thumb-container.activated .video-responsive iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
        border: none; }
      .node-psg .video-thumb-container.activated .video-responsive:after {
        display: none; }
    .node-psg .video-thumb-container .video-responsive:after {
      content: '';
      display: block;
      position: absolute;
      width: 90px;
      height: 61px;
      top: 50%;
      left: 50%;
      margin-top: -30px;
      margin-left: -45px;
      z-index: 100;
      background: url("https://static-assets-solatube.s3.amazonaws.com/youtube-play-sprite.png") no-repeat;
      background-position: 0 0;
      background-size: 90px auto; }
    .node-psg .video-thumb-container .video-responsive:hover:after {
      background-position: 0 -62px;
      cursor: pointer; }
    .node-psg .video-thumb-container .video-responsive.activated:after {
      display: none; }
  .node-psg .product-thumbs .slick-slide {
    max-height: 97px; }
  .node-psg .product-thumbs img {
    display: block;
    padding: 5px;
    cursor: pointer; }
  .node-psg .product-thumbs .video {
    position: relative; }
    .node-psg .product-thumbs .video:after {
      content: '';
      display: block;
      position: absolute;
      width: 45px;
      height: 30px;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: 100;
      background: url(https://static-assets-solatube.s3.amazonaws.com/youtube-play-sprite.png) no-repeat;
      background-position: 0 0;
      background-size: 45px auto;
      cursor: pointer; }
  .node-psg .product-info {
    text-align: left;
    margin-top: 20px; }
  .node-psg .product-info ol {
    margin-bottom: 30px; }
  .node-psg .btn.alt {
    display: block;
    background: #898989;
    border: none;
    color: #fff;
    margin-top: 20px;
    padding: 15px; }
    .node-psg .btn.alt:hover {
      background: #2286c5;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }
  .node-psg .zoom {
    position: relative;
    max-height: 510px; }
  .node-psg .zoom:after {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    right: 18px;
    height: 15px;
    width: 15px;
    background: url("../images/zoom-icon.svg") center center no-repeat;
    background-size: contain; }
  @media screen and (min-width: 20em) {
    .node-psg {
      /* Mobile (20 x 16 = 320px) */ } }
  @media screen and (min-width: 30em) {
    .node-psg {
      /* Mobile (30 x 16 = 480px) */ } }
  @media screen and (min-width: 40em) {
    .node-psg {
      /* Mobile (40 x 16 = 640px) */ }
      .node-psg .row {
        width: calc(100% + 1.0rem);
        /* fixed from milligram */ }
      .node-psg .product-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .node-psg .product-content div {
          overflow: hidden;
          -webkit-box-flex: 1;
          -ms-flex: 1;
          flex: 1; }
        .node-psg .product-content .product-images {
          width: 53% !important; }
        .node-psg .product-content .product-info {
          margin-top: 3px;
          padding: 0 0px 10px 20px;
          width: 40%; } }
  @media screen and (min-width: 48em) {
    .node-psg {
      /* Tablets (48 x 16 = 768px) */ }
      .node-psg .wrapper {
        width: 73rem; }
      .node-psg .textwrap {
        padding: 0 30px; }
      .node-psg .product-grid .item .description {
        display: block; } }
  @media screen and (min-width: 62em) {
    .node-psg {
      /* Small Laptop (62 x 16 = 992px) */ }
      .node-psg .wrapper {
        width: 94rem; }
      .node-psg .textwrap {
        padding: 0 60px; }
      .node-psg .product-grid .field-collection-view {
        -ms-flex-preferred-size: 33.3%;
        flex-basis: 33.3%; } }
  @media screen and (min-width: 75em) {
    .node-psg {
      /* Large Desktop (75 x 16 = 1200px)  */ }
      .node-psg .wrapper {
        width: 117rem; }
      .node-psg .textwrap {
        padding: 0 90px; } }
  @media print {
    .node-psg * {
      background: transparent !important;
      color: #000 !important;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      text-shadow: none !important; }
    .node-psg a,
    .node-psg a:visited {
      text-decoration: underline; }
    .node-psg a[href]:after {
      content: " (" attr(href) ")"; }
    .node-psg abbr[title]:after {
      content: " (" attr(title) ")"; }
    .node-psg .ir a:after,
    .node-psg a[href^="javascript:"]:after,
    .node-psg a[href^="#"]:after {
      content: ""; }
    .node-psg pre, .node-psg blockquote {
      border: 1px solid #999;
      page-break-inside: avoid; }
    .node-psg thead {
      display: table-header-group; }
    .node-psg tr, .node-psg img {
      page-break-inside: avoid; }
    .node-psg img {
      max-width: 100% !important; }
    @page {
      .node-psg {
        margin: 0.5cm; } }
    .node-psg p,
    .node-psg h2,
    .node-psg h3 {
      orphans: 3;
      widows: 3; }
    .node-psg h2,
    .node-psg h3 {
      page-break-after: avoid; } }
  .node-psg .field-name-field-psg-categories {
    text-align: center; }

.distributors-block p {
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 30px; }

.distributors-block h2, .distributors-block h3 {
  text-align: center; }

.view-global-distributors .flexit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between; }
  .view-global-distributors .flexit .distributor-container, .view-global-distributors .flexit .distributor-form {
    width: 100%; }
  .view-global-distributors .flexit .distributor-container select {
    width: 100%;
    max-width: 350px;
    height: 45px;
    background: url(https://static-assets-solatube.s3.amazonaws.com/selector-arrow.png) no-repeat #fff;
    background-size: 25px;
    background-position: 95% 15px;
    cursor: pointer; }
  .view-global-distributors .flexit .distributor-container .distributor-info {
    margin-top: 3em; }
    .view-global-distributors .flexit .distributor-container .distributor-info .views-row:not(:last-child) {
      margin-bottom: 50px; }
    .view-global-distributors .flexit .distributor-container .distributor-info .views-field {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      margin-bottom: 15px; }
  .view-global-distributors .flexit .distributor-container .views-field.views-field-field-text-contact-name {
    font-weight: 600;
    font-size: 1.2em;
    margin-bottom: 15px; }
  .view-global-distributors .flexit .distributor-container .views-field.views-field-title {
    margin-bottom: 10px; }
  .view-global-distributors .flexit .distributor-container .views-field.views-field-field-textarea-address:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f3c5";
    display: inline-block;
    color: #51a6eb;
    margin-right: 10px; }
  .view-global-distributors .flexit .distributor-container .views-field.views-field-field-text-phone-number:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f095";
    visibility: visible;
    display: inline-block;
    color: #51a6eb;
    margin-right: 10px; }
  .view-global-distributors .flexit .distributor-container .views-field.views-field-field-text-phone-number-2:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f3cd";
    display: inline-block;
    color: #51a6eb;
    margin-right: 10px; }
  .view-global-distributors .flexit .distributor-container .views-field.views-field-field-text-fax:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f1ac";
    display: inline-block;
    color: #51a6eb;
    margin-right: 10px; }
  .view-global-distributors .flexit .distributor-container .views-field.views-field-field-text-email:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f0e0";
    display: inline-block;
    color: #51a6eb;
    margin-right: 10px; }
  .view-global-distributors .flexit .distributor-container .views-field.views-field-field-link:before {
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    content: "\f37e";
    display: inline-block;
    color: #51a6eb;
    margin-right: 10px; }
  .view-global-distributors .flexit .distributor-container .views-field.views-field-field-highlight-image img {
    width: 100%;
    height: auto; }
  .view-global-distributors .flexit .distributor-form {
    background: #f7f7f7;
    padding: 30px;
    margin-top: 3em; }
    .view-global-distributors .flexit .distributor-form h3 {
      font-weight: 600; }
    .view-global-distributors .flexit .distributor-form input:not(.submit), .view-global-distributors .flexit .distributor-form select {
      width: 100%;
      max-width: none;
      margin-bottom: 10px !important;
      height: 45px; }
  @media screen and (min-width: 769px) {
    .view-global-distributors .flexit .distributor-container, .view-global-distributors .flexit .distributor-form {
      width: calc(50% - 15px); }
    .view-global-distributors .flexit .distributor-form {
      margin-top: 0; } }

body.page-installation-videos h1 {
  text-align: center; }

.view-installation-videos {
  /*.button:focus, .button:hover,
  button:focus,
  button:hover,
  input[type='button']:focus,
  input[type='button']:hover,
  input[type='reset']:focus,
  input[type='reset']:hover,
  input[type='submit']:focus,
  input[type='submit']:hover {
    background-color : #606c76;
    border-color     : #606c76;
    color            : #fff;
    outline          : 0;
  }

  .button[disabled],
  button[disabled],
  input[type='button'][disabled],
  input[type='reset'][disabled],
  input[type='submit'][disabled] {
    cursor  : default;
    opacity : .5;
  }

  .button[disabled]:focus, .button[disabled]:hover,
  button[disabled]:focus,
  button[disabled]:hover,
  input[type='button'][disabled]:focus,
  input[type='button'][disabled]:hover,
  input[type='reset'][disabled]:focus,
  input[type='reset'][disabled]:hover,
  input[type='submit'][disabled]:focus,
  input[type='submit'][disabled]:hover {
    background-color : #9b4dca;
    border-color     : #9b4dca;
  }

  .button.button-outline,
  button.button-outline,
  input[type='button'].button-outline,
  input[type='reset'].button-outline,
  input[type='submit'].button-outline {
    background-color : transparent;
    color            : #9b4dca;
  }

  .button.button-outline:focus, .button.button-outline:hover,
  button.button-outline:focus,
  button.button-outline:hover,
  input[type='button'].button-outline:focus,
  input[type='button'].button-outline:hover,
  input[type='reset'].button-outline:focus,
  input[type='reset'].button-outline:hover,
  input[type='submit'].button-outline:focus,
  input[type='submit'].button-outline:hover {
    background-color : transparent;
    border-color     : #606c76;
    color            : #606c76;
  }

  .button.button-outline[disabled]:focus, .button.button-outline[disabled]:hover,
  button.button-outline[disabled]:focus,
  button.button-outline[disabled]:hover,
  input[type='button'].button-outline[disabled]:focus,
  input[type='button'].button-outline[disabled]:hover,
  input[type='reset'].button-outline[disabled]:focus,
  input[type='reset'].button-outline[disabled]:hover,
  input[type='submit'].button-outline[disabled]:focus,
  input[type='submit'].button-outline[disabled]:hover {
    border-color : inherit;
    color        : #9b4dca;
  }

  .button.button-clear,
  button.button-clear,
  input[type='button'].button-clear,
  input[type='reset'].button-clear,
  input[type='submit'].button-clear {
    background-color : transparent;
    border-color     : transparent;
    color            : #9b4dca;
  }

  .button.button-clear:focus, .button.button-clear:hover,
  button.button-clear:focus,
  button.button-clear:hover,
  input[type='button'].button-clear:focus,
  input[type='button'].button-clear:hover,
  input[type='reset'].button-clear:focus,
  input[type='reset'].button-clear:hover,
  input[type='submit'].button-clear:focus,
  input[type='submit'].button-clear:hover {
    background-color : transparent;
    border-color     : transparent;
    color            : #606c76;
  }

  .button.button-clear[disabled]:focus, .button.button-clear[disabled]:hover,
  button.button-clear[disabled]:focus,
  button.button-clear[disabled]:hover,
  input[type='button'].button-clear[disabled]:focus,
  input[type='button'].button-clear[disabled]:hover,
  input[type='reset'].button-clear[disabled]:focus,
  input[type='reset'].button-clear[disabled]:hover,
  input[type='submit'].button-clear[disabled]:focus,
  input[type='submit'].button-clear[disabled]:hover {
    color : #9b4dca;
  }

  code {
    background    : #f4f5f6;
    border-radius : .4rem;
    font-size     : 86%;
    margin        : 0 .2rem;
    padding       : .2rem .5rem;
    white-space   : nowrap;
  }

  pre {
    background  : #f4f5f6;
    border-left : 0.3rem solid #9b4dca;
    overflow-y  : hidden;
  }

  pre > code {
    border-radius : 0;
    display       : block;
    padding       : 1rem 1.5rem;
    white-space   : pre;
  }

  input[type='email'],
  input[type='number'],
  input[type='password'],
  input[type='search'],
  input[type='tel'],
  input[type='text'],
  input[type='url'],
  textarea,
  select {
    appearance       : none;
    background-color : transparent;
    border           : 0.1rem solid #d1d1d1;
    border-radius    : .4rem;
    box-shadow       : none;
    box-sizing       : inherit;
    height           : 3.8rem;
    padding          : .6rem 1.0rem;
    width            : 100%;
  }

  input[type='email']:focus,
  input[type='number']:focus,
  input[type='password']:focus,
  input[type='search']:focus,
  input[type='tel']:focus,
  input[type='text']:focus,
  input[type='url']:focus,
  textarea:focus,
  select:focus {
    border-color : #9b4dca;
    outline      : 0;
  }

  select {
    background    : url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#d1d1d1" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>') center right no-repeat;
    padding-right : 3.0rem;
  }

  select:focus {
    background-image : url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" height="14" viewBox="0 0 29 14" width="29"><path fill="#9b4dca" d="M9.37727 3.625l5.08154 6.93523L19.54036 3.625"/></svg>');
  }

  textarea {
    min-height : 6.5rem;
  }

  label,
  legend {
    display       : block;
    font-size     : 1.6rem;
    font-weight   : 700;
    margin-bottom : .5rem;
  }

  fieldset {
    border-width : 0;
    padding      : 0;
  }

  input[type='checkbox'],
  input[type='radio'] {
    display : inline;
  }*/
  /* ---------- MOBILE FIRST STYLING  ---------- */
  /* clear */
  /* ---------- UNIVERSAL STYLING  ---------- */
  /*-------------------------------------------------------------------------------*\

                                  RESPONSIVE

  \*-------------------------------------------------------------------------------*/
  /*------------------------------------*\
      PRINT
  \*------------------------------------*/ }
  .view-installation-videos h3 {
    text-align: center; }
  .view-installation-videos ul.links {
    display: none; }
  .view-installation-videos blockquote {
    border-left: 0.3rem solid #d1d1d1;
    margin-left: 0;
    margin-right: 0;
    padding: 1rem 1.5rem; }
  .view-installation-videos blockquote *:last-child {
    margin-bottom: 0; }
  .view-installation-videos small {
    font-size: 60%;
    position: relative;
    top: -10px;
    margin-left: 5px; }
  .view-installation-videos .label-inline {
    display: inline-block;
    font-weight: normal;
    margin-left: .5rem; }
  .view-installation-videos .ui-state-active {
    border: none; }
  .view-installation-videos .container {
    margin: 0 auto;
    max-width: 112.0rem;
    padding: 0 2.0rem;
    position: relative;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .view-installation-videos .container {
        padding: 0 1rem; } }
  .view-installation-videos .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0;
    width: 100%; }
  .view-installation-videos .row.row-no-padding {
    padding: 0; }
  .view-installation-videos .row.row-no-padding > .column {
    padding: 0; }
  .view-installation-videos .row.row-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .view-installation-videos .row.row-top {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start; }
  .view-installation-videos .row.row-bottom {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; }
  .view-installation-videos .row.row-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center; }
  .view-installation-videos .row.row-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch; }
  .view-installation-videos .row.row-baseline {
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline; }
  .view-installation-videos .row .column {
    display: block;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    margin-left: 0;
    max-width: 100%;
    width: 100%; }
  .view-installation-videos .row .column.column-offset-10 {
    margin-left: 10%; }
  .view-installation-videos .row .column.column-offset-20 {
    margin-left: 20%; }
  .view-installation-videos .row .column.column-offset-25 {
    margin-left: 25%; }
  .view-installation-videos .row .column.column-offset-33, .view-installation-videos .row .column.column-offset-34 {
    margin-left: 33.3333%; }
  .view-installation-videos .row .column.column-offset-50 {
    margin-left: 50%; }
  .view-installation-videos .row .column.column-offset-66, .view-installation-videos .row .column.column-offset-67 {
    margin-left: 66.6666%; }
  .view-installation-videos .row .column.column-offset-75 {
    margin-left: 75%; }
  .view-installation-videos .row .column.column-offset-80 {
    margin-left: 80%; }
  .view-installation-videos .row .column.column-offset-90 {
    margin-left: 90%; }
  .view-installation-videos .row .column.column-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 10%;
    flex: 0 0 10%;
    max-width: 10%; }
  .view-installation-videos .row .column.column-20 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%; }
  .view-installation-videos .row .column.column-25 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%; }
  .view-installation-videos .row .column.column-33, .view-installation-videos .row .column.column-34 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
    max-width: 33.3333%; }
  .view-installation-videos .row .column.column-40 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40%;
    flex: 0 0 40%;
    max-width: 40%; }
  .view-installation-videos .row .column.column-50 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
  .view-installation-videos .row .column.column-60 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    max-width: 60%; }
  .view-installation-videos .row .column.column-66, .view-installation-videos .row .column.column-67 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.6666%;
    flex: 0 0 66.6666%;
    max-width: 66.6666%; }
  .view-installation-videos .row .column.column-75 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%; }
  .view-installation-videos .row .column.column-80 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80%;
    flex: 0 0 80%;
    max-width: 80%; }
  .view-installation-videos .row .column.column-90 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90%;
    flex: 0 0 90%;
    max-width: 90%; }
  .view-installation-videos .row .column .column-top {
    -ms-flex-item-align: start;
    align-self: flex-start; }
  .view-installation-videos .row .column .column-bottom {
    -ms-flex-item-align: end;
    align-self: flex-end; }
  .view-installation-videos .row .column .column-center {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center; }
  @media (min-width: 40rem) {
    .view-installation-videos .row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      margin-left: -.5rem;
      width: calc(100% + 2.0rem); }
    .view-installation-videos .row .column {
      margin-bottom: inherit;
      padding: 0 1.0rem; } }
  .view-installation-videos a {
    color: #9b4dca;
    text-decoration: none; }
  .view-installation-videos a:focus, .view-installation-videos a:hover {
    color: #606c76; }
  .view-installation-videos dl,
  .view-installation-videos ol,
  .view-installation-videos ul {
    list-style: none;
    margin-top: 0;
    padding-left: 0; }
  .view-installation-videos dl dl,
  .view-installation-videos dl ol,
  .view-installation-videos dl ul,
  .view-installation-videos ol dl,
  .view-installation-videos ol ol,
  .view-installation-videos ol ul,
  .view-installation-videos ul dl,
  .view-installation-videos ul ol,
  .view-installation-videos ul ul {
    font-size: 90%;
    margin: 1.5rem 0 1.5rem 3.0rem; }
  .view-installation-videos ol {
    list-style: decimal inside; }
  .view-installation-videos ul li {
    list-style: circle inside; }
  .view-installation-videos .button,
  .view-installation-videos button,
  .view-installation-videos dd,
  .view-installation-videos dt,
  .view-installation-videos li {
    margin-bottom: 1.0rem; }
  .view-installation-videos fieldset,
  .view-installation-videos input,
  .view-installation-videos select,
  .view-installation-videos textarea {
    margin-bottom: 1.5rem; }
  .view-installation-videos blockquote,
  .view-installation-videos dl,
  .view-installation-videos figure,
  .view-installation-videos form,
  .view-installation-videos ol,
  .view-installation-videos p,
  .view-installation-videos pre,
  .view-installation-videos table,
  .view-installation-videos ul {
    margin-bottom: 2.5rem; }
  .view-installation-videos table {
    border-spacing: 0;
    width: 100%; }
  .view-installation-videos td,
  .view-installation-videos th {
    border-bottom: 0.1rem solid #e1e1e1;
    padding: 1.2rem 1.5rem;
    text-align: left; }
  .view-installation-videos td:first-child,
  .view-installation-videos th:first-child {
    padding-left: 0; }
  .view-installation-videos td:last-child,
  .view-installation-videos th:last-child {
    padding-right: 0; }
  .view-installation-videos b,
  .view-installation-videos strong {
    font-weight: bold; }
  .view-installation-videos p {
    margin-top: 0; }
  .view-installation-videos h1,
  .view-installation-videos h2,
  .view-installation-videos h3,
  .view-installation-videos h4,
  .view-installation-videos h5,
  .view-installation-videos h6 {
    font-weight: 300;
    letter-spacing: -.1rem;
    margin-bottom: 2.0rem;
    margin-top: 0; }
  .view-installation-videos h1 {
    font-size: 4.6rem;
    line-height: 1.2; }
  .view-installation-videos h2 {
    font-size: 2.5rem;
    line-height: 1.25; }
  .view-installation-videos h3 {
    font-size: 2rem;
    line-height: 1.3; }
  .view-installation-videos h4 {
    font-size: 1.8rem;
    letter-spacing: -.08rem;
    line-height: 1.35; }
  .view-installation-videos h5 {
    font-size: 1.8rem;
    letter-spacing: -.05rem;
    line-height: 1.5; }
  .view-installation-videos h6 {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 1.4; }
  .view-installation-videos img {
    height: auto; }
  .view-installation-videos .clearfix:after {
    clear: both;
    content: ' ';
    display: table; }
  .view-installation-videos .float-left {
    float: left; }
  .view-installation-videos .float-right {
    float: right; }
  .view-installation-videos html {
    height: 100%;
    width: 100%; }
  .view-installation-videos ::-moz-selection {
    background: #b3d4fc;
    text-shadow: none; }
  .view-installation-videos ::selection {
    background: #b3d4fc;
    text-shadow: none; }
  .view-installation-videos .clear:before,
  .view-installation-videos .clear:after {
    content: ' ';
    display: table; }
  .view-installation-videos .clear:after {
    clear: both; }
  .view-installation-videos .clear {
    *zoom: 1; }
  .view-installation-videos img {
    vertical-align: middle; }
  .view-installation-videos a {
    color: #444; }
  .view-installation-videos a:focus {
    outline: 0; }
  .view-installation-videos a:hover,
  .view-installation-videos a:active {
    outline: 0;
    cursor: pointer; }
  .view-installation-videos input {
    border: 1px solid #ccc; }
  .view-installation-videos input::-webkit-outer-spin-button,
  .view-installation-videos input::-webkit-inner-spin-button {
    /* display: none; <- Crashes Chrome on hover */
    -webkit-appearance: none;
    margin: 0;
    /* <-- Apparently some margin are still there even though it's hidden */ }
  .view-installation-videos form, .view-installation-videos label, .view-installation-videos input {
    display: block;
    box-shadow: none;
    -webkit-box-shadow: none; }
  .view-installation-videos section {
    position: relative; }
  .view-installation-videos .wrapper {
    margin: 0 auto;
    padding: 0 15px;
    position: relative; }
  .view-installation-videos .center {
    text-align: center; }
  .view-installation-videos .hidden {
    display: none; }
  .view-installation-videos .btn {
    border: 1px solid #898989;
    text-align: center;
    display: inline-block;
    width: auto;
    padding: 5px 30px;
    font-size: 1.1rem; }
  .view-installation-videos .popup-wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 20px;
    background: rgba(250, 250, 250, 0.6);
    display: none;
    z-index: 2147483647; }
  .view-installation-videos .popup-wrapper .popup-content {
    background: #fff;
    max-width: 1100px;
    margin: 0 auto;
    -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
    overflow-x: hidden;
    height: 90vh;
    max-height: 90vh;
    padding: 30px;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .view-installation-videos .close-popup {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
    position: absolute;
    right: 3px;
    top: 2px;
    height: 20px;
    width: 20px;
    font-weight: bold;
    color: #a5a5a5;
    font-size: 22px; }
  .view-installation-videos .noscroll {
    /*overflow: hidden;
    padding-right: 20px;*/
    position: fixed;
    overflow-y: scroll;
    height: 100%;
    width: 100%; }
  .view-installation-videos section {
    padding: 40px 0 0; }
  .view-installation-videos .textwrap {
    padding: 0 15px; }
  .view-installation-videos .product-grid .field-collection-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -ms-flex: 0 1;
    flex: 0 1;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 100%; }
  .view-installation-videos .product-grid .field-collection-view {
    text-align: center;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    -webkit-box-flex: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    margin: 20px 0;
    padding: 5px; }
  .view-installation-videos .product-grid .item h4 {
    margin: 10px 0;
    text-align: center;
    font-size: 1.5em; }
    @media only screen and (max-width: 767px) {
      .view-installation-videos .product-grid .item h4 {
        font-size: 1em;
        letter-spacing: normal; } }
  .view-installation-videos .product-grid .item .description {
    display: none; }
  .view-installation-videos .video-thumb-container {
    position: relative;
    cursor: pointer; }
    .view-installation-videos .video-thumb-container .textblock {
      margin: 3em 0; }
    .view-installation-videos .video-thumb-container.activated .video-responsive {
      overflow: hidden;
      padding-bottom: 100%;
      position: relative;
      height: 0; }
      .view-installation-videos .video-thumb-container.activated .video-responsive iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
        border: none; }
      .view-installation-videos .video-thumb-container.activated .video-responsive:after {
        display: none; }
    .view-installation-videos .video-thumb-container .video-responsive:after {
      content: '';
      display: block;
      position: absolute;
      width: 90px;
      height: 61px;
      top: 50%;
      left: 50%;
      margin-top: -30px;
      margin-left: -45px;
      z-index: 100;
      background: url("https://static-assets-solatube.s3.amazonaws.com/youtube-play-sprite.png") no-repeat;
      background-position: 0 0;
      background-size: 90px auto; }
    .view-installation-videos .video-thumb-container .video-responsive:hover:after {
      background-position: 0 -62px;
      cursor: pointer; }
    .view-installation-videos .video-thumb-container .video-responsive.activated:after {
      display: none; }
  .view-installation-videos .product-thumbs .slick-slide {
    max-height: 97px; }
  .view-installation-videos .product-thumbs img {
    display: block;
    padding: 5px;
    cursor: pointer; }
  .view-installation-videos .product-thumbs .video {
    position: relative; }
    .view-installation-videos .product-thumbs .video:after {
      content: '';
      display: block;
      position: absolute;
      width: 45px;
      height: 30px;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: 100;
      background: url(https://static-assets-solatube.s3.amazonaws.com/youtube-play-sprite.png) no-repeat;
      background-position: 0 0;
      background-size: 45px auto;
      cursor: pointer; }
  .view-installation-videos .product-info {
    text-align: left;
    margin-top: 20px; }
  .view-installation-videos .product-info ol {
    margin-bottom: 30px; }
  .view-installation-videos .btn.alt {
    display: block;
    background: #898989;
    border: none;
    color: #fff;
    margin-top: 20px;
    padding: 15px; }
    .view-installation-videos .btn.alt:hover {
      background: #2286c5;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }
  .view-installation-videos .zoom {
    position: relative;
    max-height: 510px; }
  .view-installation-videos .zoom:after {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    right: 18px;
    height: 15px;
    width: 15px;
    background: url("../images/zoom-icon.svg") center center no-repeat;
    background-size: contain; }
  @media screen and (min-width: 20em) {
    .view-installation-videos {
      /* Mobile (20 x 16 = 320px) */ } }
  @media screen and (min-width: 30em) {
    .view-installation-videos {
      /* Mobile (30 x 16 = 480px) */ } }
  @media screen and (min-width: 40em) {
    .view-installation-videos {
      /* Mobile (40 x 16 = 640px) */ }
      .view-installation-videos .row {
        width: calc(100% + 1.0rem);
        /* fixed from milligram */ }
      .view-installation-videos .product-content {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; }
        .view-installation-videos .product-content div {
          overflow: hidden;
          -webkit-box-flex: 1;
          -ms-flex: 1;
          flex: 1; }
        .view-installation-videos .product-content .product-images {
          width: 53% !important; }
        .view-installation-videos .product-content .product-info {
          margin-top: 3px;
          padding: 0 0px 10px 20px;
          width: 40%; } }
  @media screen and (min-width: 48em) {
    .view-installation-videos {
      /* Tablets (48 x 16 = 768px) */ }
      .view-installation-videos .wrapper {
        width: 73rem; }
      .view-installation-videos .textwrap {
        padding: 0 30px; }
      .view-installation-videos .product-grid .item .description {
        display: block; } }
  @media screen and (min-width: 62em) {
    .view-installation-videos {
      /* Small Laptop (62 x 16 = 992px) */ }
      .view-installation-videos .wrapper {
        width: 94rem; }
      .view-installation-videos .textwrap {
        padding: 0 60px; }
      .view-installation-videos .product-grid .field-collection-view {
        -ms-flex-preferred-size: 33.3%;
        flex-basis: 33.3%; } }
  @media screen and (min-width: 75em) {
    .view-installation-videos {
      /* Large Desktop (75 x 16 = 1200px)  */ }
      .view-installation-videos .wrapper {
        width: 117rem; }
      .view-installation-videos .textwrap {
        padding: 0 90px; } }
  @media print {
    .view-installation-videos * {
      background: transparent !important;
      color: #000 !important;
      -webkit-box-shadow: none !important;
      box-shadow: none !important;
      text-shadow: none !important; }
    .view-installation-videos a,
    .view-installation-videos a:visited {
      text-decoration: underline; }
    .view-installation-videos a[href]:after {
      content: " (" attr(href) ")"; }
    .view-installation-videos abbr[title]:after {
      content: " (" attr(title) ")"; }
    .view-installation-videos .ir a:after,
    .view-installation-videos a[href^="javascript:"]:after,
    .view-installation-videos a[href^="#"]:after {
      content: ""; }
    .view-installation-videos pre, .view-installation-videos blockquote {
      border: 1px solid #999;
      page-break-inside: avoid; }
    .view-installation-videos thead {
      display: table-header-group; }
    .view-installation-videos tr, .view-installation-videos img {
      page-break-inside: avoid; }
    .view-installation-videos img {
      max-width: 100% !important; }
    @page {
      .view-installation-videos {
        margin: 0.5cm; } }
    .view-installation-videos p,
    .view-installation-videos h2,
    .view-installation-videos h3 {
      orphans: 3;
      widows: 3; }
    .view-installation-videos h2,
    .view-installation-videos h3 {
      page-break-after: avoid; } }
  .view-installation-videos .field-name-field-psg-categories {
    text-align: center; }
  .view-installation-videos input.install-search-input {
    width: 85%;
    display: inline-block;
    height: auto;
    margin: 0 1em 0 0;
    padding: 1em;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    @media only screen and (max-width: 767px) {
      .view-installation-videos input.install-search-input {
        width: 100%; } }
  .view-installation-videos button.search-btn {
    display: inline-block;
    padding: 1em;
    color: #fff;
    font-size: 14px;
    text-transform: uppercase;
    background: #808285;
    margin: 5px 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    @media only screen and (max-width: 767px) {
      .view-installation-videos button.search-btn {
        width: 100%; } }

/*# sourceMappingURL=screen.css.map */