/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
footer {
  font-size: 1.4rem;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
  line-height: 2.3rem;
  color: #ffffff;
  min-height: 60px;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 10px 15px;
}
@media (min-width:960px) {
  footer {
    padding: 0 25px;
  }
}
footer a {
  font-size: 1.4rem;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
  line-height: 2.3rem;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}
footer a.bar-links,
footer p,
footer span,
footer #ot-sdk-btn.ot-sdk-show-settings {
  font-size: 1.4rem;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
  line-height: 2.3rem;
  color: #ffffff;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 10px 15px;
  padding: 0px;
  text-align: left;
}
@media (min-width:960px) {
  footer a.bar-links,
  footer p,
  footer span,
  footer #ot-sdk-btn.ot-sdk-show-settings {
    margin: 20px 15px;
  }
}
footer #ot-sdk-btn.ot-sdk-show-settings {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border: none;
}
footer #ot-sdk-btn.ot-sdk-show-settings:hover {
  background-color: transparent;
}
footer span {
  margin: 10px 0px;
}
@media (min-width:960px) {
  footer span {
    margin: 20px 0px;
  }
}
footer .footer-right-content {
  min-width: 250px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
footer .footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (min-width:960px) {
  footer .footer-links {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.details-modal {
  /* unvisited link */
  /* visited link */
}
.details-modal .modal-background {
  position: fixed;
  z-index: 5;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #221f2e;
  opacity: 0.8;
}
.details-modal .modal-contents {
  position: fixed;
  top: 10%;
  bottom: 10%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 6;
  background: #ffffff;
  width: 600px;
  overflow-y: scroll;
  padding: 30px;
  -webkit-border-radius: 8px;
          border-radius: 8px;
  max-width: 95%;
}
@media (min-width:768px) {
  .details-modal .modal-contents {
    padding: 60px;
  }
}
.details-modal .modal-contents .modal-ok:focus {
  border: 2px solid grey;
}
.details-modal__copy {
  color: #222222;
  margin: 20px 0;
}
.details-modal .close-button {
  cursor: pointer;
  color: #c7ccde;
  position: absolute;
  right: 24px;
  top: 10px;
  font-size: 3rem;
}
.details-modal .thermostat {
  margin-bottom: 50px;
}
.details-modal .title {
  font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
  text-align: left;
}
.details-modal button {
  padding: 0 20px;
}
.details-modal a:link {
  color: #0000ee;
}
.details-modal a:visited {
  color: #551a8b;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.title {
  font-size: 3.4rem;
}
.title--h1 {
  font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
  font-size: 3.4rem;
  color: #222222;
  letter-spacing: 0;
  line-height: 4.2rem;
}
@media (min-width:960px) {
  .title--h1 {
    font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
    font-size: 6.4rem;
    color: #222222;
    letter-spacing: 0;
    text-align: left;
    line-height: 7.2rem;
  }
}
.title--h2 {
  font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
  font-size: 3.4rem;
  color: #222222;
  letter-spacing: -0.02rem;
  text-align: center;
  line-height: 4.2rem;
}
@media (min-width:768px) {
  .title--h2 {
    font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
    font-size: 4.5rem;
    color: #222222;
    letter-spacing: -0.048rem;
    text-align: center;
    line-height: 5.8rem;
  }
}
.title--h3 {
  font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  color: #222222;
  letter-spacing: -0.021rem;
  line-height: 2.4rem;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.error-message__section {
  background-color: #f8f8f8;
  padding: 50px 20px;
}
@media (min-width:768px) {
  .error-message__section {
    background-color: transparent;
  }
}
.error-message__section .title {
  text-align: center;
  margin-bottom: 30px;
}
.error-message__section p {
  max-width: 560px;
  margin: auto;
}
@media (min-width:768px) {
  .error-message__section p {
    text-align: center;
    font-size: 2rem;
    line-height: 1.3;
  }
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.skip-link {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.skip-link:focus {
  color: inherit;
  display: inline-block;
  height: auto;
  width: auto;
  position: static;
  margin: auto;
  z-index: 1;
  margin-right: 3em;
  cursor: pointer;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
nav {
  width: 100%;
  position: fixed;
  height: 60px;
  top: 0;
  left: 0;
  background: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 60px;
  z-index: 10;
}
nav .nav-logo-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 12px 10px 20px;
}
nav .nav-logo-container.nav-logo-container__link {
  cursor: pointer;
}
@media (min-width:960px) {
  nav .nav-logo-container {
    padding: 10px 12px 10px 40px;
  }
}
nav .nav-logo {
  max-height: 35px;
  max-width: 120px;
  height: auto;
  width: auto;
  margin: 0;
}
@media (min-width:768px) {
  nav .nav-logo {
    max-height: 43px;
    max-width: 190px;
  }
}

.mpc-logo {
  max-width: 100% !important;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.error-page {
  min-height: 100vh;
  margin-bottom: 30px;
}
@media (min-width:768px) {
  .error-page {
    margin-top: 90px;
  }
}
.error-page__section {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8f8f8));
  background: linear-gradient(#ffffff, #f8f8f8);
  width: 90vw;
  max-width: 1080px;
  margin: 0 auto;
  margin-top: 30px;
  -webkit-border-radius: 8px;
          border-radius: 8px;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.enroll-page {
  min-height: 100vh;
  margin-bottom: 30px;
}
@media (min-width:768px) {
  .enroll-page {
    margin-top: 90px;
  }
}
.enroll-page .enroll-area {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#f8f8f8));
  background: linear-gradient(#ffffff, #f8f8f8);
  width: 90vw;
  max-width: 1335px;
  margin: 0 auto;
  margin-top: 30px;
  -webkit-border-radius: 8px;
          border-radius: 8px;
}
.enroll-page .content {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.enroll-page .next-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media (min-width:768px) {
  .enroll-page .next-container {
    max-width: 600px;
    margin: auto;
  }
}
.enroll-page .next-container .btn--circle:focus {
  outline: dotted thin #222222;
}
.enroll-page .enroll-headers {
  padding: 50px 0;
  display: none;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
  max-width: 840px;
  margin: auto;
}
@media (min-width:768px) {
  .enroll-page .enroll-headers {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.enroll-page .enroll-headers .enroll-nav-item {
  pointer-events: none;
  color: rgb(171, 173, 187);
  text-decoration: none;
  font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0;
  text-align: center;
  line-height: 2.4rem;
  padding: 0 12px 0 33px;
  position: relative;
}
@media (min-width:960px) {
  .enroll-page .enroll-headers .enroll-nav-item {
    font-size: 1.6rem;
  }
}
.enroll-page .enroll-headers .enroll-nav-item::before {
  position: absolute;
  display: block;
  height: 9px;
  width: 13px;
  left: 12px;
  top: 8px;
  content: "";
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAKCAYAAABv7tTEAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAB+SURBVHgBlc7dDUAwFAXg428IT9jARngUQ2AI+mgUo9DGGKj+RESk0p6Xe9LeL7mAbRaSYhsLWT1rEGAWLUWEzHcC/OwR16vnBJKmk8+++mBkUtMCaASei1mqhRv+ABl9HiWdaK1oK469QhBOJvCgN9QxgG8kZISDDhbLjrkAeZs+AXDreb8AAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.enroll-page .enroll-headers .enroll-nav-item.active {
  color: black;
  font-size: 2rem;
  border: none;
  padding: 0 12px;
}
@media (min-width:960px) {
  .enroll-page .enroll-headers .enroll-nav-item.active {
    font-size: 2.4rem;
  }
}
.enroll-page .enroll-headers .enroll-nav-item.active::before {
  display: none;
}
.enroll-page .enroll-headers .enroll-nav-item.active ~ .enroll-nav-item {
  border: none;
  padding: 0 12px;
}
.enroll-page .enroll-headers .enroll-nav-item.active ~ .enroll-nav-item::before {
  display: none;
}
.enroll-page .enroll-headers--mobile {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 100px 30px 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  overflow: hidden;
  position: relative;
  padding-bottom: 40px;
}
.enroll-page .enroll-headers--mobile .title {
  display: none;
  position: absolute;
  text-align: center;
  left: 0;
  right: 0;
  bottom: 0;
}
.enroll-page .enroll-headers--mobile .enroll-nav-item {
  pointer-events: none;
  color: #828599;
  display: block;
  background-color: #f8f8f8;
  text-decoration: none;
  border: 2px solid #3ed863;
  height: 34px;
  width: 34px;
  text-align: center;
  line-height: 30px;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  position: relative;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.enroll-page .enroll-headers--mobile .enroll-nav-item::before {
  display: block;
  content: "";
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAKCAYAAABv7tTEAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAB+SURBVHgBlc7dDUAwFAXg428IT9jARngUQ2AI+mgUo9DGGKj+RESk0p6Xe9LeL7mAbRaSYhsLWT1rEGAWLUWEzHcC/OwR16vnBJKmk8+++mBkUtMCaASei1mqhRv+ABl9HiWdaK1oK469QhBOJvCgN9QxgG8kZISDDhbLjrkAeZs+AXDreb8AAAAASUVORK5CYII=);
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
}
.enroll-page .enroll-headers--mobile .enroll-nav-item::after {
  display: block;
  content: "";
  position: absolute;
  height: 1px;
  background-color: #f8f8f8;
  width: 250px;
  border: 1px solid #828599;
  top: 50%;
  z-index: -1;
}
.enroll-page .enroll-headers--mobile .enroll-nav-item:last-of-type::after {
  display: none;
}
.enroll-page .enroll-headers--mobile .enroll-nav-item.active {
  border: 2px solid #828599;
  background-color: #828599;
  color: #ffffff;
}
.enroll-page .enroll-headers--mobile .enroll-nav-item.active::before {
  display: none;
}
.enroll-page .enroll-headers--mobile .enroll-nav-item.active::after {
  border: 1px dashed #828599;
}
.enroll-page .enroll-headers--mobile .enroll-nav-item.active ~ .enroll-nav-item {
  background-color: #ffffff;
  border: 2px solid #828599;
  color: #828599;
}
.enroll-page .enroll-headers--mobile .enroll-nav-item.active ~ .enroll-nav-item::before {
  display: none;
}
.enroll-page .enroll-headers--mobile .enroll-nav-item.active ~ .enroll-nav-item::after {
  border: 1px dashed #828599;
}
.enroll-page .enroll-headers--mobile .enroll-nav-item.active + .title {
  display: block;
}
@media (min-width:768px) {
  .enroll-page .enroll-headers--mobile {
    display: none;
  }
}
.enroll-page .btn {
  cursor: pointer;
}
.enroll-page .btn__container {
  float: right;
  margin-right: 0;
  cursor: pointer;
}
.enroll-page .btn--circle-label {
  cursor: pointer;
  text-decoration: none;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  color: #828599;
  letter-spacing: 0;
  text-align: right;
  line-height: 2.4rem;
}
.enroll-page .btn--circle-arrow {
  cursor: pointer;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.hide {
  display: none;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.enroll-card {
  background-color: #ffffff;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  border: 1px solid #f0f2f2;
  -webkit-border-radius: 8px;
          border-radius: 8px;
}
@media (min-width:768px) {
  .enroll-card {
    max-width: 883px;
  }
}
.enroll-card .enroll-section {
  padding-top: 20px;
  padding-bottom: 5px;
}
.enroll-card .enroll-section:nth-of-type(2) {
  padding-bottom: 0;
}
@media (min-width:768px) {
  .enroll-card .enroll-section {
    padding: 65px 0 30px;
  }
  .enroll-card .enroll-section:nth-of-type(2) {
    padding: 40px 0 65px;
  }
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.autocomplete-text-field {
  padding: 1.995rem 0 1.5rem;
  position: relative;
}
.autocomplete-text-field__input {
  background: none;
  border-width: 0 0 1px 0;
  border-style: solid;
  display: block;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  margin: 0 auto 1.5rem;
  padding: 0.75rem;
  -webkit-transition: border-color 0.35s ease-out;
  transition: border-color 0.35s ease-out;
  width: 100%;
}
.autocomplete-text-field__input:invalid {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.autocomplete-text-field__input.no-baseline {
  border: none;
}
.autocomplete-text-field__input:focus {
  border-color: #3ed863;
  outline: 0;
}
.autocomplete-text-field__input:focus ~ label {
  cursor: default;
  font-size: 1.4rem;
  top: 4px;
}
.autocomplete-text-field__input:valid ~ label {
  cursor: default;
  font-size: 1.4rem;
  top: 4px;
}
.autocomplete-text-field__label {
  cursor: text;
  font-size: 1.6rem;
  top: 2.499rem;
  color: #828599;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
  left: 0.75rem;
  position: absolute;
  -webkit-transition: font-size 0.35s cubic-bezier(0.23, 1, 0.32, 1), top 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: font-size 0.35s cubic-bezier(0.23, 1, 0.32, 1), top 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-item .menu-item-root {
  font-size: 1.4rem;
  color: #222222;
}
.menu-item .menu-item-root:hover {
  background-color: #ecfcf0;
}
.menu-item .menu-item-selected {
  background-color: #ecfcf0 !important;
}
.menu-item__highlight {
  font-family: "OpenSans-SemiBold", Helvetica, Arial, sans-serif;
}
.menu-item__no_highlight {
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.input-text-field {
  padding: 1.995rem 0 1.5rem;
  position: relative;
}
.input-text-field__input {
  background: none;
  border-width: 0 0 1px 0;
  border-style: solid;
  display: block;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  margin: 0 auto 1.5rem;
  padding: 0.75rem;
  -webkit-transition: border-color 0.35s ease-out;
  transition: border-color 0.35s ease-out;
  width: 100%;
}
.input-text-field__input.no-baseline {
  border: none;
}
.input-text-field__input:focus {
  outline: 0;
}
.input-text-field__input:focus ~ label {
  cursor: default;
  font-size: 1.4rem;
  top: 4px;
}
.input-text-field__label {
  cursor: text;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  left: 0.75rem;
  position: absolute;
  top: 2.499rem;
  -webkit-transition: font-size 0.35s cubic-bezier(0.23, 1, 0.32, 1), top 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: font-size 0.35s cubic-bezier(0.23, 1, 0.32, 1), top 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}
.focused .input-text-field__label, .has-data .input-text-field__label {
  cursor: default;
  font-size: 1.4rem;
  top: 4px;
}

/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
h1,
.heading-1 {
  font-family: "Roboto-Light", Helvetica, Arial, sans-serif;
  font-size: 6.4rem;
  line-height: 1.125;
}

h2,
.heading-2 {
  font-family: "Roboto-Thin", Helvetica, Arial, sans-serif;
  font-size: 4.5rem;
  line-height: 1.25;
}

h3,
.heading-3 {
  font-family: "Roboto-Light", Helvetica, Arial, sans-serif;
  font-size: 3.4rem;
  line-height: 1.25;
}

h4,
.heading-4 {
  font-family: "Roboto-Light", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  line-height: 1.2;
}

.text, p {
  font-family: "Roboto-Light", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.text--small {
  font-family: "Roboto-Light", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  line-height: 1.64;
}
.text--xtr-small {
  font-family: "Roboto-Light", Helvetica, Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.25;
}
.text--button {
  font-family: "Roboto-Light", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  line-height: 1.125;
}

.btn__container {
  display: inline-block;
  margin: 1.5rem;
  padding: 1.5rem;
}
.btn__container--inactive {
  cursor: default;
  opacity: 0.5;
}
.btn--circle {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: none;
  border: none;
  color: #222222;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: "Roboto-Light", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  padding: 0;
  text-decoration: none;
}
.btn--circle-label {
  color: #222222;
  font-family: "Roboto-Light", Helvetica, Arial, sans-serif;
  padding: 0 1.5rem 0 0;
}
.btn--circle-arrow {
  background-color: #3ed863;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  display: inline-block;
  height: 45px;
  position: relative;
  right: 0;
  -webkit-transition: background-color 0.2s ease-out;
  transition: background-color 0.2s ease-out;
  width: 45px;
}
.btn--circle-arrow svg {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.btn--circle:focus {
  outline: 0;
}
.btn--circle:hover {
  color: #222222;
  text-decoration: none;
}
.btn--circle:hover .btn--circle-arrow {
  background-color: #37c058;
  -webkit-box-shadow: 0 0 0 0 #3ed863;
          box-shadow: 0 0 0 0 #3ed863;
  -webkit-transition: background-color 0.15s ease-out, -webkit-box-shadow 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background-color 0.15s ease-out, -webkit-box-shadow 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: box-shadow 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.15s ease-out;
  transition: box-shadow 0.2s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.15s ease-out, -webkit-box-shadow 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.btn--circle:active .btn--circle-arrow {
  background-color: #289442;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
ul[class^=AutoComplete-suggestionsList] {
  max-height: 200px;
  overflow: scroll;
}

.state-container {
  width: 120px;
}

.enrollment-info .enroll-section {
  max-width: 400px;
  width: 90%;
  margin: 0 auto;
}
.enrollment-info .enroll-section h2 {
  font-size: 2rem;
  text-align: left;
  margin: 8px 0;
}
.enrollment-info .enroll-section .state-zip-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding-bottom: 15px;
}
.enrollment-info .enroll-section .zip-container {
  position: relative;
}
.enrollment-info .enroll-section .state-select label {
  font-size: 1.6rem;
  top: 5px;
  color: #828599;
  padding-left: 8px;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
  padding-bottom: 8px;
}
.enrollment-info .enroll-section .state-select label[data-shrink=true] {
  -webkit-transform: translate(0, 1.5px) scale(0.8);
          transform: translate(0, 1.5px) scale(0.8);
}
.enrollment-info .enroll-section .state-select .state-select-root {
  width: 120px;
  height: 40px;
}
.enrollment-info .enroll-section .state-select .state-select-root [role=button] {
  padding-bottom: 8px;
  padding-top: 20px;
  padding-left: 6px;
  text-align: left;
  font-size: 1.6rem;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
}
.enrollment-info .enroll-section .state-select .state-select-root > svg {
  top: -webkit-calc(50% - 9px);
  top: calc(50% - 9px);
}
.enrollment-info .enroll-section .state-select [clssname=the-select]:before {
  border-bottom: 1px solid #c7ccde !important;
}
.enrollment-info .enroll-section .state-select [clssname=the-select]:after {
  border-bottom: 1px solid #3ed863 !important;
}
.enrollment-info hr {
  max-width: 400px;
  width: 90%;
  border: none;
  height: 1px;
  color: #e5e8e8;
  background-color: #e5e8e8;
}
.enrollment-info .next-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.enrollment-info__error {
  display: block;
  width: 100%;
  text-align: left;
  margin-top: -31px;
  padding-bottom: 3px;
  font-size: 1.2rem;
  padding-top: 10px;
}
.enrollment-info__partner-error {
  display: block;
  width: 100%;
  text-align: left;
  margin-top: -41px;
  padding-bottom: 3px;
  font-size: 1.4rem;
  margin-left: 21px;
  color: #ce0f69;
  padding-top: 10px;
}
.enrollment-info__success {
  display: block;
  width: 100%;
  text-align: left;
  margin-top: -31px;
  padding-bottom: 5px;
  font-size: 1.2rem;
  padding-top: 10px;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.enroll-provider {
  padding: 30px 20px;
}
@media (min-width:768px) {
  .enroll-provider {
    padding: 50px 20px;
  }
}
.enroll-provider__logo {
  width: 157px;
  height: auto;
}
.enroll-provider__logo--nest {
  width: 100px;
  height: auto;
}
.enroll-provider .prime-to-connect {
  margin: 30px auto 0;
  text-align: left;
  font-size: 20px;
}
@media (min-width:768px) {
  .enroll-provider .prime-to-connect {
    max-width: 420px;
  }
}
.enroll-provider .disclaimer {
  font-size: 1.5rem;
  font-style: italic;
  margin-top: 0.5rem;
}
.enroll-provider .prime-to-connect-program {
  font-family: "OpenSans-Bold", Helvetica, Arial, sans-serif;
}

/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.enroll-devices .devices-list {
  width: 90%;
  max-width: 360px;
  margin: 40px auto;
  text-align: left;
}
.enroll-devices .devices-list h4 {
  margin-bottom: 12px;
}
.enroll-devices .devices-list p {
  font-size: 1.4rem;
}
.enroll-devices .devices-list .device-checkbox {
  display: block;
}
.enroll-devices .next-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.enroll-devices .button-wrapper {
  margin: 30px 0px;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.thermostat-api-warning {
  color: red;
  padding-bottom: 18px;
}

.marketplace-text {
  float: left;
  text-align: left;
}
@media (min-width:768px) {
  .marketplace-text {
    padding: 30px 0 0 15px;
  }
}
.marketplace-text p {
  padding-bottom: 0;
}
.marketplace-text a {
  color: #8ebb37;
  font-family: "OpenSans-SemiBold", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.agree-to-terms .term-list {
  text-align: left;
}
.agree-to-terms .term-list .checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 15px 0;
}
@media (min-width:768px) {
  .agree-to-terms .term-list .checkbox {
    margin: 25px 0;
  }
}
.agree-to-terms .term-list .checkbox .checkmark {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.agree-to-terms .term-list .checkbox .term {
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
  margin-top: -4px;
  margin-left: 10px;
  font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  color: #222222;
  letter-spacing: -0.22px;
  text-align: left;
  line-height: 2.3rem;
}
.agree-to-terms .checkbox input[type=checkbox]:checked ~ .term {
  color: #222222;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
}
.agree-to-terms .title {
  text-align: left;
  margin-bottom: 30px;
}
@media (min-width:768px) {
  .agree-to-terms .title {
    margin-bottom: 35px;
  }
}
.agree-to-terms .enroll-card .card-contents {
  margin: 30px 20px;
}
@media (min-width:768px) {
  .agree-to-terms .enroll-card .card-contents {
    max-width: 360px;
    margin: 65px auto;
  }
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.subtitle {
  font-size: 3.4rem;
}
.subtitle--h1 {
  font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
  font-size: 3.4rem;
  color: #222222;
  letter-spacing: 0;
  line-height: 4.2rem;
}
@media (min-width:960px) {
  .subtitle--h1 {
    font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
    font-size: 6.4rem;
    color: #222222;
    letter-spacing: 0;
    text-align: left;
    line-height: 7.2rem;
  }
}
.subtitle--h2 {
  font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
  font-size: 3.4rem;
  color: #222222;
  letter-spacing: -0.02rem;
  text-align: center;
  line-height: 4.2rem;
}
@media (min-width:768px) {
  .subtitle--h2 {
    font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
    font-size: 4.5rem;
    color: #222222;
    letter-spacing: -0.048rem;
    text-align: center;
    line-height: 5.8rem;
  }
}
.subtitle--h3 {
  font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
  font-size: 2rem;
  color: #222222;
  letter-spacing: -0.021rem;
  line-height: 2.4rem;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.checkbox input[type=checkbox]:focus-visible + div {
  outline: 3px solid black;
  outline-offset: 3px;
}
.checkbox input[type=checkbox] + .checkmark {
  -webkit-box-shadow: 0 0 10px -2px rgb(171, 173, 187);
          box-shadow: 0 0 10px -2px rgb(171, 173, 187);
  display: inline-block;
  position: relative;
  top: -1px;
  width: 20px;
  height: 20px;
  margin: -1px 0 0 0;
  vertical-align: middle;
  background: white left top no-repeat;
  border: 1px solid #ccc;
  cursor: pointer;
  -webkit-border-radius: 4px;
          border-radius: 4px;
}
.checkbox .check-strokes {
  width: 13px;
  height: 10px;
  margin: auto;
  margin-top: -1px;
}
.checkbox .check-strokes .check-stroke {
  -webkit-border-radius: 100px;
          border-radius: 100px;
  position: relative;
}
.checkbox .check-strokes .check-stroke.check-stroke-1 {
  height: 2px;
  width: 5px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  left: 1px;
  top: 10px;
}
.checkbox .check-strokes .check-stroke.check-stroke-2 {
  height: 2px;
  width: 11px;
  -webkit-transform: rotate(315deg);
          transform: rotate(315deg);
  left: 3px;
  top: 7px;
}
.checkbox input[type=checkbox]:checked + .checkmark {
  -webkit-box-shadow: 0 0 4px 1px rgba(62, 216, 99, 0.549);
          box-shadow: 0 0 4px 1px rgba(62, 216, 99, 0.549);
}
.checkbox input[type=checkbox]:checked + .checkmark .check-stroke {
  background-color: #3ed863;
}
.checkbox input[type=checkbox] + .checkmark {
  margin-right: 8px;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.agree-to-terms .term-list {
  text-align: left;
}
.agree-to-terms .term-list .checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 15px 0;
}
@media (min-width:768px) {
  .agree-to-terms .term-list .checkbox {
    margin: 25px 0;
  }
}
.agree-to-terms .term-list .checkbox .checkmark {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.agree-to-terms .term-list .checkbox .term {
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
  margin-top: -4px;
  margin-left: 10px;
  font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  color: #222222;
  letter-spacing: -0.22px;
  text-align: left;
  line-height: 2.3rem;
}
.agree-to-terms .checkbox input[type=checkbox]:checked ~ .term {
  color: #222222;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
}
.agree-to-terms .title {
  text-align: left;
  margin-bottom: 30px;
}
@media (min-width:768px) {
  .agree-to-terms .title {
    margin-bottom: 35px;
  }
}
.agree-to-terms .enroll-card .card-contents {
  margin: 30px 20px;
}
@media (min-width:768px) {
  .agree-to-terms .enroll-card .card-contents {
    max-width: 360px;
    margin: 65px auto;
  }
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.enrollment-complete {
  margin: 0 auto;
  background-color: #f8f8f8;
}
@media (min-width:768px) {
  .enrollment-complete {
    background-color: transparent;
  }
  .enrollment-complete .enrollment-complete-success {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .enrollment-complete .enrollment-complete-success .enrollment-complete-success-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .enrollment-complete .enrollment-complete-success .enrollment-complete-success-inner .enrollment-complete-success-inner-content h1 {
    text-align: left;
  }
  .enrollment-complete .enrollment-complete-success .enrollment-complete-success-inner .enrollment-complete-success-inner-content p {
    margin-bottom: 15px;
    max-width: 540px;
    text-align: left;
  }
}
.enrollment-complete img.complete-check-circle {
  width: 156px;
  height: auto;
  margin: 0 auto 50px;
  display: block;
}
.enrollment-complete .title {
  margin-bottom: 25px;
}
.enrollment-complete .subtitle {
  padding-bottom: 32px;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.enrollment-confirm {
  margin: 0 auto;
  background-color: #f8f8f8;
}
@media (min-width:768px) {
  .enrollment-confirm {
    background-color: transparent;
  }
  .enrollment-confirm .enrollment-confirm-success {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .enrollment-confirm .enrollment-confirm-success .enrollment-confirm-success-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .enrollment-confirm .enrollment-confirm-success .enrollment-confirm-success-inner .enrollment-confirm-success-inner-content h1 {
    text-align: left;
  }
  .enrollment-confirm .enrollment-confirm-success .enrollment-confirm-success-inner .enrollment-confirm-success-inner-content p {
    margin-bottom: 15px;
    max-width: 540px;
    text-align: left;
  }
}
.enrollment-confirm img.confirm-check-circle {
  width: 156px;
  height: auto;
  margin: 0 auto 50px;
  display: block;
}
.enrollment-confirm .title {
  margin-bottom: 25px;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.estimate-card {
  background-color: #ffffff;
  border: 1px solid #e5e8e8;
  -webkit-border-radius: 8px;
          border-radius: 8px;
  overflow: hidden;
  margin-left: auto;
  margin-top: 30px;
  margin-right: auto;
}
@media (min-width:768px) {
  .estimate-card {
    margin-top: 40px;
  }
}
.estimate-card .progress-bar {
  top: 0;
  height: 10px;
  left: 0;
  background-image: -webkit-gradient(linear, left top, right top, from(#95d503), color-stop(96%, #3ed863));
  background-image: linear-gradient(90deg, #95d503 0%, #3ed863 96%);
}
.estimate-card .card-contents {
  text-align: left;
  padding: 20px;
}
@media (min-width:768px) {
  .estimate-card .card-contents {
    padding: 40px 0;
    width: 60%;
    margin: auto;
  }
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.bill-choices__list {
  margin: 15px 0 0;
  padding: 0;
}
.bill-choices__list-item {
  font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  color: #222222;
  letter-spacing: 0;
  text-align: left;
  line-height: 44px;
}
.bill-choices input {
  margin-right: 15px;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.estimate-result__top-img {
  height: 120px;
  margin: 50px auto;
}
@media (min-width:768px) {
  .estimate-result__top-img {
    height: 150px;
    margin: 65px auto 50px;
  }
}
.estimate-result__loading {
  margin-bottom: 120px;
}
@media (min-width:768px) {
  .estimate-result__loading {
    margin-bottom: 250px;
  }
}
.estimate-result__result {
  padding: 0 20px 20px;
}
.estimate-result__stats {
  max-width: 600px;
  padding: 50px 0 0;
  margin: auto;
  text-align: center;
}
@media (min-width:768px) {
  .estimate-result__stats {
    padding: 50px 0 25px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
.estimate-result__stat {
  max-width: 260px;
  margin: 0 auto 25px;
}
@media (min-width:768px) {
  .estimate-result__stat {
    margin: 0 auto 50px;
  }
}
.estimate-result__stat strong {
  font-family: "OpenSans-SemiBold", Helvetica, Arial, sans-serif;
}
.estimate-result__stat-img {
  height: 120px;
}
@media (min-width:768px) {
  .estimate-result__stat-img {
    height: 150px;
  }
}
.estimate-result__enroll {
  display: block;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  text-decoration: none;
  color: #ffffff;
  padding: 0 23px;
  font-family: "OpenSans-SemiBold", Helvetica, Arial, sans-serif;
  line-height: 43px;
  font-size: 1.6rem;
  letter-spacing: 0.18px;
  text-align: center;
}
@media (min-width:768px) {
  .estimate-result__enroll {
    display: inline-block;
  }
}
@charset "UTF-8";
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.estimate-page {
  background-color: #f8f8f8;
  min-height: 100vh;
}
@media (min-width:768px) {
  .estimate-page {
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(3%, #f8f8f8), color-stop(98%, #ffffff));
    background-image: linear-gradient(-180deg, #f8f8f8 3%, #ffffff 98%);
    padding: 30px;
  }
}
.estimate-page__container {
  margin-top: 60px;
}
@media (min-width:768px) {
  .results-page .estimate-page__container {
    background-color: #ffffff;
  }
}
@media (min-width:768px) {
  .estimate-page__container {
    background-color: #ffffff;
    max-width: 1100px;
    margin: 60px auto;
    -webkit-border-radius: 8px;
            border-radius: 8px;
    overflow: hidden;
  }
}
.estimate-page__nav-shadow {
  display: none;
}
.results-page .estimate-page__nav-shadow {
  display: none;
}
@media (min-width:768px) {
  .estimate-page__nav-shadow {
    display: block;
    height: 35px;
    width: 100%;
    opacity: 0.35;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#eeeeee), to(#ffffff));
    background-image: linear-gradient(-180deg, #eeeeee 0%, #ffffff 100%);
  }
}
.estimate-page__nav {
  background-color: #f8f8f8;
  padding: 10px 10px;
  height: 60px;
  width: 100%;
  -webkit-box-shadow: 0px -45px 100px 0px rgba(0, 0, 0, 0.6);
          box-shadow: 0px -45px 100px 0px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media (min-width:768px) {
  .estimate-page__nav {
    margin: 0;
    padding: 10px 30px;
    -webkit-box-shadow: none;
            box-shadow: none;
    background-color: #ffffff;
  }
}
.results-page .estimate-page__nav {
  display: none;
}
.estimate-page__back {
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  color: #625c55;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.estimate-page__back::before {
  content: "←";
  font-size: 2.4rem;
  margin-right: 10px;
}
@media (min-width:768px) {
  .estimate-page__back::before {
    margin-right: 15px;
    font-size: 3.4rem;
  }
}
.estimate-page__cancel {
  border: 1px solid #e5e8e8;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  font-size: 1.6rem;
  color: #828599;
  letter-spacing: -0.017rem;
  text-align: center;
  line-height: 1.4rem;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  height: 36px;
}
.estimate-page__next {
  float: right;
  cursor: pointer;
}
.estimate-page__next.disabled {
  pointer-events: none;
}
.estimate-page__next .btn__container {
  margin-right: 0;
  pointer-events: none;
}
.estimate-page__next .btn--circle-label {
  text-decoration: none;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  color: #828599;
  letter-spacing: 0;
  text-align: right;
  line-height: 2.4rem;
}
.estimate-page__next .btn--circle-arrow {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.estimate-page__content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 10px;
}
@media (min-width:768px) {
  .estimate-page__content {
    padding: 0;
  }
  .results-page .estimate-page__content {
    max-width: 900px;
  }
}
.estimate-page input {
  cursor: pointer;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
}
.estimate-page input ~ label {
  -webkit-box-align: left;
  -webkit-align-items: left;
      -ms-flex-align: left;
          align-items: left;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  -webkit-box-pack: left;
  -webkit-justify-content: left;
      -ms-flex-pack: left;
          justify-content: left;
  line-height: 2rem;
  padding: 1.5rem 0;
  text-align: center;
  vertical-align: middle;
  width: 100%;
}
.estimate-page input ~ label:before {
  background: #ffffff;
  border: 1px solid #f8f8f8;
  -webkit-border-radius: 50%;
          border-radius: 50%;
  -webkit-box-shadow: 0 0 15px transparent;
          box-shadow: 0 0 15px transparent;
  content: "";
  display: inline-block;
  height: 20px;
  margin: 0 1.5rem 0 0;
  -webkit-transition: background 0.35s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background 0.35s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background 0.35s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: background 0.35s cubic-bezier(0.215, 0.61, 0.355, 1), box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), -webkit-box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 20px;
  -webkit-box-shadow: 0 0 5px #828599;
          box-shadow: 0 0 5px #828599;
}
.estimate-page input:checked ~ label:before {
  background: #3ed863;
  border: 4px solid #ffffff;
  -webkit-box-shadow: 0 0 5px #3ed863;
          box-shadow: 0 0 5px #3ed863;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.account-error__icon {
  display: block;
  height: 150px;
  margin: 0 auto 30px;
}
.account-error__section {
  white-space: pre-wrap;
  background-color: #f8f8f8;
  max-width: 540px;
  margin: auto;
  padding: 50px 20px;
  text-align: left;
}
@media (min-width:768px) {
  .account-error__section {
    background-color: transparent;
  }
}
.account-error__section .title {
  text-align: left;
  padding-bottom: 25px;
}
.account-error__section a {
  color: #003edd;
  font-family: "Roboto-Regular", Helvetica, Arial, sans-serif;
  font-weight: 600;
  text-decoration: none;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.address-card__heading {
  text-align: left;
  font-family: "Roboto-Regular", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
}
.address-card__container {
  border: 1px solid #ccd9e5;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  font-family: "Roboto-Regular", Helvetica, Arial, sans-serif;
  font-style: normal;
  line-height: 1.35;
  text-align: left;
  padding: 20px 50px;
  position: relative;
}
.address-card__container:before {
  background-image: url(data:image/svg+xml;base64,ZXhwb3J0IGRlZmF1bHQgImRhdGE6aW1hZ2Uvc3ZnK3htbDtiYXNlNjQsUEhOMlp5QjNhV1IwYUQwaU1UQWlJR2hsYVdkb2REMGlNVFlpSUhacFpYZENiM2c5SWpBZ01DQXhNQ0F4TmlJZ1ptbHNiRDBpYm05dVpTSWdlRzFzYm5NOUltaDBkSEE2THk5M2QzY3Vkek11YjNKbkx6SXdNREF2YzNabklqNEtQSEJoZEdnZ1pEMGlUVFVnTUVNMkxqTTRNelUySURBZ055NDFOamcwT1NBd0xqUTROak13TVNBNExqVTBNVEVnTVM0ME5UZzVRemt1TlRFek55QXlMalF6TVRVeElERXdJRE11TmpBNU5Ua2dNVEFnTlVNeE1DQTJMak01TnpJMklEa3VOVGc1TURRZ09DNHdNakExTlNBNExqYzJNREkzSURrdU9EVTJNVFpETnk0NU1UYzRNU0F4TVM0M01USXpJRGN1TURneU1Ua2dNVE11TVRrNE5pQTJMakl6T1RjeklERTBMak14TlRGTU5TQXhOa00wTGpVek5ESTFJREUxTGpRMU1qRWdNeTQ1TnprME5TQXhOQzQyTnpneElETXVNelF5TkRjZ01UTXVOamN4TWtNeUxqY3dOVFE0SURFeUxqWTJORFFnTWk0eE56RXlNeUF4TVM0M05EWTJJREV1TnpNNU56TWdNVEF1T1RJME4wTXdMalU0TWpFNU1pQTRMalkyTkRNNElEQWdOaTQyT1RFM09DQXdJRFZETUNBekxqWXhOalEwSURBdU5EZzJNekF4SURJdU5ETXhOVEVnTVM0ME5UZzVJREV1TkRVNE9VTXlMalF6TVRVeElEQXVORGcyTXpBeElETXVOakE1TlRrZ01DQTFJREJhVFRZdU9URXdPVFlnTmk0NU5UZzVRemN1TkRVeU1EVWdOaTQwTWpRMk5pQTNMamN4T1RFNElEVXVOemczTmpjZ055NDNNVGt4T0NBMUxqQTBNVEZETnk0M01Ua3hPQ0EwTGpNd09ESXlJRGN1TkRVeU1EVWdNeTQyTnpnd09DQTJMamt4TnpneElETXVNVFV3TmpoRE5pNHpPRE0xTmlBeUxqWXlNekk1SURVdU56UTJOVGdnTWk0ek5UWXhOaUExSURJdU16VTJNVFpETkM0eU5qY3hNaUF5TGpNMU5qRTJJRE11TmpNMk9Ua2dNaTQyTVRZME5DQXpMakV3T1RVNUlETXVNVE0yT1RsRE1pNDFPREl4T1NBekxqWTFOelV6SURJdU16SXhPVElnTkM0eU9UUTFNaUF5TGpNeU1Ua3lJRFV1TURReE1VTXlMak15TVRreUlEVXVOemczTmpjZ01pNDFPREl4T1NBMkxqUXlORFkySURNdU1UQTVOVGtnTmk0NU5UZzVRek11TmpNMk9Ua2dOeTQwT1RNeE5TQTBMakkyTnpFeUlEY3VOell3TWpjZ05TQTNMamMyTURJM1F6VXVOek15T0RnZ055NDNOakF5TnlBMkxqTTJPVGcySURjdU5Ea3pNVFVnTmk0NU1UQTVOaUEyTGprMU9EbGFJaUJtYVd4c1BTSWpOak0yUmpkRklpOCtDand2YzNablBnbz0i);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  display: block;
  height: 16px;
  left: 16px;
  position: absolute;
  top: 19px;
  width: 10px;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.account-info__section-header {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.account-info__faq-link {
  color: #003edd;
  font-family: "Roboto-Regular", Helvetica, Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}
.account-info__faq-link--left {
  display: block;
  text-align: left;
}
.account-info__faq-link:after {
  background-image: url(data:image/svg+xml;base64,ZXhwb3J0IGRlZmF1bHQgImRhdGE6aW1hZ2Uvc3ZnK3htbDtiYXNlNjQsUEhOMlp5QjNhV1IwYUQwaU1USWlJR2hsYVdkb2REMGlNVElpSUhacFpYZENiM2c5SWpBZ01DQXhNaUF4TWlJZ1ptbHNiRDBpYm05dVpTSWdlRzFzYm5NOUltaDBkSEE2THk5M2QzY3Vkek11YjNKbkx6SXdNREF2YzNabklqNEtQR05wY21Oc1pTQmplRDBpTmlJZ1kzazlJallpSUhJOUlqWWlJR1pwYkd3OUluZG9hWFJsSWk4K0NqeHdZWFJvSUdROUlrMDJJREJETWk0Mk9EZ3pOaUF3SURBZ01pNDJPRGd6TmlBd0lEWkRNQ0E1TGpNeE1UWTBJREl1TmpnNE16WWdNVElnTmlBeE1rTTVMak14TVRZMElERXlJREV5SURrdU16RXhOalFnTVRJZ05rTXhNaUF5TGpZNE9ETTJJRGt1TXpFNU1UVWdNQ0EySURCYVRUVXVPVGt5TkRrZ01pNHlOVEk0TWtNMkxqUXdOVFV4SURJdU1qVXlPRElnTmk0M05ETTBNeUF5TGpVNU1EYzBJRFl1TnpRek5ETWdNeTR3TURNM05VTTJMamMwTXpReklETXVOREUyTnpjZ05pNDBNRFUxTVNBekxqYzFORFk1SURVdU9Ua3lORGtnTXk0M05UUTJPVU0xTGpVM09UUTNJRE11TnpVME5qa2dOUzR5TkRFMU5TQXpMalF4TmpjM0lEVXVNalF4TlRVZ015NHdNRE0zTlVNMUxqSTBNVFUxSURJdU5Ua3dOelFnTlM0MU56azBOeUF5TGpJMU1qZ3lJRFV1T1RreU5Ea2dNaTR5TlRJNE1scE5OaTQzTlRnME5TQTRMams1TmpJMVF6WXVOelU0TkRVZ09TNDBNRGt5TmlBMkxqUXlNRFV6SURrdU56UTNNVGdnTmk0d01EYzFNU0E1TGpjME56RTRRelV1TlRrME5Ea2dPUzQzTkRjeE9DQTFMakkxTmpVM0lEa3VOREE1TWpZZ05TNHlOVFkxTnlBNExqazVOakkxVmpZdU1ESXlOVE5ETlM0eU5UWTFOeUExTGpZd09UVXhJRFV1TlRrME5Ea2dOUzR5TnpFMU9TQTJMakF3TnpVeElEVXVNamN4TlRsRE5pNDBNakExTXlBMUxqSTNNVFU1SURZdU56VTRORFVnTlM0Mk1EazFNU0EyTGpjMU9EUTFJRFl1TURJeU5UTldPQzQ1T1RZeU5Wb2lJR1pwYkd3OUlpTXdNRE5GUkVRaUx6NEtQQzl6ZG1jK0NnPT0i);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 12px;
  margin: 2px 0 -1px 10px;
  width: 12px;
}
.account-info h2 {
  font-size: 2rem;
  text-align: left;
  margin: 8px 0;
}
.account-info__text {
  text-align: left;
}
.account-info__text a {
  color: #003edd;
  font-family: "Roboto-Regular", Helvetica, Arial, sans-serif;
  font-weight: 600;
}
.account-info__text--large {
  font-size: 2rem;
  line-height: 3rem;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.tile-button {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  background-color: #ffffff;
  height: 200px;
  width: 196px;
  border: 1px solid #f0f2f2;
  -webkit-border-radius: 8px;
          border-radius: 8px;
  margin: 10px;
  padding-top: 50px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 25px;
}
.tile-button--disabled {
  cursor: initial;
}
.tile-button__img {
  margin: auto;
  height: 75px;
}
.tile-button__img img {
  height: 100%;
}
.tile-button__text {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 2rem;
  vertical-align: top;
  display: inline-block;
}
.tile-button__text--disabled {
  margin-top: 10px;
  opacity: 0.5;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.thermostat-select h3 {
  font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
  font-size: 2.4rem;
  color: #222222;
  letter-spacing: -0.021rem;
  line-height: 2.4rem;
  padding: 1.5rem 0 0;
}
@media (min-width:768px) {
  .thermostat-select h3 {
    padding: 0;
  }
}
.thermostat-select__text {
  margin: 20px auto;
  max-width: 680px;
  padding: 20px;
}
.thermostat-select__tiles {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 50px auto;
  max-width: 680px;
}
@media (min-width:768px) {
  .thermostat-select__tiles {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.welcome__icon {
  display: block;
  height: 105px;
  margin: 0 auto 30px;
  width: 105px;
}
.welcome .title {
  text-align: left;
  margin-bottom: 30px;
}
@media (min-width:768px) {
  .welcome .title {
    margin-bottom: 35px;
  }
}
.welcome .card-contents {
  margin: 30px 20px;
  text-align: left;
}
@media (min-width:768px) {
  .welcome .card-contents {
    max-width: 544px;
    margin: 65px auto;
  }
}
.welcome .next-container {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.welcome .button-circle-primary-background {
  width: 100%;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.agree-to-terms .term-list {
  text-align: left;
}
.agree-to-terms .term-list .checkbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin: 15px 0;
}
@media (min-width:768px) {
  .agree-to-terms .term-list .checkbox {
    margin: 25px 0;
  }
}
.agree-to-terms .term-list .checkbox .checkmark {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.agree-to-terms .term-list .checkbox .term {
  -webkit-flex-shrink: 1;
      -ms-flex-negative: 1;
          flex-shrink: 1;
  margin-top: -4px;
  margin-left: 10px;
  font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
  font-size: 1.4rem;
  color: #828599;
  letter-spacing: -0.22px;
  text-align: left;
  line-height: 2.3rem;
}
.agree-to-terms .checkbox input[type=checkbox]:checked ~ .term {
  color: #222222;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
}
.agree-to-terms .title {
  text-align: left;
  margin-bottom: 30px;
}
@media (min-width:768px) {
  .agree-to-terms .title {
    margin-bottom: 35px;
  }
}
.agree-to-terms .enroll-card .card-contents {
  margin: 30px 20px;
}
@media (min-width:768px) {
  .agree-to-terms .enroll-card .card-contents {
    max-width: 360px;
    margin: 65px auto;
  }
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.flow-complete {
  margin: 0 auto;
  background-color: #f8f8f8;
}
@media (min-width:768px) {
  .flow-complete {
    background-color: transparent;
  }
  .flow-complete--success {
    margin: 0 auto;
    max-width: 540px;
    width: 90%;
  }
  .flow-complete--success h1 {
    text-align: left;
  }
  .flow-complete--success p {
    margin-bottom: 15px;
    max-width: 540px;
    text-align: left;
  }
}
.flow-complete img.complete-check-circle {
  width: 156px;
  height: auto;
  margin: 0 auto 50px;
  display: block;
}
.flow-complete .title {
  margin-bottom: 25px;
}

/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.enroll-error {
  padding: 0 auto;
}
.enroll-error img.error-icon-circle {
  width: 156px;
  height: auto;
  margin: 0 auto 32px;
  display: block;
}
.enroll-error .enroll-error-message {
  margin-top: 32px;
}
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.cpp-container .subtitle {
  padding-bottom: 32px;
}
@media (min-width:768px) {
  .cpp-container .next-container {
    max-width: 883px;
    margin: auto;
  }
}
.cpp-container .enroll-card .card-contents {
  margin: 30px 20px;
  text-align: left;
}
@media (min-width:768px) {
  .cpp-container .enroll-card .card-contents {
    max-width: 544px;
    margin: 65px auto;
  }
}
.cpp-container .enroll-headers {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cpp-container .enroll-headers .enroll-nav-item {
  border: unset;
  padding: 0 60px 0 33px !important;
}
@media (min-width:960px) {
  .cpp-container .enroll-headers .enroll-nav-item {
    font-size: 1.6rem;
  }
}
.cpp-container .enroll-headers .enroll-nav-item::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAUCAYAAABxnDbHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADbSURBVHgBvdTNDYIwFMDxV+4e2EBxEeMYpAd0ECmbcDDEMdjACTRsgMaraW2JGqxAP/LK/9Km6cvv0KQEZuhBE7UwDnDgwLcRBK4H5t3BEyAoqoGCc7KPT01NIFCDYHUp1WEQdAoMgppAdNQGREVtQTTUBURBXUFV1KbL7E4TIYdzcMwH7NDPRg4yD9gZ7NC4ako5WLjC6p4PqPq+aUsTFr3/R7myxfFaGEDmA/6gtnAPBAnuXME/1ARjgIPoGIwFjqI6TIDUAsQGA5xEdRgLtErBN7o6t+k6A6ReUK/Ij19tX3oAAAAASUVORK5CYII=);
}
.cpp-container .enroll-headers .enroll-nav-item::before.active {
  color: black;
  font-size: 2rem;
  border: none;
  padding: 0 60px 0 33px !important;
}
@media (min-width:960px) {
  .cpp-container .enroll-headers .enroll-nav-item::before.active {
    font-size: 2.4rem;
  }
}
.cpp-container .enroll-headers .enroll-nav-item::before.active::before {
  display: none;
}
.cpp-container .enroll-headers .enroll-nav-item::before.active ~ .enroll-nav-item {
  border: none;
  padding: 0 60px 0 33px !important;
}
.cpp-container .enroll-headers .enroll-nav-item::before.active ~ .enroll-nav-item::before {
  display: none;
}
.cpp-container .enroll-headers--mobile {
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}
.cpp-container .enroll-headers--mobile .enroll-nav-item {
  border: 2px solid #f15c22;
}
.cpp-container .enroll-headers--mobile .enroll-nav-item::before {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAUCAYAAABxnDbHAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAADbSURBVHgBvdTNDYIwFMDxV+4e2EBxEeMYpAd0ECmbcDDEMdjACTRsgMaraW2JGqxAP/LK/9Km6cvv0KQEZuhBE7UwDnDgwLcRBK4H5t3BEyAoqoGCc7KPT01NIFCDYHUp1WEQdAoMgppAdNQGREVtQTTUBURBXUFV1KbL7E4TIYdzcMwH7NDPRg4yD9gZ7NC4ako5WLjC6p4PqPq+aUsTFr3/R7myxfFaGEDmA/6gtnAPBAnuXME/1ARjgIPoGIwFjqI6TIDUAsQGA5xEdRgLtErBN7o6t+k6A6ReUK/Ij19tX3oAAAAASUVORK5CYII=);
}
.cpp-container .enroll-headers--mobile .enroll-nav-item::after {
  content: unset;
}
.cpp-container .enroll-headers--mobile .enroll-nav-item:last-of-type::after {
  display: none;
}
@media (min-width:768px) {
  .cpp-container .enroll-headers--mobile {
    display: none;
  }
}
.cpp-container .checkbox input[type=checkbox]:checked + .checkmark {
  -webkit-box-shadow: 0 0 4px 1px rgba(241, 92, 34, 0.549);
  box-shadow: 0 0 4px 1px rgba(241, 92, 34, 0.549);
}
.cpp-container input[type=checkbox]:checked + .checkmark .check-stroke {
  background-color: #f15c22;
}
/*
 * Defaults Styles
 **
 * HTML Reset
 * Base styles
 */
/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
/********************************************************** Viewport */
@-webkit-viewport {
  width: device-width;
}
@-moz-viewport {
  width: device-width;
}
@-ms-viewport {
  width: device-width;
}
@-o-viewport {
  width: device-width;
}
@viewport {
  width: device-width;
}
/********************************************************** Box Sizing *
  Box Sizing
  Apply a natural box layout model to all elements - http://paulirish.com/2012/box-sizing-border-box-ftw/
  border-box polyfill for IE 6/7: https://github.com/Schepp/box-sizing-polyfill#readme

  http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
*/
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
  overflow-y: auto;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/********************************************************** General */
html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

img {
  max-width: 100%;
}

a {
  color: #222222;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
}
a:focus-visible,
a button:focus-visible {
  outline: 2px solid #222222;
  outline-offset: 3px;
}
a:hover, a:active {
  outline: 0;
}

/********************************************************** Typography */
body {
  background: #ffffff;
  color: #222222;
  font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

p {
  line-height: 1.5;
  margin: 0;
  padding: 0 0 1.5rem;
}

ul,
ol,
dl {
  line-height: 1.5;
  list-style: none;
  margin: 0 0 0 1.5rem;
  padding: 0 0 0.75rem;
}

p ul,
ul ul,
ol ul,
p ol,
ul ol,
ol ol {
  padding-bottom: 0;
}

strong {
  font-weight: bold;
}

code {
  font-size: 1.6rem;
  line-height: 1.5;
}

input,
textarea {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

/**********************************************************
  Clearfix
  css/app/utilities/_clearfix
*/
/*
 *
 * http://nicolasgallagher.com/micro-clearfix-hack/
 *
 * 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 are clearfixed.
 * 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;
}

/**
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */
.clearfix {
  zoom: 1;
}

.nowrap {
  white-space: nowrap;
}

.visually-hidden {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px);
}

/*
 * BRAND COLORS
 * These colors are set via  backend/tenant-options/[local,stage,prod].json
 * Each color is mapped from the colorPalette object in tenant-options into app state through Redux
 *
 * The input label text color
 * $input-label-color: process.env.INPUT_LABEL_COLOR;
 *
 * The input value text color
 * $input-value-color: process.env.INPUT_VALUE_COLOR;
 *
 * The color used to show valid input
 * $input-success-color: process.env.INPUT_SUCCESS_COLOR;
 * 
 * The color used to show invalid input
 * $input-error-color: process.env.INPUT_ERROR_COLOR;
 * 
 * The decorative border color placed around the input field
 * $input-border-color: process.env.INPUT_BORDER_COLOR;
 */
.cta-primary,
.cta-secondary {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-border-radius: 4px;
          border-radius: 4px;
  font-family: "OpenSans-Regular", Helvetica, Arial, sans-serif;
  font-size: 1.6rem;
  cursor: pointer;
}
.cta-primary.cta-primary,
.cta-secondary.cta-primary {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "OpenSans-SemiBold", Helvetica, Arial, sans-serif;
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  padding: 0 26px;
  line-height: 4.3rem;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}
@media (min-width:768px) {
  .cta-primary.cta-primary,
  .cta-secondary.cta-primary {
    margin: 0;
    width: auto;
  }
}
.cta-primary.cta-secondary,
.cta-secondary.cta-secondary {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-decoration: none;
  display: inline-block;
  padding: 0 26px;
  line-height: 4.3rem;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}
@media (min-width:768px) {
  .cta-primary.cta-secondary,
  .cta-secondary.cta-secondary {
    margin: 0;
    width: auto;
  }
}
.cta-primary[disabled],
.cta-secondary[disabled] {
  pointer-events: none;
  opacity: 0.5;
}

.button-wrapper {
  margin-top: 20px;
}

@font-face {
  font-family: "OpenSans-Light";
  font-style: "normal";
  font-weight: "normal";
  src: url("//s3.amazonaws.com/tendril-website/fonts/opensans-light.ttf") format("truetype");
}
@font-face {
  font-family: "OpenSans-Regular";
  font-style: "normal";
  font-weight: "normal";
  src: url("//s3.amazonaws.com/tendril-website/fonts/opensans-regular.ttf") format("truetype");
}
@font-face {
  font-family: "OpenSans-SemiBold";
  font-style: "normal";
  font-weight: "normal";
  src: url("//s3.amazonaws.com/tendril-website/fonts/opensans-semibold.ttf") format("truetype");
}
@font-face {
  font-family: "OpenSans-Bold";
  font-style: "normal";
  font-weight: "normal";
  src: url("//s3.amazonaws.com/tendril-website/fonts/opensans-bold.ttf") format("truetype");
}
@font-face {
  font-family: "Roboto-Light";
  font-style: "normal";
  font-weight: "normal";
  src: url("//tendril-website.s3.amazonaws.com/fonts/roboto-light.eot");
  src: url("//tendril-website.s3.amazonaws.com/fonts/roboto-light.woff") format("woff");
}
@font-face {
  font-family: "Roboto-Regular";
  font-style: "normal";
  font-weight: "normal";
  src: url("//tendril-website.s3.amazonaws.com/fonts/roboto-regular.eot");
  src: url("//tendril-website.s3.amazonaws.com/fonts/roboto-regular.woff") format("woff");
}
@font-face {
  font-family: "Roboto-Thin";
  font-style: "normal";
  font-weight: "normal";
  src: url("//tendril-website.s3.amazonaws.com/fonts/roboto-thin.eot");
  src: url("//tendril-website.s3.amazonaws.com/fonts/roboto-thin.woff") format("woff");
}
html {
  height: 100%;
}

body {
  background-color: #f8f8f8;
  font-family: "OpenSans-Light", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

strong {
  font-family: "OpenSans-SemiBold", Helvetica, Arial, sans-serif;
}

.primary-link {
  font-family: "OpenSans-SemiBold", Helvetica, Arial, sans-serif;
  text-decoration: none;
  padding: 2px 0;
  cursor: pointer;
}

.link-out:after {
  content: " ";
  width: 15px;
  height: 15px;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAAXNSR0IArs4c6QAAAjNJREFUSA3tls1KAlEUxxs/RtOtIRFShKGEmx4g0jeoHiHqASJ008aN4ke4cNG6toFJWr5BLeoFWrTowxxDaadSY9r/iAPD5crM1VlFF4a5955z/r97zty5M9KcBS0ej29C5lqSJNskueFw6IL92DHJQWQ+EAjcNxqNncFgYGfjAHEDlsJ8EHefRA7JZNLX7XY3WGfeGAKdbDZ7x7Oxc/l83ttqtWqYXwBMQeztCIiSnGJwgMkvNogdw6/r8XjCWOQna9OPYfcgiRo0/U6nM6qq6hliH0YlRUeG8zlWtK8PmrZPsE6nc4N4v9frjWH8gaRGcpY8Q/3CxpnRBlp0OBwEa+rtE3eV3slsv1AozCOzKvyXCJZOpxU21rIMCdZsNqvILABIlAcjuCUZomxuRVEq0FvGBonlcrkGifPazECCYTdWkNkK7cZUKvXOA8H+iOtpppISDM/sCoBViE2E0QKQ9SHdp86wWCy6ACsDFJRlmcpYJ0GjNlWGBKvX62WIh1DGLZTxzQik2YUzHMMucYKEbTYbldE0jKBCQDwzGZmVELdOZcSZ+qqtnHenVyWRSBzpbaaBBMNuLCGzyHg3vuiFeP12ux2C/wltLs1uGtjr9bYRFLHb7VRGQ5gGYO+mgSjfBb4Sa5lM5pkVERmbBpIoStMXEef5CgF5AqJz/0DRihn6//2Saoe3ilrs4RjaNayJgEO/3yf9H1wDLWwExP9HEr9x9C9iecPnq43399tyYbOCvxPa00dCXHCGAAAAAElFTkSuQmCC);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 7px;
  margin-top: 4px;
  margin-right: 7px;
}
