@charset "UTF-8";
/*  ==========================================================================


/*  Open Sans Bold
    ========================================================================== */

    
    
    
    .sans-bold, strong,
p.bold, .products__product-name span, .map-locations__region, .header__label, .header__input, .header__btn, .results__total-num, .results__hh-total-num, .results__dial-perc-text, .results__dial-results, .results__dial-perc, .results__dial-saving, .cc-btn {
  font-family: "proxima-nova",sans-serif;
  font-weight: 700;
  font-style: normal; }

/* 	Open Sans Thin 
	========================================================================== */
.sans-thin, .map-locations__title, .map-locations__countries a, .results__panel-num, .results__panel-cost-title, .results__panel-cost-num, .results__total-title, .results__hh-total-text {
  font-family: "proxima-nova",sans-serif;
  font-weight: 300;
  font-style: normal; }

  
/* Remodal */

*  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none; }

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none; }

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none; }

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch; }

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: ""; }

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%; }

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block; }

/*
 *  Remodal - v1.1.1
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px); }

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(9, 42, 49, 0.9); }

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards; }

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes; }

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes; }

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0; }

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff; }

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards; }

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes; }

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes; }

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle; }

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent; }

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38; }

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center; }

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0; }

.remodal-confirm {
  color: #fff;
  background: #81c784; }

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a; }

.remodal-cancel {
  color: #fff;
  background: #e57373; }

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350; }

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0; }

/* Keyframes
	   ========================================================================== */

@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0; }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0); } }

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1; }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0); } }

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

/* Media queries
	   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px; } }

/* IE8
	   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38; }

.lt-ie9 .remodal {
  width: 700px; }

.remodal-video {
  background-color: transparent;
  max-width: 960px; }
  .remodal-video .video {
    margin-top: 0px; }

.remodal-surewash-close {
  top: 0px;
  right: 30px;
  left: auto;
  width: 20px;
  height: 20px;
  background: none;
  font-size: 0;
  color: white;
  transition: all 0.2s ease-in-out; }
  .remodal-surewash-close:before {
    display: none; }
  .remodal-surewash-close:hover {
    -ms-transform: scale(1.2);
        transform: scale(1.2); }

.remodal-surewash-close__icon {
  width: 20px;
  height: 20px;
  -ms-transform: rotate(45deg);
      transform: rotate(45deg);
  fill: white; }



/* End Remodal */
  
  
  
  
  
/* Hide visually and from screen readers:
 * http://juicystudio.com/article/screen-readers-display-none.php
 */
.hidden {
  display: none !important;
  visibility: hidden; }

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

/*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto; }

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
  visibility: hidden; }

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */ }

.clearfix:after {
  clear: both; } 
  
  
  
  
  
  
  
  
  
  

/*  ==========================================================================
    ==========================================================================

    Calculator
    1. 

    CSS FORMATTING
    1. Positioning
    2. Display & Box Model
    3. Text
    4. Other

    ==========================================================================
    ========================================================================== */
/*  ========================================================================== 
	1. 
    ========================================================================== */
/*  ==========================================================================
    Variables etc
    ========================================================================== */
/*  ==========================================================================
    Header
    ========================================================================== */
  .calc__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  min-height: 100vh;
  height: 100px;
  padding: 85px 5% 0;
  background-color: #008996;
  background-image: linear-gradient(180deg, rgba(0, 137, 150, 0) 60%, #008996 100%), linear-gradient(160deg, #092a30 20%, #008996 80%); }

#calc .header__content {
  position: relative;
  z-index: 1;
  max-width: 990px;
  color: white;
  text-align: center; }

#calc .header__title {
  margin: 0 0 24px;
  font-weight: 100;
  font-size: 36px;
  color: white;
  line-height: 1; }
  @media (min-width: 900px) {
    #calc .header__title {
      font-size: 72px; } }

#calc .header__intro {
  max-width: 720px;
  margin: 0 auto;
  font-size: 14px;
  color: white; }
  @media (min-width: 900px) {
    #calc .header__intro {
      font-size: 18px; } }

#calc  .header__label {
  display: block;
  font-size: 18px;
  margin-top: 16px; }

#calc  .header__input {
  position: relative;
  display: block;
  max-width: 270px;
  height: 100px;
  margin: 0 auto;
  padding: 0;
  background-color: transparent;
  border: none;
  border-radius: none;
  font-size: 90px;
  -webkit-appearance: none;
  outline: none;
  color: white;
  text-align: center;
  line-height: 1; }
  @media (min-width: 900px) {
    #calc .header__input {
      font-size: 96px; } }
  #calc .header__input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.2); }
  #calc .header__input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.2); }
  #calc .header__input:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.2); }
  #calc .header__input::placeholder {
    color: rgba(255, 255, 255, 0.2); }

#calc .header__input-border {
  max-width: 270px;
  height: 2px;
  margin: 0 auto;
  background-color: #99cbd0; }

#calc .header__btn {
  width: 270px;
  margin-top: 16px;
  padding: 16px;
  border: 1px solid white;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  text-transform: uppercase;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  transition: all 0.2s linear; }
  #calc .header__btn:hover {
    background-color: white;
    color: #008996; }

#calc  .header__svg-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  width: 80vh;
  max-width: 100%;
  height: 80vh; }

#calc .calc__header-bg {
  width: 100%;
  height: 100%;
  visibility: hidden;
  pointer-events: none; }

/*  ==========================================================================
    Results
    ========================================================================== */
#calc .results {
  position: relative;
  background: linear-gradient(#008996 0px, rgba(0, 137, 150, 0.9) 100px, white 445px);
  margin-top: -1px; }

#calc  .results__bg-svg {
  position: absolute;
  top: 2vh;
  left: 0;
  width: 100%; }

#calc .results__wrap {
  padding: 0 5%;
  min-height: 700px; }

#calc .results__wrap-inner {
  position: relative;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  max-width: 1020px;
  margin: 0 auto; }
  @media screen and (max-width: 899px) {
    #calc .results__wrap-inner {
      -ms-flex-direction: column;
          flex-direction: column; } }

/*  Results panel
    ========================================================================== */
#calc .results__panel {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 40px 5%;
  background-image: linear-gradient(160deg, #092a30 10%, #008996 100%);
  box-shadow: 0px 10px 26.68px 2.32px rgba(0, 0, 0, 0.11);
  color: white;
  text-align: center;
  font-size: 14px;
  margin-top: 30px; }
  @media (min-width: 900px) {
    #calc .results__panel {
      position: absolute;
      min-height: 360px;
      height: 1px;
      max-width: 360px;
      width: 35%;
      margin-top: 0; } }

@media (min-width: 900px) {
  #calc .results__panel--1 {
    top: 10px;
    left: 0; } }

@media (min-width: 900px) {
  #calc .results__panel--2 {
    top: 75px;
    right: 0; } }

#calc .results__panel--3 {
  top: 135px;
  left: 32.5%; }
  @media (max-width: 900px) {
    #calc .results__panel--3 {
      -ms-transform: none !important;
          transform: none !important; } }

#calc .results__panel-title {
  margin: 0;
  font-size: 14px;
  text-transform: uppercase;
  color: white; }

#calc .results__panel-num {
  margin: 24px 0;
  font-size: 96px;
  line-height: 1;
  letter-spacing: -5px;
  color: white; }
  @media (max-width: 900px) {
    #calc .results__panel-num {
      margin: 12px 0 10px; } }
  @media (max-width: 480px) {
    #calc .results__panel-num {
      font-size: 60px; } }

#calc .results__panel-sub {
  margin: 0;
  text-transform: uppercase;
  color: #64d3de; }

#calc .results__panel-cost {
  position: absolute;
  bottom: -160px;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%); }
  @media (max-width: 900px) {
    #calc .results__panel-cost {
      position: relative;
      bottom: auto;
      left: auto;
      -ms-transform: none;
          transform: none;
      color: white; } }

#calc .results__panel-marker {
  width: 19px;
  height: 72px; }
  @media (max-width: 900px) {
    #calc .results__panel-marker {
      display: none; } }

#calc .results__panel-cost-title {
  margin: 8px 0;
  font-size: 14px;
  color: #092a30;
  text-transform: uppercase;
  line-height: 1.2; }
  @media (max-width: 900px) {
    #calc .results__panel-cost-title {
      color: white; } }

#calc .results__panel-cost-num {
  margin: 0;
  color: #092a30;
  font-size: 36px;
  line-height: 1; }
  #calc .results__panel-cost-num sup {
    font-size: 21px; }
  @media (max-width: 900px) {
    #calc .results__panel-cost-num {
      color: white; }
      #calc .results__panel-cost-num sup {
        color: #64d3de; } }

/*  Results totals
    ========================================================================== */
#calc .results__totals {
  position: relative;
  z-index: 1;
  background-image: linear-gradient(160deg, #092a30 10%, #008996 100%);
  margin-top: 59px;
  padding-top: 0; }

#calc .results__divider {
  display: block;
  width: 100%;
  height: 100%;
  margin-top: -1px; }
  @media (max-width: 900px) {
    #calc .results__divider {
      border: 0;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px; } }

#calc .results__totals-wrap {
  padding: 8% 5% 3%;
  margin: 0 auto;
  text-align: center; }
  @media (max-width: 768px) {
    #calc .results__totals-wrap {
      padding: 64px 5% 3%; } }

#calc .results__total-title-wrap {
  overflow: hidden;
  padding-bottom: 24px; }

#calc .results__total-title {
  margin: 0;
  font-size: 30px;
  color: #64d3de;
  text-transform: uppercase;
  line-height: 1; }

#calc .results__total-num-wrap {
  position: relative;
  display: inline-block;
  margin: 0 auto 40px;
  overflow: hidden; }
  @media (max-width: 768px) {
    #calc .results__total-num-wrap {
      margin-bottom: 24px; } }

#calc .results__total-num-wrap-inner {
  padding: 0 24px; }

#calc .results__total-divider {
  position: absolute;
  top: 0;
  left: 24px;
  width: calc(100% - 48px);
  height: 1px;
  background-color: #64d3de; }

#calc .results__total-divider--btm {
  top: auto;
  bottom: 0; }

#calc .results__total-num {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 12px 0;
  font-size: 40px;
  color: white;
  line-height: 1; }
  @media (min-width: 900px) {
    #calc .results__total-num {
      font-size: 96px; } }

#calc .results__total-dollar {
  position: absolute;
  top: 32px;
  left: -15px;
  display: block;
  color: #64d3de;
  font-size: 24px;
  font-size: 2.4rem;
  -ms-transform: translate(0, -20px);
      transform: translate(0, -20px); }

#calc .results__hh-total-text {
  margin: 0 0 24px;
  font-size: 15px;
  color: #64d3de;
  text-transform: uppercase;
  line-height: 1.2; }
  @media (min-width: 900px) {
    #calc .results__hh-total-text {
      font-size: 21px; } }

#calc .results__hh-total-num {
  position: relative;
  display: inline-block;
  margin: 0;
  font-size: 30px;
  font-size: 3rem;
  color: white;
  line-height: 1; }
  @media (min-width: 900px) {
    #calc .results__hh-total-num {
      font-size: 60px; } }
  #calc .results__hh-total-num span {
    position: absolute;
    top: 18px;
    left: -15px;
    display: block;
    color: #64d3de;
    font-size: 18px;
    font-size: 1.8rem;
    -ms-transform: translate(0, -20px);
        transform: translate(0, -20px); }

/*  Results dial
    ========================================================================== */
#calc .results__dial-wrap-outer {
  padding: 0 5% 5%; }

#calc .results__dial-wrap {
  max-width: 520px;
  max-height: 520px;
  margin: 0 auto; }

#calc .results__dial text, #calc .results__dial tspan {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none; }

/*  Percentage Markers
    ========================================================================== */
#calc .results__dial-percent-text text {
  -webkit-font-smoothing: subpixel-antialiased; }

/*  Text
    ========================================================================== */
#calc .results__dial-perc-text, #calc  .results__dial-results {
  font-feature-settings: "tnum" 1;
  text-anchor: middle; }

#calc  .results__dial-perc-text, #calc  .results__dial-results {
  font-size: 24px; }

#calc .results__dial-perc {
  text-anchor: middle;
  font-size: 48px;
  -webkit-font-smoothing: subpixel-antialiased; }

#calc .results__dial-saving {
  font-size: 48px;
  -webkit-font-smoothing: subpixel-antialiased; }

/*  Dragger
    ========================================================================== */
#calc .results__dial-drag-arrows, #calc .results__dial-drag-pad {
  pointer-events: none; }

#calc .results__dial-drag-hit {
  cursor: pointer; }

/*  ==========================================================================
	Email
	========================================================================== */
#calc .calculator-email {
  padding: 130px 5% 155px;
  background-color: #092a30;
  color: #fff; }
  @media (max-width: 480px) {
    #calc .calculator-email {
      padding: 65px 5% 75px; } }

/* 	Inner 
	========================================================================== */
#calc .calculator-email__inner {
  margin: 0px auto;
  max-width: 882px;
  text-align: center; }

/* 	Title 
	========================================================================== */
#calc .calculator-email__title {
  margin: 0 0 40px;
  font-size: 24px;
  font-size: 2.4rem;
  color: white; }

/* 	Form 
	========================================================================== */
#calc .calculator-email__form {
  margin: 0px auto 70px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }
  @media (max-width: 830px) {
    #calc .calculator-email__form {
      display: block;
      text-align: center; } }

/* 	Column 
	========================================================================== */
#calc .calculator-email__col {
  position: relative;
  margin: 0 30px 0 0;
  width: 36%; }
  @media (max-width: 830px) {
    #calc .calculator-email__col {
      margin: 0 auto 20px;
      width: 100%;
      max-width: 322px; } }

/* 	Input 
	========================================================================== */
#calc .calculator-email__input {
  width: 100%;
  height: 50px;
  margin: 0 auto;
  padding: 0;
  display: inline-block;
  outline: none;
  border-radius: 0;
  border: none;
  border-bottom: 2px solid #008996;
  background-color: transparent;
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
  color: #64d3de;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  #calc .calculator-email__input:-webkit-autofill, #calc .calculator-email__input:-webkit-autofill:hover, #calc  .calculator-email__input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #092a30 inset;
    -webkit-text-fill-color: #64d3de; }

/* 	Input Error 
	========================================================================== */
#calc .calculator-email__error {
  position: absolute;
  bottom: -30px;
  right: 0;
  visibility: hidden;
  font-size: 14px;
  font-size: 1.4rem;
  text-align: right; }

/* 	Label 
	========================================================================== */
#calc .calculator-email__label {
  position: absolute;
  top: calc(50% - 14px);
  left: 0;
  margin: 0;
  -ms-transform-origin: 0% 0%;
      transform-origin: 0% 0%;
  color: #64d3de;
  text-align: left;
  font-weight: normal;
  pointer-events: none;
  transition: all 0.15s cubic-bezier(0.445, 0.05, 0.55, 0.95); }
  #calc .calculator-email__label--filled {
    -ms-transform: scale(0.78) translateY(-24px);
        transform: scale(0.78) translateY(-24px);
    color: white; }

/* 	Button 
	========================================================================== */
#calc .calculator-email__btn {
  position: relative;
  height: 50px;
  width: 100%;
  padding: 15px 0 0;
  font-weight: 700;
  background-color: #008996;
  color: #fff;
  letter-spacing: 1px;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.15s ease-in-out; }
  #calc .calculator-email__btn:hover {
    background-color: #009caa;
    color: white; }

/* 	Button icon 
	========================================================================== */
#calc .calculator-email__btn-icon {
  position: absolute;
  right: 28px;
  top: 19px;
  width: 22px;
  height: 11px;
  fill: white; }

/* 	Submit Button 
	========================================================================== */
#calc .calculator-email__btn--submit {
  width: 20%;
  padding-top: 0;
  margin-top: 2px;
  text-align: center; }
  @media (max-width: 830px) {
    #calc .calculator-email__btn--submit {
      margin: 30px auto 0;
      width: 100%;
      max-width: 322px; } }

/* 	Response 
	========================================================================== */
#calc .calculator-email__response {
  margin: 50px auto 0;
  width: 100%;
  max-width: 665px;
  padding: 18px 15px;
  display: none;
  visibility: hidden; }
  #calc .calculator-email__response p {
    margin-bottom: 0;
    color: white; }
  @media (max-width: 830px) {
    #calc .calculator-email__response {
      margin-top: 30px;
      max-width: 470px; } }

/* 	Response Success 
	========================================================================== */
#calc .calculator-email__response--success {
  background-color: #089d32; }

/* 	Response Error 
	========================================================================== */
#calc .calculator-email__response--error {
  background-color: #bb110d; }

/* 	Callback 
	========================================================================== */
#calc .calculator-email__btn--callback {
  margin: 0 auto;
  max-width: 316px; }
  @media (max-width: 380px) {
    #calc .calculator-email__btn--callback .calculator-email__btn-icon {
      right: 18px; } }

#calc .callback.remodal {
  padding-left: 5%;
  padding-right: 5%; }

#calc .callback .remodal-surewash-close {
  top: 24px;
  right: 24px; }

#calc .callback .remodal-surewash-close__icon {
  fill: #008996; }

#calc .callback__inner {
  max-width: 400px;
  margin: 0 auto;
  padding-bottom: 48px; }

#calc .callback__title {
  margin-top: 24px; }

#calc .callback__form {
  max-width: 360px;
  margin: 0 auto; }
  #calc .callback__form .contact__form-submit-row {
    margin: 24px 0; }
  #calc .callback__form .ajax-loader {
    top: auto;
    bottom: -24px;
    left: calc(50% - 12px); }

#calc .callback__form-submit {
  width: 100%; }

/*  ==========================================================================
    Disclaimer
    ========================================================================== */
#calc .calc__disclaimer {
  background-color: white;
  text-align: center;
  padding: 16px 5%; }
  #calc .calc__disclaimer p {
    font-size: 14px;
    /*font-size: 1.4rem;*/
    margin: 0; }

/*  ==========================================================================
	7. Vendor 
	========================================================================== */
/