/*
Author: Bobby Donathan | Mike Ligocki
Author URI: https://bigredrooster.com
Version: 1.0.0
*/
/**********************
Font Styles
AUTHOR: Bobby Donathan - BigRedRooster
_fonts.scss
***********************/
@font-face {
  font-family: 'RheemSansLight';
  src: url("fonts/RheemSans-Light.eot");
  /* IE9 Compat Modes */
  src: url("fonts/RheemSans-Light?#iefix") format("embedded-opentype"), url("fonts/RheemSans-Light.woff2") format("woff2"), url("fonts/RheemSans-Light.woff") format("woff"), url("fonts/RheemSans-Light.ttf") format("truetype"), url("fonts/RheemSans-Light.svg#RheemSans-Light") format("svg");
  /* Legacy iOS */ }
@font-face {
  font-family: 'RheemSansRoman';
  src: url("fonts/RheemSans-Roman.eot");
  /* IE9 Compat Modes */
  src: url("fonts/RheemSans-Roman.eot?#iefix") format("embedded-opentype"), url("fonts/RheemSans-Roman.woff2") format("woff2"), url("fonts/RheemSans-Roman.woff") format("woff"), url("fonts/RheemSans-Roman.ttf") format("truetype"), url("fonts/RheemSans-Roman.svg#RheemSans-Roman") format("svg");
  /* Legacy iOS */ }
@font-face {
  font-family: 'RheemSansBold';
  src: url("fonts/RheemSans-Bold.eot");
  /* IE9 Compat Modes */
  src: url("fonts/RheemSans-Bold.eot?#iefix") format("embedded-opentype"), url("fonts/RheemSans-Bold.woff2") format("woff2"), url("fonts/RheemSans-Bold.woff") format("woff"), url("fonts/RheemSans-Bold.ttf") format("truetype"), url("fonts/RheemSans-Bold.svg#RheemSans-Bold") format("svg");
  /* Legacy iOS */ }
@font-face {
  font-family: 'RheemSansLightItalic';
  src: url("fonts/RheemSans-LightItalic.eot");
  /* IE9 Compat Modes */
  src: url("fonts/RheemSans-LightItalic.eot?#iefix") format("embedded-opentype"), url("fonts/RheemSans-LightItalic.woff2") format("woff2"), url("fonts/RheemSans-LightItalic.woff") format("woff"), url("fonts/RheemSans-LightItalic.ttf") format("truetype"), url("fonts/RheemSans-LightItalic.svg#RheemSans-LightItalic") format("svg");
  /* Legacy iOS */ }
@font-face {
  font-family: 'RheemSansRomanItalic';
  src: url("fonts/RheemSans-RomanItalic.eot");
  /* IE9 Compat Modes */
  src: url("fonts/RheemSans-RomanItalic.eot?#iefix") format("embedded-opentype"), url("fonts/RheemSans-RomanItalic.woff2") format("woff2"), url("fonts/RheemSans-RomanItalic.woff") format("woff"), url("fonts/RheemSans-RomanItalic.ttf") format("truetype"), url("fonts/RheemSans-RomanItalic.svg#RheemSans-RomanItalic") format("svg");
  /* Legacy iOS */ }
@font-face {
  font-family: 'RheemSansBoldItalic';
  src: url("fonts/RheemSans-BoldItalic.eot");
  /* IE9 Compat Modes */
  src: url("fonts/RheemSans-BoldItalic.eot?#iefix") format("embedded-opentype"), url("fonts/RheemSans-BoldItalic.woff2") format("woff2"), url("fonts/RheemSans-BoldItalic.woff") format("woff"), url("fonts/RheemSans-BoldItalic.ttf") format("truetype"), url("fonts/RheemSans-BoldItalic.svg#RheemSans-BoldItalic") format("svg");
  /* Legacy iOS */ }
/*MIXINS*/
*,
*::before,
*::after {
  box-sizing: border-box; }

:root {
  --select-border: #777;
  --select-focus: blue;
  --select-arrow: var(--select-border); }

body {
  background-color: #fff;
  margin: 0px;
  padding: 0px;
  overflow: hidden; }
  body .ui-keyboard {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

#mainstage {
  display: flex;
  position: relative;
  z-index: 0; }
  #mainstage #brandnav {
    flex: 0 0 270px;
    display: flex;
    border-right: 1px solid #ccc;
    flex-direction: column;
    height: calc(100vh - 80px);
    position: relative; }
    #mainstage #brandnav .brandbox {
      position: relative;
      z-index: 1;
      width: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      border-bottom: 1px solid #ccc;
      flex: 1 1 20%;
      cursor: pointer; }
      #mainstage #brandnav .brandbox .over {
        display: none; }
    #mainstage #brandnav #chaser {
      position: absolute;
      z-index: 0;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 0px;
      background-color: #E4002B;
      -webkit-transition: all 300ms ease;
      -moz-transition: all 300ms ease;
      transition: all 300ms ease; }
  #mainstage #siteframe {
    flex: 1 0 auto; }
    #mainstage #siteframe iframe {
      border: none; }

#productdrawer {
  position: absolute;
  z-index: 1;
  top: calc(100vh - 80px);
  left: 0px;
  width: 100vw;
  display: block;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
  #productdrawer.opened {
    top: 0px; }
    #productdrawer.opened #drawertopper .uparrow {
      display: none; }
    #productdrawer.opened #drawertopper .closebtn {
      display: block; }
  #productdrawer #drawertopper {
    background-color: #1E438B;
    color: #fff;
    text-align: center;
    font-family: 'RheemSansBold';
    font-size: 20px;
    padding: 30px 0px;
    line-height: 1em;
    position: relative; }
    #productdrawer #drawertopper .closebtn {
      position: absolute;
      z-index: 2;
      top: 50%;
      right: 40px;
      transform: translateY(-50%);
      display: none; }
    #productdrawer #drawertopper .uparrow {
      position: absolute;
      z-index: 2;
      height: 38px;
      width: 38px;
      display: flex;
      justify-content: center;
      align-items: center;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background-color: #1E438B;
      border-radius: 100%; }
      #productdrawer #drawertopper .uparrow img {
        flex: 0 0 auto; }
    #productdrawer #drawertopper #formbutton {
      cursor: pointer;
      position: absolute;
      z-index: 1;
      top: 50%;
      right: 5%;
      color: #fff;
      font-family: 'RheemSansBold';
      font-size: 16px;
      text-align: center;
      border: 1px solid #fff;
      border-radius: 50px;
      padding: 15px 30px 12px 30px;
      line-height: 18px;
      text-decoration: none;
      transform: translateY(-50%); }
    #productdrawer #drawertopper #drawertoggle {
      position: absolute;
      top: 0px;
      left: 0px;
      display: block;
      cursor: pointer;
      width: 100%;
      height: 100%;
      z-index: 0; }
  #productdrawer #drawercontent {
    overflow-y: scroll;
    height: calc(100vh - 80px);
    background-color: #fff;
    color: #000;
    padding: 40px 5%; }
    #productdrawer #drawercontent .spacer {
      height: 100px;
      display: block; }
    #productdrawer #drawercontent .sectiontitle {
      width: 100%;
      display: flex;
      align-items: center;
      font-family: "RheemSansBold", Helvetica, Arial, sans-serif;
      font-size: 50px;
      margin-bottom: 30px; }
      #productdrawer #drawercontent .sectiontitle img {
        margin-right: 20px; }
      #productdrawer #drawercontent .sectiontitle span {
        padding-top: 10px; }
    #productdrawer #drawercontent .productrow {
      width: 100%;
      position: relative;
      padding-bottom: 40px; }
      #productdrawer #drawercontent .productrow .productcontainer {
        border: 1px solid #ccc;
        border-radius: 19px;
        padding: 30px; }
        #productdrawer #drawercontent .productrow .productcontainer .productcontainertitle {
          display: flex;
          align-items: center;
          font-family: "RheemSansLight", Helvetica, Arial, sans-serif;
          font-size: 25px;
          line-height: 1;
          margin-bottom: 30px; }
          #productdrawer #drawercontent .productrow .productcontainer .productcontainertitle img {
            margin-right: 30px; }
        #productdrawer #drawercontent .productrow .productcontainer .productlist {
          width: 100%;
          display: flex;
          justify-content: center;
          flex-wrap: wrap; }
          #productdrawer #drawercontent .productrow .productcontainer .productlist .producttile a {
            display: block;
            text-align: center;
            font-size: 16px;
            font-family: "RheemSansRoman", Helvetica, Arial, sans-serif;
            color: #000;
            text-decoration: none; }
            #productdrawer #drawercontent .productrow .productcontainer .productlist .producttile a:focus {
              outline: none; }
            #productdrawer #drawercontent .productrow .productcontainer .productlist .producttile a .productimage {
              display: inline-block;
              margin: 0 auto;
              position: relative; }
              #productdrawer #drawercontent .productrow .productcontainer .productlist .producttile a .productimage.sustainable:before {
                content: '';
                width: 54px;
                height: 54px;
                position: absolute;
                top: -27px;
                right: -27px;
                display: block;
                border-radius: 100%;
                box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
                -webkit-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
                -moz-box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
                background: #fff url(images/icon-sustainability.png) no-repeat center center; }
            #productdrawer #drawercontent .productrow .productcontainer .productlist .producttile a .productcontent {
              padding: 10px 20px; }
              #productdrawer #drawercontent .productrow .productcontainer .productlist .producttile a .productcontent h4 {
                margin-top: 0px;
                margin-bottom: 10px;
                font-size: 15px;
                font-family: "RheemSansBold", Helvetica, Arial, sans-serif; }
              #productdrawer #drawercontent .productrow .productcontainer .productlist .producttile a .productcontent p {
                margin: 0; }
      #productdrawer #drawercontent .productrow.full .productcontainer .productlist .producttile {
        flex: 0 1 25%; }
      #productdrawer #drawercontent .productrow.half {
        display: flex;
        gap: 30px; }
        #productdrawer #drawercontent .productrow.half .productcontainer {
          flex: 0 1 45%; }
          #productdrawer #drawercontent .productrow.half .productcontainer .productlist .producttile {
            flex: 0 1 50%; }

#formoverlay {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  z-index: 2;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background-color: rgba(11, 22, 38, 0.94);
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease; }
  #formoverlay.active {
    opacity: 1;
    pointer-events: all; }
  #formoverlay .formwrapper {
    padding: 40px 0px;
    flex: 0 0 auto;
    background-color: #fff;
    border-radius: 12px;
    width: 75%;
    min-height: 500px;
    position: relative; }
    #formoverlay .formwrapper #closeform {
      width: 17px;
      height: 17px;
      display: block;
      position: absolute;
      top: 20px;
      right: 20px;
      background: url(images/close.png) no-repeat center center; }
    #formoverlay .formwrapper form {
      display: flex; }
      #formoverlay .formwrapper form .column {
        flex: 1 0 50%; }
        #formoverlay .formwrapper form .column h4 {
          font-size: 40px;
          font-family: "RheemSansBold", Helvetica, Arial, sans-serif;
          margin: 0; }
        #formoverlay .formwrapper form .column p.intro {
          font-size: 20px;
          font-family: "RheemSansLight", Helvetica, Arial, sans-serif;
          margin: 0 0 80px 0; }
        #formoverlay .formwrapper form .column .contentpadding {
          padding: 0 40px; }
          #formoverlay .formwrapper form .column .contentpadding .title {
            font-size: 18px;
            font-family: "RheemSansBold", Helvetica, Arial, sans-serif;
            color: #E4002B;
            display: block;
            margin-bottom: 10px; }
          #formoverlay .formwrapper form .column .contentpadding .note {
            font-size: 15px;
            font-family: "RheemSansLight", Helvetica, Arial, sans-serif;
            display: block;
            margin-bottom: 20px; }
          #formoverlay .formwrapper form .column .contentpadding .customchecks .checkboxgroup {
            width: 350px; }
            #formoverlay .formwrapper form .column .contentpadding .customchecks .checkboxgroup label {
              position: relative;
              width: 143px;
              height: 143px;
              border: 1px solid #ccc;
              border-radius: 6px;
              display: inline-block;
              vertical-align: top;
              margin-right: 20px;
              margin-bottom: 20px; }
              #formoverlay .formwrapper form .column .contentpadding .customchecks .checkboxgroup label.rheemcheckbox {
                background: #fff url(images/rheemlogo-up.png) no-repeat center center;
                background-size: 80% auto; }
              #formoverlay .formwrapper form .column .contentpadding .customchecks .checkboxgroup label.htpgcheckbox {
                background: #fff url(images/htpglogo-up.png) no-repeat center center;
                background-size: 80% auto; }
              #formoverlay .formwrapper form .column .contentpadding .customchecks .checkboxgroup label.eemaxcheckbox {
                background: #fff url(images/eemaxlogo-up.png) no-repeat center center;
                background-size: 80% auto; }
              #formoverlay .formwrapper form .column .contentpadding .customchecks .checkboxgroup label.raypakcheckbox {
                background: #fff url(images/raypaklogo-up.png) no-repeat center center;
                background-size: 80% auto; }
          #formoverlay .formwrapper form .column .contentpadding .customchecks input[type="checkbox"] {
            display: none; }
          #formoverlay .formwrapper form .column .contentpadding .customchecks input[type="checkbox"]:checked + label.rheemcheckbox {
            background: #E4002B url(images/rheemlogo-over.png) no-repeat center center;
            background-size: 80% auto; }
          #formoverlay .formwrapper form .column .contentpadding .customchecks input[type="checkbox"]:checked + label.htpgcheckbox {
            background: #230D53 url(images/htpglogo-over.png) no-repeat center center;
            background-size: 80% auto; }
          #formoverlay .formwrapper form .column .contentpadding .customchecks input[type="checkbox"]:checked + label.eemaxcheckbox {
            background: #2F3F48 url(images/eemaxlogo-over.png) no-repeat center center;
            background-size: 80% auto; }
          #formoverlay .formwrapper form .column .contentpadding .customchecks input[type="checkbox"]:checked + label.raypakcheckbox {
            background: #EB3A43 url(images/raypaklogo-over.png) no-repeat center center;
            background-size: 80% auto; }
          #formoverlay .formwrapper form .column .contentpadding table {
            width: 100%;
            caption-side: bottom;
            border-collapse: collapse;
            -webkit-border-horizontal-spacing: 0px;
            -webkit-border-vertical-spacing: 0px; }
          #formoverlay .formwrapper form .column .contentpadding .fieldwrapper {
            position: relative;
            margin-bottom: 20px;
            padding-right: 10px; }
            #formoverlay .formwrapper form .column .contentpadding .fieldwrapper label {
              display: block;
              font-size: 10px;
              font-family: "RheemSansBold", Helvetica, Arial, sans-serif; }
            #formoverlay .formwrapper form .column .contentpadding .fieldwrapper input[type="text"], #formoverlay .formwrapper form .column .contentpadding .fieldwrapper textarea {
              box-sizing: border-box;
              -moz-box-sizing: border-box;
              line-height: 1;
              display: block;
              max-width: 100%;
              width: 100%;
              border: 1px solid #ccc;
              border-radius: 6px;
              font-size: 16px;
              font-family: "RheemSansLight", Helvetica, Arial, sans-serif;
              padding: 19px 10px 15px 10px; }
            #formoverlay .formwrapper form .column .contentpadding .fieldwrapper.singlecheck {
              margin-bottom: 20px; }
              #formoverlay .formwrapper form .column .contentpadding .fieldwrapper.singlecheck input[type="checkbox"] {
                display: none; }
              #formoverlay .formwrapper form .column .contentpadding .fieldwrapper.singlecheck label {
                display: inline-block;
                vertical-align: middle;
                font-size: 15px;
                font-family: "RheemSansLight", Helvetica, Arial, sans-serif; }
                #formoverlay .formwrapper form .column .contentpadding .fieldwrapper.singlecheck label:before {
                  content: '';
                  width: 30px;
                  height: 30px;
                  border: 1px solid #ccc;
                  border-radius: 6px;
                  display: inline-block;
                  vertical-align: middle;
                  margin-right: 10px; }
                #formoverlay .formwrapper form .column .contentpadding .fieldwrapper.singlecheck label:after {
                  content: '';
                  width: 20px;
                  height: 20px;
                  border-radius: 3px;
                  position: absolute;
                  top: 5px;
                  left: 5px;
                  background-color: transparent; }
              #formoverlay .formwrapper form .column .contentpadding .fieldwrapper.singlecheck input[type="checkbox"]:checked + label:after {
                background-color: #E4002B; }
            #formoverlay .formwrapper form .column .contentpadding .fieldwrapper .ui-widget-content {
              background: none;
              color: #000; }
          #formoverlay .formwrapper form .column .contentpadding input[type="submit"] {
            color: #E4002B;
            font-family: "RheemSansBold", Helvetica, Arial, sans-serif;
            font-size: 16px;
            border: 2px solid #E4002B;
            border-radius: 50px;
            padding: 15px 80px 10px 80px;
            background-color: transparent;
            line-height: 1; }
      #formoverlay .formwrapper form select {
        appearance: none;
        -webkit-appearance: none;
        background-color: transparent;
        border: none;
        height: 46px;
        margin: 0;
        width: 100%;
        cursor: inherit;
        line-height: 50px;
        font-size: 16px;
        font-family: "RheemSansLight", Helvetica, Arial, sans-serif;
        padding-left: 10px;
        z-index: 1;
        outline: none; }
        #formoverlay .formwrapper form select::-ms-expand {
          display: none; }
      #formoverlay .formwrapper form .select {
        display: grid;
        grid-template-areas: "select";
        align-items: center;
        position: relative;
        min-width: 15ch;
        max-width: 30ch;
        border: 1px solid #ccc;
        border-radius: 0.25em;
        padding: 3px 0.5em;
        font-size: 1.25rem;
        cursor: pointer;
        line-height: 1.1;
        background-color: #fff;
        background-image: linear-gradient(to top, #f9f9f9, #fff 33%); }
        #formoverlay .formwrapper form .select select, #formoverlay .formwrapper form .select::after {
          grid-area: select; }
        #formoverlay .formwrapper form .select:not(.select--multiple)::after {
          content: "";
          justify-self: end;
          width: 0.6em;
          height: 0.4em;
          background-color: #E4002B;
          clip-path: polygon(100% 0%, 0 0%, 50% 100%); }
      #formoverlay .formwrapper form select:focus + .focus {
        position: absolute;
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
        border: 2px solid var(--select-focus);
        border-radius: inherit; }
      #formoverlay .formwrapper form select[multiple] {
        padding-right: 0;
        /*
         * Safari will not reveal an option
         * unless the select height has room to
         * show all of it
         * Firefox and Chrome allow showing
         * a partial option
         */
        height: 6rem;
        /*
         * Experimental - styling of selected options
         * in the multiselect
         * Not supported crossbrowser
         */ }
        #formoverlay .formwrapper form select[multiple] option {
          white-space: normal;
          outline-color: var(--select-focus); }
      #formoverlay .formwrapper form .select--disabled {
        cursor: not-allowed;
        background-color: #eee;
        background-image: linear-gradient(to top, #ddd, #eee 33%); }
      #formoverlay .formwrapper form label {
        font-size: 1.125rem;
        font-weight: 500; }
      #formoverlay .formwrapper form .select + label {
        margin-top: 2rem; }
