@charset "UTF-8";
/**
 * React Select
 * ============
 * Created by Jed Watson and Joss Mackison for KeystoneJS, http://www.keystonejs.com/
 * https://twitter.com/jedwatson https://twitter.com/jossmackison https://twitter.com/keystonejs
 * MIT License: https://github.com/JedWatson/react-select
*/
.Select {
  position: relative;
}
.Select input::-webkit-contacts-auto-fill-button,
.Select input::-webkit-credentials-auto-fill-button {
  display: none !important;
}
.Select input::-ms-clear {
  display: none !important;
}
.Select input::-ms-reveal {
  display: none !important;
}
.Select,
.Select div,
.Select input,
.Select span {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.Select.is-disabled .Select-arrow-zone {
  cursor: default;
  pointer-events: none;
  opacity: 0.35;
}
.Select.is-disabled > .Select-control {
  background-color: #f9f9f9;
}
.Select.is-disabled > .Select-control:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.Select.is-open > .Select-control {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  background: #fff;
  border-color: #b3b3b3 #ccc #d9d9d9;
}
.Select.is-open > .Select-control .Select-arrow {
  top: -2px;
  border-color: transparent transparent #999;
  border-width: 0 5px 5px;
}
.Select.is-searchable.is-open > .Select-control {
  cursor: text;
}
.Select.is-searchable.is-focused:not(.is-open) > .Select-control {
  cursor: text;
}
.Select.is-focused > .Select-control {
  background: #fff;
}
.Select.is-focused:not(.is-open) > .Select-control {
  border-color: #007eff;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(0, 126, 255, 0.1);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 3px rgba(0, 126, 255, 0.1);
  background: #fff;
}
.Select.has-value.is-clearable.Select--single > .Select-control .Select-value {
  padding-right: 42px;
}
.Select.has-value.Select--single > .Select-control .Select-value .Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value .Select-value-label {
  color: #333;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label {
  cursor: pointer;
  text-decoration: none;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:hover,
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  color: #007eff;
  outline: none;
  text-decoration: underline;
}
.Select.has-value.Select--single > .Select-control .Select-value a.Select-value-label:focus,
.Select.has-value.is-pseudo-focused.Select--single > .Select-control .Select-value a.Select-value-label:focus {
  background: #fff;
}
.Select.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select.is-open .Select-arrow,
.Select .Select-arrow-zone:hover > .Select-arrow {
  border-top-color: #666;
}
.Select.Select--rtl {
  direction: rtl;
  text-align: right;
}
.Select-control {
  background-color: #fff;
  border-color: #d9d9d9 #ccc #b3b3b3;
  border-radius: 4px;
  border: 1px solid #ccc;
  color: #333;
  cursor: default;
  display: table;
  border-spacing: 0;
  border-collapse: separate;
  height: 36px;
  outline: none;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.Select-control:hover {
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}
.Select-control .Select-input:focus {
  outline: none;
  background: #fff;
}
.Select-placeholder,
.Select--single > .Select-control .Select-value {
  bottom: 0;
  color: #aaa;
  left: 0;
  line-height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  position: absolute;
  right: 0;
  top: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.Select-input {
  height: 34px;
  padding-left: 10px;
  padding-right: 10px;
  vertical-align: middle;
}
.Select-input > input {
  width: 100%;
  background: none transparent;
  border: 0 none;
  -webkit-box-shadow: none;
  box-shadow: none;
  cursor: default;
  display: inline-block;
  font-family: inherit;
  font-size: inherit;
  margin: 0;
  outline: none;
  line-height: 17px;
  /* For IE 8 compatibility */
  padding: 8px 0 12px;
  /* For IE 8 compatibility */
  -webkit-appearance: none;
}
.is-focused .Select-input > input {
  cursor: text;
}
.has-value.is-pseudo-focused .Select-input {
  opacity: 0;
}
.Select-control:not(.is-searchable) > .Select-input {
  outline: none;
}
.Select-loading-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px;
}
.Select-loading {
  -webkit-animation: Select-animation-spin 400ms infinite linear;
  animation: Select-animation-spin 400ms infinite linear;
  width: 16px;
  height: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 50%;
  border: 2px solid #ccc;
  border-right-color: #333;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}
.Select-clear-zone {
  -webkit-animation: Select-animation-fadeIn 200ms;
  animation: Select-animation-fadeIn 200ms;
  color: #999;
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 17px;
}
.Select-clear-zone:hover {
  color: #D0021B;
}
.Select-clear {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
}
.Select--multi .Select-clear-zone {
  width: 17px;
}
.Select-arrow-zone {
  cursor: pointer;
  display: table-cell;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 25px;
  padding-right: 5px;
}
.Select--rtl .Select-arrow-zone {
  padding-right: 0;
  padding-left: 5px;
}
.Select-arrow {
  border-color: #999 transparent transparent;
  border-style: solid;
  border-width: 5px 5px 2.5px;
  display: inline-block;
  height: 0;
  width: 0;
  position: relative;
}
.Select-control > *:last-child {
  padding-right: 5px;
}
.Select--multi .Select-multi-value-wrapper {
  display: inline-block;
}
.Select .Select-aria-only {
  position: absolute;
  display: inline-block;
  height: 1px;
  width: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  float: left;
}
@-webkit-keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes Select-animation-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.Select-menu-outer {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #fff;
  border: 1px solid #ccc;
  border-top-color: #e6e6e6;
  -webkit-box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: -1px;
  max-height: 200px;
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  z-index: 1;
  -webkit-overflow-scrolling: touch;
}
.Select-menu {
  max-height: 198px;
  overflow-y: auto;
}
.Select-option {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-color: #fff;
  color: #666666;
  cursor: pointer;
  display: block;
  padding: 8px 10px;
}
.Select-option:last-child {
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.Select-option.is-selected {
  background-color: #f5faff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.04);
  color: #333;
}
.Select-option.is-focused {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  color: #333;
}
.Select-option.is-disabled {
  color: #cccccc;
  cursor: default;
}
.Select-noresults {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #999999;
  cursor: default;
  display: block;
  padding: 8px 10px;
}
.Select--multi .Select-input {
  vertical-align: middle;
  margin-left: 10px;
  padding: 0;
}
.Select--multi.Select--rtl .Select-input {
  margin-left: 0;
  margin-right: 10px;
}
.Select--multi.has-value .Select-input {
  margin-left: 5px;
}
.Select--multi .Select-value {
  background-color: #ebf5ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.08);
  border-radius: 2px;
  border: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border: 1px solid rgba(0, 126, 255, 0.24);
  color: #007eff;
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  margin-left: 5px;
  margin-top: 5px;
  vertical-align: top;
}
.Select--multi .Select-value-icon,
.Select--multi .Select-value-label {
  display: inline-block;
  vertical-align: middle;
}
.Select--multi .Select-value-label {
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  cursor: default;
  padding: 2px 5px;
}
.Select--multi a.Select-value-label {
  color: #007eff;
  cursor: pointer;
  text-decoration: none;
}
.Select--multi a.Select-value-label:hover {
  text-decoration: underline;
}
.Select--multi .Select-value-icon {
  cursor: pointer;
  border-bottom-left-radius: 2px;
  border-top-left-radius: 2px;
  border-right: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-right: 1px solid rgba(0, 126, 255, 0.24);
  padding: 1px 5px 3px;
}
.Select--multi .Select-value-icon:hover,
.Select--multi .Select-value-icon:focus {
  background-color: #d8eafd;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 113, 230, 0.08);
  color: #0071e6;
}
.Select--multi .Select-value-icon:active {
  background-color: #c2e0ff;
  /* Fallback color for IE 8 */
  background-color: rgba(0, 126, 255, 0.24);
}
.Select--multi.Select--rtl .Select-value {
  margin-left: 0;
  margin-right: 5px;
}
.Select--multi.Select--rtl .Select-value-icon {
  border-right: none;
  border-left: 1px solid #c2e0ff;
  /* Fallback color for IE 8 */
  border-left: 1px solid rgba(0, 126, 255, 0.24);
}
.Select--multi.is-disabled .Select-value {
  background-color: #fcfcfc;
  border: 1px solid #e3e3e3;
  color: #333;
}
.Select--multi.is-disabled .Select-value-icon {
  cursor: not-allowed;
  border-right: 1px solid #e3e3e3;
}
.Select--multi.is-disabled .Select-value-icon:hover,
.Select--multi.is-disabled .Select-value-icon:focus,
.Select--multi.is-disabled .Select-value-icon:active {
  background-color: #fcfcfc;
}
@keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@-webkit-keyframes Select-animation-spin {
  to {
    -webkit-transform: rotate(1turn);
  }
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.panel-body:before,
.panel-body:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.panel-body:after {
  clear: both;
}
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.panel-body:before,
.panel-body:after {
  content: " ";
  display: table;
}
.clearfix:after,
.container:after,
.container-fluid:after,
.row:after,
.form-horizontal .form-group:after,
.panel-body:after {
  clear: both;
}
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.affix {
  position: fixed;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.row {
  margin-left: -10px;
  margin-right: -10px;
}
.col-xs-1,
.col-sm-1,
.col-md-1,
.col-lg-1,
.col-xs-2,
.col-sm-2,
.col-md-2,
.col-lg-2,
.col-xs-3,
.col-sm-3,
.col-md-3,
.col-lg-3,
.col-xs-4,
.col-sm-4,
.col-md-4,
.col-lg-4,
.col-xs-5,
.col-sm-5,
.col-md-5,
.col-lg-5,
.col-xs-6,
.col-sm-6,
.col-md-6,
.col-lg-6,
.col-xs-7,
.col-sm-7,
.col-md-7,
.col-lg-7,
.col-xs-8,
.col-sm-8,
.col-md-8,
.col-lg-8,
.col-xs-9,
.col-sm-9,
.col-md-9,
.col-lg-9,
.col-xs-10,
.col-sm-10,
.col-md-10,
.col-lg-10,
.col-xs-11,
.col-sm-11,
.col-md-11,
.col-lg-11,
.col-xs-12,
.col-sm-12,
.col-md-12,
.col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 10px;
  padding-right: 10px;
}
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  float: left;
}
.col-xs-12 {
  width: 100%;
}
.col-xs-11 {
  width: 91.66666667%;
}
.col-xs-10 {
  width: 83.33333333%;
}
.col-xs-9 {
  width: 75%;
}
.col-xs-8 {
  width: 66.66666667%;
}
.col-xs-7 {
  width: 58.33333333%;
}
.col-xs-6 {
  width: 50%;
}
.col-xs-5 {
  width: 41.66666667%;
}
.col-xs-4 {
  width: 33.33333333%;
}
.col-xs-3 {
  width: 25%;
}
.col-xs-2 {
  width: 16.66666667%;
}
.col-xs-1 {
  width: 8.33333333%;
}
.col-xs-pull-12 {
  right: 100%;
}
.col-xs-pull-11 {
  right: 91.66666667%;
}
.col-xs-pull-10 {
  right: 83.33333333%;
}
.col-xs-pull-9 {
  right: 75%;
}
.col-xs-pull-8 {
  right: 66.66666667%;
}
.col-xs-pull-7 {
  right: 58.33333333%;
}
.col-xs-pull-6 {
  right: 50%;
}
.col-xs-pull-5 {
  right: 41.66666667%;
}
.col-xs-pull-4 {
  right: 33.33333333%;
}
.col-xs-pull-3 {
  right: 25%;
}
.col-xs-pull-2 {
  right: 16.66666667%;
}
.col-xs-pull-1 {
  right: 8.33333333%;
}
.col-xs-pull-0 {
  right: auto;
}
.col-xs-push-12 {
  left: 100%;
}
.col-xs-push-11 {
  left: 91.66666667%;
}
.col-xs-push-10 {
  left: 83.33333333%;
}
.col-xs-push-9 {
  left: 75%;
}
.col-xs-push-8 {
  left: 66.66666667%;
}
.col-xs-push-7 {
  left: 58.33333333%;
}
.col-xs-push-6 {
  left: 50%;
}
.col-xs-push-5 {
  left: 41.66666667%;
}
.col-xs-push-4 {
  left: 33.33333333%;
}
.col-xs-push-3 {
  left: 25%;
}
.col-xs-push-2 {
  left: 16.66666667%;
}
.col-xs-push-1 {
  left: 8.33333333%;
}
.col-xs-push-0 {
  left: auto;
}
.col-xs-offset-12 {
  margin-left: 100%;
}
.col-xs-offset-11 {
  margin-left: 91.66666667%;
}
.col-xs-offset-10 {
  margin-left: 83.33333333%;
}
.col-xs-offset-9 {
  margin-left: 75%;
}
.col-xs-offset-8 {
  margin-left: 66.66666667%;
}
.col-xs-offset-7 {
  margin-left: 58.33333333%;
}
.col-xs-offset-6 {
  margin-left: 50%;
}
.col-xs-offset-5 {
  margin-left: 41.66666667%;
}
.col-xs-offset-4 {
  margin-left: 33.33333333%;
}
.col-xs-offset-3 {
  margin-left: 25%;
}
.col-xs-offset-2 {
  margin-left: 16.66666667%;
}
.col-xs-offset-1 {
  margin-left: 8.33333333%;
}
.col-xs-offset-0 {
  margin-left: 0%;
}
@-ms-viewport {
  width: device-width;
}
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
  display: none !important;
}
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
  display: none !important;
}
.visible-print {
  display: none !important;
}
.visible-print-block {
  display: none !important;
}
.visible-print-inline {
  display: none !important;
}
.visible-print-inline-block {
  display: none !important;
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-width: 0;
}
legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: bold;
}
input[type="search"] {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
input[type="radio"],
input[type="checkbox"] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  line-height: normal;
}
input[type="file"] {
  display: block;
}
input[type="range"] {
  display: block;
  width: 100%;
}
select[multiple],
select[size] {
  height: auto;
}
input[type="file"]:focus,
input[type="radio"]:focus,
input[type="checkbox"]:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
output {
  display: block;
  padding-top: 7px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
}
.form-control {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
  -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s 0.5s ease-in-out;
  transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s 0.5s ease-in-out;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s 0.5s ease-in-out;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s 0.5s ease-in-out, -webkit-box-shadow ease-in-out .15s 0.5s ease-in-out;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control::-moz-placeholder {
  color: #777777;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #777777;
}
.form-control::-webkit-input-placeholder {
  color: #777777;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
  opacity: 1;
}
textarea.form-control {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: none;
}
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
  line-height: 34px;
  line-height: 1.42857143 \0;
}
input[type="date"].input-sm,
input[type="time"].input-sm,
input[type="datetime-local"].input-sm,
input[type="month"].input-sm {
  line-height: 30px;
}
input[type="date"].input-lg,
input[type="time"].input-lg,
input[type="datetime-local"].input-lg,
input[type="month"].input-lg {
  line-height: 46px;
}
.form-group {
  margin-bottom: 15px;
}
.radio,
.checkbox {
  position: relative;
  display: block;
  min-height: 20px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.radio label,
.checkbox label {
  padding-left: 20px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type="radio"],
.radio-inline input[type="radio"],
.checkbox input[type="checkbox"],
.checkbox-inline input[type="checkbox"] {
  position: absolute;
  margin-left: -20px;
  margin-top: 4px \9;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type="radio"][disabled],
input[type="checkbox"][disabled],
input[type="radio"].disabled,
input[type="checkbox"].disabled,
fieldset[disabled] input[type="radio"],
fieldset[disabled] input[type="checkbox"] {
  cursor: not-allowed;
}
.radio-inline.disabled,
.checkbox-inline.disabled,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.radio.disabled label,
.checkbox.disabled label,
fieldset[disabled] .radio label,
fieldset[disabled] .checkbox label {
  cursor: not-allowed;
}
.form-control-static {
  padding-top: 7px;
  padding-bottom: 7px;
  margin-bottom: 0;
}
.form-control-static.input-lg,
.form-control-static.input-sm {
  padding-left: 0;
  padding-right: 0;
}
.input-sm,
.form-horizontal .form-group-sm .form-control {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-sm {
  height: 30px;
  line-height: 30px;
}
textarea.input-sm,
select[multiple].input-sm {
  height: auto;
}
.input-lg,
.form-horizontal .form-group-lg .form-control {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
select.input-lg {
  height: 46px;
  line-height: 46px;
}
textarea.input-lg,
select[multiple].input-lg {
  height: auto;
}
.has-feedback {
  position: relative;
}
.has-feedback .form-control {
  padding-right: 42.5px;
}
.form-control-feedback {
  position: absolute;
  top: 25px;
  right: 0;
  z-index: 2;
  display: block;
  width: 34px;
  height: 34px;
  line-height: 34px;
  text-align: center;
}
.input-lg + .form-control-feedback {
  width: 46px;
  height: 46px;
  line-height: 46px;
}
.input-sm + .form-control-feedback {
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.has-success .form-control-feedback {
  color: #3c763d;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-warning .form-control-feedback {
  color: #8a6d3b;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-error .form-control-feedback {
  color: #a94442;
}
.has-feedback label.sr-only ~ .form-control-feedback {
  top: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #737373;
}
.form-horizontal .radio,
.form-horizontal .checkbox,
.form-horizontal .radio-inline,
.form-horizontal .checkbox-inline {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 7px;
}
.form-horizontal .radio,
.form-horizontal .checkbox {
  min-height: 27px;
}
.form-horizontal .form-group {
  margin-left: -10px;
  margin-right: -10px;
}
.form-horizontal .has-feedback .form-control-feedback {
  top: 0;
  right: 10px;
}
.panel {
  margin-bottom: 20px;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
}
.panel-body {
  padding: 15px;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel-heading > .dropdown .dropdown-toggle {
  color: inherit;
}
.panel-title {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 16px;
  color: inherit;
}
.panel-title > a {
  color: inherit;
}
.panel-footer {
  padding: 10px 15px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .list-group {
  margin-bottom: 0;
}
.panel > .list-group .list-group-item {
  border-width: 1px 0;
  border-radius: 0;
}
.panel > .list-group:first-child .list-group-item:first-child {
  border-top: 0;
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .list-group:last-child .list-group-item:last-child {
  border-bottom: 0;
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel-heading + .list-group .list-group-item:first-child {
  border-top-width: 0;
}
.list-group + .panel-footer {
  border-top-width: 0;
}
.panel > .table,
.panel > .table-responsive > .table,
.panel > .panel-collapse > .table {
  margin-bottom: 0;
}
.panel > .table:first-child,
.panel > .table-responsive:first-child > .table:first-child {
  border-top-right-radius: 3px;
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:first-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
  border-top-left-radius: 3px;
}
.panel > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child,
.panel > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child,
.panel > .table:first-child > tbody:first-child > tr:first-child th:last-child,
.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
  border-top-right-radius: 3px;
}
.panel > .table:last-child,
.panel > .table-responsive:last-child > .table:last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
  border-bottom-left-radius: 3px;
}
.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child,
.panel > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child,
.panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child,
.panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
  border-bottom-right-radius: 3px;
}
.panel > .panel-body + .table,
.panel > .panel-body + .table-responsive {
  border-top: 1px solid #ddd;
}
.panel > .table > tbody:first-child > tr:first-child th,
.panel > .table > tbody:first-child > tr:first-child td {
  border-top: 0;
}
.panel > .table-bordered,
.panel > .table-responsive > .table-bordered {
  border: 0;
}
.panel > .table-bordered > thead > tr > th:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:first-child,
.panel > .table-bordered > tbody > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:first-child,
.panel > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child,
.panel > .table-bordered > thead > tr > td:first-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:first-child,
.panel > .table-bordered > tbody > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:first-child,
.panel > .table-bordered > tfoot > tr > td:first-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
  border-left: 0;
}
.panel > .table-bordered > thead > tr > th:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > th:last-child,
.panel > .table-bordered > tbody > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > th:last-child,
.panel > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child,
.panel > .table-bordered > thead > tr > td:last-child,
.panel > .table-responsive > .table-bordered > thead > tr > td:last-child,
.panel > .table-bordered > tbody > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tbody > tr > td:last-child,
.panel > .table-bordered > tfoot > tr > td:last-child,
.panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
  border-right: 0;
}
.panel > .table-bordered > thead > tr:first-child > td,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > td,
.panel > .table-bordered > tbody > tr:first-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > td,
.panel > .table-bordered > thead > tr:first-child > th,
.panel > .table-responsive > .table-bordered > thead > tr:first-child > th,
.panel > .table-bordered > tbody > tr:first-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
  border-bottom: 0;
}
.panel > .table-bordered > tbody > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > td,
.panel > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td,
.panel > .table-bordered > tbody > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tbody > tr:last-child > th,
.panel > .table-bordered > tfoot > tr:last-child > th,
.panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
  border-bottom: 0;
}
.panel > .table-responsive {
  border: 0;
  margin-bottom: 0;
}
.panel-group {
  margin-bottom: 20px;
}
.panel-group .panel {
  margin-bottom: 0;
  border-radius: 4px;
}
.panel-group .panel + .panel {
  margin-top: 5px;
}
.panel-group .panel-heading {
  border-bottom: 0;
}
.panel-group .panel-heading + .panel-collapse > .panel-body {
  border-top: 1px solid #ddd;
}
.panel-group .panel-footer {
  border-top: 0;
}
.panel-group .panel-footer + .panel-collapse .panel-body {
  border-bottom: 1px solid #ddd;
}
.panel-default {
  border-color: #ddd;
}
.panel-default > .panel-heading {
  color: #333333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-default > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ddd;
}
.panel-default > .panel-heading .badge {
  color: #f5f5f5;
  background-color: #333333;
}
.panel-default > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ddd;
}
.panel-primary {
  border-color: #428bca;
}
.panel-primary > .panel-heading {
  color: #fff;
  background-color: #428bca;
  border-color: #428bca;
}
.panel-primary > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #428bca;
}
.panel-primary > .panel-heading .badge {
  color: #428bca;
  background-color: #fff;
}
.panel-primary > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #428bca;
}
.panel-success {
  border-color: #d6e9c6;
}
.panel-success > .panel-heading {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
.panel-success > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #d6e9c6;
}
.panel-success > .panel-heading .badge {
  color: #dff0d8;
  background-color: #3c763d;
}
.panel-success > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #d6e9c6;
}
.panel-info {
  border-color: #bce8f1;
}
.panel-info > .panel-heading {
  color: #31708f;
  background-color: #d9edf7;
  border-color: #bce8f1;
}
.panel-info > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #bce8f1;
}
.panel-info > .panel-heading .badge {
  color: #d9edf7;
  background-color: #31708f;
}
.panel-info > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #bce8f1;
}
.panel-warning {
  border-color: #faebcc;
}
.panel-warning > .panel-heading {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}
.panel-warning > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #faebcc;
}
.panel-warning > .panel-heading .badge {
  color: #fcf8e3;
  background-color: #8a6d3b;
}
.panel-warning > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #faebcc;
}
.panel-danger {
  border-color: #ebccd1;
}
.panel-danger > .panel-heading {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}
.panel-danger > .panel-heading + .panel-collapse > .panel-body {
  border-top-color: #ebccd1;
}
.panel-danger > .panel-heading .badge {
  color: #f2dede;
  background-color: #a94442;
}
.panel-danger > .panel-footer + .panel-collapse > .panel-body {
  border-bottom-color: #ebccd1;
}
.list-group {
  margin-bottom: 20px;
  padding-left: 0;
}
.list-group-item {
  position: relative;
  display: block;
  padding: 10px 15px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.list-group-item:first-child {
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
}
.list-group-item:last-child {
  margin-bottom: 0;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
}
.list-group-item > .badge {
  float: right;
}
.list-group-item > .badge + .badge {
  margin-right: 5px;
}
a.list-group-item {
  color: #555;
}
a.list-group-item .list-group-item-heading {
  color: #333;
}
a.list-group-item:hover,
a.list-group-item:focus {
  text-decoration: none;
  color: #555;
  background-color: #f5f5f5;
}
.list-group-item.disabled,
.list-group-item.disabled:hover,
.list-group-item.disabled:focus {
  background-color: #eeeeee;
  color: #777777;
}
.list-group-item.disabled .list-group-item-heading,
.list-group-item.disabled:hover .list-group-item-heading,
.list-group-item.disabled:focus .list-group-item-heading {
  color: inherit;
}
.list-group-item.disabled .list-group-item-text,
.list-group-item.disabled:hover .list-group-item-text,
.list-group-item.disabled:focus .list-group-item-text {
  color: #777777;
}
.list-group-item.active,
.list-group-item.active:hover,
.list-group-item.active:focus {
  z-index: 2;
  color: #fff;
  background-color: #428bca;
  border-color: #428bca;
}
.list-group-item.active .list-group-item-heading,
.list-group-item.active:hover .list-group-item-heading,
.list-group-item.active:focus .list-group-item-heading,
.list-group-item.active .list-group-item-heading > small,
.list-group-item.active:hover .list-group-item-heading > small,
.list-group-item.active:focus .list-group-item-heading > small,
.list-group-item.active .list-group-item-heading > .small,
.list-group-item.active:hover .list-group-item-heading > .small,
.list-group-item.active:focus .list-group-item-heading > .small {
  color: inherit;
}
.list-group-item.active .list-group-item-text,
.list-group-item.active:hover .list-group-item-text,
.list-group-item.active:focus .list-group-item-text {
  color: #e1edf7;
}
.list-group-item-success {
  color: #3c763d;
  background-color: #dff0d8;
}
a.list-group-item-success {
  color: #3c763d;
}
a.list-group-item-success .list-group-item-heading {
  color: inherit;
}
a.list-group-item-success:hover,
a.list-group-item-success:focus {
  color: #3c763d;
  background-color: #d0e9c6;
}
a.list-group-item-success.active,
a.list-group-item-success.active:hover,
a.list-group-item-success.active:focus {
  color: #fff;
  background-color: #3c763d;
  border-color: #3c763d;
}
.list-group-item-info {
  color: #31708f;
  background-color: #d9edf7;
}
a.list-group-item-info {
  color: #31708f;
}
a.list-group-item-info .list-group-item-heading {
  color: inherit;
}
a.list-group-item-info:hover,
a.list-group-item-info:focus {
  color: #31708f;
  background-color: #c4e3f3;
}
a.list-group-item-info.active,
a.list-group-item-info.active:hover,
a.list-group-item-info.active:focus {
  color: #fff;
  background-color: #31708f;
  border-color: #31708f;
}
.list-group-item-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
}
a.list-group-item-warning {
  color: #8a6d3b;
}
a.list-group-item-warning .list-group-item-heading {
  color: inherit;
}
a.list-group-item-warning:hover,
a.list-group-item-warning:focus {
  color: #8a6d3b;
  background-color: #faf2cc;
}
a.list-group-item-warning.active,
a.list-group-item-warning.active:hover,
a.list-group-item-warning.active:focus {
  color: #fff;
  background-color: #8a6d3b;
  border-color: #8a6d3b;
}
.list-group-item-danger {
  color: #a94442;
  background-color: #f2dede;
}
a.list-group-item-danger {
  color: #a94442;
}
a.list-group-item-danger .list-group-item-heading {
  color: inherit;
}
a.list-group-item-danger:hover,
a.list-group-item-danger:focus {
  color: #a94442;
  background-color: #ebcccc;
}
a.list-group-item-danger.active,
a.list-group-item-danger.active:hover,
a.list-group-item-danger.active:focus {
  color: #fff;
  background-color: #a94442;
  border-color: #a94442;
}
.list-group-item-heading {
  margin-top: 0;
  margin-bottom: 5px;
}
.list-group-item-text {
  margin-bottom: 0;
  line-height: 1.3;
}
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
@font-face {
  font-family: 'Glyphicons Halflings';
  src: url(https://cdn.porch.com/v2/assets/glyphicons-halflings-regular.eot?7ad17c6085dee9a33787bac28fb23d46);
  src: url(https://cdn.porch.com/v2/assets/glyphicons-halflings-regular.eot?7ad17c6085dee9a33787bac28fb23d46?#iefix) format('embedded-opentype'), url(https://cdn.porch.com/v2/assets/glyphicons-halflings-regular.woff?68ed1dac06bf0409c18ae7bc62889170) format('woff'), url(https://cdn.porch.com/v2/assets/glyphicons-halflings-regular.ttf?e49d52e74b7689a0727def99da31f3eb) format('truetype'), url(https://cdn.porch.com/v2/assets/glyphicons-halflings-regular.svg?32941d6330044744c02493835b799e90#glyphicons_halflingsregular) format('svg');
}
.glyphicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'Glyphicons Halflings';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.glyphicon-asterisk:before {
  content: "*";
}
.glyphicon-plus:before {
  content: "+";
}
.glyphicon-euro:before {
  content: "\20AC";
}
.glyphicon-minus:before {
  content: "\2212";
}
.glyphicon-cloud:before {
  content: "\2601";
}
.glyphicon-envelope:before {
  content: "\2709";
}
.glyphicon-pencil:before {
  content: "\270F";
}
.glyphicon-glass:before {
  content: "\E001";
}
.glyphicon-music:before {
  content: "\E002";
}
.glyphicon-search:before {
  content: "\E003";
}
.glyphicon-heart:before {
  content: "\E005";
}
.glyphicon-star:before {
  content: "\E006";
}
.glyphicon-star-empty:before {
  content: "\E007";
}
.glyphicon-user:before {
  content: "\E008";
}
.glyphicon-film:before {
  content: "\E009";
}
.glyphicon-th-large:before {
  content: "\E010";
}
.glyphicon-th:before {
  content: "\E011";
}
.glyphicon-th-list:before {
  content: "\E012";
}
.glyphicon-ok:before {
  content: "\E013";
}
.glyphicon-remove:before {
  content: "\E014";
}
.glyphicon-zoom-in:before {
  content: "\E015";
}
.glyphicon-zoom-out:before {
  content: "\E016";
}
.glyphicon-off:before {
  content: "\E017";
}
.glyphicon-signal:before {
  content: "\E018";
}
.glyphicon-cog:before {
  content: "\E019";
}
.glyphicon-trash:before {
  content: "\E020";
}
.glyphicon-home:before {
  content: "\E021";
}
.glyphicon-file:before {
  content: "\E022";
}
.glyphicon-time:before {
  content: "\E023";
}
.glyphicon-road:before {
  content: "\E024";
}
.glyphicon-download-alt:before {
  content: "\E025";
}
.glyphicon-download:before {
  content: "\E026";
}
.glyphicon-upload:before {
  content: "\E027";
}
.glyphicon-inbox:before {
  content: "\E028";
}
.glyphicon-play-circle:before {
  content: "\E029";
}
.glyphicon-repeat:before {
  content: "\E030";
}
.glyphicon-refresh:before {
  content: "\E031";
}
.glyphicon-list-alt:before {
  content: "\E032";
}
.glyphicon-lock:before {
  content: "\E033";
}
.glyphicon-flag:before {
  content: "\E034";
}
.glyphicon-headphones:before {
  content: "\E035";
}
.glyphicon-volume-off:before {
  content: "\E036";
}
.glyphicon-volume-down:before {
  content: "\E037";
}
.glyphicon-volume-up:before {
  content: "\E038";
}
.glyphicon-qrcode:before {
  content: "\E039";
}
.glyphicon-barcode:before {
  content: "\E040";
}
.glyphicon-tag:before {
  content: "\E041";
}
.glyphicon-tags:before {
  content: "\E042";
}
.glyphicon-book:before {
  content: "\E043";
}
.glyphicon-bookmark:before {
  content: "\E044";
}
.glyphicon-print:before {
  content: "\E045";
}
.glyphicon-camera:before {
  content: "\E046";
}
.glyphicon-font:before {
  content: "\E047";
}
.glyphicon-bold:before {
  content: "\E048";
}
.glyphicon-italic:before {
  content: "\E049";
}
.glyphicon-text-height:before {
  content: "\E050";
}
.glyphicon-text-width:before {
  content: "\E051";
}
.glyphicon-align-left:before {
  content: "\E052";
}
.glyphicon-align-center:before {
  content: "\E053";
}
.glyphicon-align-right:before {
  content: "\E054";
}
.glyphicon-align-justify:before {
  content: "\E055";
}
.glyphicon-list:before {
  content: "\E056";
}
.glyphicon-indent-left:before {
  content: "\E057";
}
.glyphicon-indent-right:before {
  content: "\E058";
}
.glyphicon-facetime-video:before {
  content: "\E059";
}
.glyphicon-picture:before {
  content: "\E060";
}
.glyphicon-map-marker:before {
  content: "\E062";
}
.glyphicon-adjust:before {
  content: "\E063";
}
.glyphicon-tint:before {
  content: "\E064";
}
.glyphicon-edit:before {
  content: "\E065";
}
.glyphicon-share:before {
  content: "\E066";
}
.glyphicon-check:before {
  content: "\E067";
}
.glyphicon-move:before {
  content: "\E068";
}
.glyphicon-step-backward:before {
  content: "\E069";
}
.glyphicon-fast-backward:before {
  content: "\E070";
}
.glyphicon-backward:before {
  content: "\E071";
}
.glyphicon-play:before {
  content: "\E072";
}
.glyphicon-pause:before {
  content: "\E073";
}
.glyphicon-stop:before {
  content: "\E074";
}
.glyphicon-forward:before {
  content: "\E075";
}
.glyphicon-fast-forward:before {
  content: "\E076";
}
.glyphicon-step-forward:before {
  content: "\E077";
}
.glyphicon-eject:before {
  content: "\E078";
}
.glyphicon-chevron-left:before {
  content: "\E079";
}
.glyphicon-chevron-right:before {
  content: "\E080";
}
.glyphicon-plus-sign:before {
  content: "\E081";
}
.glyphicon-minus-sign:before {
  content: "\E082";
}
.glyphicon-remove-sign:before {
  content: "\E083";
}
.glyphicon-ok-sign:before {
  content: "\E084";
}
.glyphicon-question-sign:before {
  content: "\E085";
}
.glyphicon-info-sign:before {
  content: "\E086";
}
.glyphicon-screenshot:before {
  content: "\E087";
}
.glyphicon-remove-circle:before {
  content: "\E088";
}
.glyphicon-ok-circle:before {
  content: "\E089";
}
.glyphicon-ban-circle:before {
  content: "\E090";
}
.glyphicon-arrow-left:before {
  content: "\E091";
}
.glyphicon-arrow-right:before {
  content: "\E092";
}
.glyphicon-arrow-up:before {
  content: "\E093";
}
.glyphicon-arrow-down:before {
  content: "\E094";
}
.glyphicon-share-alt:before {
  content: "\E095";
}
.glyphicon-resize-full:before {
  content: "\E096";
}
.glyphicon-resize-small:before {
  content: "\E097";
}
.glyphicon-exclamation-sign:before {
  content: "\E101";
}
.glyphicon-gift:before {
  content: "\E102";
}
.glyphicon-leaf:before {
  content: "\E103";
}
.glyphicon-fire:before {
  content: "\E104";
}
.glyphicon-eye-open:before {
  content: "\E105";
}
.glyphicon-eye-close:before {
  content: "\E106";
}
.glyphicon-warning-sign:before {
  content: "\E107";
}
.glyphicon-plane:before {
  content: "\E108";
}
.glyphicon-calendar:before {
  content: "\E109";
}
.glyphicon-random:before {
  content: "\E110";
}
.glyphicon-comment:before {
  content: "\E111";
}
.glyphicon-magnet:before {
  content: "\E112";
}
.glyphicon-chevron-up:before {
  content: "\E113";
}
.glyphicon-chevron-down:before {
  content: "\E114";
}
.glyphicon-retweet:before {
  content: "\E115";
}
.glyphicon-shopping-cart:before {
  content: "\E116";
}
.glyphicon-folder-close:before {
  content: "\E117";
}
.glyphicon-folder-open:before {
  content: "\E118";
}
.glyphicon-resize-vertical:before {
  content: "\E119";
}
.glyphicon-resize-horizontal:before {
  content: "\E120";
}
.glyphicon-hdd:before {
  content: "\E121";
}
.glyphicon-bullhorn:before {
  content: "\E122";
}
.glyphicon-bell:before {
  content: "\E123";
}
.glyphicon-certificate:before {
  content: "\E124";
}
.glyphicon-thumbs-up:before {
  content: "\E125";
}
.glyphicon-thumbs-down:before {
  content: "\E126";
}
.glyphicon-hand-right:before {
  content: "\E127";
}
.glyphicon-hand-left:before {
  content: "\E128";
}
.glyphicon-hand-up:before {
  content: "\E129";
}
.glyphicon-hand-down:before {
  content: "\E130";
}
.glyphicon-circle-arrow-right:before {
  content: "\E131";
}
.glyphicon-circle-arrow-left:before {
  content: "\E132";
}
.glyphicon-circle-arrow-up:before {
  content: "\E133";
}
.glyphicon-circle-arrow-down:before {
  content: "\E134";
}
.glyphicon-globe:before {
  content: "\E135";
}
.glyphicon-wrench:before {
  content: "\E136";
}
.glyphicon-tasks:before {
  content: "\E137";
}
.glyphicon-filter:before {
  content: "\E138";
}
.glyphicon-briefcase:before {
  content: "\E139";
}
.glyphicon-fullscreen:before {
  content: "\E140";
}
.glyphicon-dashboard:before {
  content: "\E141";
}
.glyphicon-paperclip:before {
  content: "\E142";
}
.glyphicon-heart-empty:before {
  content: "\E143";
}
.glyphicon-link:before {
  content: "\E144";
}
.glyphicon-phone:before {
  content: "\E145";
}
.glyphicon-pushpin:before {
  content: "\E146";
}
.glyphicon-usd:before {
  content: "\E148";
}
.glyphicon-gbp:before {
  content: "\E149";
}
.glyphicon-sort:before {
  content: "\E150";
}
.glyphicon-sort-by-alphabet:before {
  content: "\E151";
}
.glyphicon-sort-by-alphabet-alt:before {
  content: "\E152";
}
.glyphicon-sort-by-order:before {
  content: "\E153";
}
.glyphicon-sort-by-order-alt:before {
  content: "\E154";
}
.glyphicon-sort-by-attributes:before {
  content: "\E155";
}
.glyphicon-sort-by-attributes-alt:before {
  content: "\E156";
}
.glyphicon-unchecked:before {
  content: "\E157";
}
.glyphicon-expand:before {
  content: "\E158";
}
.glyphicon-collapse-down:before {
  content: "\E159";
}
.glyphicon-collapse-up:before {
  content: "\E160";
}
.glyphicon-log-in:before {
  content: "\E161";
}
.glyphicon-flash:before {
  content: "\E162";
}
.glyphicon-log-out:before {
  content: "\E163";
}
.glyphicon-new-window:before {
  content: "\E164";
}
.glyphicon-record:before {
  content: "\E165";
}
.glyphicon-save:before {
  content: "\E166";
}
.glyphicon-open:before {
  content: "\E167";
}
.glyphicon-saved:before {
  content: "\E168";
}
.glyphicon-import:before {
  content: "\E169";
}
.glyphicon-export:before {
  content: "\E170";
}
.glyphicon-send:before {
  content: "\E171";
}
.glyphicon-floppy-disk:before {
  content: "\E172";
}
.glyphicon-floppy-saved:before {
  content: "\E173";
}
.glyphicon-floppy-remove:before {
  content: "\E174";
}
.glyphicon-floppy-save:before {
  content: "\E175";
}
.glyphicon-floppy-open:before {
  content: "\E176";
}
.glyphicon-credit-card:before {
  content: "\E177";
}
.glyphicon-transfer:before {
  content: "\E178";
}
.glyphicon-cutlery:before {
  content: "\E179";
}
.glyphicon-header:before {
  content: "\E180";
}
.glyphicon-compressed:before {
  content: "\E181";
}
.glyphicon-earphone:before {
  content: "\E182";
}
.glyphicon-phone-alt:before {
  content: "\E183";
}
.glyphicon-tower:before {
  content: "\E184";
}
.glyphicon-stats:before {
  content: "\E185";
}
.glyphicon-sd-video:before {
  content: "\E186";
}
.glyphicon-hd-video:before {
  content: "\E187";
}
.glyphicon-subtitles:before {
  content: "\E188";
}
.glyphicon-sound-stereo:before {
  content: "\E189";
}
.glyphicon-sound-dolby:before {
  content: "\E190";
}
.glyphicon-sound-5-1:before {
  content: "\E191";
}
.glyphicon-sound-6-1:before {
  content: "\E192";
}
.glyphicon-sound-7-1:before {
  content: "\E193";
}
.glyphicon-copyright-mark:before {
  content: "\E194";
}
.glyphicon-registration-mark:before {
  content: "\E195";
}
.glyphicon-cloud-download:before {
  content: "\E197";
}
.glyphicon-cloud-upload:before {
  content: "\E198";
}
.glyphicon-tree-conifer:before {
  content: "\E199";
}
.glyphicon-tree-deciduous:before {
  content: "\E200";
}
table {
  background-color: transparent;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 20px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
  border-bottom: 2px solid #ddd;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table > tbody + tbody {
  border-top: 2px solid #ddd;
}
.table .table {
  background-color: #fff;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
  border-bottom-width: 2px;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  position: static;
  float: none;
  display: table-cell;
}
.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
  background-color: #f5f5f5;
}
.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
  background-color: #e8e8e8;
}
.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
  background-color: #dff0d8;
}
.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
  background-color: #d0e9c6;
}
.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
  background-color: #d9edf7;
}
.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
  background-color: #c4e3f3;
}
.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
  background-color: #fcf8e3;
}
.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
  background-color: #faf2cc;
}
.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
  background-color: #f2dede;
}
.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
  background-color: #ebcccc;
}
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
a {
  background: transparent;
}
a:active,
a:hover {
  outline: 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
mark {
  background: #ff0;
  color: #000;
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 1em 40px;
}
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
}
pre {
  overflow: auto;
}
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}
button {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
input {
  line-height: normal;
}
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
}
optgroup {
  font-weight: bold;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
}
.media,
.media-body {
  overflow: hidden;
  zoom: 1;
}
.media,
.media .media {
  margin-top: 15px;
}
.media:first-child {
  margin-top: 0;
}
.media-object {
  display: block;
}
.media-heading {
  margin: 0 0 5px;
}
.media > .pull-left {
  margin-right: 10px;
}
.media > .pull-right {
  margin-left: 10px;
}
.media-list {
  padding-left: 0;
  list-style: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group[class*="col-"] {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 46px;
  line-height: 46px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn,
select[multiple].input-group-lg > .form-control,
select[multiple].input-group-lg > .input-group-addon,
select[multiple].input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  height: 30px;
  padding: 4px 8px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn,
select[multiple].input-group-sm > .form-control,
select[multiple].input-group-sm > .input-group-addon,
select[multiple].input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child),
.input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url(https://cdn.porch.com/v2/assets/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713);
  src: url(https://cdn.porch.com/v2/assets/fontawesome-webfont.eot?674f50d287a8c48dc19ba404d20fe713?#iefix&v=4.7.0) format('embedded-opentype'), url(https://cdn.porch.com/v2/assets/fontawesome-webfont.woff2?af7ae505a9eed503f8b8e6982036873e) format('woff2'), url(https://cdn.porch.com/v2/assets/fontawesome-webfont.woff?fee66e712a8a08eef5805a46892932ad) format('woff'), url(https://cdn.porch.com/v2/assets/fontawesome-webfont.ttf?b06871f281fee6b241d60582ae9369b9) format('truetype'), url(https://cdn.porch.com/v2/assets/fontawesome-webfont.svg?912ec66d7572ff821749319396470bde#fontawesomeregular) format('svg');
  font-weight: normal;
  font-style: normal;
}
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-user-secret:before {
  content: "\F21B";
}
.fa-search:before {
  content: "\F002";
}
.fa-envelope-o:before {
  content: "\F003";
}
.fa-heart:before {
  content: "\F004";
}
.fa-star:before {
  content: "\F005";
}
.fa-star-o:before {
  content: "\F006";
}
.fa-user:before {
  content: "\F007";
}
.fa-th-large:before {
  content: "\F009";
}
.fa-th:before {
  content: "\F00A";
}
.fa-th-list:before {
  content: "\F00B";
}
.fa-check:before {
  content: "\F00C";
}
.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\F00D";
}
.fa-gear:before,
.fa-cog:before {
  content: "\F013";
}
.fa-trash-o:before {
  content: "\F014";
}
.fa-home:before {
  content: "\F015";
}
.fa-file-o:before {
  content: "\F016";
}
.fa-clock-o:before {
  content: "\F017";
}
.fa-download:before {
  content: "\F019";
}
.fa-arrow-circle-o-down:before {
  content: "\F01A";
}
.fa-arrow-circle-o-up:before {
  content: "\F01B";
}
.fa-inbox:before {
  content: "\F01C";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\F01E";
}
.fa-refresh:before {
  content: "\F021";
}
.fa-list-alt:before {
  content: "\F022";
}
.fa-lock:before {
  content: "\F023";
}
.fa-flag:before {
  content: "\F024";
}
.fa-tag:before {
  content: "\F02B";
}
.fa-tags:before {
  content: "\F02C";
}
.fa-book:before {
  content: "\F02D";
}
.fa-bookmark:before {
  content: "\F02E";
}
.fa-print:before {
  content: "\F02F";
}
.fa-camera:before {
  content: "\F030";
}
.fa-align-left:before {
  content: "\F036";
}
.fa-list:before {
  content: "\F03A";
}
.fa-video-camera:before {
  content: "\F03D";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\F03E";
}
.fa-pencil:before {
  content: "\F040";
}
.fa-map-marker:before {
  content: "\F041";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\F044";
}
.fa-share-square-o:before {
  content: "\F045";
}
.fa-check-square-o:before {
  content: "\F046";
}
.fa-play:before {
  content: "\F04B";
}
.fa-pause:before {
  content: "\F04C";
}
.fa-chevron-left:before {
  content: "\F053";
}
.fa-chevron-right:before {
  content: "\F054";
}
.fa-plus-circle:before {
  content: "\F055";
}
.fa-minus-circle:before {
  content: "\F056";
}
.fa-times-circle:before {
  content: "\F057";
}
.fa-check-circle:before {
  content: "\F058";
}
.fa-question-circle:before {
  content: "\F059";
}
.fa-info-circle:before {
  content: "\F05A";
}
.fa-times-circle-o:before {
  content: "\F05C";
}
.fa-check-circle-o:before {
  content: "\F05D";
}
.fa-arrow-left:before {
  content: "\F060";
}
.fa-arrow-right:before {
  content: "\F061";
}
.fa-arrow-up:before {
  content: "\F062";
}
.fa-arrow-down:before {
  content: "\F063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\F064";
}
.fa-plus:before {
  content: "\F067";
}
.fa-minus:before {
  content: "\F068";
}
.fa-asterisk:before {
  content: "\F069";
}
.fa-exclamation-circle:before {
  content: "\F06A";
}
.fa-eye:before {
  content: "\F06E";
}
.fa-eye-slash:before {
  content: "\F070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\F071";
}
.fa-calendar:before {
  content: "\F073";
}
.fa-comment:before {
  content: "\F075";
}
.fa-chevron-up:before {
  content: "\F077";
}
.fa-chevron-down:before {
  content: "\F078";
}
.fa-shopping-cart:before {
  content: "\F07A";
}
.fa-folder-open:before {
  content: "\F07C";
}
.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\F080";
}
.fa-facebook-square:before {
  content: "\F082";
}
.fa-camera-retro:before {
  content: "\F083";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\F085";
}
.fa-comments:before {
  content: "\F086";
}
.fa-thumbs-o-up:before {
  content: "\F087";
}
.fa-thumbs-o-down:before {
  content: "\F088";
}
.fa-heart-o:before {
  content: "\F08A";
}
.fa-sign-out:before {
  content: "\F08B";
}
.fa-external-link:before {
  content: "\F08E";
}
.fa-sign-in:before {
  content: "\F090";
}
.fa-trophy:before {
  content: "\F091";
}
.fa-upload:before {
  content: "\F093";
}
.fa-phone:before {
  content: "\F095";
}
.fa-square-o:before {
  content: "\F096";
}
.fa-bookmark-o:before {
  content: "\F097";
}
.fa-twitter:before {
  content: "\F099";
}
.fa-facebook:before {
  content: "\F09A";
}
.fa-credit-card:before {
  content: "\F09D";
}
.fa-certificate:before {
  content: "\F0A3";
}
.fa-hand-o-right:before {
  content: "\F0A4";
}
.fa-hand-o-left:before {
  content: "\F0A5";
}
.fa-hand-o-up:before {
  content: "\F0A6";
}
.fa-hand-o-down:before {
  content: "\F0A7";
}
.fa-arrow-circle-left:before {
  content: "\F0A8";
}
.fa-arrow-circle-right:before {
  content: "\F0A9";
}
.fa-arrow-circle-up:before {
  content: "\F0AA";
}
.fa-arrow-circle-down:before {
  content: "\F0AB";
}
.fa-globe:before {
  content: "\F0AC";
}
.fa-wrench:before {
  content: "\F0AD";
}
.fa-filter:before {
  content: "\F0B0";
}
.fa-group:before,
.fa-users:before {
  content: "\F0C0";
}
.fa-chain:before,
.fa-link:before {
  content: "\F0C1";
}
.fa-square:before {
  content: "\F0C8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\F0C9";
}
.fa-list-ul:before {
  content: "\F0CA";
}
.fa-list-ol:before {
  content: "\F0CB";
}
.fa-truck:before {
  content: "\F0D1";
}
.fa-pinterest:before {
  content: "\F0D2";
}
.fa-google-plus:before {
  content: "\F0D5";
}
.fa-money:before {
  content: "\F0D6";
}
.fa-caret-down:before {
  content: "\F0D7";
}
.fa-caret-up:before {
  content: "\F0D8";
}
.fa-caret-left:before {
  content: "\F0D9";
}
.fa-caret-right:before {
  content: "\F0DA";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\F0DC";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\F0DD";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\F0DE";
}
.fa-envelope:before {
  content: "\F0E0";
}
.fa-linkedin:before {
  content: "\F0E1";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\F0E4";
}
.fa-comment-o:before {
  content: "\F0E5";
}
.fa-comments-o:before {
  content: "\F0E6";
}
.fa-lightbulb-o:before {
  content: "\F0EB";
}
.fa-cloud-download:before {
  content: "\F0ED";
}
.fa-cloud-upload:before {
  content: "\F0EE";
}
.fa-coffee:before {
  content: "\F0F4";
}
.fa-file-text-o:before {
  content: "\F0F6";
}
.fa-beer:before {
  content: "\F0FC";
}
.fa-angle-left:before {
  content: "\F104";
}
.fa-angle-right:before {
  content: "\F105";
}
.fa-angle-up:before {
  content: "\F106";
}
.fa-angle-down:before {
  content: "\F107";
}
.fa-desktop:before {
  content: "\F108";
}
.fa-laptop:before {
  content: "\F109";
}
.fa-tablet:before {
  content: "\F10A";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\F10B";
}
.fa-circle-o:before {
  content: "\F10C";
}
.fa-quote-left:before {
  content: "\F10D";
}
.fa-quote-right:before {
  content: "\F10E";
}
.fa-spinner:before {
  content: "\F110";
}
.fa-circle:before {
  content: "\F111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\F112";
}
.fa-folder-open-o:before {
  content: "\F115";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\F122";
}
.fa-star-half-o:before {
  content: "\F123";
}
.fa-location-arrow:before {
  content: "\F124";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\F127";
}
.fa-question:before {
  content: "\F128";
}
.fa-info:before {
  content: "\F129";
}
.fa-exclamation:before {
  content: "\F12A";
}
.fa-eraser:before {
  content: "\F12D";
}
.fa-shield:before {
  content: "\F132";
}
.fa-chevron-circle-left:before {
  content: "\F137";
}
.fa-chevron-circle-right:before {
  content: "\F138";
}
.fa-chevron-circle-up:before {
  content: "\F139";
}
.fa-chevron-circle-down:before {
  content: "\F13A";
}
.fa-ellipsis-h:before {
  content: "\F141";
}
.fa-ellipsis-v:before {
  content: "\F142";
}
.fa-caret-square-o-down:before {
  content: "\F150";
}
.fa-caret-square-o-up:before {
  content: "\F151";
}
.fa-caret-square-o-right:before {
  content: "\F152";
}
.fa-file:before {
  content: "\F15B";
}
.fa-file-text:before {
  content: "\F15C";
}
.fa-thumbs-up:before {
  content: "\F164";
}
.fa-thumbs-down:before {
  content: "\F165";
}
.fa-youtube:before {
  content: "\F167";
}
.fa-long-arrow-down:before {
  content: "\F175";
}
.fa-long-arrow-up:before {
  content: "\F176";
}
.fa-long-arrow-left:before {
  content: "\F177";
}
.fa-long-arrow-right:before {
  content: "\F178";
}
.fa-arrow-circle-o-right:before {
  content: "\F18E";
}
.fa-arrow-circle-o-left:before {
  content: "\F190";
}
.fa-caret-square-o-left:before {
  content: "\F191";
}
.fa-plus-square-o:before {
  content: "\F196";
}
.fa-envelope-square:before {
  content: "\F199";
}
.fa-car:before {
  content: "\F1B9";
}
.fa-tree:before {
  content: "\F1BB";
}
.fa-file-pdf-o:before {
  content: "\F1C1";
}
.fa-file-word-o:before {
  content: "\F1C2";
}
.fa-file-image-o:before {
  content: "\F1C5";
}
.fa-file-audio-o:before {
  content: "\F1C7";
}
.fa-file-video-o:before {
  content: "\F1C8";
}
.fa-life-ring:before {
  content: "\F1CD";
}
.fa-circle-o-notch:before {
  content: "\F1CE";
}
.fa-binoculars:before {
  content: "\F1E5";
}
.fa-plug:before {
  content: "\F1E6";
}
.fa-cc-visa:before {
  content: "\F1F0";
}
.fa-cc-mastercard:before {
  content: "\F1F1";
}
.fa-cc-discover:before {
  content: "\F1F2";
}
.fa-cc-amex:before {
  content: "\F1F3";
}
.fa-cc-paypal:before {
  content: "\F1F4";
}
.fa-cc-stripe:before {
  content: "\F1F5";
}
.fa-trash:before {
  content: "\F1F8";
}
.fa-copyright:before {
  content: "\F1F9";
}
.fa-at:before {
  content: "\F1FA";
}
.fa-toggle-off:before {
  content: "\F204";
}
.fa-toggle-on:before {
  content: "\F205";
}
.fa-bicycle:before {
  content: "\F206";
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8);
}
@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-border {
  padding: 0.2em 0.25em 0.15em;
  border: solid 0.08em #eee;
  border-radius: 0.1em;
}
.fa-pull-left {
  float: left;
}
.fa-pull-right {
  float: right;
}
.fa.fa-pull-left {
  margin-right: 0.3em;
}
.fa.fa-pull-right {
  margin-left: 0.3em;
}
/* Deprecated as of 4.4.0 */
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: 0.3em;
}
.fa.pull-right {
  margin-left: 0.3em;
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #fff;
}
input::input-placeholder,
textarea::input-placeholder {
  color: #9ea4ae;
}
input:focus,
textarea:focus,
button:focus {
  outline: none;
  border-color: #2b73de;
  -webkit-box-shadow: 0 0 5px #2b73de;
  box-shadow: 0 0 5px #2b73de;
}
textarea {
  max-width: 100%;
}
input,
button,
select,
textarea {
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.formGroup {
  margin-bottom: 8px;
}
.formInput {
  height: 50px;
  padding: 6px 12px;
  line-height: 100%;
  vertical-align: middle;
  border: 1px solid;
  border-radius: 2px;
  border-color: #e3e6ea;
  color: #3d454d;
  font-size: 1.4rem;
  width: 100%;
  display: block;
  position: relative;
}
.hasError .formInput {
  border-color: #b94a48;
}
.helpBlock {
  padding: 10px 5px 5px 6px;
  margin-top: -6px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 1.1rem;
  z-index: 0;
  text-align: left;
}
.form-control {
  color: #3d454d;
  padding: 12px 16px;
  height: 50px;
  border-color: #e3e6ea;
}
.input-sm,
.form-horizontal .form-group-sm .form-control {
  height: 30px;
  padding: 4px 8px;
}
body .form-control,
.has-success .form-control,
.has-warning .form-control,
.has-error .form-control {
  -webkit-box-shadow: none;
  box-shadow: none;
}
select.form-control {
  text-indent: 8px;
}
.Select {
  text-shadow: none;
  text-align: left;
}
.Select input:focus,
.Select textarea:focus,
.Select button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.Select-control {
  border: none;
  padding: 0;
}
.Select-arrow {
  display: none;
}
.Select-menu {
  border-radius: 4px;
  margin-top: 4px;
  min-height: 50px;
  max-height: 175px;
  line-height: 50px;
}
.Select-option {
  min-height: 40px;
  line-height: 40px;
  padding-left: 10px;
}
.Select-input {
  width: 100%;
  padding: 0 0 0 10px;
  border: none;
}
.Select-input:focus {
  border-radius: 4px 0 0 4px;
  border: none;
}
.Select-option {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/*

Base material-like radio button styling.
To use:
<label class="customRadio">
  <input type="radio" class="customRadio-inputRadio" value="foo" />
  <span class="customRadio-outer"><span class="customRadio-inner"></span></span>
  Bar
</label>

Override line-height styling for .radio--fancy, and background colors based on
specific component needs.
*/
.customRadio {
  cursor: pointer;
  display: inline-block;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.customRadio:hover .customRadio-inner {
  -webkit-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0.5;
}
.customRadio-inputRadio {
  width: 1px;
  height: 1px;
  opacity: 0;
}
.customRadio-inputRadio:checked + .customRadio-outer > .customRadio-inner {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
}
.customRadio-outer {
  display: block;
  float: left;
  margin: 10px 8px 10px 10px;
  border: 2px solid #3e4545;
  border-radius: 50%;
}
.customRadio-inner {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 12px;
  height: 12px;
  -webkit-transform: scale(0);
  transform: scale(0);
  display: block;
  margin: 2px;
  border-radius: 50%;
  opacity: 0;
  background-color: #3e4545;
}
.customRadio-inputRadio:focus + .customRadio-outer > .customRadio-inner {
  -webkit-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  background-color: #3e4545;
}
.u-flexGrid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.u-flexGrid-item {
  margin-left: 10px;
  margin-right: 10px;
}
.u-flexGrid-2col .u-flexGrid-item {
  width: 100%;
}
.u-flexGrid-3col .u-flexGrid-item {
  width: 100%;
}
.u-flexGrid-4col .u-flexGrid-item {
  width: calc(50% - 10px);
}
.u-flexGrid-6col .u-flexGrid-item {
  width: calc(50% - 10px);
}
*,
*:before,
*:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
html,
body,
#app {
  min-height: 100%;
}
body {
  margin: 0;
  background: #ffffff;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll {
  max-height: 100%;
  overflow: hidden;
}
img {
  display: block;
  border: 0;
}
::-moz-selection {
  background: #e8a400;
}
::selection {
  background: #e8a400;
}
.porchContent.porchContent-noHeader {
  margin-top: 0;
}
.gradientOverlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6);
}
.gradientOverlay--lighter {
  background-color: rgba(0, 0, 0, 0.3);
}
.breadcrumb-separator {
  padding: 0 4px;
}
.separator {
  height: 1px;
  border-bottom: 1px solid #e3e6ea;
  margin-left: auto;
  margin-right: auto;
  width: 35%;
}
.searchWaitIndicator {
  height: 100%;
  text-align: center;
  padding: 60px 15px;
  line-height: 130%;
}
.searchWaitIndicator-spinner {
  color: #9ea4ae;
}
.orderedListCircle {
  counter-reset: orderedCircle-counter;
  list-style: none;
  padding-left: 30px;
}
.orderedListCircle-item {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 25px;
  min-height: 35px;
  padding-left: 50px;
}
.orderedListCircle-item:before {
  background-color: #2b73de;
  border-radius: 35px;
  color: #fff;
  content: counter(orderedCircle-counter);
  counter-increment: orderedCircle-counter;
  display: block;
  float: left;
  height: 35px;
  line-height: normal;
  margin-left: -50px;
  padding-top: 9px;
  text-align: center;
  width: 35px;
  font-size: 1.5rem;
  font-weight: 700;
}
.largeNumberedList {
  counter-reset: orderedCircle-counter;
  margin: 20px 0 0;
}
.largeNumberedList-title,
.largeNumberedList-content {
  padding-left: 40px;
}
.largeNumberedList-title {
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  padding-bottom: 5px;
}
.largeNumberedList-title:before {
  color: #ffd451;
  content: counter(orderedCircle-counter);
  counter-increment: orderedCircle-counter;
  display: block;
  float: left;
  font-size: 4rem;
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  height: 35px;
  line-height: 35px;
  margin-left: -40px;
  text-align: left;
  width: 25px;
}
.largeNumberedList-content {
  margin: 0 0 25px;
}
.inlineList-item {
  display: inline-block;
}
.inlineList.inlineList--bullets {
  line-height: 1.7rem;
}
.inlineList-item.inlineList--bullets + .inlineList-item.inlineList--bullets:before {
  content: "\B7";
  font-family: sans-serif;
  font-size: 1.7rem;
  padding: 0 5px;
  vertical-align: middle;
}
.inlineList-item.inlineList--padded + .inlineList-item.inlineList--padded {
  padding-left: 10px;
}
.inlineList-item.inlineList--paddedLg + .inlineList-item.inlineList--paddedLg {
  padding-left: 15px;
}
.pageSection {
  padding: 20px 0;
}
.pageSection-halfPad {
  padding: 10px 0;
}
.pageSection-extraPad {
  padding: 40px 0;
}
.pageSection-grey {
  background-color: #f3f4f6;
  border-top: 1px solid #e3e6ea;
  border-bottom: 1px solid #e3e6ea;
}
.pageSection-white {
  background-color: #ffffff;
}
.blockSection {
  background-color: #fff;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  margin-bottom: 20px;
}
.blockSection--grey {
  background-color: #f3f4f6;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) inset;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05) inset;
}
.blockSection--smallMargin {
  margin-bottom: 2px;
}
.blockSection-inner {
  padding: 20px;
}
.blockSection-inner:before,
.blockSection-inner:after {
  content: " ";
  display: table;
}
.blockSection-inner:after {
  clear: both;
}
.blockSection-inner:before,
.blockSection-inner:after {
  content: " ";
  display: table;
}
.blockSection-inner:after {
  clear: both;
}
.blockSection-inner:before,
.blockSection-inner:after {
  content: " ";
  display: table;
}
.blockSection-inner:after {
  clear: both;
}
.blockSection-inner:before,
.blockSection-inner:after {
  content: " ";
  display: table;
}
.blockSection-inner:after {
  clear: both;
}
.blockSection-divider {
  height: 0px;
  border: none;
  border-top: 1px solid #e2e2e2;
  border-bottom: 1px solid #f2f2f2;
  margin: 10px -20px 20px;
}
@font-face {
  font-family: 'porch-pro';
  src: url(https://cdn.porch.com/v2/assets/porch-pro.eot?2b573870ed16fbc720bd285f128229a1);
  src: url(https://cdn.porch.com/v2/assets/porch-pro.eot?2b573870ed16fbc720bd285f128229a1?#iefix) format('embedded-opentype'), url(https://cdn.porch.com/v2/assets/porch-pro.woff?6c4f3b15a4357010102d895134750088) format('woff'), url(https://cdn.porch.com/v2/assets/porch-pro.ttf?e24fbc6c65bbbb976b0762c726ca3b7e) format('truetype'), url(https://cdn.porch.com/v2/assets/porch-pro.svg?a9c8f60871c2aba71331b24f802003c6#porch-pro) format('svg');
  font-weight: normal;
  font-style: normal;
}
[data-icon]:before {
  font-family: "porch-pro" !important;
  content: attr(data-icon);
  font-style: normal !important;
  font-weight: normal !important;
  -webkit-font-feature-settings: normal !important;
          font-feature-settings: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
[class^="i-"]:before,
[class*=" i-"]:before {
  font-family: "porch-pro" !important;
  font-style: normal !important;
  font-weight: normal !important;
  -webkit-font-feature-settings: normal !important;
          font-feature-settings: normal !important;
  font-variant: normal !important;
  text-transform: none !important;
  speak: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.icon {
  display: inline-block;
  margin-top: -3px;
  vertical-align: middle;
}
.i-p-bbb:before {
  content: "\E037";
}
.i-p-bbb-alt:before {
  content: "\E042";
}
.i-p-wait:before {
  content: "\E033";
}
.i-p-stop:before {
  content: "\E014";
}
.i-p-cancel:before {
  content: "\E032";
}
.i-p-omw:before {
  content: "\E031";
}
.i-p-pause:before {
  content: "\E012";
}
.i-p-play:before {
  content: "\E013";
}
.i-p-star-empty:before {
  content: "\E006";
}
.i-p-star-full:before {
  content: "\E008";
}
.i-p-info:before {
  content: "\E029";
}
.i-p-check:before {
  content: "\E017";
}
.i-p-shield:before {
  content: "\E015";
}
.i-p-circlestar:before {
  content: "\E035";
}
.i-p-thumbsup:before {
  content: "\E010";
}
.i-p-search:before {
  content: "\E001";
}
.i-p-thumbsdown:before {
  content: "\E009";
}
.i-p-mail:before {
  content: "\E011";
}
.i-p-circle:before {
  content: "\E021";
}
.i-p-check-f:before {
  content: "\E018";
}
.i-p-check-n:before {
  content: "\E019";
}
.i-p-check-o:before {
  content: "\E026";
}
.i-p-calendar:before {
  content: "\E020";
}
.i-p-images:before {
  content: "\E030";
}
.i-p-circle-f:before {
  content: "\E022";
}
.i-p-notes:before {
  content: "\E028";
}
.i-p-share:before {
  content: "\E034";
}
.i-p-clipboard:before {
  content: "\E016";
}
.i-p-call:before {
  content: "\E036";
}
.i-p-star-half:before {
  content: "\E007";
}
.i-spinner:before {
  content: "\E027";
}
.i-p-neighbors:before {
  content: "\E002";
}
.i-p-homevalue:before {
  content: "\E005";
}
.i-p-sms:before {
  content: "\E003";
}
.i-p-location:before {
  content: "\E004";
}
html {
  font-size: 62.5%;
}
body {
  font-size: 1.2rem;
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 20px;
  color: #3d454d;
}
.bodyCopy {
  font-size: 1.3rem;
}
.bodyCopy--large {
  font-size: 1.5rem;
}
.bodyCopy--small {
  font-size: 1.1rem;
}
.u-label {
  color: #9ea4ae;
  font-size: 1.1rem;
  text-transform: uppercase;
}
.u-label--large {
  color: #9ea4ae;
  font-size: 1.3rem;
  text-transform: uppercase;
}
h1,
.u-h1Like,
h2,
.u-h2Like,
h3,
.u-h3Like,
h4,
.u-h4Like,
h5,
.u-h5Like,
h6,
.u-h6Like {
  line-height: 1.2em;
}
h1.small-margin,
.u-h1Like.small-margin,
h2.small-margin,
.u-h2Like.small-margin,
h3.small-margin,
.u-h3Like.small-margin,
h4.small-margin,
.u-h4Like.small-margin,
h5.small-margin,
.u-h5Like.small-margin,
h6.small-margin,
.u-h6Like.small-margin {
  margin-top: 5px;
  margin-bottom: 10px;
}
h1,
.u-h1Like,
h2,
.u-h2Like {
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
}
h3,
.u-h3Like {
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
}
h4,
.u-h4Like,
h5,
.u-h5Like,
h6,
.u-h6Like {
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
}
h1,
.u-h1Like {
  font-size: 3.5rem;
}
h2,
.u-h2Like {
  font-size: 2.2rem;
}
h3,
.u-h3Like {
  font-size: 1.7rem;
}
h4,
.u-h4Like {
  font-size: 1.5rem;
}
h5,
.u-h5Like {
  font-size: 1.4rem;
}
h6,
.u-h6Like {
  font-size: 1.3rem;
}
b,
strong {
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
}
i,
em {
  font-style: normal;
}
a:link,
a:visited {
  color: #2b73de;
  text-decoration: none;
}
a:hover,
a:active {
  color: #2665da;
  text-decoration: none;
}
.u-textLike:link,
.u-textLike:visited,
.u-textLike:hover,
.u-textLike:active {
  color: #3d454d;
}
.u-hoverUnderline:hover {
  text-decoration: underline;
}
ol > li {
  list-style-position: inside;
}
.sectionHeading {
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #505b66;
  font-size: 1.5rem;
  margin: 14px 0;
}
.u-color-black {
  color: #000000;
}
.u-color-coal {
  color: #3d454d;
}
.u-color-slate {
  color: #505b66;
}
.u-color-steel {
  color: #757d88;
}
.u-color-stone {
  color: #9ea4ae;
}
.u-color-silver {
  color: #d0d3da;
}
.u-color-seattle {
  color: #e3e6ea;
}
.u-color-cotton {
  color: #f3f4f6;
}
.u-color-white {
  color: #ffffff;
}
.u-background-black {
  background-color: #000000;
}
.u-background-coal {
  background-color: #3d454d;
}
.u-background-slate {
  background-color: #505b66;
}
.u-background-steel {
  background-color: #757d88;
}
.u-background-stone {
  background-color: #9ea4ae;
}
.u-background-silver {
  background-color: #d0d3da;
}
.u-background-seattle {
  background-color: #e3e6ea;
}
.u-background-cotton {
  background-color: #f3f4f6;
}
.u-background-white {
  background-color: #ffffff;
}
/* Color mixins */
/* Background mixins */
/* Utility color classes */
.u-color-yellow {
  color: #ffd451;
}
.u-color-yellow-dark {
  color: #e8a400;
}
.u-color-yellow-light {
  color: #ffeaa4;
}
.u-color-blue {
  color: #2b73de;
}
.u-color-blue-dark {
  color: #0049ab;
}
.u-color-blue-light {
  color: #6ea1ff;
}
.u-color-info {
  color: #0b8cf3;
}
.u-color-success {
  color: #4caf50;
}
.u-color-warning {
  color: #ff9800;
}
.u-color-error {
  color: #d32f2f;
}
.u-color-legacy-teal {
  color: #42acb4;
}
.u-color-legacy-teal-dark {
  color: #38a2aa;
}
.u-color-gold {
  color: #ffd451;
}
.u-color-gold-dark {
  color: #e8a400;
}
.u-color-teal {
  color: #2b73de;
}
.u-color-teal-dark {
  color: #2b73de;
}
.u-color-ruby {
  color: #d32f2f;
}
.u-color-ruby-dark {
  color: #d32f2f;
}
.u-color-blue-darker {
  color: #3d454d;
}
/* Background color utilities */
.u-background-yellow {
  background-color: #ffd451;
}
.u-background-yellow-dark {
  background-color: #e8a400;
}
.u-background-yellow-light {
  background-color: #ffeaa4;
}
.u-background-blue {
  background-color: #2b73de;
}
.u-background-blue-dark {
  background-color: #0049ab;
}
.u-background-blue-light {
  background-color: #6ea1ff;
}
.u-background-info {
  background-color: #0b8cf3;
}
.u-background-success {
  background-color: #4caf50;
}
.u-background-warning {
  background-color: #ff9800;
}
.u-background-error {
  background-color: #d32f2f;
}
.u-background-legacy-teal {
  background-color: #42acb4;
}
.u-background-legacy-teal-dark {
  background-color: #38a2aa;
}
.u-background-gold {
  background-color: #ffd451;
}
.u-background-gold-dark {
  background-color: #e8a400;
}
.u-background-teal {
  background-color: #2b73de;
}
.u-background-teal-dark {
  background-color: #2b73de;
}
.u-background-ruby {
  background-color: #d32f2f;
}
.u-background-ruby-dark {
  background-color: #d32f2f;
}
.u-background-blue-darker {
  background-color: #3d454d;
}
.fontHeading-light,
.fontHeading-book,
.fontHeading-medium,
.fontText-thin,
.fontText-light,
.fontText-book,
.fontText-medium,
.form-control {
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.fontText-semibold,
.fontText-bold,
.fontText-extrabold {
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.fontText-cursive {
  font-family: 'Homemade Apple', cursive;
}
.u-pullLeft {
  float: left;
}
.u-pullRight {
  float: right;
}
.u-clearfix:before,
.u-clearfix:after {
  content: " ";
  display: table;
}
.u-clearfix:after {
  clear: both;
}
.u-clearfix:before,
.u-clearfix:after {
  content: " ";
  display: table;
}
.u-clearfix:after {
  clear: both;
}
.u-clearfix:before,
.u-clearfix:after {
  content: " ";
  display: table;
}
.u-clearfix:after {
  clear: both;
}
.u-clearfix:before,
.u-clearfix:after {
  content: " ";
  display: table;
}
.u-clearfix:after {
  clear: both;
}
.u-clear {
  clear: both;
}
.u-alignLeft {
  text-align: left;
}
.u-alignRight {
  text-align: right;
}
.u-alignCenter {
  text-align: center;
}
.u-horizontalAlignCenter {
  margin-left: auto;
  margin-right: auto;
}
.u-verticalAlignMiddle {
  vertical-align: middle;
}
.u-block {
  display: block;
}
.u-inline {
  display: inline;
}
.u-inlineBlock {
  display: inline-block;
}
.u-hidden {
  display: none;
}
.u-relative,
.u-positionRelative {
  position: relative;
}
.u-absolute,
.u-positionAbsolute {
  position: absolute;
}
.u-invisible {
  visibility: hidden;
  opacity: 0;
}
.u-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.u-flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.u-flex-2 {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.u-flex-3 {
  -webkit-box-flex: 3;
  -ms-flex: 3;
  flex: 3;
}
.u-flex-4 {
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
}
.u-flex-5 {
  -webkit-box-flex: 5;
  -ms-flex: 5;
  flex: 5;
}
.u-flex-6 {
  -webkit-box-flex: 6;
  -ms-flex: 6;
  flex: 6;
}
.u-flex-alignCenter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.u-flex-alignContentCenter {
  -ms-flex-line-pack: center;
  align-content: center;
}
.u-flex-alignContentStart {
  -ms-flex-line-pack: start;
  align-content: flex-start;
}
.u-flex-alignContentEnd {
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.u-flex-alignContentSpaceAround {
  -ms-flex-line-pack: distribute;
  align-content: space-around;
}
.u-flex-alignContentSpaceBetween {
  -ms-flex-line-pack: justify;
  align-content: space-between;
}
.u-flex-alignItemsCenter {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.u-flex-alignItemsStart {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.u-flex-alignItemsEnd {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.u-flex-alignSelfCenter {
  -ms-flex-item-align: center;
  align-self: center;
}
.u-flex-alignSelfStart {
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.u-flex-alignSelfEnd {
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.u-flex-justifyCenter {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.u-flex-justifySpaceAround {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.u-flex-justifySpaceBetween {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.u-flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.u-flex-rowReverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.u-flex-columnReverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.u-flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.u-noMargin {
  margin: 0;
}
.u-noPadding {
  padding: 0;
}
.u-space {
  margin: 10px;
}
.u-space20 {
  margin: 20px;
}
.u-topSpace {
  margin-top: 10px;
}
.u-topSpace20 {
  margin-top: 20px;
}
.u-bottomSpace {
  margin-bottom: 10px;
}
.u-bottomSpace20 {
  margin-bottom: 20px;
}
.u-leftSpace {
  margin-left: 10px;
}
.u-leftSpace20 {
  margin-left: 20px;
}
.u-rightSpace {
  margin-right: 10px;
}
.u-rightSpace20 {
  margin-right: 20px;
}
.u-pad {
  padding: 10px;
}
.u-pad20 {
  padding: 20px;
}
.u-topPad {
  padding-top: 10px;
}
.u-topPad20 {
  padding-top: 20px;
}
.u-bottomPad {
  padding-bottom: 10px;
}
.u-bottomPad20 {
  padding-bottom: 20px;
}
.u-leftPad {
  padding-left: 10px;
}
.u-leftPad20 {
  padding-left: 20px;
}
.u-rightPad {
  padding-right: 10px;
}
.u-rightPad20 {
  padding-right: 20px;
}
.u-fullWidth {
  display: block;
  width: 100%;
}
.u-fullHeight {
  height: 100%;
}
.u-rounded {
  border-radius: 3px;
}
.u-circle {
  border-radius: 50%;
}
.u-uppercase {
  text-transform: uppercase;
}
.u-lowercase {
  text-transform: lowercase;
}
.u-capitalize {
  text-transform: capitalize;
}
.u-italic {
  font-style: italic;
}
.u-oneLine {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
a.u-noStyle,
a.u-noStyle:hover,
a.u-noStyle:active,
a.u-noStyle:visited,
a.u-noStyle:link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  outline: none;
}
.u-clickable {
  cursor: pointer;
}
.u-bgWhite {
  background-color: #ffffff;
}
.u-demphasized {
  color: #9ea4ae;
}
.u-inlineImg {
  display: inline-block;
  vertical-align: bottom;
}
.u-noShadow {
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}
.u-noBorder {
  border: 0;
}
.u-disableLinks {
  pointer-events: none;
  cursor: default;
}
.u-noOverflow {
  overflow: hidden;
}
.u-listUnstyled,
.inlineList {
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}
.u-srOnly {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.btn,
a.btn {
  display: inline-block;
  padding: 15px 20px;
  min-height: 50px;
  min-width: 100px;
  max-width: 250px;
  margin-bottom: 0;
  font-size: 1.2rem;
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.1rem;
  line-height: 1.66666667;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  border-radius: 3px;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 0;
  text-transform: uppercase;
  outline: none;
  color: #ffffff;
  background-color: #2b73de;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.btn,
a.btn,
.btn:visited,
a.btn:visited {
  background: #2b73de;
  color: #ffffff;
}
.btn:hover,
a.btn:hover {
  background: #1d5cb9;
  text-decoration: none;
}
.btn.u-block,
a.btn.u-block {
  display: block;
  width: 100%;
}
.btn.disabled,
.btn[disabled],
a.btn.disabled,
a.btn[disabled] {
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.5;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn-lg,
a.btn-lg {
  min-height: 60px;
  min-width: 120px;
  max-width: 300px;
  font-size: 1.4rem;
  padding: 18.5px 30px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 3px;
}
.btn-sm,
a.btn-sm {
  min-height: 40px;
  min-width: 80px;
  max-width: 200px;
  padding: 10px 15px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-xs,
a.btn-xs {
  min-height: 20px;
  min-width: 70px;
  padding: 1px 5px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.fill-col,
a.fill-col {
  padding-left: 5px;
  padding-right: 5px;
  width: 100%;
}
[class*="btn-outline"],
a[class*="btn-outline"] {
  border: 1px solid;
  background-color: transparent;
}
.btn-outline,
a.btn-outline,
.btn-outline:visited,
a.btn-outline:visited {
  border-color: #2b73de;
  color: #2b73de;
}
.btn-outline:hover,
a.btn-outline:hover,
.btn-outline:active,
a.btn-outline:active {
  background: #2b73de;
  color: #ffffff;
}
.btn-outline:focus,
a.btn-outline:focus {
  -webkit-box-shadow: 0 0 0 2px #2b73de;
  box-shadow: 0 0 0 2px #2b73de;
}
.btn-outline-red,
a.btn-outline-red,
.btn-outline-red:visited,
a.btn-outline-red:visited {
  border-color: #d32f2f;
  color: #d32f2f;
}
.btn-outline-red:hover,
a.btn-outline-red:hover,
.btn-outline-red:active,
a.btn-outline-red:active {
  background: #d32f2f;
  color: #ffffff;
}
.btn-outline-red:focus,
a.btn-outline-red:focus {
  -webkit-box-shadow: 0 0 0 2px #d32f2f;
  box-shadow: 0 0 0 2px #d32f2f;
}
.btn-outline-teal,
a.btn-outline-teal,
.btn-outline-teal:visited,
a.btn-outline-teal:visited {
  border-color: #2b73de;
  color: #2b73de;
}
.btn-outline-teal:hover,
a.btn-outline-teal:hover,
.btn-outline-teal:active,
a.btn-outline-teal:active {
  background: #2b73de;
  color: #ffffff;
}
.btn-outline-teal:focus,
a.btn-outline-teal:focus {
  -webkit-box-shadow: 0 0 0 2px #2b73de;
  box-shadow: 0 0 0 2px #2b73de;
}
.btn-outline-gold,
a.btn-outline-gold,
.btn-outline-gold:visited,
a.btn-outline-gold:visited {
  border-color: #ffd451;
  color: #ffd451;
}
.btn-outline-gold:hover,
a.btn-outline-gold:hover,
.btn-outline-gold:active,
a.btn-outline-gold:active {
  background: #ffd451;
  color: #ffffff;
}
.btn-outline-gold:focus,
a.btn-outline-gold:focus {
  -webkit-box-shadow: 0 0 0 2px #ffd451;
  box-shadow: 0 0 0 2px #ffd451;
}
.btn-outline-white,
a.btn-outline-white,
.btn-outline-white:visited,
a.btn-outline-white:visited {
  border-color: #ffffff;
  color: #ffffff;
}
.btn-outline-white:hover,
a.btn-outline-white:hover,
.btn-outline-white:active,
a.btn-outline-white:active {
  background: #ffffff;
  color: #3d454d;
}
.btn-outline-white:focus,
a.btn-outline-white:focus {
  -webkit-box-shadow: 0 0 0 2px #ffffff;
  box-shadow: 0 0 0 2px #ffffff;
}
.btn-outline-gray,
a.btn-outline-gray,
.btn-outline-gray:visited,
a.btn-outline-gray:visited {
  border-color: #9ea4ae;
  color: #9ea4ae;
}
.btn-outline-gray:hover,
a.btn-outline-gray:hover,
.btn-outline-gray:active,
a.btn-outline-gray:active {
  background: #9ea4ae;
  color: #ffffff;
}
.btn-outline-gray:focus,
a.btn-outline-gray:focus {
  -webkit-box-shadow: 0 0 0 2px #9ea4ae;
  box-shadow: 0 0 0 2px #9ea4ae;
}
.btn-outline-black,
a.btn-outline-black,
.btn-outline-black:visited,
a.btn-outline-black:visited {
  border-color: #3d454d;
  color: #3d454d;
}
.btn-outline-black:hover,
a.btn-outline-black:hover,
.btn-outline-black:active,
a.btn-outline-black:active {
  background: #3d454d;
  color: #f3f4f6;
}
.btn-outline-black:focus,
a.btn-outline-black:focus {
  -webkit-box-shadow: 0 0 0 2px #3d454d;
  box-shadow: 0 0 0 2px #3d454d;
}
.btn-teal,
a.btn-teal,
.btn-teal:visited,
a.btn-teal:visited {
  background-color: #2b73de;
}
.btn-teal:hover,
a.btn-teal:hover {
  background: #1d5cb9;
}
.btn-red,
a.btn-red,
.btn-red:visited,
a.btn-red:visited {
  background-color: #d32f2f;
}
.btn-red:hover,
a.btn-red:hover {
  background: #ab2424;
}
.btn-gold,
a.btn-gold {
  color: #3d454d;
}
.btn-gold,
a.btn-gold,
.btn-gold:visited,
a.btn-gold:visited {
  background-color: #ffd451;
}
.btn-gold:hover,
a.btn-gold:hover {
  background: #e8a400;
}
.btn-navy,
a.btn-navy,
.btn-navy:visited,
a.btn-navy:visited {
  background-color: #2b73de;
}
.btn-navy:hover,
a.btn-navy:hover {
  background: #1d5cb9;
}
.btn-whiteAndDarkerBlue,
a.btn-whiteAndDarkerBlue,
.btn-whiteAndDarkerBlue:visited,
a.btn-whiteAndDarkerBlue:visited {
  color: #3d454d;
  background-color: #ffffff;
}
.btn-whiteAndDarkerBlue:hover,
a.btn-whiteAndDarkerBlue:hover,
.btn-whiteAndDarkerBlue:active,
a.btn-whiteAndDarkerBlue:active {
  background-color: #3d454d;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.btn-gray,
a.btn-gray {
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.btn-gray,
a.btn-gray,
.btn-gray:visited,
a.btn-gray:visited {
  color: #9ea4ae;
  background-color: #e3e6ea;
}
.btn-gray:hover,
a.btn-gray:hover,
.btn-gray:active,
a.btn-gray:active {
  color: #828a97;
  background: #c6ccd4;
}
.btn-transparent,
a.btn-transparent,
.btn-transparent:visited,
a.btn-transparent:visited {
  color: #9ea4ae;
  background-color: transparent;
}
.btn-transparent:hover,
a.btn-transparent:hover,
.btn-transparent:active,
a.btn-transparent:active {
  background-color: #ffffff;
  color: #2b73de;
}
/*

  Form design update - Oct '16
  Dev: Zach Richards (zachr@porch.com)
  Designer: Jake Cooney (jakec@porch.com)

  CSS for updated input controls wherein the label and error messaging are contained within the input.
  Porch React Components planned.

*/
.m-contained-field-common {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.m-contained-field-common label {
  color: #757d88;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
  -webkit-transition: all 0.15s cubic-bezier(0.1, 0.45, 0.32, 1);
  transition: all 0.15s cubic-bezier(0.1, 0.45, 0.32, 1);
}
.contained-field {
  /*

    TEXT INPUTS

    Example:
      <div className="contained-field has-error">
          <input type="text" />
          <label>First Name</label>
      </div>

    Notes:
      - label needs to come after control in DOM

  */
  /*

    CHECKBOXES

    <div className="contained-field-checkbox">
        <label>
          <input name="optInTextNotification"
                 className="contained-field-checkbox-control"
                 type="checkbox"/>
          <i className="contained-field-checkbox-checked material-icons">check_box</i>
          <i className="contained-field-checkbox-unchecked material-icons">check_box_outline_blank</i>
          <span className="contained-field-checkbox-text">Enable auto replying quick messages</span>
        </label>
    </div>

    Notes:
    - Use ErrorContainer to display errors for now

  */
}
.contained-field-text {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.contained-field-text label {
  color: #757d88;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0;
  -webkit-transition: all 0.15s cubic-bezier(0.1, 0.45, 0.32, 1);
  transition: all 0.15s cubic-bezier(0.1, 0.45, 0.32, 1);
}
.contained-field-text input,
.contained-field-text textarea {
  border-color: #d0d3da;
  border-radius: 2px;
  border-width: 1px;
  border-style: solid;
  color: #505b66;
  font-size: 1.4rem;
  font-weight: 500;
  outline: none;
  padding: 30px 15px 12px;
  -webkit-transition: all 0.15s cubic-bezier(0.1, 0.45, 0.32, 1);
  transition: all 0.15s cubic-bezier(0.1, 0.45, 0.32, 1);
  width: 100%;
}
.contained-field-text input {
  height: 62px;
}
.contained-field-text textarea {
  max-width: 100%;
  min-height: 62px;
}
.contained-field-text textarea::-webkit-input-placeholder {
  color: #9ea4ae;
  font-weight: 500;
}
.contained-field-text textarea::-moz-placeholder {
  color: #9ea4ae;
  font-weight: 500;
}
.contained-field-text textarea:-ms-input-placeholder {
  color: #9ea4ae;
  font-weight: 500;
}
.contained-field-text textarea::-ms-input-placeholder {
  color: #9ea4ae;
  font-weight: 500;
}
.contained-field-text textarea::placeholder {
  color: #9ea4ae;
  font-weight: 500;
}
.contained-field-text label {
  background: #ffffff;
  font-size: 1.2rem;
  left: 15px;
  height: 30px;
  margin: 0;
  padding-top: 11px;
  position: absolute;
  top: 1px;
  width: calc(100% - 30px);
}
.contained-field-text textarea + label {
  -webkit-box-shadow: 0 4px 4px -4px #ffffff;
  box-shadow: 0 4px 4px -4px #ffffff;
}
.contained-field-text.is-disabled input,
.contained-field-text.is-disabled textarea,
.contained-field-text.is-disabled label {
  background-color: #e3e6ea;
  cursor: not-allowed;
}
.contained-field-text input:focus,
.contained-field-text textarea:focus {
  border-color: #6ea1ff;
  -webkit-box-shadow: 0 0 5px #6ea1ff;
  box-shadow: 0 0 5px #6ea1ff;
}
.contained-field-text input:focus + label,
.contained-field-text textarea:focus + label {
  color: #9ea4ae;
}
.contained-field-text.has-error label {
  color: #d32f2f;
}
.contained-field-text.has-error input,
.contained-field-text.has-error input:focus,
.contained-field-text.has-error textarea,
.contained-field-text.has-error textarea:focus {
  border-color: #d32f2f;
  -webkit-box-shadow: 0 0 5px #d32f2f;
  box-shadow: 0 0 5px #d32f2f;
}
.contained-field-text.has-error label,
.contained-field-text.has-error input:focus + label,
.contained-field-text.has-error textarea:focus + label {
  color: #d32f2f;
}
.contained-field-text-dollar input {
  padding-left: 26px;
}
.contained-field-text-dollar:before {
  content: "$";
  position: absolute;
  left: 15px;
  bottom: 12px;
  font-size: 1.4rem;
}
.contained-field-checkbox {
  cursor: pointer;
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.contained-field-checkbox > label {
  cursor: pointer;
  display: block;
}
.contained-field-checkbox-text {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 165%;
  padding-left: 10px;
}
.contained-field-checkbox-checked,
.contained-field-checkbox-unchecked {
  left: 0;
  position: absolute;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
  top: 0;
}
.contained-field-checkbox-control {
  left: -99999px;
  position: absolute;
}
.contained-field-checkbox-checked {
  display: none;
}
.contained-field-checkbox-control:focus ~ .contained-field-checkbox-unchecked,
.contained-field-checkbox-control:focus ~ .contained-field-checkbox-checked {
  color: #2b73de;
}
.contained-field-checkbox-control:checked ~ .contained-field-checkbox-unchecked {
  display: none;
}
.contained-field-checkbox-control:checked ~ .contained-field-checkbox-checked {
  display: inline-block;
}
.u-display1 {
  font-family: 'Sharp Sans', 'Open Sans', 'Arial', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.u-display2 {
  font-family: 'Sharp Sans', 'Open Sans', 'Arial', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.u-headline {
  font-family: 'Sharp Sans', 'Open Sans', 'Arial', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.u-title {
  font-family: 'Sharp Sans', 'Open Sans', 'Arial', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.u-subtitle {
  font-family: 'Sharp Sans', 'Open Sans', 'Arial', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.u-body1 {
  font-family: 'Sharp Sans', 'Open Sans', 'Arial', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.u-body1 a {
  color: #2b73de;
}
.u-body1 a:hover {
  color: #0049ab;
}
.u-body1 a:visited {
  color: #6ea1ff;
}
.u-body2 {
  font-family: 'Sharp Sans', 'Open Sans', 'Arial', sans-serif;
  font-weight: 700;
  font-style: normal;
}
.u-body2 a {
  color: #2b73de;
}
.u-body2 a:hover {
  color: #0049ab;
}
.u-body2 a:visited {
  color: #6ea1ff;
}
.u-body3 {
  font-family: 'Sharp Sans', 'Open Sans', 'Arial', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.u-body3 a {
  color: #2b73de;
}
.u-body3 a:hover {
  color: #0049ab;
}
.u-body3 a:visited {
  color: #6ea1ff;
}
.u-label1 {
  font-family: 'Sharp Sans', 'Open Sans', 'Arial', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.5;
}
.u-label2 {
  font-family: 'Sharp Sans', 'Open Sans', 'Arial', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 1.5;
}
.modalDialog.authFormModal-dialog {
  max-width: 400px;
  text-align: center;
}
.authFormModal-header {
  margin: 10px;
}
.authFormModal-header-image {
  width: 100px;
  margin: auto;
  padding-top: 15px;
}
.authFormModal-body {
  padding-top: 30px;
  border-top: 1px solid #9ea4ae;
  background-color: #ffffff;
}
.porchModal {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 900;
}
.porchModal-enter,
.porchModal-appear {
  opacity: 0.01;
  -webkit-transition: opacity 0.15s ease-in;
  transition: opacity 0.15s ease-in;
}
.porchModal-enter.porchModal-enter-active,
.porchModal-appear.porchModal-appear-active {
  opacity: 1;
}
.porchModal-leave {
  opacity: 1;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}
.porchModal-leave.porchModal-leave-active {
  opacity: 0.01;
}
.porchModal-backgroundFade {
  background: rgba(0, 0, 0, 0.75);
  height: 100%;
  position: absolute;
  width: 100%;
}
.porchModal-content {
  background: #FFF;
  border-radius: 4px;
  -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 60px 20px 70px;
  position: relative;
  width: 90%;
}
.porchModal-content.no-heading {
  padding-top: 20px;
}
.porchModal-content.no-heading .porchModal-heading {
  display: none;
}
.porchModal-heading {
  position: absolute;
  top: 0;
}
.porchModal-body {
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
  position: relative;
}
.porchModal--fullPage {
  height: 100%;
  width: 100%;
  position: absolute;
}
.porchModal--fullPage .porchModal-body {
  height: auto;
}
.porchModal--fullPage .porchModal-content {
  height: auto;
  min-height: 100vh;
  position: absolute;
  overflow: visible;
}
.porchModal--fullPage .porchModal-backgroundFade {
  position: fixed;
}
.porchModal-btns {
  bottom: 20px;
  position: absolute;
  right: 20px;
}
.porchModal-backBtn,
.porchModal-actionBtn {
  margin-left: 20px;
}
.porchModal-closeIcon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 10px;
  font-size: 2rem;
  color: #d0d3da;
  cursor: pointer;
  z-index: 200;
}
html.modal-scrollbar {
  overflow-y: scroll;
}
.modalDialog-container {
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 800;
}
.modalDialog-overlay {
  background: rgba(0, 0, 0, 0.75);
  height: 100%;
  position: absolute;
  width: 100%;
}
.modalDialog {
  background: #ffffff;
  border-radius: 1px;
  width: 620px;
  position: relative;
  z-index: 900;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
  overflow-y: auto;
}
.modalDialog--full {
  margin: auto;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #2b73de;
}
.modalDialog-header {
  height: 50px;
}
.modalDialog-header--full {
  background: #2b73de;
}
.modalDialog-header--light {
  color: #505b66;
  background: #ffffff;
}
.modalDialog-header--dark {
  background: #2b73de;
  color: #ffffff;
}
.modalDialog-title {
  position: relative;
  top: 15px;
  left: 15px;
}
.modalDialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.7rem;
  cursor: pointer;
}
.modalDialog-close--full {
  color: #ffffff;
}
.modalDialog-logoImage {
  width: 120px;
  margin-left: 25px;
  margin-top: 15px;
}
.modalDialog-enter,
.modalDialog-appear {
  opacity: 0.01;
  -webkit-transition: opacity 0.5s ease-in;
  transition: opacity 0.5s ease-in;
}
.modalDialog-enter.modalDialog-enter-active,
.modalDialog-appear.modalDialog-appear-active {
  opacity: 1;
}
.modalDialog-leave {
  opacity: 1;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.modalDialog-leave.modalDialog-leave-active {
  opacity: 0.01;
}
.btn-fullWidth {
  max-width: none;
  width: 100%;
}
.authForm {
  padding: 0 20px;
  text-align: center;
}
.authForm .validationError-formValidation {
  margin-bottom: 20px;
}
[dir="ltr"] .authForm .ul-text-input-helperText{
  text-align: left;
}
[dir="rtl"] .authForm .ul-text-input-helperText{
  text-align: right;
}
[dir="ltr"] .authForm .form-helperText{
  text-align: left;
}
[dir="rtl"] .authForm .form-helperText{
  text-align: right;
}
.authForm .form-helperText {
  line-height: 1.6rem;
  margin: 0 0 0 2px;
  color: #d32f2f;
  padding: 0;
  padding: 1px 5px 5px 6px;
  margin-bottom: 20px;
}
.authForm .form-helperText button {
  background: none;
  padding: 0;
  font-weight: bold;
  text-decoration: underline;
  border: none;
}
.authForm-heading {
  color: #3d454d;
  font-weight: 700;
  font-size: 40px;
  margin-bottom: 5px;
}
.authForm-subHeading {
  font-weight: 700;
  font-size: 16px;
  line-height: 160%;
  margin-top: 24px;
  margin-bottom: 48px;
  color: #505b66;
  white-space: normal;
}
.authForm-subHeading a {
  text-decoration: underline;
}
.authForm-subHeading.bottom {
  margin: 10px 0 0;
}
.authForm-forgotPassword {
  text-align: left;
  font-size: 16px;
  margin-top: -18px;
}
.authForm-errorButton {
  background: none;
  padding: 0;
  border: none;
  color: #ffffff;
  font-weight: bold;
  text-decoration: underline;
}
.authForm-signupLink {
  font-size: 16px;
  margin-top: 50px;
  margin-bottom: 18px;
}
.forgotPasswordSuccess-heading {
  font-weight: 700;
  font-size: 1.7rem;
  color: #3d454d;
  margin-bottom: 5px;
}
.forgotPasswordSuccess-content {
  padding: 0 20px 10px;
}
.forgotPasswordSuccess-content-text {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #9ea4ae;
}
.forgotPasswordSuccess-content-help {
  font-size: 1.5rem;
  margin: 15px 0;
}
.forgotPasswordSuccess-content-phone {
  font-size: 1.7rem;
  color: #3d454d;
  margin: 15px 0;
}
.authForm-legal {
  font-size: 16px;
  margin: 13px auto 0 auto;
  color: #505b66;
  width: 80%;
  line-height: 150%;
}
.authForm-legal a {
  text-decoration: underline;
}
.loadSpinner-mask {
  position: absolute;
  opacity: 0.6;
  background-color: #fff;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.loadSpinner-default {
  position: absolute;
}
.loadSpinner-fullPage {
  position: fixed;
}
.loadSpinner-img {
  background-color: transparent;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.loadSpinner-title {
  color: #505b66;
  position: absolute;
  background-color: transparent;
  left: 50%;
  top: 33%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.appFooter {
  border-top: 1px solid #d0d3da;
}
.appFooter ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.appFooter li {
  margin: 0;
}
.appFooter-seoLinks {
  padding: 50px 0;
  background: #e3e6ea;
}
.appFooter-seoLinks-title {
  margin: 15px 0;
}
.appFooter-proSearch {
  text-align: center;
  padding-bottom: 30px;
}
.appFooter-contact {
  padding: 20px 0;
  border: 0;
}
.appFooter-cta {
  font-size: 1.7rem;
  color: #505b66;
}
.appFooter-cta a {
  font-style: normal;
}
.appFooter-socialIcons {
  color: #505b66;
}
.appFooter-socialIcons-link:link,
.appFooter-socialIcons-link:visited,
.appFooter-socialIcons-link:hover,
.appFooter-socialIcons-link:active {
  color: #505b66;
}
.appFooter-socialIcons-link--project-cost {
  font-style: normal;
}
.appFooter-socialLinksCol {
  padding-top: 5px;
}
.appFooter-socialLinksCol .inlineList-item.inlineList--paddedLg {
  padding-left: 0 !important;
  padding-right: 15px;
}
.appFooter-socialLinksCol .inlineList-item.inlineList--paddedLg:last-child {
  padding-right: 0;
}
.appFooter-listHeading {
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  margin-bottom: 10px;
  margin-right: 20px;
}
.appFooter-utilLinks {
  padding: 5.6rem 0 0;
}
.appFooter-utilLinks .appFooter__links {
  margin-bottom: 3.2rem;
}
.appFooter-utilLinks .appFooter__list-header {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.6rem;
  margin-bottom: 1.6rem;
  position: relative;
}
.appFooter-utilLinks .appFooter__list-header .appFooter__list-header-toggle {
  bottom: 10px;
  display: none;
  float: right;
  font-size: 3.6rem;
  position: absolute;
  right: 0;
}
.appFooter-utilLinks .appFooter__list-subheader {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.6rem;
}
.appFooter-utilLinks .appFooter__list-item {
  color: #3d454d;
  font-size: 1.4rem;
  line-height: 2.4rem;
  margin-bottom: 0.8rem;
}
.appFooter-utilLinks .appFooter__list-item--with-subheader {
  margin-bottom: 3.2rem;
}
.appFooter-utilLinks .appFooter__list-item a,
.appFooter-utilLinks .appFooter__list-item a:visited,
.appFooter-utilLinks .appFooter__list-item a:hover {
  color: #3d454d;
}
.appFooter-utilLinks .inlineList-item {
  color: #525760;
}
.appFooter-utilLinks .appFooter__terms {
  padding: 2rem 0;
  display: inline-block;
  margin-left: 1rem;
}
.appFooter-utilLinks .appFooter__terms footer li {
  margin-bottom: 0;
}
.appFooter-utilLinks .appFooter__terms a {
  color: #525760;
}
.appFooter-utilLinks .appFooter__terms-logo {
  display: inline-block;
  margin-right: 5.6rem;
}
.appFooter-utilLinks .appFooter__icons-wrapper {
  background: #f3f4f6;
  padding: 2.4rem 0;
}
.appFooter-utilLinks .appFooter__icons {
  display: inline-block;
}
.appFooter-utilLinks .appFooter__icons > li:last-child > a {
  margin-right: 0;
}
.appFooter-utilLinks .appFooter__social-icons-wrapper {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
}
.appFooter-utilLinks .appFooter__social-icons a {
  background-color: #3d454d;
  border-radius: 50%;
  display: inline-block;
  height: 34px;
  margin-right: 2.4rem;
  padding: 0.5rem;
}
.appFooter-utilLinks .appFooter__ask-a-pro,
.appFooter-utilLinks .appFooter__project-cost {
  margin-top: 1rem;
}
.appFooter .nearbyCities-link,
.appFooter .linkList-link {
  color: #2b73de;
  font-size: 1.1rem;
}
.agentFooter-linkList {
  display: inline-block;
}
.agentFooter-socialIcons {
  float: right;
}
.proAppFooter-wrapper {
  padding: 20px 0;
}
.proAppFooter-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.proAppFooter-item {
  padding: 0 16px;
  font-weight: bold;
  border-left: 1px solid #d0d3da;
  display: inline-block;
  white-space: nowrap;
}
.proAppFooter-item:first-child {
  border-left: none;
}
.proAppFooter-copyrightYear {
  color: #757d88;
  padding-right: 25px;
}
.waitIndicator {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 900;
}
.waitIndicator-overlay {
  background: rgba(87, 87, 87, 0.6);
}
.waitIndicator-overlay.white {
  background: rgba(255, 255, 255, 0.6);
}
.waitIndicator-overlay.white .wait-spinner {
  border-color: #999999;
}
.waitIndicator-overlay.white .fa-spinner {
  color: #999999;
}
.waitIndicator-container {
  left: 50%;
  margin-left: -150px;
  margin-top: -100px;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 300px;
}
.waitIndicator-spinner {
  margin: 0 auto;
  background: #ffffff;
  border-radius: 10px;
  border: 3px solid #505b66;
  display: inline-block;
  padding: 12px;
  position: relative;
}
.waitIndicator-spinnerImg {
  margin: 0 auto;
}
.waitIndicator-message {
  color: #505b66;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 150%;
  margin: 10px 0 0;
  text-align: center;
  width: 100%;
}
.waitIndicator-loadingBar-container {
  position: absolute;
  left: 30%;
  top: 30%;
  width: 40%;
  height: 280px;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 5px;
}
.waitIndicator-loadingBar-container img {
  display: inline-block;
}
.porchContent-fixed {
  margin-top: 56px;
}
.porchHeader-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
.appHeader {
  height: 56px;
  background-color: #ffffff;
  -webkit-box-shadow: 1px 0 1px 0 rgba(0, 0, 0, 0.4);
  box-shadow: 1px 0 1px 0 rgba(0, 0, 0, 0.4);
}
.appHeader--withBanner {
  margin-top: 70px;
}
.appHeader--proLoggedOut .authForm-heading {
  margin-bottom: 30px;
}
.appHeader--proLoggedOut .authForm-subHeading {
  display: none;
}
.appHeader-logo {
  margin: 16px 20px 0 16px;
}
.appHeader-logoImage {
  height: 24px;
  min-width: 93px;
  width: auto;
}
a.appHeader-a {
  display: inline-block;
  line-height: 20px;
  padding: 18px 20px;
  font-size: 14px;
  font-weight: 700;
  color: #505b66;
}
a.appHeader-a.isSelected {
  border-bottom: 4px solid #ffd451;
  padding: 18px 20px 14px;
  color: #3d454d;
}
a.appHeader-btn {
  vertical-align: top;
  margin-top: 10px;
  height: 32px;
  min-height: inherit;
  padding: 7px;
}
.appHeader--landingPage {
  z-index: 1;
  color: #ffffff;
  background: none;
  border-bottom: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.appHeader--landingPage .userMenu-userPhoto {
  margin-right: 15px;
}
.appHeader--landingPage .dropdownMenu:hover .appHeader-a {
  background: none;
}
.appHeader--landingPage .dropdownMenu-list {
  border-radius: 4px;
  border: none;
}
.appHeader--darkBG {
  color: #ffffff;
  background-color: #3d454d;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.appHeader--darkBG a.appHeader-a {
  color: #ffffff;
  background: none !important;
}
.appHeader--darkBG a.dropdownMenu-a {
  color: #ffffff !important;
}
.appHeader--darkBG a.dropdownMenu-a:hover {
  color: #505b66 !important;
}
.appHeader--darkBG .dropdownMenu-list {
  background-color: #3d454d;
  border-top: none;
}
.appHeader--darkBG .no-project-header {
  color: #ffffff;
}
.appHeader--darkBG .navHeader {
  color: #ffffff;
}
.userMenu .btn,
.userMenu a.btn,
.userMenu .btn:visited,
.userMenu a.btn:visited {
  color: #ffffff;
}
.userMenu .btn-outline-black {
  color: #505b66;
}
.userMenu .btn-outline-black:hover {
  background-color: white;
  color: #505b66;
}
.userMenu .join-btn.focus-visible {
  outline: #000000 1px solid;
  outline-offset: 0px;
}
.userMenu .join-btn:focus-visible {
  outline: #000000 1px solid;
  outline-offset: 0px;
}
a.userMenu-a {
  padding: 12px 20px;
}
.userMenu-userPhoto {
  margin-right: 8px;
  display: inline;
  vertical-align: middle;
}
.mobileHeaderMenu {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobileHeaderMenu-backButton {
  font-size: 18px;
  line-height: 24px;
  overflow: hidden;
  padding: 16px 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.mobileHeaderMenu-backtext {
  margin-top: 18px;
}
.mobileHeaderMenu-backButtonArrow {
  float: left;
  margin-right: 8px;
}
.mobileHeaderMenu-hamburger {
  padding: 16px 18px;
}
.mobileHeaderMenu-leftNav-bg {
  background: rgba(0, 0, 0, 0.35);
  height: 100%;
  position: absolute;
}
.mobileHeaderMenu-leftNav {
  background-color: #e3e6ea;
  width: 280px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 20;
  border-right: 1px solid #d0d3da;
}
.mobileHeaderMenu-leftNav .btn,
.mobileHeaderMenu-leftNav a.btn,
.mobileHeaderMenu-leftNav .btn:visited,
.mobileHeaderMenu-leftNav a.btn:visited {
  color: #ffffff;
}
.mobileHeaderMenu-leftNav a.mobileHeaderMenu-hamburger {
  color: #505b66;
}
.mobileHeaderMenu-leftNav li {
  list-style-type: none;
}
.mobileHeaderMenu-hr {
  border: none;
  border-top: 1px solid #d0d3da;
  margin: 10px -20px 8px;
}
.mobileHeaderMenu-photo {
  margin-bottom: 5px;
}
.mobileHeaderMenu-noPhoto {
  font-size: 56px;
  color: #505b66;
  margin: 0 -6px;
}
.mobileHeaderMenu-accountSettings {
  margin-top: -8px;
  color: #505b66;
  font-weight: 500;
}
.mobileHeaderMenu-arrow {
  position: absolute;
  top: 32%;
  right: 0;
}
.appHeader-overflowMenu {
  padding: 4px 0;
}
.appHeader__ask-a-pro-notifications {
  color: #3d454d !important;
  cursor: pointer;
  right: 75px;
  position: absolute;
}
.appHeader__ask-a-pro-notifications .material-icons {
  line-height: 56px;
}
.accountSettings-enter {
  opacity: 0.01;
  -webkit-transition: opacity 0.2s ease-in;
  transition: opacity 0.2s ease-in;
}
.accountSettings-enter.accountSettings-enter-active {
  opacity: 1;
}
.my-project-menu .material-icons {
  color: #2b73de;
}
.appHeader-navTabs--projects .u-pullLeft {
  width: 273px;
}
.dropdownMenu-list.appHeader-myHome {
  -webkit-transform: translateX(-25%);
  transform: translateX(-25%);
}
.dropdownMenu-list.appHeader-myChecklist {
  padding-bottom: 0;
}
.dropdownMenu-list.appHeader-myChecklist .appHeader-myChecklist-footer {
  background-color: white;
  border-top: 1px solid #e3e6ea;
  padding: 16px;
}
.dropdownMenu-list.appHeader-myChecklist .appHeader-myChecklist-footer a {
  text-transform: uppercase;
  color: #2b73de;
  font-size: 13px;
  font-weight: bold;
  line-height: 18px;
  letter-spacing: 2px;
}
.appHeader .group {
  clear: both;
}
.no-project-header {
  color: #505b66;
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.no-project-button {
  min-height: 32px;
  padding: 8px 12px;
  line-height: 1.3;
}
.material-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: top;
  margin: -2px 0 -8px 3px;
}
.material-inverse {
  color: #ffffff;
}
.material-stack-1x,
.material-stack-2x {
  position: absolute;
  left: -2px;
  top: -2px;
  width: 100%;
  text-align: center;
}
.material-stack-1x {
  line-height: inherit;
  font-size: x-small;
}
.dropdownMenu:hover .appHeader-a {
  background: #e3e6ea;
}
.dropdownMenu-list {
  position: absolute;
  display: none;
  background: #e3e6ea;
  -webkit-box-shadow: 0 1px 3px rgba(61, 69, 77, 0.1), 0 1px 2px rgba(61, 69, 77, 0.1);
  box-shadow: 0 1px 3px rgba(61, 69, 77, 0.1), 0 1px 2px rgba(61, 69, 77, 0.1);
  border: 1px solid #d0d3da;
  z-index: 200;
  min-width: 160px;
  font-size: 1.3rem;
  color: #d0d3da;
  padding: 20px 0;
}
.dropdownMenu-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.dropdownMenu-list ul li {
  padding: 0;
  margin: 0;
}
.navHeader {
  margin: 0;
  padding-left: 10px;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 31px;
  color: #505b66;
}
.navHeader a:link,
.navHeader a:visited,
.navHeader a:hover {
  color: #505b66;
}
a.navHeader-a {
  color: #757d88;
  font-weight: 500;
  font-size: 1.3rem;
}
a.dropdownMenu-a {
  height: 31px;
  line-height: 31px;
  padding: 0 10px;
  display: block;
  color: #505b66;
  font-weight: 500;
  white-space: nowrap;
  min-width: 210px;
}
a.dropdownMenu-a:hover {
  color: #505b66;
  text-decoration: none;
  background-color: #d0d3da;
}
a.dropdownMenu-a.all {
  color: #505b66;
  font-weight: 700;
  display: inline-block;
}
.col-2 {
  min-width: 360px;
}
.col-3 {
  min-width: 560px;
}
.dropdownMenu:hover:not(.dropdownMenu-list-hidden) .dropdownMenu-list,
.dropdownMenu-list-visible {
  display: block;
}
.dropdownMenu-list-hidden {
  display: none;
}
.dropdownMenu.is-rightAligned .dropdownMenu-list {
  right: 0;
}
.dropdownMenu.is-showing .dropdownMenu-list {
  display: block;
}
.bpAutocomplete-name {
  max-width: calc(100% - 70px);
}
.bpAutocomplete-recordType {
  position: absolute;
  top: -2px;
  right: 0;
  padding: 4px 7px;
  background-color: #6B7178;
  border-radius: 2px;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
}
.bpAutocomplete-contact {
  padding-top: 4px;
  line-height: 120%;
  color: #A1A6AA;
  font-size: 13px;
}
.bpAutocomplete.reactAutosuggest .react-autosuggest__suggestion--highlighted,
.bpAutocomplete.reactAutosuggest .react-autosuggest__suggestion:hover {
  background-color: #e3e6ea;
}
.bpAutocomplete.reactAutosuggest .react-autosuggest__container--open .react-autosuggest__suggestions-container {
  max-height: 500px;
}
.backPorchHeader {
  height: 56px;
  background-color: #303E53;
  margin: 0 auto;
}
.backPorchHeader-chevron {
  width: 20px;
  height: auto;
  margin: 0 30px 0 19px;
}
.backPorchHeader .dropdownMenu-list {
  background-color: #ffffff;
  border: none;
  padding: 0;
  -webkit-box-shadow: 2px 2px 3px rgba(117, 125, 136, 0.3), -2px 0 3px rgba(117, 125, 136, 0.3);
  box-shadow: 2px 2px 3px rgba(117, 125, 136, 0.3), -2px 0 3px rgba(117, 125, 136, 0.3);
}
.backPorchHeader a.dropdownMenu-a {
  color: #3d454d;
  height: 39px;
  line-height: 39px;
  padding-left: 15px;
  font-size: 14px;
}
.backPorchHeader a.dropdownMenu-a:hover {
  background-color: #e3e6ea;
}
.backPorchHeader a.dropdownMenu-a.logOut {
  font-weight: 700;
  border-top: 1px solid #e3e6ea;
  height: 44px;
  line-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.backPorchHeader-logOutIcon.material-icons {
  color: #505b66;
  line-height: 42px;
}
.backPorchHeader .navHeader {
  color: #3d454d;
  padding-top: 8px;
}
.backPorchHeader-userImg {
  margin-right: 12px;
  width: 32px;
  height: 32px;
}
.backPorchHeader-userName {
  display: none;
  font-weight: 700;
  font-size: 14px;
  padding-left: 15px;
}
.backPorchHeader .dropdownMenu.userMenu:hover {
  background-color: #ffffff;
  width: 215px;
}
.backPorchHeader .dropdownMenu.userMenu:hover .backPorchHeader-userName {
  display: inline-block;
}
.backPorchHeader .dropdownMenu.userMenu:hover .backPorchHeader-userTab {
  border-bottom: 1px solid #e3e6ea;
  -webkit-box-shadow: 2px 2px 3px rgba(117, 125, 136, 0.3), -2px 0 3px rgba(117, 125, 136, 0.3);
  box-shadow: 2px 2px 3px rgba(117, 125, 136, 0.3), -2px 0 3px rgba(117, 125, 136, 0.3);
}
.backPorchHeader .dropdownMenu.userMenu .dropdownMenu-list {
  width: 215px;
}
.backPorchHeader-userTab {
  height: 56px;
}
.backPorchHeader .search {
  border-left-style: solid;
  border-left-width: 1px;
  margin: 6px 0 6px 8px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-color: #d0d3da;
}
.backPorchHeader .search form {
  width: 100%;
  margin: 0 16px 0 16px;
}
.backPorchHeader .search .reactAutosuggest {
  margin: 0;
  width: 100%;
  max-width: 320px;
}
.backPorchHeader .search .reactAutosuggest .react-autosuggest__input {
  padding: 8px 8px 8px 40px;
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 2px;
  background-color: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  height: 44px;
  line-height: 44px;
}
.backPorchHeader .search .reactAutosuggest .react-autosuggest__input:focus {
  background-color: rgba(255, 255, 255, 0.2);
}
.backPorchHeader .search .reactAutosuggest .react-autosuggest__input::-webkit-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.backPorchHeader .search .reactAutosuggest .react-autosuggest__input::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}
.backPorchHeader .search .reactAutosuggest .react-autosuggest__input:-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.backPorchHeader .search .reactAutosuggest .react-autosuggest__input::-ms-input-placeholder {
  color: #ffffff;
  opacity: 1;
}
.backPorchHeader .search .reactAutosuggest .react-autosuggest__input::placeholder {
  color: #ffffff;
  opacity: 1;
}
.backPorchHeader .search .reactAutosuggest .react-autosuggest__container--open .react-autosuggest__suggestions-container {
  top: 44px;
  font-size: 1.4rem;
  border: 0;
  z-index: 200;
}
a.backPorchHeader-tab-a {
  line-height: 56px;
  padding: 0 16px;
  height: 56px;
  font-size: 14px;
  font-weight: 500;
  color: #d0d3da;
  display: block;
  overflow: hidden;
}
a.backPorchHeader-tab-a.isSelected {
  border-bottom: 5px solid #ffd451;
  color: #ffffff;
}
a.backPorchHeader-tab-a:hover {
  border-bottom: 5px solid #6ea1ff;
  color: #ffffff;
}
.mobileHeaderMenu-list {
  padding: 5px 0;
}
.mobileHeaderMenu-listItem {
  display: block;
  padding: 9px 0;
  font-size: 14px;
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.menuTop {
  height: 150px;
  padding-top: 75px;
}
.menuTop-loggedIn {
  height: 185px;
  padding-top: 80px;
}
#menuToggle {
  display: block;
  position: absolute;
  z-index: 1;
  padding-left: 20px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 100%;
}
#menuToggle:hover {
  min-width: 250px;
  position: fixed;
}
#menuToggle input {
  display: block;
  width: 80px;
  height: 60px;
  position: absolute;
  top: -7px;
  left: -5px;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}
#menu {
  margin: 0px;
  padding: 50px;
  padding-top: 125px;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  -webkit-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), -webkit-transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
  background-color: #ffffff;
  width: 280px;
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
}
#menu li {
  font-size: 22px;
}
#menuToggle input:checked ~ ul {
  -webkit-transform: none;
  transform: none;
}
.mobileHeaderMenuV2 {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.mobileHeaderMenuV2 .material-icons {
  margin-top: 16px;
}
.mobileHeaderMenuV2-experimental .material-icons {
  margin-top: 20px;
}
.mobileHeaderMenuV2-backButton {
  font-size: 18px;
  line-height: 24px;
  overflow: hidden;
  padding: 16px 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: 100%;
}
.mobileHeaderMenuV2-backtext {
  margin-top: 18px;
}
.mobileHeaderMenuV2-backButtonArrow {
  float: left;
  margin-right: 8px;
}
.mobileHeaderMenuV2-hamburger {
  padding: 16px 18px;
}
.mobileHeaderMenuV2-leftNav-bg {
  background: rgba(0, 0, 0, 0.35);
  height: 100%;
  position: absolute;
}
.mobileHeaderMenuV2-leftNav {
  background-color: #e3e6ea;
  width: 280px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
}
.mobileHeaderMenuV2-leftNav .u-bgWhite .material-icons {
  margin-top: 20px;
  margin-left: 20px;
}
.mobileHeaderMenuV2-leftNav a.mobileHeaderMenuV2-hamburger {
  color: #505b66;
}
.mobileHeaderMenuV2-hr {
  border: none;
  border-top: 1px solid #d0d3da;
  margin: 10px -20px 8px;
}
.mobileHeaderMenuV2-photo {
  margin-bottom: 5px;
}
.mobileHeaderMenuV2-noPhoto {
  font-size: 56px;
  color: #505b66;
  margin: 0 -6px;
}
.mobileHeaderMenuV2-accountSettings {
  margin-top: -8px;
  color: #505b66;
  font-weight: 500;
}
.mobileHeaderMenuV2-arrow {
  position: absolute;
  top: 32%;
  right: 0;
}
.mobileHeaderMenuV2-list {
  padding: 5px 0;
}
.mobileHeaderMenuV2-listItem {
  display: block;
  padding: 9px 0;
  font-size: 14px;
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.seoNav .dropdownMenu-list {
  padding: 0.5rem 1rem 1rem;
}
.seoNav .dropdownMenu-list h2 {
  padding-top: 1rem;
}
.seoNav .dropdownMenu-list > .group {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(-webkit-max-content, 0.5fr);
  grid-auto-columns: minmax(max-content, 0.5fr);
  -webkit-column-gap: 1rem;
  -moz-column-gap: 1rem;
  grid-column-gap: 1rem;
  column-gap: 1rem;
}
.seoNav .advice-tiles button {
  margin-bottom: 0;
}
.seoNav .navHeader {
  font-size: 1.5rem;
  padding-left: 0;
}
.seoNav a.dropdownMenu-a {
  padding: 0;
  min-width: 0;
}
.proUserMenu {
  position: absolute;
  top: 0;
  right: 0;
}
.proUserMenu .proDropdownMenu {
  position: relative;
}
.proUserMenu .proDropdownMenu-headshot {
  padding: 12px 16px 10px 10px;
  display: inline-block;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
.proUserMenu .proDropdownMenu-flyout {
  display: none;
}
.proUserMenu .proDropdownMenu-head {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.proUserMenu .proDropdownMenu-head-name {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 16px 10px 5px 16px;
}
.proUserMenu .proDropdownMenu-links {
  font-size: 1.4rem;
  margin-top: 12px;
}
.proUserMenu .proDropdownMenu-link {
  color: #3d454d;
  display: inline-block;
  padding: 10px 16px;
  width: 100%;
}
.proUserMenu .proDropdownMenu-link-mobile-nav {
  display: none;
}
.proUserMenu .proDropdownMenu-link-logout {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.proUserMenu .proDropdownMenu-link:hover {
  background-color: #f3f4f6;
}
.proUserMenu .proDropdownMenu-section {
  border-top: 1px solid #e3e6ea;
}
.proUserMenu .proDropdownMenu:hover {
  display: block;
  z-index: 200;
}
.proUserMenu .proDropdownMenu:hover .proDropdownMenu-flyout {
  display: block;
}
.proUserMenu .proDropdownMenu:hover .proDropdownMenu-flyout-wrapper {
  width: 250px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 1px 3px rgba(61, 69, 77, 0.1), 0 1px 2px rgba(61, 69, 77, 0.1);
  box-shadow: 0 1px 3px rgba(61, 69, 77, 0.1), 0 1px 2px rgba(61, 69, 77, 0.1);
  border-left: 1px solid #d0d3da;
  border-bottom: 1px solid #d0d3da;
  z-index: 200;
  font-size: 1.3rem;
  color: #3d454d;
}
.proUserMenu-logged-out {
  float: right;
}
.proUserMenu-sign-up {
  margin: 10px 20px;
}
.proBalance {
  padding: 0 0 2px 16px;
}
.proBalance-count {
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}
.proBalance-label {
  color: #505b66;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 2px 10px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  vertical-align: middle;
}
.proBalance-label b {
  color: #3d454d;
}
.proBalance-mobile {
  position: absolute;
  top: 0;
  right: 0;
}
.flyout .inspectorMobileMenu {
  display: none;
  z-index: 200;
  right: auto;
  position: relative;
  background-color: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-left: 0;
  border-bottom: 0;
  border-right: 1px solid #d0d3da;
  border-top: 1px solid #d0d3da;
  height: 100vh;
  width: 250px;
}
.flyout .inspectorMobileMenu-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: -12px;
}
.flyout .inspectorMobileMenu-user-headshot {
  padding: 12px 16px 10px 10px;
  display: inline-block;
}
.flyout .inspectorMobileMenu-user-name {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 20px 10px 5px 16px;
}
.flyout .inspectorMobileMenu-links {
  font-size: 1.4rem;
  margin-top: 12px;
}
.flyout .inspectorMobileMenu-link {
  color: #3d454d;
  display: inline-block;
  padding: 10px 16px;
  width: 100%;
}
.flyout .inspectorMobileMenu-link-logout {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flyout .inspectorMobileMenu-link:hover {
  background-color: #f3f4f6;
}
.flyout .inspectorMobileMenu-section {
  border-top: 1px solid #e3e6ea;
}
.flyout .inspectorMobileMenu:hover {
  display: block;
  z-index: 10;
}
.flyout .inspectorMobileMenu-link-mobile-nav {
  display: block;
  font-weight: bold;
}
.advice-tiles {
  margin-left: 10px;
}
.advice-tiles__tile {
  display: inline-block;
  margin-right: 17px;
  vertical-align: top;
}
.advice-tiles__text {
  font-size: 14px;
  text-align: left;
  padding-top: 10px;
  font-weight: 700;
  line-height: 20px;
  color: #2F3E54;
  padding-bottom: 5px;
  width: 190px;
}
.advice-tiles__see-more {
  display: block;
}
.advice-tiles img {
  width: 190px;
  height: 138px;
  display: inline-block;
}
.advice-tiles button {
  margin-bottom: 32px;
}
.advice-tiles li {
  display: inline-block;
}
.http-error-bg-container {
  position: relative;
  height: 540px;
  overflow: hidden;
  color: #ffffff;
  padding: 0;
}
.http-error-bg-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  width: 100%;
  height: 540px;
  -webkit-filter: brightness(0.8);
  filter: brightness(0.8);
}
.http-error-404-bg-image {
  background-image: url(https://imagescdn.staticp.com/api/application-image/display/v2/a1500x600/bootstrap/0web/error-pages/404-empty-room.jpg);
}
.http-error-500-bg-image {
  background-image: url(https://imagescdn.staticp.com/api/application-image/display/v2/a1500x600/bootstrap/0web/error-pages/500-washing-machine.jpg);
}
.http-error-header {
  position: absolute;
  left: 0;
  top: 20px;
  width: 100%;
  margin-top: 75px;
}
.http-error-header-h1 {
  font-size: 5.8rem;
}
.http-error-header-h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
}
.proUserMenu {
  position: absolute;
  top: 0;
  right: 0;
}
.proUserMenu .proDropdownMenu {
  position: relative;
}
.proUserMenu .proDropdownMenu-headshot {
  padding: 12px 16px 10px 10px;
  display: inline-block;
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
}
.proUserMenu .proDropdownMenu-flyout {
  display: none;
}
.proUserMenu .proDropdownMenu-head {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.proUserMenu .proDropdownMenu-head-name {
  font-size: 1.4rem;
  font-weight: bold;
  padding: 16px 10px 5px 16px;
}
.proUserMenu .proDropdownMenu-links {
  font-size: 1.4rem;
  margin-top: 12px;
}
.proUserMenu .proDropdownMenu-link {
  color: #3d454d;
  display: inline-block;
  padding: 10px 16px;
  width: 100%;
}
.proUserMenu .proDropdownMenu-link-mobile-nav {
  display: none;
}
.proUserMenu .proDropdownMenu-link-logout {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.proUserMenu .proDropdownMenu-link:hover {
  background-color: #f3f4f6;
}
.proUserMenu .proDropdownMenu-section {
  border-top: 1px solid #e3e6ea;
}
.proUserMenu .proDropdownMenu:hover {
  display: block;
  z-index: 200;
}
.proUserMenu .proDropdownMenu:hover .proDropdownMenu-flyout {
  display: block;
}
.proUserMenu .proDropdownMenu:hover .proDropdownMenu-flyout-wrapper {
  width: 250px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 1px 3px rgba(61, 69, 77, 0.1), 0 1px 2px rgba(61, 69, 77, 0.1);
  box-shadow: 0 1px 3px rgba(61, 69, 77, 0.1), 0 1px 2px rgba(61, 69, 77, 0.1);
  border-left: 1px solid #d0d3da;
  border-bottom: 1px solid #d0d3da;
  z-index: 200;
  font-size: 1.3rem;
  color: #3d454d;
}
.proUserMenu-logged-out {
  float: right;
}
.proUserMenu-sign-up {
  margin: 10px 20px;
}
.proBalance {
  padding: 0 0 2px 16px;
}
.proBalance-count {
  font-size: 1.2rem;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
}
.proBalance-label {
  color: #505b66;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 2px 10px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  vertical-align: middle;
}
.proBalance-label b {
  color: #3d454d;
}
.proBalance-mobile {
  position: absolute;
  top: 0;
  right: 0;
}
.tooltip {
  position: absolute;
  bottom: 60px;
  /* Defines the spacing between tooltip and target position */
  left: -76px;
  width: 200px;
  color: #3d454d;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #9ea4ae;
  -webkit-box-shadow: 3px 6px 4px rgba(0, 0, 0, 0.1);
  box-shadow: 3px 6px 4px rgba(0, 0, 0, 0.1);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  z-index: 100;
}
.tooltip-inner {
  max-width: none;
  min-width: 100px;
  text-align: left;
  padding: 4px;
}
/* Arrow styles */
.tooltip:after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  margin: -6px;
  background: inherit;
  border-bottom: inherit;
  border-right: inherit;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.tooltip--top:after,
.tooltip--topLeft:after,
.tooltip--topRight:after {
  bottom: 0;
}
.tooltip--bottom:after,
.tooltip--bottomLeft:after,
.tooltip--bottomRight:after {
  top: 0;
}
.tooltip--top:after,
.tooltip--bottom:after {
  left: 50%;
}
.tooltip--topLeft:after,
.tooltip--bottomLeft:after {
  right: 15px;
}
.tooltip--topRight:after,
.tooltip--bottomRight:after {
  left: 15px;
}
.tooltip--left:after,
.tooltip--leftTop:after,
.tooltip--leftBottom:after {
  right: 0;
}
.tooltip--right:after,
.tooltip--rightTop:after,
.tooltip--rightBottom:after {
  left: 0;
}
.tooltip--left:after,
.tooltip--right:after {
  top: 50%;
}
.tooltip--leftTop:after,
.tooltip--rightTop:after {
  bottom: 15px;
}
.tooltip--leftBottom:after,
.tooltip--rightBottom:after {
  top: 15px;
}
.tooltip.isHidden {
  display: none;
}
.tooltip-thumbnail {
  width: 34px;
  height: 34px;
  margin-right: 5px;
  display: inline-block;
}
.tooltip-name {
  width: 151px;
}
.marker .inlineList-item {
  display: inline;
}
.btn.btn-fb {
  background-color: #2b73de;
}
.btn.btn-fb:hover {
  background: #1d5cb9;
}
.facebook-btn-container {
  padding-left: 10px;
  padding-right: 10px;
}
.btn-fullWidth {
  max-width: none;
  width: 100%;
}
.authForm {
  padding: 0 20px;
  text-align: center;
}
.authForm-heading {
  color: #3d454d;
  font-weight: 700;
  font-size: 1.7rem;
  margin-bottom: 5px;
}
.authForm-subHeading {
  font-weight: 700;
  font-size: 1.5rem;
  margin-top: 10px;
  margin-bottom: 20px;
  color: #9ea4ae;
  white-space: normal;
}
.authForm-subHeading.bottom {
  margin: 10px 0 0;
}
.authForm-facebook-button-divider {
  color: #505b66;
  margin: 1.5em 10px;
  display: table;
}
.authForm-facebook-button {
  padding-bottom: 10px;
}
.authForm-facebook-button-divider:before,
.authForm-facebook-button-divider:after {
  content: " ";
  border-bottom: 1px solid;
  display: table-cell;
  width: 50%;
  position: relative;
  top: -9px;
}
.authForm-facebook-button-text {
  color: #474f57;
  font-size: 1.8rem;
  padding: 0 20px;
}
.authForm-forgotPassword {
  font-weight: 700;
  font-size: 1.5rem;
  color: #9ea4ae;
  margin-top: 10px;
}
.forgotPasswordSuccess-heading {
  font-weight: 700;
  font-size: 1.7rem;
  color: #3d454d;
  margin-bottom: 5px;
}
.forgotPasswordSuccess-content {
  padding: 0 20px 10px;
}
.forgotPasswordSuccess-content-text {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  color: #9ea4ae;
}
.forgotPasswordSuccess-content-help {
  font-size: 1.5rem;
  margin: 15px 0;
}
.forgotPasswordSuccess-content-phone {
  font-size: 1.7rem;
  color: #3d454d;
  margin: 15px 0;
}
.authForm-legal {
  font-weight: 700;
  font-size: 1.2rem;
  margin: 10px auto 0 auto;
  color: #9ea4ae;
  width: 80%;
}
.modalDialog.authFormModal-dialog {
  max-width: 400px;
  text-align: center;
}
.authFormModal-header {
  margin: 10px;
}
.authFormModal-header-image {
  width: 100px;
  margin: auto;
  padding-top: 15px;
}
.authFormModal-body {
  padding-top: 30px;
  background-color: #f3f4f6;
}
.reactAutosuggest {
  position: relative;
}
.reactAutosuggest .react-autosuggest__container {
  position: relative;
  width: 100%;
}
.reactAutosuggest .react-autosuggest__input {
  width: 100%;
  height: auto;
  padding: 20px 30px 20px 15px;
  font-weight: normal;
  font-size: 15px;
  border: 1px solid #d3d6db;
  border-radius: 4px;
  background-color: transparent;
}
.reactAutosuggest .react-autosuggest__input:focus {
  outline: none;
  border-color: #2b73de;
  -webkit-box-shadow: 0 0 0 1px #2b73de;
  box-shadow: 0 0 0 1px #2b73de;
}
.reactAutosuggest .react-autosuggest__input::-webkit-input-placeholder {
  color: #505b66;
}
.reactAutosuggest .react-autosuggest__input::-moz-placeholder {
  color: #505b66;
}
.reactAutosuggest .react-autosuggest__input:-ms-input-placeholder {
  color: #505b66;
}
.reactAutosuggest .react-autosuggest__input::-ms-input-placeholder {
  color: #505b66;
}
.reactAutosuggest .react-autosuggest__input::placeholder {
  color: #505b66;
}
.reactAutosuggest .react-autosuggest__container--open .react-autosuggest__input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.reactAutosuggest .react-autosuggest__container--open .react-autosuggest__suggestions-container {
  display: block;
  position: absolute;
  top: 60px;
  width: 100%;
  border: 1px solid #d3d6db;
  background-color: #ffffff;
  font-weight: normal;
  font-size: 15px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  z-index: 2;
  max-height: 400px;
  overflow-y: auto;
  -webkit-box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px -1px rgba(0, 0, 0, 0.5);
}
.reactAutosuggest .react-autosuggest__suggestions-container {
  display: none;
}
.reactAutosuggest .react-autosuggest__suggestions-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.reactAutosuggest .react-autosuggest__suggestion {
  cursor: pointer;
  padding: 10px 15px;
  border-bottom: 1px solid #d3d6db;
  color: #000000;
}
.reactAutosuggest .react-autosuggest__suggestion--highlighted,
.reactAutosuggest .react-autosuggest__suggestion:hover {
  background-color: #2b73de;
}
.reactAutosuggest .react-autosuggest__suggestion--highlighted div,
.reactAutosuggest .react-autosuggest__suggestion:hover div {
  color: #ffffff;
}
.reactAutosuggest .react-autosuggest__section-title {
  border-bottom: 1px solid #d3d6db;
  background-color: #a1a6aa;
  color: #ffffff;
  font-size: 14px;
  padding: 10px 15px;
  text-transform: uppercase;
}
.reactAutosuggest .react-autosuggest__section-container:first-child .react-autosuggest__section-title {
  border-top: 0;
}
.reactAutosuggest-floatingLabel-label {
  font-size: 16px;
  color: #505b66;
  position: absolute;
  top: 12px;
  left: 15px;
  z-index: 1;
  -webkit-transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1) 0ms;
  -webkit-transform: scale(0.75) translate(0px, -15px);
  transform: scale(0.75) translate(0px, -15px);
  -webkit-transform-origin: left top 0px;
  transform-origin: left top 0px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-top: 8px;
}
.reactAutosuggest-floatingLabel .react-autosuggest__input {
  padding: 25px 30px 15px 15px;
}
.reactAutosuggest.reactAutosuggest-error .react-autosuggest__input {
  border: 1px solid #e15b4f;
}
.reactAutosuggest.reactAutosuggest-error .reactAutosuggest-floatingLabel-label {
  color: #e15b4f;
}
.proCredit {
  height: 350px;
}
.proCredit-intro,
.proCredit-comments,
.proCredit-confirmation {
  font-size: 1.4rem;
}
.proCredit-header {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.proCredit-reason {
  /* ui-library-selection-control */
}
.proCredit-reason-selection .ul-selection-title {
  font-size: 1.5rem;
  font-weight: bold;
}
.proCredit-reason-selection .ul-selection-control {
  background-color: #ffffff;
  padding: 15px;
  margin: 10px 0;
  -webkit-box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  border: 1px solid #d0d3da;
}
.proCredit-reason-selection .ul-selection-control-text {
  font-size: 1.6rem;
  font-weight: bold;
}
.proCredit-reason-selection .ul-selection-control-description {
  font-size: 1.3rem;
  color: #505b66;
  margin-bottom: 0;
}
.proCredit-list {
  font-weight: bold;
  padding-left: 25px;
}
.proCredit-list-title {
  display: inline;
  padding-left: 5px;
}
.proCredit-list-sub {
  font-size: 1.3rem;
  font-weight: normal;
  color: #757d88;
  padding: 0 0 10px 20px;
}
.proCredit-error {
  padding: 10px;
  margin: 10px 0;
  border: 2px solid #d32f2f;
  color: #d32f2f;
}
.contextModal {
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 40;
  -webkit-animation: fade-in 400ms;
  animation: fade-in 400ms;
}
.contextModal-wrapper {
  background-color: #ffffff;
  max-width: 500px;
}
.contextModal-title {
  padding: 10px 14px;
  margin: 0;
  background-color: #757d88;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
}
.contextModal p.contextModal-message {
  margin: 0 0 20px;
}
.contextModal hr.contextModal-hr {
  border: 0;
  border-top: 1px solid #d0d3da;
  margin: 0 0 10px;
}
.contextModal-close-button {
  font-size: 1.4rem;
  cursor: pointer;
  float: right;
  margin: 5px;
}
.contextModal-close-button a {
  color: #ffffff;
}
.tradesAndServices {
  min-height: 350px;
}
.tradesAndServices-autosuggest {
  border-radius: 10px;
  border: 5px solid #6ea1ff;
  position: relative;
}
.tradesAndServices-autosuggest-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #ffffff;
}
.tradesAndServices-autosuggest-wrapper {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.tradesAndServices-autosuggest-wrapper .reactAutosuggest .react-autosuggest__input {
  border: none;
  height: auto;
  padding: 20px 45px 20px 20px;
}
.tradesAndServices-autosuggest-wrapper .reactAutosuggest .react-autosuggest__suggestions-container {
  top: 56px;
}
.tradesAndServices-autosuggest-clearBtn {
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 18px;
  z-index: 30;
  padding: 0;
  border: 0;
  color: #9ea4ae;
}
.tradesAndServices-autosuggest-clearBtn:hover {
  color: #3d454d;
}
.tradesAndServices-autosuggest-addBtn {
  border-left: 1px solid #9ea4ae;
  border-radius: 0 3px 3px 0;
  color: #2b73de;
  width: 100px;
}
.tradesAndServices-trade {
  border-radius: 6px;
  border: 2px solid #d0d3da;
  margin-top: 10px;
}
.tradesAndServices-trade-header {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 15px;
  border: 0;
  background-color: transparent;
}
.tradesAndServices-trade-header:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 0;
}
.tradesAndServices-trade-title {
  margin: 0;
  font-weight: 700;
}
.tradesAndServices-trade-expand {
  text-align: right;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.tradesAndServices-trade-pleaseCheck {
  display: inline-block;
  margin: 0;
  color: #757d88;
}
.tradesAndServices-trade-batchActions {
  float: right;
  font-size: 1.2rem;
  margin-top: 10px;
  text-transform: uppercase;
}
.tradesAndServices-trade-batchActions-divider {
  margin: 0 5px;
  color: #d0d3da;
}
.tradesAndServices-trade-servicesList {
  margin-top: 5px;
  padding: 0 15px 15px 15px;
}
.tradesAndServices-trade-primary {
  font-size: 1.1rem;
  padding: 5px 10px;
  margin-right: 10px;
  color: #757d88;
  background-color: #f3f4f6;
  border-radius: 3px;
  text-transform: uppercase;
}
.tradesAndServices-trade-pricesShown {
  font-weight: 700;
}
.tradesAndServices-service {
  background-color: #ffffff;
  border: 1px solid #6ea1ff;
  border-radius: 3px;
  display: inline-block;
  margin: 0 10px 10px 0;
  padding: 3px 6px 3px 3px;
}
.tradesAndServices-service-label {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.tradesAndServices-service-price {
  color: #2b73de;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 185%;
  padding-left: 10px;
  opacity: 0.85;
}
.tradesAndServices-service-name {
  color: #2b73de;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 185%;
  margin: 0;
}
.tradesAndServices-service .ul-selection-control {
  color: #2b73de;
}
.tradesAndServices-service-selected {
  background-color: #2b73de;
  border-color: #2b73de;
}
.tradesAndServices-service-selected .tradesAndServices-service-name,
.tradesAndServices-service-selected .tradesAndServices-service-price {
  color: #ffffff;
}
.tradesAndServices-service-selected .ul-selection-control {
  color: #ffffff;
}
.tradesAndServices-tradesFound-trade {
  margin-bottom: 8px;
}
.tradesAndServices-tradesFound-name {
  font-size: 1.5rem;
  margin: 2px 0 0;
}
.tradesAndServices .noServicesSelectedModal {
  font-size: 16px;
}
.tradesAndServices .noServicesSelectedModal-subheader {
  font-weight: bold;
  font-size: 18px;
}
.tradesAndServices .noServicesSelectedModal-link {
  font-weight: bold;
}
.stripe-checkout-errors {
  color: #d32f2f;
  height: 20px;
}
.stripe-checkout-label {
  width: 90%;
  display: block;
}
.stripe-checkout-inline-inputs {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-top: 6px;
  width: 100%;
}
.stripe-checkout-expiry-container {
  padding-right: 6px;
  width: 40%;
}
.stripe-checkout-cvc-container {
  padding-right: 6px;
  width: 26%;
}
.stripe-checkout-zip-container {
  width: 34%;
}
/* StripeElement is provided by react-stripe-elements */
.StripeElement {
  display: block;
  border-radius: 2px;
  border: 1px solid #d0d3da;
  text-indent: 16px;
  padding: 12px 8px;
}
.save-or-cancel button {
  margin-right: 1rem;
  margin-bottom: 1rem;
  width: 140px;
}
.card-set {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  vertical-align: middle;
  margin-left: 2rem;
}
.card-set svg {
  margin-right: 1rem;
}
.saved-card-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  border-radius: 2px;
  border: 1px solid #d0d3da;
  text-indent: 16px;
  padding: 12px 8px;
}
.saved-card-element.selected-card {
  background-color: grey;
  color: white;
}
.saved-card-element .card-brand-img-container {
  padding-bottom: 5px;
  padding-top: 5px;
}
.saved-card-element .card-text-container .card-brand-last4 {
  text-align: left;
}
.saved-card-element .card-text-container .card-expiration {
  text-align: left;
}
.card-button button {
  padding: 0;
  width: 100%;
  text-transform: none;
  font-weight: normal;
  font-size: unset;
  height: unset;
  border-width: 0;
  line-height: 1.66667;
}
.card-button button:hover {
  background: #505b66 !important;
  border-color: #505b66 !important;
  color: #ffffff !important;
}
.card-button button:focus {
  outline-color: #505b66;
}
.card-button button:disabled {
  background: inherit;
  border-color: inherit;
  cursor: default;
  opacity: unset;
}
.card-button button:disabled:hover {
  background: inherit;
  border-color: inherit;
  color: #505b66;
}
.card-button button:disabled:focus {
  outline: 0;
}
.card-button button .ui-library-button-content {
  width: 100%;
}
.remove-card-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.icon {
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
.icon--plan-ppl {
  background-image: url("https://cdn.porch.com/pro/icons/plan-ppl.png");
  width: 48px;
  height: 48px;
}
.icon--plan-paygo {
  background-image: url("https://cdn.porch.com/pro/icons/plan-paygo.png");
  width: 48px;
  height: 48px;
}
.icon--dashboard-cta-cc {
  background-image: url("https://cdn.porch.com/pro/icons/dashboard-cta-cc.png");
  width: 64px;
  height: 64px;
}
.icon--dashboard-cta-gp {
  background-image: url("https://cdn.porch.com/pro/icons/dashboard-cta-gp.png");
  width: 64px;
  height: 64px;
}
.icon--dashboard-cta-leadshop {
  background-image: url("https://cdn.porch.com/pro/icons/dashboard-cta-leadshop.png");
  width: 64px;
  height: 64px;
}
.icon--dashboard-cta-ppl {
  background-image: url("https://cdn.porch.com/pro/icons/dashboard-cta-ppl.png");
  width: 64px;
  height: 64px;
}
.icon--dashboard-cta-badge {
  margin-left: 10px;
  background-image: url("https://cdn.porch.com/pro/icons/dashboard-cta-badge.png");
  width: 64px;
  height: 64px;
}
.icon--dashboard-cta-badge.bop {
  margin-left: 0px;
  margin-right: 2px;
  background-image: url("https://cdn.porch.com/pro/icons/dashboard-cta-bop-badge.png");
  width: 95px;
  height: 110px;
}
.icon--lead-phone {
  background-image: url("https://cdn.porch.com/pro/icons/lead-phone.png");
  width: 32px;
  height: 32px;
}
.icon--lead-web-read {
  background-image: url("https://cdn.porch.com/pro/icons/lead-web-read.png");
  width: 32px;
  height: 32px;
}
.icon--lead-web-unread {
  background-image: url("https://cdn.porch.com/pro/icons/lead-web-unread.png");
  width: 32px;
  height: 32px;
}
.icon--lead-credit {
  background-image: url("https://cdn.porch.com/pro/icons/lead-credit.png");
  width: 32px;
  height: 32px;
}
.icon--empty-notes {
  background-image: url("https://cdn.porch.com/pro/icons/empty-notes.png");
  width: 40px;
  height: 40px;
}
.icon--porch-logo-white {
  background-image: url("https://cdn.porch.com/pro/icons/porch-logo-white.png");
  width: 113px;
  height: 30px;
}
.icon--gfx_pro_done {
  background-image: url("https://cdn.porch.com/pro/icons/gfx_pro_done.png");
  width: 20px;
  height: 20px;
}
.icon--gfx_pro_not_done {
  background-image: url("https://cdn.porch.com/pro/icons/gfx_pro_not_done.png");
  width: 20px;
  height: 20px;
}
.icon--gfx_pro_s1 {
  background-image: url("https://cdn.porch.com/pro/icons/gfx_pro_s1.png");
  width: 20px;
  height: 20px;
}
.icon--gfx_pro_s2 {
  background-image: url("https://cdn.porch.com/pro/icons/gfx_pro_s2.png");
  width: 20px;
  height: 20px;
}
.icon--gfx_pro_s3 {
  background-image: url("https://cdn.porch.com/pro/icons/gfx_pro_s3.png");
  width: 20px;
  height: 20px;
}
.braintree-show-card {
  margin-top: -30px;
}
.braintree-container {
  min-height: 150px;
}
.proAppointment-detail {
  margin-bottom: 30px;
  overflow: hidden;
  font-size: 1.4rem;
}
.proAppointment-detail-header {
  padding: 10px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #d0d3da;
}
.proAppointment-detail-cta .btn {
  width: 100%;
  max-width: none;
}
.proAppointment-detail-box {
  padding: 0 15px;
}
.proAppointment-detail-icon .material-icons {
  font-size: 5rem;
  color: #505b66;
  margin-right: 5px;
}
.proAppointment-detail-name {
  margin-top: 5px;
}
.proAppointment-detail-status,
.proAppointment-detail-bookingid {
  font-size: 1.5rem;
  font-weight: bold;
}
.proAppointment-detail-iframe {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  border: none;
  height: 500px;
  min-height: 500px;
}
.proAppointment-detail-confirmation .info {
  padding: 10px 0px;
}
.proAppointment-detail-confirmation .info:not(:last-child) {
  border-bottom: 1px solid #d0d3da;
}
.proAppointment-detail .paymentModal .ul-modal-footer {
  display: none;
}
.proAppointment-detail .ul-modal-content {
  height: auto;
}
.proAppointment-detail .sigCanvas,
.proAppointment-detail .signature {
  display: inline-block;
  width: 100%;
  position: relative;
  border: 1px solid #d0d3da;
}
.proAppointment-detail .alert {
  margin-top: 5px;
}
.proAppointment-detail .porchLoadingCircles {
  margin: 0 auto;
}
.proAppointment-list {
  margin-bottom: 30px;
  overflow: hidden;
}
.proAppointment-list-head {
  color: #757d88;
  font-size: 1.5rem;
  font-weight: 700;
  display: inline;
}
.proAppointment-list-item {
  padding: 15px 30px 15px 15px;
  border-bottom: 1px solid #d0d3da;
  background-color: #ffffff;
  font-size: 1.4rem;
}
.proAppointment-list-item:hover {
  background-color: #eff4ff;
  cursor: pointer;
}
.proAppointment-list-item-head {
  font-weight: bold;
  color: #3d454d;
}
.proAppointment-list-item-desc {
  color: #757d88;
  font-size: 1.3rem;
}
.proAppointment-list-item-cta {
  color: #3d454d;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.proAppointment-list-item-icon {
  background-color: #2b73de;
  color: #ffffff;
  border: 4px solid #d7e6fe;
  height: 32px;
  width: 32px;
  padding: 4px;
  border-radius: 50%;
  font-size: 15px;
  margin-right: 15px;
}
.proAppointment-list-item .proAppointment-list-item-icon > .material-icons {
  font-size: 1.65rem;
}
.proAppointment-list-item-icon-money {
  background-color: #4caf50;
  color: #ffffff;
  border-radius: 50%;
  padding: 0 0 0 2px;
  margin-left: 10px;
}
.proAppointment-list-section {
  padding: 15px 10px;
  color: #757d88;
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: uppercase;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.proAppointment-list-section-line {
  border: 0;
  border-bottom: 1px solid #d0d3da;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
  margin: 10px 0 0 10px;
}
.proAppointment-list .project-summary-tabs {
  border-bottom: 1px solid #d0d3da;
}
.alertBanner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 2px solid;
  padding: 10px;
  margin-bottom: 20px;
  border-radius: 3px;
  width: 100%;
  top: 0;
  left: 0;
  font-size: 1.5rem;
  text-align: left;
}
.alertBanner-icon {
  -webkit-box-flex: 0;
  -ms-flex: none;
  flex: none;
}
.alertBanner-icon .material-icons {
  font-size: 2em;
}
.alertBanner-message {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  padding: 0 10px;
}
.alertBanner-links {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 200px;
  text-align: right;
  margin-right: 10px;
}
.alertBanner a.alertBanner-link {
  color: inherit;
  text-transform: uppercase;
  font-weight: 700;
  padding-left: 20px;
}
.alertBanner a.alertBanner-link:hover {
  text-decoration: underline;
}
.app-Availability,
.app-AvailabilityByCompanyId {
  background-color: #f3f4f6;
}
.proAvail h3 {
  margin: 0 0 1em;
  font-size: 1.5rem;
}
.proAvail-item {
  background: white;
  font-size: 1.5rem;
  margin: 5px 0;
  padding: 15px;
  border: 1px solid #d0d3da;
}
.proAvail-item-add {
  background-color: #f3f4f6;
  border: 1px dashed #d0d3da;
  text-align: center;
  padding: 15px;
  cursor: pointer;
}
.proAvail-item-add:hover {
  background-color: #e3e6ea;
}
.proAvail-item-current {
  border: 1px solid #2b73de;
  border-left: 5px solid #2b73de;
  padding: 15px 15px 15px 11px;
}
.proAvail-date-range {
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
}
.proAvail-date-range:hover {
  color: #2b73de;
}
.proAvail-date-duration {
  font-size: 1.4rem;
  color: #505b66;
  text-transform: uppercase;
  white-space: nowrap;
}
.proAvail-reason {
  font-size: 1.4rem;
  color: #757d88;
}
.proAvail-edit {
  border: 1px solid #d0d3da;
  margin: 5px 0;
}
.proAvail-edit h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0;
}
.proAvail-edit p {
  color: #505b66;
  margin: 0.5em 0 0 0;
}
.proAvail-edit-form {
  margin: 0;
  border-top: 1px solid #d0d3da;
}
.proAvail-edit-calendar .DateRangePicker {
  display: block;
}
.proAvail-edit-calendar .DateRangePicker__Month {
  width: 50%;
  margin: 0;
  padding: 0 10px;
}
.proAvail-edit-calendar .DateRangePicker__MonthHeader {
  text-transform: uppercase;
  color: #3d454d;
  border-bottom: 1px solid #d0d3da;
}
.proAvail-edit-calendar .DateRangePicker__WeekdayHeading abbr[title] {
  color: #505b66;
  font-weight: 500;
  text-transform: uppercase;
}
.proAvail-edit-calendar .DateRangePicker__CalendarSelection {
  background-color: #c33a29;
  bottom: 0;
  top: 0;
}
.proAvail-edit-calendar .DateRangePicker__CalendarSelection--start {
  background-color: #c33a29;
  color: #ffffff;
  border-radius: 0;
  left: 0;
}
.proAvail-edit-calendar .DateRangePicker__CalendarSelection--end {
  background-color: #c33a29;
  color: #ffffff;
  border-radius: 0;
  right: 0;
}
.proAvail-edit-calendar .DateRangePicker__CalendarSelection--is-pending {
  left: 0;
  right: 0;
  border-radius: 0;
}
.proAvail-edit-calendar .DateRangePicker__DateLabel {
  font-size: 1.4rem;
  font-weight: 700;
}
.proAvail-edit-calendar .DateRangePicker__CalendarHighlight {
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
}
.proAvail-edit-calendar .DateRangePicker__Date--today {
  border-left: 4px solid #2b73de;
  color: #2b73de;
}
.proAvail-edit-calendar .DateRangePicker__Date--today--is-selected {
  border-left: none;
  color: #ffffff;
}
.proAvail-edit-calendar .DateRangePicker__Date--is-disabled.DateRangePicker__Date--is-selected .DateRangePicker__CalendarSelection {
  opacity: 0.7;
}
.proAvail-edit-reason {
  border-bottom: 1px solid #d0d3da;
  padding: 15px;
}
.proAvail-edit-reason-error {
  margin-left: 0;
  margin-right: 0;
}
.proAvail-edit select.proAvail-edit-dropdown {
  margin: 10px 0;
}
.proAvail-edit textarea.proAvail-edit-textarea {
  width: 100%;
  height: 90px;
  padding: 15px;
  margin: 10px 0;
  font-size: 1.4rem;
}
.proAvail-edit .btn {
  width: 120px;
}
.braintreeBadge > img {
  border: 1px solid #d0d3da;
  border-radius: 2px;
  width: 170px;
}
.communication-metric a {
  color: #505b66;
  background-color: rgba(158, 164, 174, 0.2);
  padding: 3px;
  margin: 3px;
  border-radius: 20px;
  position: relative;
  display: inline-block;
}
.communication-metric a.complete {
  color: #3a959b;
  background-color: #b0e6e9;
}
.communication-metric-icon.material-icons {
  font-size: 2.2rem;
  letter-spacing: 0;
  vertical-align: middle;
}
.communication-metric-annotation {
  position: absolute;
  top: -3px;
  right: -3px;
  font-size: 0.9rem;
  color: #ffffff;
  background-color: #045960;
  border-radius: 50%;
  width: 15px;
  height: 15px;
  text-align: center;
  line-height: 1.5rem;
}
.communication-metric-name {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0 4px 0 2px;
}
.financeWidget-header {
  font-weight: bold;
  margin: 0 0 10px;
}
.financeWidget-subheader {
  font-weight: bold;
  margin: 5px 0 15px;
}
.financeWidget-text {
  margin: 0;
  line-height: 1.5em;
  font-size: 1.2rem;
  font-weight: normal;
  min-width: 170px;
}
.financeWidget-budget {
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.financeWidget-budget-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 10px 5px 0;
}
.financeWidget-budget-col .material-icons {
  color: #2b73de;
  font-size: 16px;
  padding-right: 2px;
  padding-bottom: 4px;
  margin-left: 5px;
}
.financeWidget-budget-val {
  font-size: 1.7rem;
  margin-bottom: 10px;
}
.financeWidget-budget-divider {
  border-left: 1px solid #d0d3da;
  width: 1px;
  padding-right: 20px;
}
.financeWidget-budget-divider:after {
  content: '';
}
.findWork-header {
  font-weight: bold;
  margin: 0 0 10px;
}
.findWork-subheader {
  font-weight: bold;
  margin: 5px 0 15px;
}
.findWork-text {
  line-height: 1.5em;
  font-size: 1.2rem;
  font-weight: normal;
  width: 200px;
  margin: 5px 0;
}
.findWork-leads {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.findWork-leads-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 15px 0 0;
}
.findWork-leads-val {
  font-size: 1.7rem;
  font-weight: bold;
  padding-bottom: 5px;
}
.findWork-leads-desc {
  font-size: 1.3rem;
  font-weight: normal;
  color: #757d88;
  white-space: nowrap;
  padding-left: 5px;
}
.findWork-leads-divider {
  border-left: 1px solid #d0d3da;
  width: 1px;
  padding-right: 20px;
}
.findWork-leads-divider:after {
  content: '';
}
.proFinances-list {
  font-size: 1.5rem;
  color: #505b66;
  margin: 0 20px 30px 0;
  overflow: hidden;
}
.proFinances-list-head {
  color: #757d88;
  font-size: 1.5rem;
  font-weight: 700;
  display: inline;
}
.proFinances-list-column-head {
  font-size: 1.2rem;
  font-weight: 700;
  color: #505b66;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.proFinances-list-item {
  padding: 15px 30px 15px 15px;
  border-bottom: 1px solid #e3e6ea;
  background-color: #f9fafc;
  font-size: 1.4rem;
  display: block;
}
.proFinances-list-item:nth-child(odd) {
  background-color: #f3f4f6;
}
.proFinances-list a.proFinances-list-item-link {
  color: #3d454d;
}
.proFinances-list a.proFinances-list-item-link:hover {
  background-color: #eff4ff;
  cursor: pointer;
}
.proFinances-list a.proFinances-list-item-link:nth-child(odd) {
  background-color: #f3f4f6;
}
.proFinances-list a.proFinances-list-item-link:nth-child(odd):hover {
  background-color: #eff4ff;
}
.proFinances-list-amt-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.proFinances-list-amt {
  font-weight: 700;
  white-space: nowrap;
  text-align: right;
  width: 140px;
  padding-left: 40px;
}
.proFinances-list-amt-dollar {
  color: #3d454d;
  float: left;
}
.proFinances-list-green {
  color: #33863c;
}
.proFinances-list-red {
  color: #9c180d;
}
.proFinances-list-leadDetails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: top;
  -ms-flex-align: top;
  align-items: top;
}
.proFinances-list-title {
  font-weight: 700;
  min-width: 70px;
}
.proFinances-list-title a.proFinances-list-title-black {
  color: #3d454d;
}
.proFinances-list .transaction-icon.material-icons {
  font-size: 2rem;
}
.file-upload-btn-container {
  margin: 0;
  overflow: hidden;
}
.file-upload-btn-container:hover .file-upload-btn {
  background-color: #1d5cb9;
}
.file-upload-btn-container.is-uploading .file-upload-btn {
  opacity: 1;
}
.file-upload-input {
  bottom: 0;
  cursor: pointer;
  height: 200%;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}
.file-upload-success-modal-icon {
  color: #2b73de;
  font-size: 7.8rem;
}
.image-lightbox .ul-modal-large .ul-modal-container {
  background-color: #000000;
}
.image-lightbox .ul-modal-noHeader .ul-modal-content {
  padding-top: 20px;
}
.image-lightbox .ul-modal-header-close,
.image-lightbox .ul-modal-header-close a.ul-modal-header-close-link {
  color: #ffffff;
}
.leadPrice-label {
  color: #505b66;
  font-weight: 500;
  font-size: 1.4rem;
  margin: 0;
  text-transform: uppercase;
  padding-top: 3px;
}
.leadPrice-price {
  text-align: right;
  margin-bottom: 10px;
}
.leadPrice-price-full {
  color: #3d454d;
  font-size: 2rem;
  font-weight: 700;
}
.leadPrice-price-discounted {
  color: #d32f2f;
  font-size: 2rem;
  font-weight: 700;
  padding-bottom: 5px;
  padding-left: 18px;
}
.leadPrice-price-original {
  font-size: 1.2rem;
  color: #757d88;
  text-decoration: line-through;
}
.leadPrice-price-benefit {
  font-size: 1.2rem;
  color: #757d88;
  padding-left: 5px;
}
.left-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.left-nav ul li {
  padding: 0 0 15px 0;
  font-size: 15px;
}
.left-nav ul li a {
  color: #505b66;
  font-weight: 700;
}
.left-nav ul li a:hover {
  color: #505b66;
}
.left-nav ul li a.left-nav-selected {
  color: #505b66;
}
.licenseWrapper {
  padding: 0 15px;
}
.licenseWrapper .licenseList-item {
  padding: 15px;
  background-color: #f9fafc;
  border-bottom: 1px solid #e3e6ea;
  display: grid;
  grid-template-columns: 0fr 4fr 1fr 0fr;
  grid-column-gap: 15px;
}
.licenseWrapper .licenseList-item:nth-child(odd) {
  background-color: #ffffff;
}
.licenseWrapper .licenseList-icon {
  color: #ffffff;
  padding: 3px;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 3px solid #e3e6ea;
}
.licenseWrapper .licenseList-icon .material-icons {
  font-size: 18px;
}
.licenseWrapper .licenseList-icon-active {
  background-color: #4caf50;
}
.licenseWrapper .licenseList-icon-pending {
  background-color: #757d88;
}
.licenseWrapper .licenseList-icon-inactive {
  background-color: #d32f2f;
}
.licenseWrapper .licenseList-title {
  font-weight: bold;
}
.licenseWrapper .licenseList-subtitle {
  color: #505b66;
  font-size: 1.2rem;
}
.licenseWrapper .licenseList-status {
  font-size: 1.3rem;
  font-weight: bold;
  text-align: right;
  padding-top: 2px;
  white-space: nowrap;
}
.licenseWrapper .licenseList-status-name {
  padding-right: 10px;
}
.licenseWrapper .licenseList-status-verified {
  background-color: #4caf50;
  color: #ffffff;
  border-radius: 50%;
}
.licenseWrapper .licenseList-status .material-icons {
  vertical-align: middle;
  font-size: 16px;
  padding: 2px;
}
.licenseWrapper .licenseList-actions {
  text-align: right;
}
.licenseWrapper .licenseList-actions-btn {
  font-size: 1.3rem;
  font-weight: bold;
  border: 0;
  background: none;
  white-space: nowrap;
  padding: 0 0 0 15px;
  border-left: 1px solid #d0d3da;
}
.licenseForm {
  max-width: 500px;
}
.licenseForm h3 {
  font-weight: bold;
  margin: 0 0 20px;
}
.licenseForm-row {
  padding-bottom: 15px;
}
.licenseForm-row-grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 15px;
}
.licenseForm-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0;
  border-top: 1px solid #d0d3da;
}
svg.mdiIcon {
  vertical-align: bottom;
}
.newProjects {
  border-bottom: 1px solid #e3e6ea;
}
.newProjects-empty {
  background-color: #e3e6ea;
  max-width: 400px;
  padding: 20px;
  margin: 30px auto;
}
.newProjects-empty-link {
  margin-top: 5px;
}
.newProjects-more {
  padding: 15px;
  text-align: center;
}
.newProjects-more-link {
  text-transform: uppercase;
  font-size: 1.3rem;
}
.page-header-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.page-header-title h1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.proAccount-companyInfo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.proAccount-companyInfo-img {
  padding-right: 15px;
}
.proAccount-companyInfo-select {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.proAccount-companyInfo-profileImage {
  border: 1px solid #d0d3da;
  text-align: center;
  height: 175px;
  width: 175px;
  background-color: #f3f4f6;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.proAccount-companyInfo-profileImage img {
  width: 100%;
}
.proAccount-companyInfo-profileImage-icon {
  font-size: 7.8rem !important;
  position: relative;
  color: #505b66;
  top: 45px;
}
.proAccount-companyInfo .proAccount-note {
  padding: 10px 50px 10px 0;
}
.proAccount-companyInfo .btn-transparent {
  color: #2b73de;
  margin-right: 20px;
}
.leadDelivery-explanation h2 {
  font-size: 1.7rem;
  font-weight: bold;
  margin: 0 0 20px;
}
.leadDelivery-explanation p {
  line-height: 1.6em;
  margin: 0 20px 20px 0;
}
.leadDelivery-addCard-btn {
  border: 1px dashed #e3e6ea;
  color: #2b73de;
  cursor: pointer;
  font-weight: 700;
  margin-bottom: 15px;
  padding: 15px;
  text-align: center;
}
.leadDelivery-addCard-btn:hover {
  background-color: #f3f4f6;
  border-color: #d0d3da;
}
.leadDelivery-addCard-form {
  border: 1px solid #d0d3da;
  margin-bottom: 20px;
  padding: 20px;
}
.leadDelivery-paymentAdded {
  border: 1px solid #e3e6ea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 15px;
  margin-bottom: 20px;
}
.leadDelivery-paymentAdded-card {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.leadDelivery-paymentAdded-cardInfo {
  font-weight: 700;
  padding-right: 10px;
  font-size: 1.5rem;
}
.leadDelivery-paymentAdded-expires {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-size: 1.2rem;
  color: #505b66;
}
.leadDelivery-paymentAdded-replace {
  font-weight: 700;
}
.leadDelivery-phoneLeads-hiwModal {
  position: absolute;
  top: -4px;
  right: 0;
}
.leadDelivery-phoneLeads-description {
  font-size: 1.3rem;
  margin-top: -5px;
}
.proAccountCreate-progressBar {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.proAccountCreate-progressBar-col {
  -webkit-box-flex: 1;
  -ms-flex: 1 auto;
  flex: 1 auto;
}
.proAccountCreate-progressBar a.proAccountCreate-progressBar-step-link {
  color: #505b66;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.proAccountCreate-progressBar a.proAccountCreate-progressBar-step-nolink {
  color: #505b66;
  font-weight: 700;
  cursor: default;
  white-space: nowrap;
}
.proSignupFaq {
  background-color: #ffffff;
  padding: 30px 10px 56px;
}
.proSignupFaq-title {
  font-size: 2rem;
  color: #505b66;
  margin: 0 0 1em;
}
.proSignupFaq-question {
  font-size: 1.5rem;
  font-weight: 700;
  color: #505b66;
  margin-top: 26px;
  margin-bottom: 0;
}
.proSignupFaq-answer {
  color: #757d88;
  margin-top: 10px;
  margin-bottom: 30px;
}
.proBal {
  font-size: 1.4rem;
}
.proBal-box {
  border-top: 1px solid #d0d3da;
  margin: 0;
  -webkit-box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  background-color: #ffffff;
  padding: 15px;
}
.proBal-btn {
  text-align: left;
  font-size: 1.8rem;
  border: 2px solid #d0d3da;
  background-color: #ffffff;
  padding: 20px;
  width: 100%;
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}
.proBal-btn:hover {
  border: 2px solid #2b73de;
  border-left: 6px solid #2b73de;
  padding: 20px 20px 20px 16px;
}
.proBal-btn-selected {
  border: 2px solid #2b73de;
  border-left: 6px solid #2b73de;
}
.proBal-balance {
  color: #3d454d;
  font-size: 2rem;
  font-weight: 700;
  margin-left: 10px;
  text-align: right;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.proBal-balance-big {
  font-size: 2.5rem;
}
.proBal-balance-head {
  font-weight: 700;
  margin: 10px 0 20px;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.proBal-input {
  text-align: left;
  font-size: 1.8rem;
  border: 2px solid #d0d3da;
  background-color: #ffffff;
  padding: 20px 20px 16px 20px;
  width: 100%;
}
.proBal-input-selected,
.proBal-input:hover {
  border: 2px solid #2b73de;
  border-left: 6px solid #2b73de;
  padding: 20px 20px 16px 16px;
}
.proBal-input:focus {
  border: 2px solid #2b73de;
  border-left: 6px solid #2b73de;
}
.proBal-purchase-btn {
  width: 100%;
  max-width: none;
}
.proBal .porchErrorContainer-message {
  margin-top: 5px;
}
.proBal input[type=number]::-webkit-inner-spin-button,
.proBal input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.project-summary {
  font-size: 1.4rem;
}
.project-summary-tabs {
  border-bottom: 1px solid #e3e6ea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.project-summary-tabs a {
  border-bottom: 4px solid transparent;
  color: #505b66;
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
  padding: 20px 15px 15px;
  text-align: center;
  -ms-flex-item-align: end;
  align-self: flex-end;
}
.project-summary-tabs a.isSelected {
  border-color: #2b73de;
  color: #505b66;
}
.project-summary-tabs a:hover {
  background-color: #e3e6ea;
  color: #000000;
}
.project-summary-list {
  margin: 0 0 10px 0;
  padding: 0;
}
.project-summary-list-group {
  background-color: #f9fafc;
  padding: 10px 15px;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #505b66;
  border-bottom: 1px solid #e3e6ea;
}
.project-summary-top {
  display: block;
  margin: 40px auto;
}
.project-summary-row {
  border-bottom: 1px solid #e3e6ea;
  -webkit-transition: background-color 0.1s;
  transition: background-color 0.1s;
  padding: 5px 0;
}
.project-summary-row:last-child {
  border-bottom: none;
}
.project-summary-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.project-summary-link:link,
.project-summary-link:visited,
.project-summary-link:hover {
  color: #3d454d;
}
.project-summary-info-col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.project-summary-info-col:hover .project-summary-icon,
.project-summary-info-col:hover .project-summary-info,
.project-summary-info-col:hover .project-summary-info-serviceType {
  color: #2b73de;
}
.project-summary-icon {
  display: inline-block;
  padding-left: 10px;
  color: #2b73de;
  margin-top: 5px;
}
.project-summary-info {
  margin: 5px 10px 0;
  display: inline-block;
  vertical-align: middle;
  color: #3d454d;
}
.project-summary-info-title {
  font-weight: 700;
  margin: 2px 0 2px 0;
}
.project-summary-info-serviceType {
  color: #757d88;
  margin: 0 0 5px 0;
}
.project-summary-description {
  color: #757d88;
  margin: 5px 0 10px 15px;
}
.project-summary-description-name {
  font-weight: 700;
}
.project-summary-description-detail {
  margin: 0;
}
.project-summary-description-status {
  color: #757d88;
}
.project-summary-description-status-green {
  color: #4caf50;
}
.project-summary-description-status-red {
  color: #d32f2f;
}
.project-summary-description-status-support {
  display: inline-block;
  white-space: nowrap;
}
.project-summary-description-status .material-icons {
  vertical-align: text-bottom;
  font-size: 1.7rem;
  padding-left: 5px;
  color: #2b73de;
}
.project-summary-description-status .tooltip-wrapper .tooltip-body {
  background-color: #ffffff;
  color: #3d454d;
  width: auto;
  padding: 0;
  bottom: 22px;
  left: -50px;
  white-space: normal;
}
.project-summary-description-status .tooltip-wrapper .tooltip-tip {
  border-top-color: #9ea4ae;
  margin-top: -10px;
}
.project-summary-date {
  color: #3d454d;
  font-size: 1.3rem;
  margin-top: 15px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
}
.project-summary-date-label {
  margin: 5px 0 10px 15px;
}
.project-summary-actions {
  margin: 5px 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-left: 1px solid #e3e6ea;
}
.project-summary-more {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 15px 0;
  text-align: center;
}
.project-summary-more:hover {
  background-color: #f3f4f6;
}
.project-summary-back {
  margin: 20px;
}
.project-summary-pager {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e3e6ea;
  font-size: 1.3rem;
  color: #757d88;
}
.project-summary-pager a {
  color: #757d88;
}
.project-summary-pager-dash {
  padding: 0 5px;
}
.project-summary-pager-col {
  display: inline-block;
  padding: 0 10px;
}
.project-summary-pager .material-icons {
  vertical-align: middle;
}
.project-summary .support-tooltip {
  background-color: #ffffff;
  border: 2px solid #9ea4ae;
  border-radius: 3px;
  color: #3d454d;
  font-size: 1.3rem;
  padding: 15px;
  text-align: left;
  width: 220px;
  z-index: 10;
  margin-bottom: 10px;
}
.project-summary .support-tooltip-link {
  padding-top: 10px;
  text-align: center;
}
.project-summary .support-tooltip .material-icons {
  color: #2b73de;
}
a.project-link {
  padding: 10px;
  text-align: center;
  font-weight: bold;
  color: #ffffff;
}
a.project-link .leads-text {
  text-decoration: underline;
  text-align: center;
}
.proDashboard-support {
  color: #3d454d;
  padding: 5px;
}
.proDashboard-support-head {
  margin: 0 0 15px;
}
.proDashboard-support-contact {
  font-size: 1.4rem;
  margin: 0 0 20px;
}
.proDashboard-support-number {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 10px 0;
}
.proDashboard-support-number a {
  display: block;
  color: #3d454d;
}
.proDashboard-support-hours {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 10px;
}
.proDashboard-support-links {
  margin-top: 20px;
}
.proDashboard-support-link {
  margin: 5px 0 7px;
  font-size: 1.3rem;
  font-weight: bold;
}
.proLead-conversation-pad {
  padding: 20px;
}
.proLead-conversation-icon {
  padding: 11px;
  display: inline-block;
  border-radius: 100px;
  background-color: #ffd451;
  font-size: 1.7rem;
  color: #ffffff;
}
.proLead-conversation-line {
  border-bottom: 1px solid #d0d3da;
}
.proLead-conversation-message {
  margin-left: 10px;
  white-space: pre-line;
}
.proLead-conversation-timestamp {
  margin-left: 10px;
  color: #505b66;
  font-weight: 500;
  font-size: 1.1rem;
}
.proLead-conversation-link {
  text-align: right;
}
.proLead-homeownerInfo-img {
  margin-right: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.proLead-homeownerInfo-img .material-icons {
  color: #505b66;
}
.proLead-homeownerInfo-img .material-icons.material-icon-account {
  font-size: 5.3rem;
}
.proLead-homeownerInfo-img .material-icons.material-icon-phone {
  font-size: 3.5rem;
  color: #ffffff;
  background-color: #9ea4ae;
  border-radius: 50%;
  padding: 5px;
  margin-right: 5px;
}
.proLead-homeownerInfo-name {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 2rem;
}
.proLead-homeownerInfo-pin {
  padding: 10px 0 0 10px;
}
.proLead-homeownerInfo-phone {
  padding: 0 0 10px 20px;
}
.proLead-homeownerInfo a.proLead-phone {
  color: #3d454d;
}
.leadStats-col {
  padding: 5px 0 5px 15px;
  margin: 10px 0;
  border-left: 1px solid #e3e6ea;
}
.leadStats .col-sm-4:first-child .leadStats-col {
  border-left: 0;
}
.leadStats-bubble {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 5px 5px 5px 0;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.8);
  box-shadow: 0px 0px 2px 0px rgba(0, 0, 0, 0.8);
}
.leadStats-bubble-active {
  background-color: #2b73de;
}
.leadStats-bubble-active i.material-icons {
  color: #62cdd5;
  font-size: 2.5rem;
}
.leadStats-bubble-empty {
  color: #ffffff;
}
.leadStats-headshot {
  width: 20px;
  height: 20px;
  margin: 5px 5px 5px 0;
  float: left;
}
.leadStats-headshot img.headshot {
  width: 100%;
  border-radius: 50%;
  border: 1px solid #e3e6ea;
}
.empty-notes {
  text-align: center;
}
.empty-notes-title {
  font-size: 1.4rem;
  font-weight: 700;
}
.empty-notes-description {
  font-size: 1.2rem;
  color: #505b66;
}
.proLead-notes-pad {
  padding: 20px;
}
.proLead-notes-head {
  border-bottom: 1px solid #d0d3da;
}
.proLead-notes-link {
  text-align: right;
}
.proLead-projectInfo-photos-image {
  margin-bottom: 12px;
  cursor: pointer;
}
.proLead-projectInfo-photos img {
  width: 100%;
}
.proLead-projectInfo-description {
  white-space: pre-line;
}
.proLead-projectInfo-description-label {
  font-weight: normal;
  font-size: 1.2rem;
  margin-bottom: 0;
  color: #505b66;
}
.proLead-projectInfo-description-value {
  margin-bottom: 15px;
}
.proLead-projectInfo-service,
.proLead-projectInfo-description,
.proLead-projectInfo-photos {
  margin-top: 10px;
}
.proLead-projectInfo-location {
  padding-bottom: 10px;
}
.proLead-projectInfo-map {
  width: 250px;
}
.proNotificationSettings h2 {
  margin: 0 0 1em;
}
.proNotificationSettings-label {
  margin-bottom: 20px;
}
.proNotificationSettings-desc {
  padding-left: 40px;
}
.proNotificationSettings-optionContainer {
  padding-left: 40px;
  position: relative;
}
.proNotificationSettings-hr {
  margin: 30px -40px 30px;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid #e3e6ea;
}
.proNotificationSettings-footer {
  text-align: right;
}
.app-ProInvoice {
  background-color: #f3f4f6;
}
.proInvoice {
  padding-bottom: 20px;
}
.proInvoice-label {
  color: #505b66;
  font-weight: 500;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.proInvoice-data {
  padding: 0 0 5px 0;
  font-size: 1.5rem;
  font-weight: 700;
}
.proInvoice-data-desc {
  font-weight: 500;
  color: #757d88;
}
.hop-details {
  background-color: white;
  margin: 0 0 20px;
  border-bottom: 1px solid #e3e6ea;
}
.hop-details .btn-outline {
  width: 50%;
}
.hop-details .btn-outline:last-child {
  border-left: 0;
}
.hop-details .btn-outline:first-child {
  border-left: 1px solid #e3e6ea;
}
.hop-details-list {
  border-left: 1px solid #e3e6ea;
  border-right: 1px solid #e3e6ea;
}
.hop-details-header {
  padding: 20px;
  background-color: #e8a400;
  color: #ffffff;
  font-size: 1.7rem;
  font-weight: 500;
}
.hop-data-label {
  text-transform: uppercase;
  color: #505b66;
  padding: 10px 0 0 20px;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0;
}
.hop-data-value {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 0px 20px 10px;
  line-height: 150%;
  white-space: pre-wrap;
}
.hop-data-value.data-value-big {
  font-size: 1.7rem;
}
.hop-data-value.data-value-teal {
  color: #2b73de;
}
.hop-data-value.data-value-big-teal {
  font-size: 1.7rem;
  color: #2b73de;
}
.data-value-note {
  font-size: 1.1rem;
  color: #2b73de;
  text-transform: uppercase;
}
.hop-data-basic:not(:last-child) {
  border-bottom: 1px solid #e3e6ea;
}
.pprHelp {
  background-color: #ffffff;
  margin: 0 auto;
  padding: 0 10px;
  font-size: 1.4rem;
}
.pprHelp h2.pprHelp-head {
  text-align: center;
  margin: 0 0 1.5em;
  font-weight: normal;
}
.pprHelp p {
  margin: 0;
  text-align: left;
}
.pprHelp li {
  text-align: left;
}
.pprHelp-text {
  margin-bottom: 30px;
}
.pprHelp-learnMore {
  padding: 15px 0;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.4rem;
}
.pprHelp-icon {
  display: inline-block;
  vertical-align: middle;
}
.modalDialog-body .pprHelp {
  max-width: 480px;
}
.points-landing {
  background: #f3f4f6;
  padding-bottom: 50px;
}
.points-landing .pprHelp {
  padding: 40px;
}
.paymentMethod-dropdown .credit-card-summary {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.paymentMethod-dropdown .credit-card-summary-default {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: #d0d3da;
  border-radius: 15px;
  padding: 5px 8px;
}
.paymentMethod-dropdown .credit-card-summary .edit-button {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.paymentMethod-dropdown .credit-card-summary .material-icons {
  padding-right: 5px;
}
.paymentMethod-dropdown .credit-card-edit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #e3e6ea;
  margin-top: 20px;
  padding-top: 20px;
}
.paymentMethod-dropdown .credit-card-edit-expiration {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.paymentMethod-dropdown .credit-card-edit-expiration #exp-date,
.paymentMethod-dropdown .credit-card-edit-expiration #cvv {
  width: 150px;
  height: 50px;
  border: 1px solid #e3e6ea;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.paymentMethod-dropdown .credit-card-edit-expiration #exp-date.braintree-hosted-fields-focused,
.paymentMethod-dropdown .credit-card-edit-expiration #cvv.braintree-hosted-fields-focused {
  border-color: #66afe9;
  -webkit-box-shadow: 0 0 8px 0 rgba(102, 175, 233, 0.6);
  box-shadow: 0 0 8px 0 rgba(102, 175, 233, 0.6);
}
.paymentMethod-dropdown .credit-card-edit-expiration #exp-date.braintree-hosted-fields-invalid,
.paymentMethod-dropdown .credit-card-edit-expiration #cvv.braintree-hosted-fields-invalid {
  border-color: #d32f2f !important;
}
.paymentMethod-dropdown .credit-card-edit-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-top: 20px;
  /** this vertically spaces when the buttons wrap below the expiration picker**/
}
.app-PaymentMethods,
.app-PaymentMethodsByCompanyId {
  background-color: #f3f4f6;
}
.paymentMethod-container {
  max-width: 900px;
  margin: 0 auto;
}
.paymentMethod-cta {
  margin-top: 6px;
  padding-top: 20px;
  text-align: right;
  border-top: 1px solid #9ea4ae;
}
.paymentMethod h3 {
  color: #3d454d;
  font-size: 1.5rem;
  margin: 10px 0 0;
}
.paymentMethod p {
  color: #757d88;
  margin: 0.9em 0;
}
.paymentMethod hr {
  margin: 15px -15px;
  border: 0;
  border-bottom: 1px solid #d0d3da;
}
.paymentMethod .porchErrorContainer-message {
  margin-top: 5px;
}
.paymentMethod .porchErrorContainer.showing-error .form-control {
  border-color: #d32f2f;
}
.paymentMethod-section-head {
  margin: 5px 0;
  font-weight: 700;
}
.paymentMethod-dropdown {
  margin-bottom: 10px;
}
.paymentMethod-dropdown .icon {
  margin-right: 10px;
  font-size: 2.2rem;
}
.paymentMethod-add-card {
  padding: 10px;
  border: 2px dotted #f3f4f6;
  margin-bottom: 20px;
  text-align: center;
  background-color: #e3e6ea;
  font-size: 1.2rem;
}
.paymentMethod-card-change {
  padding-left: 10px;
  font-size: 1.3rem;
  font-weight: 700;
}
.paymentMethod-card-change .material-icons {
  margin-right: 10px;
  font-size: 2.2rem;
  vertical-align: middle;
}
.paymentMethod-card-label {
  font-size: 1.4rem;
  vertical-align: middle;
}
.proPage-box .paymentMethod h2 {
  margin: 0 0 20px;
  font-size: 1.7rem;
  font-weight: 700;
}
.app-QuickReplySettings,
.app-QuickReplySettingsForCompany {
  background-color: #f3f4f6;
}
.quickReply textarea.quickReply-messageField {
  height: 125px;
  margin-bottom: 10px;
}
.radio-box-content {
  background-color: #ffffff;
  border: 1px solid #d0d3da;
  cursor: pointer;
  padding: 15px 15px 15px 19px;
  position: relative;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.radio-box-content:hover {
  opacity: 1;
}
.radio-box-content:hover .icon {
  -webkit-filter: none;
  filter: none;
}
.radio-box-content-selected {
  border: 2px solid #6ea1ff;
  border-left: 8px solid #6ea1ff;
  padding: 12px;
  opacity: 1;
  cursor: inherit;
}
.radio-box-content-selected .icon {
  -webkit-filter: none;
  filter: none;
}
.radio-box-label {
  width: 100%;
  margin-bottom: 15px;
}
.userInformation-section {
  margin-top: 25px;
}
.userInformation-section:first-child {
  margin-top: 10px;
}
.userInformation-section .contained-field-text label {
  background: transparent;
}
.userInformation-heading {
  margin: 0 0 15px;
}
.userInformation-email-change {
  font-size: 1.4rem;
  position: absolute;
  right: 0;
  top: -25px;
}
.proSignupProgressContainer .proSignupProgress {
  border: 1px solid #e3e6ea;
  -webkit-box-shadow: rgba(87, 87, 87, 0.25) 0px 0px 3px 0px;
  box-shadow: rgba(87, 87, 87, 0.25) 0px 0px 3px 0px;
  background-color: #ffffff;
  margin-top: 23px;
  margin-bottom: 23px;
  height: 82px;
}
.proSignupProgressContainer .proSignupProgress .proSignupProgress-icon.icon {
  margin-top: 20px;
  margin-left: 15px;
  margin-right: 0;
}
.proSignupProgressContainer .proSignupProgress-selected {
  color: #6ea1ff;
}
.proSignupProgressContainer .proSignupProgress-not-selected {
  color: #505b66;
}
.proSignupProgressContainer .proSignupProgress-col-text {
  margin-top: 10px;
}
.proSignupProgressContainer .proSignupProgress-text {
  font-size: 1.4rem;
  font-weight: 700;
}
.productBundleSuccess-header {
  font-weight: bold;
  margin: 0 0 10px;
}
.productBundleSuccess-subheader {
  font-weight: bold;
  margin: 20px 0 10px;
}
.productBundleSuccess-text {
  max-width: 550px;
  margin: 0 0 20px;
  line-height: 1.5em;
  font-size: 15px;
}
.productBundleSuccess-budget {
  border: 1px solid #9ea4ae;
  border-radius: 3px;
  margin-bottom: 10px;
  max-width: 600px;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.productBundleSuccess-budget-col {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 20px 0 20px 20px;
}
.productBundleSuccess-budget-val {
  font-size: 1.7rem;
}
.productBundleConfirmation-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.productBundleConfirmation-cost-box {
  font-weight: bold;
  padding: 17px 7px 25px;
  border: 1px solid #d0d3da;
  border-radius: 3px;
  margin-top: 25px;
}
.productBundleConfirmation .ul-text-input-control {
  font-weight: bold;
}
.productBundleConfirmation .paymentMethod select {
  font-weight: bold;
}
.productBundleConfirmation-bundle {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin: 0 30px 20px 0;
}
.productBundleConfirmation-message {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
}
.productBundleConfirmation-header {
  font-weight: bold;
}
.productBundleConfirmation-subheader {
  font-weight: bold;
  margin: 0 0 15px;
}
.productBundleConfirmation-buttons {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #9ea4ae;
}
.productBundle {
  margin-bottom: 20px;
  position: relative;
  /* Horizontal box with image on the left */
  /* Vertical box with image on the top */
  /* Border Highlight and selected state */
  /* Edit hover animation */
}
.productBundle-box {
  -webkit-box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  background-color: #ffffff;
  font-size: 1.3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.productBundle-body {
  padding: 15px;
  max-width: 600px;
  min-height: 200px;
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.productBundle-footer {
  padding: 20px;
  border-top: 1px solid #d0d3da;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  color: #2b73de;
}
.productBundle-footer-active {
  color: #505b66;
}
.productBundle-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffd451;
  background-color: #ffffff;
  border-radius: 3px;
  padding: 2px 5px 1px;
  text-transform: uppercase;
}
.productBundle i.productBundle-check {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 4rem;
  color: #ffffff;
  background-color: rgba(50, 0, 0, 0.3);
  padding: 5px;
  border-radius: 50%;
}
.productBundle h2.productBundle-title {
  margin: 0 0 5px;
  font-weight: bold;
}
.productBundle-title-inner {
  margin: 0;
  padding: 0 0 15px 15px;
  color: white;
  -ms-flex-item-align: end;
  align-self: flex-end;
  font-weight: bold;
}
.productBundle h4.productBundle-subhead {
  margin: 25px 0 10px;
  font-weight: bold;
}
.productBundle p.productBundle-desc {
  margin: 0 20px 10px 0;
}
.productBundle ul.productBundle-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column wrap;
  flex-flow: column wrap;
  height: 80px;
}
.productBundle ul.productBundle-features li {
  margin: 0 0 4px;
  padding: 0;
  font-weight: bold;
  width: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.productBundle ul.productBundle-features li i.material-icons {
  color: #ffffff;
  background-color: #ffd451;
  border-radius: 50%;
  padding: 1px;
  font-size: 1.3rem;
  font-weight: normal;
  display: inline-block;
  margin-right: 10px;
}
.productBundle-cta {
  margin: 25px 0;
}
.productBundle-h-opt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.productBundle-h-opt-bar {
  width: 72px;
  background-repeat-x: repeat;
}
.productBundle-h-opt-bar-1 {
  background-image: url("https://cdn.porch.com/bootstrap/0web/product-bundle/Gold_V.png");
  background-color: #ffd451;
}
.productBundle-h-opt-bar-2 {
  background-image: url("https://cdn.porch.com/bootstrap/0web/product-bundle/Blue_V.png");
  background-color: #2b73de;
}
.productBundle-h-opt-bar-3 {
  background-image: url("https://cdn.porch.com/bootstrap/0web/product-bundle/Teal_V.png");
  background-color: #2b73de;
}
.productBundle-v-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.productBundle-v-container .productBundle-box {
  margin: 20px 20px 20px 0;
}
.productBundle-v-container .productBundle-box:last-child {
  margin-right: 0;
}
.productBundle-v-container .productBundle-v-opt-bar {
  margin-left: -3px;
  margin-right: -3px;
}
.productBundle-v-opt {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.productBundle-v-opt-bar {
  height: 96px;
  background-repeat-y: repeat;
  position: relative;
}
.productBundle-v-opt-bar-1 {
  background-image: url("https://cdn.porch.com/bootstrap/0web/product-bundle/Gold_H.png");
  background-color: #ffd451;
}
.productBundle-v-opt-bar-1 .productBundle-tag {
  color: #ffd451;
}
.productBundle-v-opt-bar-2 {
  background-image: url("https://cdn.porch.com/bootstrap/0web/product-bundle/Blue_H.png");
  background-color: #2b73de;
}
.productBundle-v-opt-bar-2 .productBundle-tag {
  color: #2b73de;
}
.productBundle-v-opt-bar-3 {
  background-image: url("https://cdn.porch.com/bootstrap/0web/product-bundle/Teal_H.png");
  background-color: #2b73de;
}
.productBundle-v-opt ul.productBundle-features {
  height: auto;
}
.productBundle-v-opt ul.productBundle-features li {
  width: auto;
}
.productBundle-v-opt h2.productBundle-title {
  position: absolute;
  top: -40px;
  color: white;
}
.productBundle-edit .productBundle-opt-1:hover,
.productBundle-edit .productBundle-selected.productBundle-opt-1 {
  border-color: #ffd451;
}
.productBundle-edit .productBundle-opt-2:hover,
.productBundle-edit .productBundle-selected.productBundle-opt-2 {
  border-color: #2b73de;
}
.productBundle-edit .productBundle-opt-3:hover,
.productBundle-edit .productBundle-selected.productBundle-opt-3 {
  border-color: #2b73de;
}
.productBundle-settings {
  position: relative;
}
.productBundle-settings a.productBundle-settings-button {
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: #f3f4f6;
  border-radius: 50%;
  padding: 5px;
  color: #3d454d;
  cursor: pointer;
  z-index: 5;
}
.productBundle .leadPreferencesPaymentModal-subheader {
  color: #757d88;
  font-size: 1.4rem;
  font-weight: bold;
}
.productBundle .leadPreferencesPaymentModal-subtext {
  margin: 0 0 25px 40px;
}
.productBundle-button-footer {
  margin: 20px 0;
}
.productBundle-button-footer-link {
  font-weight: bold;
  margin: 20px 40px;
}
.productBundle-selected .productBundle-footer {
  color: #505b66;
}
.productBundle-edit .productBundle-box {
  cursor: pointer;
  border: 3px solid transparent;
  border-top: none;
  position: relative;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.productBundle-edit .productBundle-box:after {
  content: "";
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.productBundle-edit .productBundle-box:after:hover {
  opacity: 1;
}
.productBundle-edit .productBundle-box:hover {
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  z-index: 5;
}
.productBundle-edit.productBundleConfirmation-bundle .productBundle-box {
  cursor: default;
}
.productBundle-edit.productBundleConfirmation-bundle .productBundle-box:hover {
  -webkit-transform: none;
  transform: none;
}
.productBundle-label {
  color: #505b66;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  padding-bottom: 5px;
}
.productBundle-text {
  color: #3d454d;
  max-width: 550px;
  margin: 0 0 20px;
  line-height: 1.5em;
  font-size: 14px;
}
.productBundle-alert-title {
  font-size: 1.4rem;
  font-weight: bold;
}
.productBundle-alert-subtitle {
  font-size: 1.2rem;
}
.productBundle-faq {
  font-size: 1.5rem;
  padding: 35px 20px 0px 20px;
  font-weight: 700;
}
.productBundle-requirementsModal-icon.material-icons {
  font-size: 1.7rem;
}
.add-promo-code-to-company-modal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  top: 10vh;
  width: 40vw;
  height: 40rem;
  background: white;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 1rem 2rem;
  overflow: scroll;
}
.add-promo-code-to-company-modal__close-button {
  margin-right: 1rem;
}
.add-promo-code-to-company-row {
  padding: 1rem 0;
}
.add-promo-code-to-company-main-col {
  height: 100%;
}
.add-promo-code-to-company-buttons {
  width: 100%;
  position: absolute;
  bottom: 10px;
}
.promo-code-result--failure {
  color: red;
}
.app-ProProjectReceipt,
.app-ProProjectReceiptByCompanyId {
  background-color: #f3f4f6;
}
.projectReceipt-contact {
  color: #505b66;
  font-size: 1.4rem;
  line-height: 150%;
}
.projectReceipt-contact-header {
  color: #3d454d;
  margin: 0 0 5px;
  font-weight: 700;
}
.projectReceipt-contact [class*="col-"] {
  padding-bottom: 5px;
}
.projectReceipt-header {
  color: #3d454d;
  border-bottom: 1px solid #d0d3da;
  position: relative;
  margin-bottom: 25px;
  padding: 0px;
}
.projectReceipt-header h2 {
  margin: 0.9em 0;
  font-weight: 700;
  font-size: 2rem;
}
.projectReceipt-header .container {
  position: relative;
}
.projectReceipt .hop-details {
  margin: 0 0 20px;
}
.projectReceipt .hop-data-heading {
  font-size: 1.3rem;
  text-transform: uppercase;
  padding: 16px 20px;
}
.projectReceipt .hop-data-heading label {
  color: #505b66;
  margin-bottom: 0;
  font-weight: 500;
}
.projectReceipt .hop-purchase {
  padding: 16px 20px;
  font-size: 1.4rem;
}
.projectReceipt .hop-purchase-label {
  padding: 0 0 5px;
  font-size: 1.3rem;
}
.projectReceipt .hop-purchase-amount {
  text-align: right;
  border-left: 1px solid #d0d3da;
}
.projectReceipt .hop-purchase-headings {
  border-bottom: 1px solid #d0d3da;
}
.projectReceipt .hop-purchase-item [class*="col-"] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.projectReceipt .hop-purchase-item:nth-child(odd) {
  background-color: #f3f4f6;
}
.projectReceipt .hop-purchase-total {
  border-top: 1px solid #d0d3da;
}
.projectReceipt .hop-purchase-total [class*="col-"] {
  padding-top: 10px;
  padding-bottom: 10px;
}
.projectReceipt .hop-purchase-total-label {
  display: block;
  text-align: right;
}
.iconBubble {
  border-radius: 50%;
  border-width: 4px;
  border-style: solid;
  padding: 4px;
  background-color: #e3e6ea;
  border-color: #f1f2f4;
}
.iconBubble .material-icons {
  color: #ffffff;
  font-size: 18px;
}
.iconBubble-blue {
  background-color: #2b73de;
  border-color: #d7e6fe;
}
.iconBubble-gray {
  background-color: #3d454d;
  border-color: #f1f2f4;
}
.iconBubble-green {
  background-color: #4caf50;
  border-color: #b6ebbb;
}
.proProjectSearch-list {
  overflow-y: auto;
  height: calc(100% - 148px);
  background-color: #ffffff;
}
.proProjectSearch-list-addZip.is-disabled {
  pointer-events: none;
  opacity: 0.6;
}
.proProjectSearch-list-zipAdded-leave {
  opacity: 1;
}
.proProjectSearch-list-zipAdded-leave.proProjectSearch-list-zipAdded-leave-active {
  opacity: 0.01;
  -webkit-transition: opacity 200ms ease-in-out;
  transition: opacity 200ms ease-in-out;
}
.proProjectSearch-list-col1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  margin-right: 20px;
}
.proProjectSearch-list-col2 {
  width: 100px;
}
.proProjectSearch-list-item {
  background-color: #ffffff;
  padding: 16px;
  border-bottom: 1px solid #d0d3da;
  border-left: 4px solid #ffffff;
  cursor: pointer;
}
.proProjectSearch-list-item:hover,
.proProjectSearch-list-item-selected {
  background-color: #f0f5ff;
  border-left: 4px solid #2b73de;
  -webkit-transition: background 300ms, border 300ms;
  transition: background 300ms, border 300ms;
}
.proProjectSearch-list-head {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: #505b66;
}
.proProjectSearch-list-subhead {
  font-size: 1.4rem;
  color: #757d88;
  margin: 0 0 4px;
}
.proProjectSearch-list-desc {
  font-size: 1.2rem;
  color: #505b66;
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.proProjectSearch-list-priceTooltip {
  left: 0;
  position: absolute;
  top: 0;
  z-index: 1;
}
.proProjectSearch-list-priceTooltip-icon {
  color: #3d454d;
  font-size: 1.5rem;
}
.proProjectSearch-list-priceTooltip-text {
  font-size: 1.4rem;
  line-height: 1.5em;
  padding: 5px;
}
.proProjectSearch-list-message {
  padding: 16px;
  font-size: 1.4rem;
  border-bottom: 1px solid #d0d3da;
}
.proProjectSearch-list-message-select {
  background-color: #6ea1ff;
  color: white;
}
.proProjectSearch-list-message-select .material-icons {
  vertical-align: middle;
  color: #ffffff;
}
.proProjectSearch-searchInput {
  border: none;
  height: 50px;
  padding-top: 15px;
}
.proProjectSearch-inputForm {
  margin-bottom: 4px;
}
.proProjectSearch-searchBox {
  width: 100%;
  border: 0px;
}
.proProjectSearch .reactAutosuggest .react-autosuggest__input {
  background-color: #ffffff;
  padding: 10px 30px 10px 15px;
}
.proProjectSearch .reactAutosuggest .react-autosuggest__suggestions-container {
  top: 40px;
}
.proProjectSearch-checkWrapper {
  padding: 5px 2px 5px 10px;
}
.proProjectSearch-checkWrapper .ul-selection-control {
  color: #ffffff;
}
.proProjectSearch-textWrapper {
  color: #ffffff;
  line-height: 36px;
  font-size: 13px;
  font-weight: normal;
}
.proProjectSearch-details {
  width: 400px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 400px;
  z-index: -1;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  -webkit-animation: slide-in 200ms;
  animation: slide-in 200ms;
}
.proProjectSearch-details-wrapper {
  -webkit-animation: fade-in 200ms;
  animation: fade-in 200ms;
  position: relative;
}
.proProjectSearch-details-close {
  padding: 16px;
  border-bottom: 1px solid #d0d3da;
}
.proProjectSearch-details-close a {
  color: #505b66;
}
.proProjectSearch-details-body {
  overflow-y: auto;
  height: calc(100% - 140px);
}
.proProjectSearch-details-head {
  font-weight: 500;
  font-size: 1.7rem;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.proProjectSearch-details-footer {
  background-color: #ffffff;
  border-top: 1px solid #d0d3da;
  padding: 16px;
  position: fixed;
  bottom: 0;
  width: 400px;
}
.proProjectSearch-details-footer .btn {
  max-width: none;
  font-size: 1.4rem;
}
.proProjectSearch-details-ho {
  font-size: 1.7rem;
  padding: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.proProjectSearch-details-ho .material-icons {
  font-size: 60px;
  color: #505b66;
  margin-right: 10px;
  line-height: 0.9em;
}
.proProjectSearch-details-ho .proProjectSearch-list-head {
  margin: 5px 0;
}
.proProjectSearch-spinner {
  height: 100%;
  width: 100%;
  position: absolute;
  display: grid;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
}
.proProjectSearch-paging {
  position: fixed;
  bottom: 0;
  padding: 16px;
  font-size: 1.3rem;
  color: #505b66;
  background-color: #ffffff;
  height: 57px;
  width: 399px;
  border-top: 1px solid #d0d3da;
  text-align: right;
}
.proProjectSearch-paging a.proProjectSearch-paging-link {
  display: inline-block;
  padding: 0 5px;
  color: #3d454d;
  font-size: 1.4rem;
}
.proProjectSearch-paging a.proProjectSearch-paging-link-disabled {
  color: #505b66;
}
.proProjectSearch-paging .material-icons {
  vertical-align: middle;
}
.proProjectSearch a.proProjectSearch-list-addZip {
  color: #ffffff;
}
.proProjectSearch-map {
  position: relative;
  height: 100%;
}
.proProjectSearch-map-tooltip {
  font-size: 1.4rem;
}
.proProjectSearch-map-tooltip h3 {
  background-color: #6ea1ff;
  color: #ffffff;
  font-weight: 500;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  margin: 0;
  padding: 10px 12px;
  border-radius: 4px 4px 0 0;
}
.proProjectSearch-map-tooltip ul {
  color: #757d88;
  padding: 10px;
  line-height: 140%;
}
.proProjectSearch-map-tooltip ul li {
  padding: 3px 0;
}
.proProjectSearch-map .mapbox-tooltip .mapboxgl-popup-content {
  padding: 0;
}
.proProjectSearch-map .mapboxgl-marker {
  font-weight: bold;
  cursor: pointer !important;
}
.pointsOverlay {
  background-color: #f3f4f6;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.pointsOverlay-inner {
  height: 100%;
  overflow: auto;
}
.pointsOverlay-header {
  border-bottom: 1px solid #e3e6ea;
  padding: 0 20px;
}
.pointsOverlay-header-text {
  font-weight: 700;
  font-size: 2rem;
  margin: 0.9em 0;
}
.pointsOverlay-heading {
  float: left;
  line-height: 51px;
  margin: 0;
}
.pointsOverlay-body {
  padding: 51px 0 170px;
}
.pointsOverlay-card {
  color: #757d88;
  font-size: 1.4rem;
  padding: 5px 0 10px;
}
.pointsOverlay-card-change {
  padding-left: 10px;
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 700;
}
.pointsOverlay-footer {
  background-color: #f3f4f6;
  border-top: 1px solid #e3e6ea;
  bottom: 0;
  left: 0;
  padding: 10px;
  position: fixed;
  width: 100%;
  text-align: center;
}
.pointsOverlay-nextBtn {
  border: 1px solid transparent;
}
.pointsOverlay-textHead {
  line-height: 185%;
  margin-top: 0;
  font-weight: 700;
}
.pointsOverlay-text {
  font-size: 1.4rem;
  color: #757d88;
  line-height: 150%;
  max-width: 350px;
  margin: 10px 0;
}
.selectPoints-item {
  border-left: 6px solid transparent;
  background-color: #ffffff;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  height: 75px;
  margin-bottom: 15px;
  padding: 15px 20px 15px 14px;
  position: relative;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  top: 0;
}
.selectPoints-item.is-selected {
  border-left-color: #2b73de;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  top: -3px;
}
.selectPoints-item-points {
  font-size: 4.6rem;
  font-weight: 700;
  left: 0;
  line-height: 90%;
  position: absolute;
  text-align: center;
  width: 82px;
}
.selectPoints-item .material-icons {
  color: #e3e6ea;
  font-size: 3rem;
  margin-top: -1.5rem;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transition: color 0.1s;
  transition: color 0.1s;
}
.selectPoints-item.is-selected .material-icons {
  color: #2b73de;
}
.selectPoints-item-cost {
  font-size: 1.4rem;
  left: 95px;
  position: absolute;
}
.selectPoints-item-savings {
  color: #d32f2f;
  padding-left: 8px;
  font-weight: 700;
}
.selectPoints-learnMore {
  display: block;
  font-weight: 700;
  margin: 20px 0 40px;
  text-align: center;
  text-transform: uppercase;
}
.addPayment-form-wrapper {
  background-color: #ffffff;
  border-radius: 2px;
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  padding: 10px;
}
.addPayment-form-header {
  color: #505b66;
  font-weight: 700;
  letter-spacing: 0.04em;
  margin: 0 0 8px;
  text-transform: uppercase;
}
.addPayment-form-container {
  margin: -1px 0 0;
}
.selectPayment-dropdown {
  padding: 10px 15px 10px 0;
  background-color: #ffffff;
  border: 2px solid #d0d3da;
  border-radius: 2px;
  font-size: 1.4rem;
}
.pointsOverlay-note-head {
  margin: 10px 0;
  font-weight: 700;
}
.confirmPurchase-changePoints {
  margin-top: 12px;
  position: absolute;
  right: 0;
  text-transform: uppercase;
}
.pointsOverlay-success-alert {
  padding: 10px;
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #505b66;
  border: 2px solid #2b73de;
  border-radius: 3px;
}
.pointsOverlay-success-alert .alert-icon {
  vertical-align: middle;
  color: #2b73de;
  margin-right: 5px;
}
.relatedProject-list {
  border: 1px solid #e3e6ea;
  background-color: #ffffff;
}
.relatedProject-list-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.relatedProject-list-icon {
  margin-right: 10px;
}
.relatedProject-list-details {
  -webkit-box-flex: 1;
  -ms-flex: 1 auto;
  flex: 1 auto;
}
.relatedProject-list-item {
  padding: 15px 10px 10px;
  border-bottom: 1px solid #e3e6ea;
  cursor: pointer;
}
.relatedProject-list-item:hover {
  background-color: #eff4ff;
  -webkit-transition: background 300ms;
  transition: background 300ms;
}
.relatedProject-list-head {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 4px;
  color: #3d454d;
}
.relatedProject-list-subhead {
  font-size: 1.3rem;
  color: #757d88;
  margin: 0 0 4px;
}
.relatedProject-list-desc {
  font-size: 1.2rem;
  color: #505b66;
  margin: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.relatedProject-list-label {
  color: #505b66;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
}
.relatedProject-list-price-wrapper {
  padding-left: 0;
  text-align: right;
}
.relatedProject-list-action {
  color: #2b73de;
  padding-left: 20px;
  border-left: 1px solid #e3e6ea;
}
.relatedProject-list-action .material-icons {
  vertical-align: middle;
}
.relatedProject-list-header {
  border-bottom: 1px solid #e3e6ea;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  padding: 15px;
}
.relatedProject-list-footer {
  text-align: center;
  padding: 15px;
  font-size: 1.4rem;
  text-transform: uppercase;
}
.serviceAreaMap-container {
  position: relative;
  height: 100%;
}
.serviceArea-container {
  position: relative;
  height: 500px;
}
.serviceArea .proAccount-header.serviceArea-header {
  -webkit-box-flex: 2;
  -ms-flex: 2;
  flex: 2;
  margin: 20px 20px 0;
}
.serviceArea-tabs button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.serviceArea-tabs-tab {
  -webkit-box-flex: 1;
  -ms-flex: 1 auto;
  flex: 1 auto;
}
.serviceArea button.serviceArea-tabs-selected {
  border-bottom: 5px solid #6ea1ff;
  font-weight: bold;
}
.serviceArea-controls {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 10;
}
.serviceArea-zip {
  width: 140px;
  padding-right: 20px;
  display: inline-block;
  overflow: hidden;
}
.serviceArea-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 400px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
}
.serviceArea-search-box {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.serviceArea-search .btn {
  -webkit-box-flex: 0;
  -ms-flex: 0 auto;
  flex: 0 auto;
  height: 59px;
  border-radius: 0 3px 3px 0;
}
.serviceArea-help-icon {
  border-radius: 50%;
  background-color: #ffffff;
  position: absolute;
  left: 25px;
  bottom: 25px;
  padding: 4px;
  -webkit-box-shadow: 0 2px 8px #9ea4ae;
  box-shadow: 0 2px 8px #9ea4ae;
}
.serviceArea-modal {
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  z-index: 200;
}
.serviceArea-modal-dialog {
  width: 100%;
  max-width: 480px;
  margin: 50px auto 0;
  padding: 10px 20px 20px;
  background-color: #ffffff;
  -webkit-box-shadow: 0 3px 5px #3d454d;
  box-shadow: 0 3px 5px #3d454d;
  border-radius: 2px;
  position: relative;
}
.serviceArea-modal h2.serviceArea-modal-header {
  font-size: 1.6rem;
  color: #505b66;
  font-weight: 700;
}
.serviceArea-modal p.serviceArea-modal-body {
  font-size: 1.4rem;
  color: #505b66;
}
.serviceArea-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.component_Map-map_container {
  height: 100%;
  width: 100%;
}
.salesMap-zipMarker,
.salesMap-countyMarker {
  position: absolute;
  text-align: center;
  cursor: pointer;
  margin-left: -30.5px;
  margin-top: -28px;
}
.salesMap-zipBubble,
.salesMap-countyBubble {
  background-color: #18C22B;
  color: #ffffff;
  font-size: 1.2rem;
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.05rem;
  border-radius: 20px;
  display: inline-block;
  padding: 3px 6px;
}
.salesMap-zipBubble-yellow {
  background-color: #F2AE00;
}
.salesMap-zipBubble-red {
  background-color: #E15B4F;
}
.salesMap-zipBubble-county {
  background-color: #474F57;
}
.salesMap-zipBubble-population {
  background-color: #154997;
}
.salesMap-zipBubble-income {
  background-color: #0E7A1A;
}
.salesMap-zipLowerBubble,
.salesMap-countyLowerBubble {
  margin-top: 4px;
}
.salesMap-popoverBody {
  padding: 6px;
}
.salesMap-popover-leadName {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.salesMap-popover-label {
  color: #9EA4AB;
}
.salesMap-popover-detailsHeader {
  text-transform: uppercase;
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.salesMap-popover-spacer {
  height: 15px;
}
.salesMap-popover-competitorsList {
  padding-left: 10px;
}
.relative-container {
  position: relative;
  width: 100%;
  height: 100%;
}
.markerArrowLabel {
  border: solid transparent;
  border-width: 10px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -10px;
  position: absolute;
  top: 100%;
  width: 0;
}
.serviceAreaMap-marker {
  position: absolute;
}
.serviceAreaMap-marker--hidden {
  height: 2px;
  width: 2px;
}
.serviceAreaMap-clusterMarker {
  position: absolute;
  height: 36px;
  width: 36px;
  margin-top: -18px;
  margin-left: -18px;
  padding: 4px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  text-align: center;
  font-size: 1.4rem;
}
.serviceAreaMap-clusterMarker-inner {
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: #3d454d;
  line-height: 24px;
}
.serviceAreaMap-clusterMarker-inner--inService {
  background: #2b73de;
}
.serviceAreaMap-companyMarker {
  background-image: url("https://cdn.porch.com/v2/assets/images/pro-marker-grey.png");
  height: 59px;
  margin: -59px 0 0 -21.5px;
  width: 43px;
  z-index: 100;
}
.serviceAreaMap-plainZipMarker {
  height: 26px;
  margin: -13px 0 0 -13px;
  width: 26px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  text-align: center;
  padding-top: 5px;
}
.serviceAreaMap-plainZipMarker-inner {
  display: inline-block;
  height: 16px;
  width: 16px;
  border: 2px solid #ffffff;
  border-radius: 50%;
}
.serviceAreaMap-plainZipMarker-inner--inService {
  background: #2b73de;
}
.serviceAreaMap-plainZipMarker-inner--outOfService {
  background: #3d454d;
}
.serviceAreaMap-plainZipMarker-inner--amModeSelected {
  background: #ffd451 !important;
}
.serviceAreaMap-labelZipMarker {
  background-color: #3d454d;
  border-radius: 4px;
  color: #fff;
  font-size: 18px;
  height: 35px;
  margin: -52.5px 0 0 -52.5px;
  width: 105px;
}
.serviceAreaMap-labelZipMarker--inService {
  background-color: #2b73de;
}
.serviceAreaMap-labelZipMarker--inService::after {
  border: solid transparent;
  border-width: 10px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -10px;
  position: absolute;
  top: 100%;
  width: 0;
  border-top-color: #2b73de !important;
}
.serviceAreaMap-labelZipMarker--outOfService::after {
  border: solid transparent;
  border-width: 10px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -10px;
  position: absolute;
  top: 100%;
  width: 0;
  border-top-color: #3d454d;
}
.serviceAreaMap-labelZipMarker--amModeSelected {
  background: #ffd451 !important;
}
.serviceAreaMap-labelZipMarker--amModeSelected::after {
  border: solid transparent;
  border-width: 10px;
  content: " ";
  height: 0;
  left: 50%;
  margin-left: -10px;
  position: absolute;
  top: 100%;
  width: 0;
  border-top-color: #ffd451 !important;
}
.serviceAreaMap-labelZipMarker--countyMarker {
  width: auto;
  white-space: nowrap;
}
.serviceAreaMap-labelZipMarker--countyMarker .serviceAreaMap-labelZipMarker-label {
  width: auto;
  padding: 0 10px;
  white-space: nowrap;
}
.serviceAreaMap-labelZipMarker-label {
  display: inline-block;
  width: calc(100% - 28px);
  text-align: center;
  line-height: 35px;
}
.serviceAreaMap-labelZipMarker-icon {
  width: 28px;
  line-height: 35px;
  text-align: center;
  border-right: 1px solid #d2d2d2;
}
.serviceAreaSearchBar {
  background-color: #fff;
  position: absolute;
  max-width: 400px;
  top: 14px;
  left: 10px;
  right: 10px;
  height: 40px;
  z-index: 10;
  border-radius: 3px;
}
.serviceAreaSearchBar .validationErrorOuter {
  position: absolute;
  display: inline-block;
  top: 49px;
  left: 0;
}
.serviceAreaSearchBar .Select-clear {
  line-height: 40px;
  right: 100px;
  padding: 0;
  font-size: 2em;
  color: #505b66;
}
.serviceAreaSearchBar-form {
  position: relative;
  height: 40px;
  -webkit-box-shadow: 0.5px 0.5px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0.5px 0.5px 3px 0px rgba(0, 0, 0, 0.5);
  vertical-align: top;
  width: 100%;
  border-radius: 3px;
}
.serviceAreaSearchBar-searchIcon {
  left: 10px;
  line-height: 40px;
  font-size: 1.25em;
  position: absolute;
  z-index: 10;
}
.serviceAreaSearchBar-button {
  border-radius: 0;
  font-weight: 400;
  min-width: 90px;
  padding: 10px 13px;
  position: absolute;
  right: 0;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.serviceAreaSearchBar-autocomplete {
  background-color: #ffffff;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  position: relative;
  vertical-align: top;
  width: 100%;
  border-radius: 3px;
}
.serviceAreaSearchBar-autocomplete .Select-control {
  height: 40px;
  padding-left: 15px;
  border-radius: 3px;
}
.serviceAreaSearchBar-autocomplete .Select-input {
  font-size: 1.3rem;
  font-weight: 400;
  height: 40px;
  outline: none !important;
  padding-left: 17px;
}
.serviceAreaSearchBar-autocomplete .Select-noresults,
.serviceAreaSearchBar-autocomplete .Select-option {
  min-height: 40px;
  line-height: 40px;
  padding: 0 0 0 10px;
  border-bottom: 1px solid #f3f4f6;
  font-size: 1.3rem;
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
}
.serviceAreaSearchBar-autocomplete .Select-noresults:not(.is-focused),
.serviceAreaSearchBar-autocomplete .Select-option:not(.is-focused) {
  background-color: #ffffff;
}
.serviceAreaSearchBar-autocomplete .Select-menu {
  min-height: 40px;
  max-height: 204px;
  margin: 0;
}
.serviceAreaSearchBar-autocomplete .Select-menu-outer {
  margin-top: 3px;
}
.serviceAreaSearchBar-autocomplete .Select-loading {
  left: 55%;
}
.serviceAreaZoomControl {
  display: none;
  position: absolute;
  z-index: 10;
  right: 10px;
  bottom: 25px;
}
.serviceAreaZoomControl-button {
  display: block;
  height: 40px;
  width: 40px;
  margin-bottom: 4px;
  padding: 0;
  border: 0;
  font-size: 2em;
  background-color: #ffffff;
  -webkit-box-shadow: 0.5px 0.5px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0.5px 0.5px 3px 0px rgba(0, 0, 0, 0.5);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.serviceAreaZoomControl-button:focus {
  border-color: 0;
  -webkit-box-shadow: 0.5px 0.5px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0.5px 0.5px 3px 0px rgba(0, 0, 0, 0.5);
}
.serviceAreaZoomControl-button:active {
  background-color: #9ea4ae;
}
.serviceAreaZoomControl-icon {
  line-height: 40px;
  font-size: 0.75em;
}
.serviceAreaMobileStatusDrawer {
  position: absolute;
  top: calc(100% - 50px);
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background: #ffffff;
  overflow: hidden;
  -webkit-transition: top 0.15s ease-out;
  transition: top 0.15s ease-out;
}
.serviceAreaMobileStatusDrawer--open {
  top: 50px;
  border-top: 1px solid #d0d3da;
}
.serviceAreaMobileStatusDrawer-header {
  height: 50px;
  line-height: 50px;
  color: #505b66;
  font-size: 1.3rem;
  border-bottom: 1px solid #d0d3da;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.serviceAreaMobileStatusDrawer-list {
  position: absolute;
  top: 50px;
  width: 100%;
  overflow-y: auto;
}
.serviceAreaMobileStatusDrawer-list-label {
  line-height: 50px;
  background: #f3f4f6;
  border-bottom: 1px solid #d0d3da;
  padding-left: 10px;
  text-transform: uppercase;
  color: #505b66;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 1px;
}
.serviceAreaMobileStatusDrawer-list-item {
  position: relative;
  line-height: 50px;
  border-bottom: 1px solid #d0d3da;
  padding-left: 20px;
  font-size: 1.4rem;
  color: #505b66;
}
.serviceAreaMobileStatusDrawer-list-item .serviceAreaSaveBox-countyDropdown-list {
  padding: 0 50px 15px 0;
}
.serviceAreaMobileStatusDrawer-list-item .serviceAreaSaveBox-countyDropdown-listItem {
  display: inline-block;
  padding-left: 12px;
}
.serviceAreaMobileStatusDrawer-list-itemRemove {
  position: absolute;
  top: 0px;
  right: 0px;
  color: #d32f2f;
  line-height: 50px;
  cursor: pointer;
  width: 50px;
  text-align: center;
}
.serviceAreaMobileStatusDrawer .serviceAreaSaveBox-listLabel {
  padding: 8px 10px;
  background-color: #f3f4f6;
  color: #505b66;
  border-bottom: 1px solid #d0d3da;
}
.serviceAreaMobileStatusDrawer .serviceAreaSaveBox-listItem {
  padding: 5px 10px;
  border-bottom: 1px solid #d0d3da;
}
.serviceAreaSaveBar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  text-align: center;
  font-size: 1.3rem;
  color: #505b66;
  text-transform: uppercase;
  line-height: 50px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.serviceAreaSaveBar-button {
  position: absolute;
  top: 0;
  bottom: 0;
  padding: 0;
  height: 50px;
  min-height: 50px;
  min-width: 30px;
  line-height: 50px;
}
.serviceAreaSaveBar-button:focus {
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.serviceAreaSaveBar-button:active {
  background-color: #9ea4ae;
}
.serviceAreaSaveBar-button--back {
  left: 0;
}
.serviceAreaSaveBar-button--save {
  right: 0;
  width: 53px;
  color: #2b73de;
}
.serviceAreaSaveBox {
  position: absolute;
  display: none;
  top: 14px;
  right: 10px;
  min-width: 375px;
  background-color: #ffffff;
  -webkit-box-shadow: 0.5px 0.5px 3px 0px rgba(0, 0, 0, 0.5);
  box-shadow: 0.5px 0.5px 3px 0px rgba(0, 0, 0, 0.5);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.serviceAreaSaveBox-wrapper {
  max-height: 45vh;
  overflow-y: auto;
  border-bottom: 1px solid #d0d3da;
  margin-bottom: 5px;
}
.serviceAreaSaveBox-button-header {
  padding: 10px;
  border-bottom: 1px solid #d0d3da;
}
.serviceAreaSaveBox-header {
  padding: 10px 10px 8px;
  font-size: 1.2rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #505b66;
  border-bottom: 1px solid #d0d3da;
}
.serviceAreaSaveBox-list {
  padding: 10px 15px;
  font-size: 1.4rem;
  font-weight: 500;
  border-bottom: 1px solid #d0d3da;
  max-height: 50vh;
  overflow-y: auto;
}
.serviceAreaSaveBox-list-group {
  font-size: 1.4rem;
  font-weight: 500;
}
.serviceAreaSaveBox-list-group-item {
  padding: 10px;
  border-bottom: 1px solid #d0d3da;
}
.serviceAreaSaveBox-listLabel {
  color: #505b66;
  font-size: 1rem;
  text-transform: uppercase;
}
.serviceAreaSaveBox-listItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  color: #505b66;
  margin-bottom: 5px;
}
.serviceAreaSaveBox-radioWrapper {
  width: 80px;
}
.serviceAreaSaveBox-label {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.3rem;
  line-height: 185%;
}
.serviceAreaSaveBox-listItemSmall {
  display: inline-block;
  padding: 5px;
  margin-right: 8px;
}
.serviceAreaSaveBox-listItemRemove {
  position: absolute;
  right: 10px;
  top: 2px;
  bottom: 2px;
  color: #d32f2f;
  line-height: 26px;
  cursor: pointer;
}
.serviceAreaSaveBox-buttons {
  padding: 10px;
}
.serviceAreaSaveBox-buttons-reset,
.serviceAreaSaveBox-buttons-save {
  width: calc(50% - 5px);
}
.serviceAreaSaveBox-buttons-reset {
  margin-right: 5px;
}
.serviceAreaSaveBox-buttons-save {
  margin-left: 5px;
}
.serviceAreaSaveBox-link {
  text-align: center;
  padding: 5px 0;
}
.serviceAreaSaveBox-item-body {
  padding: 5px 10px;
  font-size: 1.3rem;
  color: #3d454d;
}
.serviceAreaSaveBox-note-wrapper {
  max-width: 250px;
}
.serviceAreaSaveBox-note {
  padding: 15px 15px 20px;
  font-size: 1.3rem;
  text-align: center;
}
.serviceAreaSaveBox-save {
  padding: 10px;
}
.serviceAreaSaveBox-mobile-save {
  position: absolute;
  top: 0;
  right: 10px;
}
.serviceAreaSaveBox-countyDropdown .material-icons {
  padding-left: 5px;
  font-size: 0.75em;
}
.serviceAreaSaveBox-countyDropdown-listItem {
  font-size: 1.3rem;
  line-height: 150%;
  padding-left: 24px;
}
.serviceAreaSaveBox--AM {
  width: 346px;
}
.serviceAreaSaveBox--AM-bulkZipInput {
  width: 100%;
  height: 100px;
  margin: 5px 0 10px;
}
.serviceAreaSaveBox--AM-dropdown {
  cursor: pointer;
  padding: 5px 0;
  display: inline-block;
}
.serviceAreaSaveBox--AM-dropdown:hover {
  text-decoration: underline;
}
.serviceAreaSaveBox--AM-dropdown-label {
  margin-right: 5px;
}
.serviceAreaSaveBox--AM-sortSelect {
  padding: 5px 15px;
  border-bottom: 1px solid #d0d3da;
}
.serviceAreaSaveBox--AM-sortSelect-btn {
  cursor: pointer;
  padding: 0 10px;
  font-size: 1.4rem;
  color: #505b66;
}
.serviceAreaSaveBox--AM-sortSelect-btn:hover {
  text-decoration: underline;
}
.serviceAreaSaveBox--AM-sortSelect-btn[disabled] {
  color: #505b66;
  font-weight: 700;
  text-decoration: underline;
}
.serviceAreaSaveBox--AM-toggleBtn {
  opacity: 0.5;
  margin-right: 20px;
}
.serviceAreaSaveBox--AM-toggleBtn--last {
  margin-right: 0;
}
.serviceAreaSaveBox--AM-toggleBtn[disabled] {
  background: #2b73de;
  opacity: 1;
}
.serviceAreaSaveBox--AM-radioBtn {
  display: inline-block;
  vertical-align: middle;
  border: 1px solid;
  border-color: #d0d3da;
  color: #d0d3da;
  height: 24px;
  width: 24px;
  text-align: center;
  cursor: pointer;
  margin-right: 10px;
}
.serviceAreaSaveBox--AM-radioBtn--check {
  margin-left: 10px;
}
.serviceAreaSaveBox--AM-radioBtn--check--active {
  border-color: #4caf50;
  background-color: #4caf50;
  color: #ffffff;
}
.serviceAreaSaveBox--AM-radioBtn--times--active {
  border-color: #d32f2f;
  background-color: #d32f2f;
  color: #ffffff;
}
.tooltip-wrapper {
  position: relative;
  display: inline-block;
}
.tooltip-wrapper .tooltip-body {
  font-size: 1.2rem;
  color: #ffffff;
  background-color: #3d454d;
  border-radius: 3px;
  padding: 5px;
  text-align: center;
  position: absolute;
  bottom: 40px;
  left: -85px;
  width: 200px;
  opacity: 0;
  z-index: 50;
  -webkit-transform: scale(0);
  transform: scale(0);
  -webkit-transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  transition: opacity 200ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
  min-height: 0;
}
.tooltip-wrapper .tooltip-body-show {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}
.tooltip-wrapper .tooltip-tip {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #3d454d;
  position: absolute;
  left: 88px;
}
.backgroundCheck-form {
  max-width: 900px;
}
.backgroundCheck-form .flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: stretch;
  align-content: stretch;
}
.backgroundCheck-form .flex-item {
  width: 50%;
  -webkit-box-flex: 1;
  -ms-flex: 1 auto;
  flex: 1 auto;
}
.backgroundCheck-form h2 {
  margin: 0 0 20px;
  font-weight: 700;
}
.backgroundCheck-form-intro {
  margin: 0 0 20px;
  font-size: 1.4rem;
  line-height: 1.7em;
  -webkit-box-flex: 4;
  -ms-flex: 4;
  flex: 4;
}
.backgroundCheck-form-step {
  text-align: right;
  font-weight: bold;
  padding: 0 0 10px 10px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.backgroundCheck-form-sidebar {
  font-size: 1.3rem;
}
.backgroundCheck-form-middleName {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.backgroundCheck-form-hr {
  border: 0;
  border-top: 1px solid #d0d3da;
  margin: 0 0 15px;
}
.backgroundCheck-form-choice {
  position: relative;
  padding: 15px 20px;
}
.backgroundCheck-form-choice-head {
  font-weight: bold;
}
.backgroundCheck-form-choice-text {
  color: #505b66;
  font-size: 1.3rem;
  margin: 5px 0 0;
}
.backgroundCheck-form-choice .material-icons {
  position: absolute;
  right: 20px;
  top: 20px;
}
.backgroundCheck-form-choice:hover {
  cursor: pointer;
  background-color: #e0ecff;
}
.backgroundCheck-form-choices .backgroundCheck-form-hr {
  margin: 0;
}
.backgroundCheck-form-upload-wrapper {
  width: 312px;
  margin: 5px 50px 25px 0;
  border: 1px solid #d0d3da;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  background-color: #757d88;
}
.backgroundCheck-form-upload-image {
  margin: auto;
  max-width: 312px;
  max-height: 192px;
}
.backgroundCheck-form-upload-edit {
  background: #ffffff;
  padding: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  border-top: 1px solid #d0d3da;
}
.backgroundCheck-form-upload-edit-btn {
  white-space: nowrap;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.backgroundCheck-form-upload-btn {
  background-color: #ffffff;
  font-size: 1.3rem;
  font-weight: bold;
  color: #2b73de;
  height: 192px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.backgroundCheck-form-upload-btn-caption {
  margin: auto;
  text-align: center;
}
.backgroundCheck-form-upload-btn i.material-icons.material-icon-image {
  font-size: 4rem;
  color: #2b73de;
}
.backgroundCheck-form-upload-btn:hover {
  border: 2px solid #2b73de;
}
.backgroundCheck-form-upload-input {
  cursor: pointer;
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  opacity: 0;
  position: absolute;
  z-index: 1;
}
.backgroundCheck-form-error {
  padding: 10px;
  background-color: #ffffff;
  color: #d32f2f;
  border-top: 1px solid #d0d3da;
}
.backgroundCheck-form-watermark-front {
  background: url(https://cdn.porch.com/pro/background-check/personal_id_watermark_front.png) white;
}
.backgroundCheck-form-watermark-back {
  background: url(https://cdn.porch.com/pro/background-check/personal_id_watermark_back.png) white;
}
.backgroundCheck-form .ul-selection-control {
  padding: 10px 0;
}
.backgroundCheck-form .ul-selection-control .ul-selection-control-text {
  font-weight: bold;
}
.backgroundCheck-form-examples {
  border: 1px solid #d0d3da;
  border-radius: 3px;
  padding: 15px;
  margin-top: 30px;
  -webkit-box-flex: 1;
  -ms-flex: 1 40%;
  flex: 1 40%;
}
.backgroundCheck-form-examples-img {
  width: 232px;
  height: 144px;
  margin: 0 20px 10px 0;
}
.backgroundCheck-form-examples-list {
  -webkit-box-flex: 1;
  -ms-flex: 1 0;
  flex: 1 0;
  min-width: 200px;
}
.vettedProStatus-cancel-body h3 {
  font-weight: bold;
  margin: 0 0 10px;
}
.vettedProStatus-cancel-body ul.vettedProStatus-cancel-body-list {
  padding: 0 0 0 20px;
}
.vettedProStatus-cancel-body ul.vettedProStatus-cancel-body-list li.item {
  padding: 0;
  list-style-type: disc;
}
.vettedProStatus-cancel-footer {
  padding: 20px;
  text-align: right;
  border-top: 1px solid #d0d3da;
}
.vettedProStatus-cancel .modalDialog-title {
  font-weight: bold;
}
.backgroundCheck-membership {
  max-width: 900px;
}
.backgroundCheck-membership-sidebar-head {
  background: -webkit-gradient(linear, left bottom, left top, from(#5d5d5d), color-stop(60%, #3d454d));
  background: linear-gradient(0deg, #5d5d5d 0%, #3d454d 60%);
  padding: 5px;
}
.backgroundCheck-membership-sidebar-icon {
  margin: 0 auto;
}
.backgroundCheck-membership-sidebar-body {
  background-color: #ffffff;
  border: 1px solid #d0d3da;
  padding: 20px 20px 25px;
  margin-bottom: 10px;
}
.backgroundCheck-membership-sidebar-value,
.backgroundCheck-membership-sidebar-desc {
  font-weight: bold;
  font-size: 1.5rem;
  margin-bottom: 15px;
}
.backgroundCheck-membership-sidebar-total {
  font-weight: bold;
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.backgroundCheck-membership-sidebar .proPage-sidebar-help {
  border-top: 1px solid #9ea4ae;
  font-size: 1.2rem;
  color: #505b66;
  margin-top: 15px;
  padding: 15px 0 2px;
}
.backgroundCheck-membership-sidebar .proPage-sidebar a.proPage-sidebar-phone {
  font-size: 1.7rem;
}
.backgroundCheck-membership-sidebar .proPage-sidebar-sub {
  display: none;
}
.backgroundCheck-icon {
  background-color: #757d88;
  border: 4px solid #f3f4f6;
  border-radius: 50%;
  display: inline-block;
  margin: 0 8px 0 0;
  padding: 4px;
  width: 32px;
  height: 32px;
}
.backgroundCheck-icon i.material-icons {
  color: #ffffff;
  font-size: 16px;
  vertical-align: bottom;
}
.backgroundCheck-status-wrapper {
  border-right: 1px solid #e3e6ea;
  padding: 0 15px 0 5px;
}
.backgroundCheck-status-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.backgroundCheck-status-none {
  border-right: 1px solid #e3e6ea;
  padding-right: 20px;
}
.backgroundCheck-status-head {
  font-size: 1.7rem;
  margin: 0 0 10px;
}
.backgroundCheck-status-text {
  font-size: 1.4rem;
  color: #505b66;
  margin: 0 0 15px;
}
.backgroundCheck-status-footer {
  padding: 15px 0 5px;
  border-top: 1px solid #e3e6ea;
  margin-right: 15px;
}
.backgroundCheck-status-sidebar {
  padding-left: 5px;
}
.backgroundCheck-status-sidebar-head {
  font-size: 1.5rem;
  color: #757d88;
  margin-bottom: 15px;
}
.backgroundCheck-status-sidebar-body {
  font-size: 1.4rem;
  color: #505b66;
}
.backgroundCheck-status-title {
  font-size: 1.4rem;
  font-weight: bold;
  vertical-align: bottom;
}
.backgroundCheck-status-description {
  font-size: 1.3rem;
  color: #757d88;
  margin: 10px 0 15px;
}
.backgroundCheck-status-col1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.backgroundCheck-status-col2 {
  width: 150px;
  padding-left: 20px;
}
.backgroundCheck-status i.material-icons {
  margin-right: 8px;
  vertical-align: middle;
}
.backgroundCheck-status i.material-icon-bubble {
  padding: 2px;
  border-radius: 50%;
  font-size: 1.5rem;
  color: #ffffff;
}
.backgroundCheck-status i.backgroundCheck-status-pass {
  background-color: #4caf50;
}
.backgroundCheck-status i.backgroundCheck-status-fail {
  background-color: #d32f2f;
}
.backgroundCheck-status i.backgroundCheck-status-pending {
  color: #505b66;
  font-size: 2.2rem;
}
.backgroundCheck-status i.backgroundCheck-status-expired {
  color: #ff9100;
  font-size: 2.2rem;
}
.backgroundCheck-status i.backgroundCheck-status-suspend {
  color: #ff9100;
  font-size: 2.2rem;
}
.backgroundCheck-status .proPage-label {
  padding-bottom: 5px;
}
.backgroundCheck-status .proPage-value {
  margin: 0;
}
.backgroundCheck-third-party {
  padding: 15px;
  border: 1px solid #9ea4ae;
  color: #757d88;
  font-size: 1.4rem;
}
.video-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.video-container .video-wrapper {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 300px;
  margin: 10px;
}
.video-container .ul-modal-large .ul-modal-container {
  width: 80%;
  max-width: 1100px;
  background-color: #000000;
}
.video-container .ul-modal-noHeader .ul-modal-content {
  padding-top: 20px;
}
.video-container .ul-modal-header-close,
.video-container .ul-modal-header-close a.ul-modal-header-close-link {
  color: #ffffff;
}
.video-container .video-heading {
  font-size: 1.4rem;
  color: #ffffff;
}
.video-container .video-subheading {
  font-size: 1.3rem;
  color: #ffffff;
  padding-bottom: 20px;
}
.video-container .video-caption {
  font-size: 1.4rem;
  padding: 10px 0;
}
.welcomeModePopover {
  position: absolute;
  width: 220px;
  padding: 10px;
  background: #505b66;
  border-radius: 4px;
  color: #ffffff;
}
.welcomeModePopover-text {
  margin: 5px 0 15px;
}
.welcomeModePopover-btn {
  width: 100%;
}
.welcomeModePopover-btn:focus {
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #ffffff;
}
.welcomeModePopover-progressDotsWrapper {
  padding: 10px 0;
}
.welcomeModePopover-progressDotsTable {
  margin: 0 auto;
  display: table;
}
.welcomeModePopover-progressDotCell {
  display: table-cell;
}
.welcomeModePopover-progressDot {
  height: 4px;
  width: 4px;
  margin: 1px 5px;
  border-radius: 50%;
  background: #ffffff;
}
.welcomeModePopover-progressDot--selected {
  height: 6px;
  width: 6px;
  margin: 0 4px;
}
.welcomeModePopover-close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}
.welcomeModePopover::after {
  content: '';
  position: absolute;
  top: 30px;
  right: -10px;
  height: 0px;
  width: 0px;
  border-left: 10px solid #505b66;
  border-top: 10px solid rgba(0, 0, 0, 0);
  border-bottom: 10px solid rgba(0, 0, 0, 0);
}
.proAlerts-box {
  background-color: rgba(227, 230, 234, 0.5);
  padding: 5px;
  border-radius: 2px;
  margin-bottom: 20px;
  height: calc(100% - 20px);
}
.proAlerts-empty {
  margin: 30px;
  text-align: center;
}
.proAlerts-empty-header {
  font-weight: bold;
  margin: 25px 0 0;
}
.proAlerts-empty-icon .material-icons {
  font-size: 12rem;
  color: #505b66;
  background-color: #e3e6ea;
  border-radius: 50%;
  padding: 10px;
}
.proAlerts-empty p {
  color: #757d88;
  font-size: 1.3rem;
  margin: 5px 0 10px;
}
.proAlerts-alert-box {
  background-color: #2b73de;
  padding: 15px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 3px;
}
.proAlerts-alert-content {
  border-radius: 2px;
  background-color: #2b73de;
  color: #ffffff;
  cursor: pointer;
  display: block;
  position: relative;
}
.proAlerts-alert-content:link,
.proAlerts-alert-content:visited {
  color: #ffffff;
}
.proAlerts-alert-content-icon {
  display: inline-block;
}
.proAlerts-alert-content-icon-bubble {
  border-radius: 50%;
  padding: 6px;
  background-color: #ffffff;
  border: 4px solid rgba(66, 130, 226, 0.7);
}
.proAlerts-alert-content-icon-bubble .material-icons {
  color: #ffd451;
  font-size: 18px;
}
.proAlerts-alert-content-description {
  -webkit-box-flex: 1;
  -ms-flex: 1 auto;
  flex: 1 auto;
  margin-left: 15px;
  line-height: 1.2em;
  color: #ffffff;
}
.proAlerts-alert-content-description-title {
  font-size: 14px;
  font-weight: bold;
  margin: 0;
}
.proAlerts-alert-content-description-message {
  font-size: 12px;
  font-weight: 500;
  margin: 10px 0 0;
}
.proAlerts-alert-content-arrow {
  color: #ffffff;
  -webkit-box-flex: 0;
  -ms-flex: 0;
  flex: 0;
  -ms-flex-item-align: center;
  align-self: center;
  padding: 0 5px;
}
@-webkit-keyframes pop-in {
  0% {
    -webkit-transform: scale(0.65);
    transform: scale(0.65);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pop-in {
  0% {
    -webkit-transform: scale(0.65);
    transform: scale(0.65);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes slide-in {
  from {
    left: 0;
  }
  to {
    left: 400px;
  }
}
@keyframes slide-in {
  from {
    left: 0;
  }
  to {
    left: 400px;
  }
}
@-webkit-keyframes slide-in-mobile {
  from {
    left: 0;
  }
  to {
    left: 350px;
  }
}
@keyframes slide-in-mobile {
  from {
    left: 0;
  }
  to {
    left: 350px;
  }
}
.porchBody {
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.porchContent-fixed {
  background-color: #f3f4f6;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.proLayout .proAppFooter {
  background-color: #f3f4f6;
}
.proPage {
  font-size: 1.4rem;
  /* Map Styles */
}
.proPage-header {
  color: #3d454d;
  border-bottom: 1px solid #d0d3da;
  position: relative;
  padding: 15px 0;
  margin-bottom: 25px;
}
.proPage-header h1 {
  margin: 5px 0 0;
  font-weight: 700;
  font-size: 2rem;
}
.proPage-header .container {
  position: relative;
}
.proPage-container {
  max-width: 1000px;
  margin: 0 auto;
}
.proPage-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  margin-bottom: 20px;
}
.proPage-box-body {
  padding: 15px;
}
.proPage-box-body hr {
  border: 0;
  border-top: 1px solid #d0d3da;
  margin: 15px -15px;
}
.proPage-box-body-next {
  padding: 0 15px 15px 15px;
}
.proPage-box-dashboard {
  padding: 15px;
  background-color: #f3f4f6;
}
.proPage-box-head {
  border-bottom: 1px solid #d0d3da;
  padding: 15px;
}
.proPage-box-head h2 {
  color: #505b66;
  font-size: 1.6rem;
  font-weight: 700;
  display: inline;
}
.proPage-box-head h5 {
  color: #3d454d;
  font-weight: 700;
  margin: 0;
}
.proPage-box-head h6 {
  color: #505b66;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
}
.proPage-box-pad {
  padding: 20px 40px 40px;
}
.proPage-footer {
  border-top: 1px solid #d0d3da;
  padding: 15px;
}
.proPage-expando-head {
  border-bottom: 1px solid #d0d3da;
  padding: 15px;
}
.proPage-expando-head h2 {
  color: #757d88;
  font-size: 1.5rem;
  font-weight: 700;
  display: inline;
}
.proPage-expando-body {
  padding: 15px;
}
.proPage-error {
  padding: 10px;
  border: 2px solid #d32f2f;
  border-radius: 3px;
  margin: 10px 0;
  font-size: 1.3rem;
  white-space: pre-wrap;
}
.proPage-error .material-icons {
  float: left;
  padding-right: 10px;
  margin-top: -2px;
  color: #d32f2f;
}
.proPage-success {
  padding: 10px;
  border: 2px solid #2b73de;
  border-radius: 3px;
  margin-top: 10px;
  font-size: 1.3rem;
  white-space: pre-wrap;
}
.proPage-success .material-icons {
  float: left;
  padding-right: 10px;
  margin-top: -2px;
  color: #2b73de;
}
.proPage-success-box {
  padding: 10px;
  color: #ffffff;
  background-color: #3d454d;
  border-radius: 3px;
  margin-bottom: 20px;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.proPage-success-box a.closeAlert {
  color: #ffffff;
  font-weight: bold;
  padding-right: 10px;
}
.proPage-success-box .material-icons {
  float: left;
  padding-right: 10px;
  color: #ffffff;
}
.proPage-close {
  float: right;
}
.proPage-close .material-icons {
  padding-right: 0;
}
.proPage-noWrap {
  white-space: nowrap;
}
.proPage .material-icons {
  vertical-align: middle;
}
.proPage i.material-icons-bubble {
  padding: 3px;
  border-radius: 50%;
  font-size: 1.8rem;
  color: #ffffff;
  background-color: #505b66;
  border: 3px solid #d0d3da;
  vertical-align: middle;
}
.proPage-label {
  color: #505b66;
  font-weight: bold;
  font-size: 1.1rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}
.proPage-value {
  font-weight: bold;
  margin: 3px 0 6px;
}
.proPage-link {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.4rem;
}
.proPage a.proPage-coal-link {
  color: #3d454d;
}
.proPage-curator {
  background-color: #ffffff;
  border: 1px solid #2b73de;
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding: 10px;
}
.proPage-curator-label {
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 1.1rem;
  margin: 0;
  text-transform: uppercase;
  padding: 0 7px 3px 0;
}
.proPage-curator-head {
  color: #505b66;
}
.proPage-curator .material-icons {
  vertical-align: text-bottom;
  font-size: 1.7rem;
}
.proPage-curator-fixed {
  position: fixed;
  top: 0;
  left: 40%;
  z-index: 100;
  padding: 5px 10px;
  min-width: 150px;
  font-size: 1.2rem;
}
.proPage-modal {
  background-color: white;
  width: 100%;
  height: 100vh;
  overflow: auto;
  position: fixed;
}
.proPage-modal-gray {
  background-color: #f3f4f6;
}
.proPage-small-textarea.textarea.form-control,
.proPage-small-textarea.textarea.form-control[readonly] {
  background-color: #ffffff;
  font-size: 1.2rem;
  line-height: 120%;
}
.proPage-note {
  font-size: 1.2rem;
  color: #505b66;
  line-height: 150%;
}
.proPage-description {
  font-size: 1.3rem;
  color: #757d88;
  line-height: 150%;
  margin: 5px 0 10px 0;
  min-width: 200px;
}
.proPage-intro {
  line-height: 150%;
  margin: 0 0 15px;
}
.proPage-change-link {
  padding: 15px 25px;
  border-left: 1px solid #d0d3da;
  letter-spacing: 1px;
}
.proPage-sidebar {
  border: 1px solid #d0d3da;
  border-radius: 3px;
  padding: 15px;
}
.proPage-sidebar-help {
  font-size: 1.4rem;
  font-weight: bold;
  color: #3d454d;
  padding-bottom: 10px;
}
.proPage-sidebar-sub {
  font-size: 1.3rem;
  color: #505b66;
  padding-top: 10px;
}
.proPage-sidebar a.proPage-sidebar-phone {
  font-size: 2rem;
  font-weight: bold;
  color: #3d454d;
}
.proPage-subhead {
  font-weight: bold;
  margin: 0 0 10px;
}
.proPage .proFooter {
  padding: 20px 10px;
  border-top: 1px solid #d0d3da;
  line-height: 185%;
}
.proPage-sticky-wrapper {
  min-height: 100%;
  background-color: #f3f4f6;
  /* Equal to height of footer */
  /* But also accounting for potential margin-bottom of last child */
  margin-bottom: -50px;
}
.proPage-sticky-wrapper-push {
  height: 50px;
}
.proPage .proFooter-sticky {
  height: 50px;
  padding: 10px 20px;
  border-top: 1px solid #d0d3da;
  font-size: 1.2rem;
  color: #757d88;
  width: 100%;
}
.proPage .proFooter-sticky a.proFooter-sticky-link {
  color: #3d454d;
  font-weight: 700;
  display: inline-block;
  padding: 0 10px;
  border-right: 1px solid #e3e6ea;
}
.proPage .proFooter-sticky a.proFooter-sticky-link:last-child {
  border-right: none;
}
.proPage-marker {
  position: relative;
}
.proPage-company-marker {
  position: absolute;
  top: -40px;
  left: -20px;
}
.proPage-company-marker .material-icons {
  color: #c33a29;
  font-size: 50px;
}
.proPage-btn-submit {
  width: 150px;
}
.proPage-pad20 {
  padding: 20px;
}
.proPage-pad15 {
  padding: 15px;
}
.proPage-pad10 {
  padding: 10px;
}
.proPage .btn-link {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 1px;
  color: #2b73de;
}
.proPage .porchErrorContainer-message {
  margin-top: 5px;
}
.proPage .proPage-userMenu {
  padding: 10px 20px;
  float: right;
}
.proPage .proPage-userMenu .material-icons {
  color: #d0d3da;
  font-size: 2.5em;
  padding-right: 5px;
  vertical-align: middle;
}
.proPage .proPage-userMenu-name {
  color: #757d88;
  font-size: 1.4rem;
  font-weight: 700;
  vertical-align: middle;
}
.proPage ul.proPage-link-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.proPage ul.proPage-link-list li {
  margin: 5px 0;
}
.proPage form {
  margin: 0;
}
.proPage :focus::-webkit-input-placeholder {
  opacity: 0.4;
}
.proPage :focus::-moz-placeholder {
  opacity: 0.4;
}
.proPage :focus:-moz-placeholder {
  opacity: 0.4;
}
.proPage .porch-text-input button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.proPage .ul-selection-control-text {
  font-weight: bold;
}
.proPage-checkbox {
  padding: 5px;
  margin-left: 5px;
}
.pro-modal .porch-modal-content {
  background-color: #f3f4f6;
  padding: 20px;
  position: relative;
  overflow: auto;
}
.proPage-modal-body {
  text-align: center;
  padding: 40px;
  line-height: 150%;
}
hr.proPage-hr {
  border: 0;
  border-top: 1px solid #d0d3da;
  margin: 0;
}
.proAppFooter .appFooter-utilLinks {
  background-color: #f3f4f6;
}
.app-ProProjectDetail {
  background-color: #f3f4f6;
}
.buyProject-header {
  color: #3d454d;
  border-bottom: 1px solid #d0d3da;
  position: relative;
  margin-bottom: 25px;
}
.buyProject-header h2 {
  margin: 0.9em 0;
  font-weight: 700;
  font-size: 2rem;
}
.buyProject-header .container {
  position: relative;
}
.buyProject-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
}
.buyProject-box .buyProject-box {
  border-top: 1px solid #d0d3da;
  margin: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.buyProject-box hr {
  border: 0;
  border-bottom: 1px solid #e3e6ea;
  height: 1px;
}
.buyProject-contact-info {
  padding: 20px 20px 10px;
}
.buyProject-contact-info h5 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #505b66;
  margin: 0 0 10px;
}
.buyProject-data {
  font-size: 1.5rem;
  color: #7F858C;
  padding-bottom: 15px;
}
.buyProject-label {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.buyProject-link {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}
.buyProject-heading {
  font-size: 1.3rem;
  color: #505b66;
  text-transform: uppercase;
  padding: 20px;
  border-top: 1px solid #e3e6ea;
  border-bottom: 1px solid #e3e6ea;
}
.buyProject-lead-label {
  font-size: 1.7rem;
  color: #3d454d;
}
.buyProject-price {
  font-size: 2rem;
  font-weight: 700;
}
.buyProject-price-small {
  font-size: 1.7rem;
  font-weight: 700;
}
.buyProject-currency-logo {
  display: inline-block;
  padding: 0 6px;
  position: relative;
  vertical-align: top;
}
.buyProject-currency-logo .tooltip {
  background-color: #3d454d;
  border: none;
  bottom: auto;
  top: 150%;
  left: -82px;
  color: #ffffff;
  padding: 10px 10px 5px;
  font-size: 1.2rem;
  opacity: 0.9;
}
.buyProject-currency-logo .tooltip:after {
  margin: -5px;
}
.buyProject-currency-logo .currency-icon {
  background-color: #3d454d;
  border-radius: 50%;
  height: 22px;
  padding-top: 6px;
  width: 22px;
}
.buyProject-currency-logo .porch-chevron {
  display: inline-block;
  width: 14px;
}
.buyProject-contact-pad {
  padding: 20px 20px 10px;
}
.buyProject-contact-address-name {
  margin: 0 0 5px;
  font-weight: 700;
}
.buyProject-contact-address .buyProject-data {
  padding-bottom: 5px;
}
.buyProject-contact-type {
  font-size: 1.5rem;
  padding-bottom: 5px;
}
.buyProject a.contact-link {
  color: #505b66;
}
.buyProject-contact-icon {
  font-size: 2rem;
}
.buyProject .hop-details-list {
  border: 0;
}
.buyProject .hop-data-label {
  text-transform: none;
  font-size: 1.4rem;
  font-weight: 700;
  color: #505b66;
  padding-bottom: 5px;
}
.buyProject .hop-data-value {
  color: #7F858C;
}
.buyProject-sidebar {
  margin: 0 0 20px;
}
.buyProject-sidebar h3.buyProject-sidebar-head {
  margin: 0;
  padding: 0 20px 10px;
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 1px solid #d0d3da;
  text-align: center;
}
.buyProject-sidebar-box {
  padding: 25px;
  max-width: 350px;
  margin: 0 auto;
}
.buyProject-sidebar-box hr {
  border: 0;
  border-bottom: 1px solid #e3e6ea;
  height: 1px;
}
.buyProject-cost {
  padding: 20px;
}
.buyProject-points {
  font-size: 2.2rem;
  padding: 20px 0 15px;
  font-weight: 700;
  text-align: center;
}
.buyProject h4.buyProject-point-head {
  font-size: 1.5rem;
  font-weight: 700;
  color: #505b66;
  padding: 20px 0 10px 20px;
  margin: 0;
}
.buyProject-point-text {
  font-size: 1.4rem;
  color: #7F858C;
  line-height: 150%;
  margin: 20px 20px 0;
}
.buyProject-point-note {
  color: #505b66;
  font-size: 1.3rem;
  padding: 10px 20px 20px;
}
.buyProject-point-info {
  padding-left: 15px;
  text-align: left;
}
.buyProject-iconCheckbox {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.buyProject-iconCheckbox > label {
  display: block;
}
.buyProject-iconCheckbox-text {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 24px;
  padding-left: 10px;
}
.buyProject-iconCheckbox-checked,
.buyProject-iconCheckbox-unchecked {
  left: 0;
  position: absolute;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
  top: 0;
}
.buyProject-iconCheckbox-control {
  left: -99999px;
  position: absolute;
}
.buyProject-iconCheckbox-checked {
  color: #3d454d;
  display: none;
}
.buyProject-iconCheckbox-control:focus ~ .buyProject-iconCheckbox-unchecked,
.buyProject-iconCheckbox-control:focus ~ .buyProject-iconCheckbox-checked {
  color: #2b73de;
}
.buyProject-iconCheckbox-control:checked ~ .buyProject-iconCheckbox-unchecked {
  display: none;
}
.buyProject-iconCheckbox-control:checked ~ .buyProject-iconCheckbox-checked {
  display: inline-block;
}
.buyProject-action-button.btn-outline-gray,
.buyProject-action-button.btn-outline-gray:visited {
  background-color: #ffffff;
}
.buyProject-action-button.btn-outline-gray:hover {
  background-color: #9ea4ae;
}
.buyProject .btn {
  font-size: 1.4rem;
  max-width: 350px;
}
.buyProject-icons {
  text-align: center;
}
.buyProject-images {
  padding: 10px 20px;
}
.buyProject-images-item {
  width: 100%;
  margin: 10px 0;
  cursor: pointer;
}
.buyProject-stats {
  margin: 0 auto 20px;
  text-align: center;
}
.buyProject-stats-item {
  display: inline-block;
  width: 150px;
  font-size: 2.2rem;
}
.buyProject-stats label {
  font-size: 1.3rem;
  font-weight: 500;
  color: #505b66;
}
.buyProject-stats .material-icons {
  color: #505b66;
}
.buyProject-error {
  padding: 20px;
  border: 2px solid #d32f2f;
  border-radius: 3px;
  margin-bottom: 20px;
  font-size: 1.4rem;
  white-space: pre-wrap;
  background-color: #ffffff;
}
.buyProject-success {
  padding: 20px;
  border: 2px solid #2b73de;
  border-radius: 3px;
  margin-bottom: 20px;
  font-size: 1.4rem;
  background-color: #ffffff;
}
.buyProject-success .material-icons {
  vertical-align: middle;
  margin-right: 5px;
}
.buyProject-success-messages {
  white-space: pre-wrap;
}
.buyProject-purchaseConfirmation-body {
  text-align: center;
}
.buyProject-purchaseConfirmation-body h2.header {
  font-weight: 700;
  margin: 0 0 0.5em;
}
.buyProject-purchaseConfirmation-body .buyProject-data {
  width: 100%;
}
.buyProject-purchaseConfirmation-body .buyProject-contact-address,
.buyProject-purchaseConfirmation-body .buyProject-heading,
.buyProject-purchaseConfirmation-body .buyProject-icons {
  display: none;
}
.buyProject-uninterested-body {
  background-color: #f3f4f6;
  padding: 30px 15px 15px;
}
.buyProject .pin-label {
  color: #505b66;
  padding-left: 10px;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0;
}
.buyProject-cta {
  padding: 10px 10px 0;
  text-align: center;
  max-width: 370px;
  margin: 0 auto;
}
.buyProject-message-button {
  padding-bottom: 20px;
}
.buyProject .alertBanner {
  position: relative;
  text-align: center;
}
.buyProject .alertBanner .alertBanner-close-button {
  display: none;
}
.buyProject .alertBanner a.white-link {
  color: #ffffff;
  font-weight: 500;
  padding-left: 5px;
}
.buyProject .alertBanner a.white-link:hover {
  color: #d0d3da;
}
.buyProject .creditCard-promo-modal {
  text-align: center;
  font-size: 1.4rem;
  padding: 0 40px 40px;
}
.buyProject .porchErrorContainer-message {
  margin-top: 5px;
}
.buyProject .porchErrorContainer.showing-error .form-control {
  border-color: #d32f2f;
}
.dashboard {
  padding-top: 20px;
}
.dashboard-vettedWidget-col {
  margin-right: 20px;
  min-width: 300px;
}
.dashboard-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: stretch;
  -ms-flex-pack: stretch;
  justify-content: stretch;
}
.dashboard-support-link {
  margin: 5px 0 5px;
  font-size: 12px;
  font-weight: bold;
}
.dashboard-stats {
  padding: 4px 0 15px 5px;
  margin-bottom: 15px;
  border-bottom: 1px solid #d0d3da;
}
.dashboard-stats-number {
  color: #3d454d;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 6px 0 6px 2px;
}
.dashboard-stats-text {
  color: #3d454d;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 6px;
}
.dashboard-stats-note {
  color: #505b66;
  font-size: 1.2rem;
  font-weight: 500;
}
.dashboard-stats .inlineList .proDashboard-box-label {
  font-weight: 700;
}
.dashboard-stats .material-icons {
  padding-right: 5px;
  vertical-align: text-bottom;
}
.proFinances-sidebar {
  margin-top: 60px;
}
.proFinances-balance {
  font-size: 2.5rem;
  font-weight: bold;
  padding: 8px 0 20px;
  white-space: nowrap;
}
.proFinances-note {
  font-size: 1.2rem;
  padding: 5px 5px 5px 15px;
  line-height: 1.5em;
  color: #757d88;
}
.proHomePage {
  background-color: #ffffff;
}
.proHomePage-header {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 4rem;
  margin: 0 0 8px;
}
.proHomePage-subHeader {
  font-size: 1.8rem;
  line-height: 2.4rem;
  font-weight: 500;
  margin: 0 0 24px;
}
.proHomePage-hero {
  color: #ffffff;
  position: relative;
}
.proHomePage-hero-wrapper {
  margin: 0 auto;
  max-width: 900px;
  position: relative;
  padding: 6rem 15px;
  text-align: center;
  z-index: 5;
}
.proHomePage-hero-action.btn {
  margin-bottom: 16px;
  padding: 18px 40px;
  font-size: 1.3rem;
  font-weight: 700;
  min-height: unset;
}
.proHomePage-hero-headline {
  font-size: 5.4rem;
  font-weight: 700;
  margin: 0;
  text-align: center;
}
.proHomePage-hero-subhead {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 3.2rem;
  margin: 0 0 24px;
}
.proHomePage-hero-callUs {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin: 0;
}
.proHomePage-hero-callNumber {
  font-weight: 700;
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.2em;
}
.proHomePage-hero-bgOverlay {
  background-color: rgba(61, 69, 77, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}
.proHomePage-hero-partnership {
  margin-top: 40px;
}
.proHomePage-hero-partnership > p {
  color: #f3f4f6;
  margin: 0 0 10px;
}
.proHomePage-hero-partnership > img {
  margin: 0 auto;
  max-width: 130px;
}
.proHomePage-customize-signUp {
  margin-top: 40px;
}
.proHomePage-vetted {
  background-color: #3d454d;
  color: #ffffff;
  padding-bottom: 32px;
}
.proHomePage-vetted-tag {
  background-color: #2b73de;
  margin: 0 auto 32px;
  display: inline-block;
  padding: 4px 16px;
  font-size: 1.6rem;
  line-height: 2.4rem;
  font-weight: 700;
  border-radius: 0 0 3px 3px;
}
.proHomePage-vetted-tag-badge {
  display: inline-block;
  margin-bottom: -5px;
}
.proHomePage-vetted-signup {
  margin-bottom: 32px;
}
.proHomePage-vetted-additional {
  margin: 64px 0 24px;
}
.proHomePage-vetted-benefit {
  margin-top: 32px;
}
.proHomePage-vetted-benefitDescription {
  font-size: 1.4rem;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 24px;
}
.proHomePage-vetted-benefitDescription h3 {
  font-size: 1.6rem;
  margin: 0;
  font-weight: 700;
}
.proHomePage-vetted-benefitDescription p {
  margin-top: 8px;
}
.proHomePage-vetted-price {
  font-size: 1.8rem;
  line-height: 2.4rem;
}
.proHomePage-vetted-limitedOffer {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 32px;
}
.proHomePage-vetted-limitedOffer p {
  margin-top: 8px;
}
.proHomePage-vetted-limitedOfferTag {
  font-size: 1.2rem;
  line-height: 1.6rem;
  background-color: #ffd451;
  display: inline-block;
  color: #000000;
  padding: 4px 6px;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
.proHomePage-vetted-learnMoreLink:link,
.proHomePage-vetted-learnMoreLink:visited {
  color: #ffffff;
  text-decoration: underline;
}
.proHomePage .proLander-bg {
  height: 100%;
  animation: fadein 0.5s ease 0s forwards;
  -webkit-animation: fadein 0.5s ease 0s forwards;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  background-size: cover;
  background-position: center 5%;
  background-repeat: no-repeat;
}
.proHomePage .proLander-stories {
  background-color: #f3f4f6;
}
.proHomePage .proLander-stories-thumbnail {
  width: 100%;
}
.proHomePage .proLander-stories-thumbnailOverlay {
  background-color: rgba(61, 69, 77, 0.65);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: white;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  left: 0;
  position: absolute;
  text-align: center;
  -webkit-transition: background-color 0.1s;
  transition: background-color 0.1s;
  top: 0;
  width: 100%;
}
.proHomePage .proLander-stories-thumbnailOverlay .material-icons {
  -ms-flex-item-align: center;
  align-self: center;
  font-size: 4.6rem;
  margin: 0 auto;
}
.proHomePage .proLander-stories-thumbnailOverlay:hover {
  background-color: rgba(61, 69, 77, 0.8);
}
.proHomePage .proLander-stories-info {
  bottom: 20px;
  position: absolute;
  width: 100%;
}
.proHomePage .proLander-stories-name {
  line-height: 150%;
  font-weight: 700;
  margin-bottom: 0;
}
.proHomePage .proLander-stories-skillSet {
  font-size: 1.3rem;
  font-weight: 700;
}
.proHomePage .proLander-plans {
  text-align: center;
}
.proHomePage .proLander-plans-container {
  margin: 0 -15px;
}
.proHomePage .proLander-plans-description {
  font-size: 1.5rem;
  margin: 0 auto 40px;
  width: 50%;
}
.proHomePage .proLander-plans-plan {
  border: 1px solid #e3e6ea;
  margin: 0 15px 20px;
  padding: 30px 60px 110px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
.proHomePage .proLander-plans-divider {
  border-top: none;
  border-bottom: 2px solid #ffd451;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 70px;
}
.proHomePage .proLander-plans-attributes {
  color: #757d88;
  font-size: 1.4rem;
}
.proHomePage .proLander-plans-attributes li {
  padding-bottom: 18px;
}
.proHomePage .proLander-plans-getStarted {
  bottom: 30px;
  left: 0;
  padding: 0 30px;
  position: absolute;
  width: 100%;
}
.proHomePage .proLander-plans-national {
  background-color: #f3f4f6;
  margin-top: 40px;
  padding: 30px 40px;
  text-align: left;
}
.proHomePage .proLander-support {
  background-color: #f3f4f6;
}
.proHomePage .proLander-section-pad {
  padding: 24px 0;
}
.proHomePage .proLander-section-heading {
  text-align: center;
  font-weight: 700;
}
.proHomePage .proLander-section-subHeading {
  text-align: center;
  font-weight: 500;
  font-size: 1.7rem;
  margin-top: 1em;
  margin-bottom: 1em;
}
.inspector-lander-row-odd {
  background-color: #ffffff;
  text-align: center;
}
.inspector-lander-row-even {
  background-color: #f3f4f6;
  padding: 24px 0;
  text-align: center;
}
.inspector-lander-header {
  position: relative;
  background-image: url(https://cdn.porch.com/pro/inspector/inspector-landing-page-header.jpg);
  background-size: cover;
  background-position: center top;
  height: 400px;
}
.inspector-lander-header-textholder {
  position: absolute;
  text-align: left;
  width: 50%;
  top: 50px;
  left: 40px;
}
.inspector-lander-header-title {
  font-size: 5rem;
  line-height: 1.1em;
  font-weight: bold;
  margin: 16px 0;
}
.inspector-lander-header-subtext {
  font-size: 3rem;
  margin: 16px 0;
  line-height: 1.3em;
}
.inspector-lander-value-prop-icon {
  width: 20px;
  height: 20px;
  margin: 0 auto;
}
.inspector-lander-value-prop-strong-text {
  font-weight: bold;
  font-size: 1.3rem;
}
.inspector-lander-value-prop-normal-text {
  font-size: 1.3rem;
}
.inspector-lander-value-prop-container {
  padding: 15 50px;
}
.inspector-lander-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.inspector-lander-section {
  text-align: center;
}
.inspector-lander-section-title {
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: bold;
  font-size: 4rem;
  line-height: 1.1em;
}
.inspector-lander-section-subtext {
  font-size: 2rem;
  line-height: 1.3em;
  font-weight: normal;
  max-width: 60%;
  margin-top: 16px;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 16px;
}
.inspector-lander-learn-more-card {
  background-color: #ffffff;
  margin: 0 250px;
  padding-top: 24px;
  border: 1px solid #f3f4f6;
  border-bottom: 5px solid #ffd451;
  text-align: center;
}
.inspector-lander-learn-more-card-text {
  font-size: 2rem;
  margin-bottom: 16px;
}
.inspector-lander-learn-more-card-phone {
  font-size: 4rem;
  font-weight: bold;
}
.inspector-lander-how-it-works {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 24px;
  margin-bottom: 48px;
}
.inspector-lander-how-it-works-text {
  font-size: 2rem;
}
.inspector-lander-how-it-works-gold {
  font-size: 2.2rem;
  color: gold;
  font-weight: bold;
  margin-top: -15px;
}
.inspector-lander-how-it-works-subtext {
  font-size: 2rem;
  margin: 5px;
}
.inspector-lander-how-it-works-container {
  padding: 0 150px;
}
.inspector-lander-video {
  width: 100%;
}
.inspector-lander-podcast {
  position: relative;
  background-image: url(https://cdn.porch.com/pro/inspector/the-successful-home-inspector-podcast-desktop.jpg);
  background-size: cover;
  background-position: center top;
  height: 400px;
}
.inspector-lander-podcast a {
  color: #ffffff;
}
.inspector-lander-podcast-image {
  width: 100%;
  height: 60%;
}
.inspector-lander-podcast-image-mobile {
  width: 100%;
}
.inspector-lander-podcast-textholder {
  position: absolute;
  top: 16px;
  left: 50px;
  width: 45%;
  text-align: left;
}
.inspector-lander-podcast-title {
  color: white;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 1.1em;
}
.inspector-lander-podcast-text {
  color: white;
  font-size: 1.7rem;
  line-height: 1.3em;
}
.inspector-lander-resources {
  text-align: center;
  padding-bottom: 40px;
}
.inspector-lander-resources-container {
  margin: 0 150px;
}
.inspector-lander-resources-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
.inspector-lander-resources-box {
  text-align: center;
  border: 1px black;
}
.inspector-lander-resources-image {
  height: 250px;
  margin: 0 auto;
}
.inspector-lander-resources-container-left {
  margin-left: 250px;
}
.inspector-lander-resources-container-right {
  margin-right: 250px;
}
.inspector-lander-resources-text {
  margin-top: 8px;
  margin-bottom: 40px;
}
.inspector-lander-resources-text-bold {
  font-weight: bold;
}
.inspector-lander-partner {
  text-align: center;
}
.inspector-lander-partner-container {
  margin: 0 auto;
}
.inspector-lander-partner-container-row1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 150px;
}
.inspector-lander-partner-container-row2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0 280px;
}
.inspector-lander-partner-subtext {
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  max-width: 75%;
  padding: 0 50px;
  font-size: 1.5rem;
}
.inspector-lander-partner-image {
  width: 125px;
  margin: 0 auto;
}
.inspector-lander-partner-image-smaller {
  width: 100px;
  margin: 0 auto;
}
.inspector-lander-partner-image-container {
  margin: 20px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.advisory-board {
  text-align: center;
}
.advisory-board-title {
  font-weight: bold;
  font-size: 2.2rem;
}
.advisory-board-subtitle {
  font-size: 1.5rem;
  max-width: 75%;
  margin: 0 auto;
}
.advisory-board-subtext {
  padding: 0 12px;
  text-align: center;
}
.advisory-board-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 24px;
}
.advisory-board-cell {
  text-align: center;
  font-size: 1.75rem;
  margin: 10px 0px;
}
.advisory-board-cell-name {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 5px;
}
.partnerSection {
  padding: 0 0 32px;
}
.partnerSection-wrapper {
  background-color: #ffffff;
}
.partnerSection h2 {
  margin-bottom: 0;
}
.partnerSection .howItWorks-subheader {
  color: #85898C;
  font-size: 1.4rem;
  font-weight: 500;
  margin: 10px;
}
.partnerSection-partners {
  padding-top: 8px;
}
.partnerSection-partners img {
  height: auto;
  margin: 20px 30px;
  display: inline-block;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.homePage-review-section {
  text-align: center;
  background-color: #f3f4f6;
  padding: 0.6rem 0 3rem;
  font-size: 1.6rem;
}
.homePage-review {
  position: relative;
  margin: 1rem 0;
}
.homePage-review-container {
  padding: 0 10px;
}
.homePage-review-title {
  font-size: 2.2rem;
  font-weight: bold;
}
.homePage-review-content {
  background-color: #ffffff;
  border: 1px solid #d0d3da;
  height: 23rem;
  padding: 0 1.5rem;
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.homePage-review-content-title {
  font-weight: 700;
  margin-top: 1.6rem;
}
.homePage-review-content-name {
  font-weight: 700;
}
.homePage-review-content-note,
.homePage-review-content-location {
  color: #505b66;
  font-size: 1.4rem;
  margin-top: -0.2rem;
  letter-spacing: 0.05rem;
  font-weight: 500;
}
.homePage-review .triangle-down {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #d0d3da;
  position: relative;
  left: 44%;
  margin-bottom: 1rem;
}
.homePage-review .triangle-down:after {
  content: '';
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #ffffff;
  position: absolute;
  top: -13px;
  left: -12px;
}
.app-LeadCreditPolicy {
  background-color: #f3f4f6;
}
.app-ProAccountCreate {
  background-color: #f3f4f6;
}
.proAccount h3.proAccount-header {
  text-transform: uppercase;
  color: #505b66;
  margin: 5px 0 20px;
  font-size: 1.3rem;
  font-weight: 500;
}
.proAccount hr.proAccount-divider {
  margin: 0 -15px 20px;
}
.proAccount-note {
  font-size: 1.3rem;
  line-height: 150%;
  margin: 0 0 15px;
  color: #505b66;
}
.proAccount-section-hidden {
  visibility: hidden;
}
.proAccount-error {
  color: #ffffff;
  background-color: #d32f2f;
  padding: 5px 10px;
  border-radius: 2px;
  margin-bottom: 15px;
}
.proAccount-error a.proPage-link {
  color: #ffffff;
}
.proAccount-other-wrapper {
  position: relative;
}
.proAccount-other-wrapper .reactAutosuggest .react-autosuggest__input {
  padding: 15px;
  height: auto;
  border: 1px solid #d0d3da;
  background-color: #ffffff;
}
.proAccount-other-wrapper .tradesAndServices-autosuggest-clearBtn {
  top: 13px;
}
.proAccount-alert {
  color: #ffffff;
  padding: 8px 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 20px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 15px;
}
.proAccount-alert-info {
  background-color: #6ea1ff;
}
.proAccount-alert-promo {
  background-color: #2b73de;
}
.proAccount-alert-error {
  background-color: #d32f2f;
}
.proAccount-alert-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 185%;
  margin: 0 0 0 10px;
}
.proAccount-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.proAccount-step-container {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-height: 350px;
  z-index: 1;
}
.proAccount-step .ul-text-input-wrapper,
.proAccount-step .ul-dropdown-wrapper {
  margin-bottom: 15px;
}
.proAccount-step .ul-text-input .ul-text-input-icon {
  position: absolute;
  right: 0;
  top: 5px;
}
.proAccount-step .proAccount-companyInfo-select .ul-text-input-wrapper {
  margin-bottom: 0;
}
.proAccount-section-title {
  margin: 10px 0 15px;
  font-size: 2rem;
  font-weight: 700;
}
.proAccount-section-body {
  color: #505b66;
  font-size: 1.5rem;
}
.proAccount-section-body p {
  padding: 0;
  margin: 10px 0;
  line-height: 150%;
}
.proAccount .proAccount-tip {
  border: 1px solid #9ea4ae;
  border-radius: 2px;
  padding: 15px 20px 10px;
}
.proAccount .proAccount-tip-icon.material-icons {
  color: #ffffff;
  background-color: #218890;
  border: 4px solid #99dde3;
  border-radius: 50%;
  font-size: 2.2em;
  padding: 3px;
  margin-right: 10px;
  float: left;
}
.proAccount .proAccount-tip-title {
  color: #505b66;
  margin: 0;
  font-size: 1.5rem;
  line-height: 150%;
  float: left;
  width: 70%;
}
.proAccount-tradesAndServices .editTrades-serviceList {
  height: auto;
  max-height: 400px;
  min-height: 250px;
}
.proAccount-tradesAndServices .editTrades-noTrades {
  font-weight: 700;
  margin: 20px 0;
}
.proAccount-demand-item {
  margin: 0 0 10px;
}
.proAccount-demand-label {
  display: inline-block;
  width: 40%;
}
.proAccount-demand-value {
  display: inline-block;
  width: 59%;
  font-weight: 700;
}
.proAccount-sidebar {
  padding: 15px;
  border: 1px solid #d0d3da;
  margin-bottom: 15px;
}
.proAccount label.proAccount-terms-label,
.proAccount-terms-label {
  font-size: 1.4rem;
  font-weight: 700;
  color: #3d454d;
  margin-right: 2px;
}
.app-ProLead,
.app-ProLeadByCompanyId {
  background-color: #f3f4f6;
}
.proLead-box-line-left {
  border-left: 1px solid #d0d3da;
  min-height: 80px;
}
.proLead-box-pad {
  padding: 20px;
}
.proLead-box-head {
  border-bottom: 1px solid #d0d3da;
  padding: 15px;
}
.proLead-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.proLead-header-title {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.proLead-conversation-container {
  margin: 20px;
  background-color: #f3f4f6;
  border: 1px solid #e3e6ea;
}
.proLead-conversation-container .material-icons {
  color: #2b73de;
  margin-top: 10px;
}
.proLead-conversation-icon {
  margin-right: 10px;
}
.proLead-conversation-line1 {
  margin-top: 12px;
  margin-bottom: 0;
}
.proLead-conversation-line2 {
  margin-top: 3px;
  font-size: 1.2rem;
}
.proLead audio::-webkit-media-controls-panel {
  background-color: white;
}
.app-ProLogin {
  background-color: #f3f4f6;
}
.proLogin-body {
  max-width: 800px;
  margin: 40px auto;
}
.proLogin-wrapper {
  text-align: left;
}
.proLogin-footer {
  padding: 20px 30px;
  font-size: 1.4rem;
  border-top: 1px solid #d0d3da;
  line-height: 185%;
  text-align: center;
}
.proLogin-header {
  padding: 30px 10px;
  border-bottom: 1px solid #d0d3da;
}
.proLogin-header h1 {
  margin: 0;
  font-size: 2.2rem;
  font-weight: 700;
}
.proLogin-loginForm {
  border-right: 1px solid #d0d3da;
  padding: 0 40px;
}
.proLogin-sidebar {
  padding: 0 40px;
}
.proLogin-blurb {
  font-size: 1.4rem;
  line-height: 185%;
  color: #757d88;
}
.proLogin-legal {
  font-size: 1.3rem;
  color: #505b66;
  margin: 15px 0 0;
}
.proLogin .btn-getStarted {
  display: block;
  width: 100%;
  margin: 15px 0;
}
.proLogin .authForm {
  padding: 0;
}
.proLogin .authForm-subHeading,
.proLogin .authForm-legal {
  display: none;
}
.proLogin .authForm-content,
.proLogin .forgotPasswordForm-form {
  padding: 10px 10px 0;
}
.proLogin .forgotPasswordForm-content .authForm-subHeading {
  display: block;
  margin: 0;
  padding: 10px;
}
.proLogin .authForm-forgotPassword {
  padding-top: 10px;
  color: #3d454d;
  text-align: center;
}
.proLogin .forgotPasswordSuccess-heading {
  margin: 5px 20px 20px 20px;
}
.proLogin .forgotPasswordForm-content button {
  margin: 10px auto 25px;
}
.proLogin .forgotPasswordSuccess-content-text {
  color: #505b66;
}
.proLogin .authForm-facebook-button-divider {
  color: #505b66;
  margin: 1em 10px;
}
.proLogin .authForm-facebook-button-text {
  color: #505b66;
  font-size: 1.4rem;
}
.app-ProSignupUser,
.app-ProSignupCompany,
.app-SellerSignupUser {
  background-color: #f3f4f6;
}
.proSignup {
  background-color: #f3f4f6;
}
.proSignup-header {
  color: #3d454d;
  border-bottom: 2px solid #d0d3da;
}
.proSignup-header h2.page-title {
  margin: 0.9em 0;
  font-weight: 700;
}
.proSignup-header .proSignup-steps.page-title {
  float: right;
}
.proSignup-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 40px 20px;
}
.proSignup-body .form-control {
  border-color: #d0d3da;
}
.proSignup-body .form-control:focus {
  border-color: #2b73de;
}
.proSignup-body .form-control:disabled,
.proSignup-body .form-control[readonly] {
  background-color: #ffffff;
}
.proSignup-body .porchErrorContainer.showing-error .form-control {
  border-color: #d32f2f;
}
.proSignup-body .porchErrorContainer-message:not(.alert) {
  display: inline-block;
  margin: -10px 0 10px;
  padding-left: 6px;
}
.proSignup-body .porchErrorContainer-message .alert {
  margin: 5px 0 12px -6px;
}
.proSignup-body .proSignup-error-cta {
  font-weight: 700;
  padding-top: 2px;
}
.proSignup .form-control-autocomplete.is-focused:not(.is-open) > .Select-control {
  border-color: #d0d3da;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.proSignup .form-control-autocomplete input::input-placeholder,
.proSignup .form-control-autocomplete textarea::input-placeholder {
  color: #777777;
}
.proSignup .form-control-autocomplete .Select-input {
  border: 1px solid #d0d3da;
  border-radius: 4px;
  color: #3d454d;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 12px 16px;
}
.proSignup .form-control-autocomplete .Select-control:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.proSignup .form-control-autocomplete .Select-menu-outer .Select-menu .Select-option {
  font-size: 1.4rem;
  padding-top: 0 !important;
}
.proSignup-footer {
  border-top: 2px solid #d0d3da;
  margin-top: 30px;
  padding: 20px 0;
}
.proSignup-footer-createAccountBtn {
  width: 200px;
}
.proSignup-footer .porchToolTipTrigger-body {
  bottom: 25px;
  position: absolute;
  right: -10px;
}
.proSignup-footer .porchToolTipTrigger-wrapper {
  width: 100%;
}
.proSignup-tooltip-message {
  margin: -20px 0 0;
}
.proSignup-tooltip-arrow {
  background: #ffffff;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-width: 0 1px 1px 0;
  bottom: -10px;
  -webkit-box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.2);
  box-shadow: 5px 5px 10px -5px rgba(0, 0, 0, 0.2);
  height: 20px;
  position: absolute;
  right: 70px;
  -webkit-transform-origin: center center;
  transform-origin: center center;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  width: 20px;
}
.proSignup-iconCheckbox {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.proSignup-iconCheckbox > label {
  display: block;
}
.proSignup-iconCheckbox-text {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 24px;
  padding-left: 10px;
}
.proSignup-iconCheckbox-checked,
.proSignup-iconCheckbox-unchecked {
  left: 0;
  position: absolute;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
  top: 0;
}
.proSignup-iconCheckbox-control {
  left: -99999px;
  position: absolute;
}
.proSignup-iconCheckbox-checked {
  display: none;
}
.proSignup-iconCheckbox-control:focus ~ .proSignup-iconCheckbox-unchecked,
.proSignup-iconCheckbox-control:focus ~ .proSignup-iconCheckbox-checked {
  color: #2b73de;
}
.proSignup-iconCheckbox-control:checked ~ .proSignup-iconCheckbox-unchecked {
  display: none;
}
.proSignup-iconCheckbox-control:checked ~ .proSignup-iconCheckbox-checked {
  display: inline-block;
}
.proSignup-note {
  color: #505b66;
  font-size: 1.4rem;
  line-height: 185%;
  padding: 40px 0 0 10px;
}
.proSignup-iconableInput {
  position: relative;
}
.proSignup-iconableInput > input {
  padding-right: 40px;
}
.proSignup-iconableInput-icon {
  font-size: 2.2rem;
  margin-top: -1.2rem;
  position: absolute;
  right: 8px;
  top: 50%;
}
.proSignup .proFooter {
  border-top: 2px solid #d0d3da;
  padding: 20px 10px;
  font-size: 1.4rem;
}
.sellerSignup-accountExists {
  padding: 0 10px 20px;
  text-align: center;
}
.sellerSignup-userDetails {
  opacity: 0.4;
}
.sellerSignup-userDetails.is-active {
  opacity: 1;
}
.app-ProDashboard,
.app-ProDashboardByCompanyId {
  background-color: #f3f4f6;
}
.proDashboard {
  padding-top: 20px;
}
.proDashboard-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  padding: 15px;
  margin-bottom: 20px;
}
.proDashboard-box.no-padding {
  padding: 0;
}
.proDashboard-box-stat-label {
  color: #707477;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0;
}
.proDashboard-box-label {
  color: #505b66;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}
.proDashboard-box-divider {
  border-top: none;
  border-bottom: 1px solid #e3e6ea;
  margin: 15px -15px;
}
.proDashboard-head-box {
  min-height: 125px;
}
.proDashboard-company-headshot {
  height: 80px;
  float: left;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  width: 80px;
}
.proDashboard-company-headshot img {
  border: 1px solid #d0d3da;
  border-radius: 50%;
  height: 100%;
  width: 100%;
}
.proDashboard-company-headshot-g-badge {
  bottom: -2px;
  position: absolute;
  right: -2px;
}
.proDashboard-company-heading {
  margin-top: 8px;
  padding-left: 95px;
}
.proDashboard-company-name {
  margin: 0 0 2px;
  font-weight: 700;
}
.proDashboard-helpfulLinks li.inlineList-item {
  padding: 5px 20px 0 0;
}
.proDashboard-projectsHeading {
  border-bottom: 1px solid #e3e6ea;
  -webkit-box-shadow: 0px 1px 1px -1px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 1px -1px rgba(0, 0, 0, 0.2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 -15px 0;
}
.proDashboard-projectsHeading-tabs > a {
  border-bottom: 3px solid transparent;
  color: #505b66;
  cursor: pointer;
  display: inline-block;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-size: 1.5rem;
  font-weight: 700;
  height: auto;
  padding: 10px 20px;
  text-align: center;
  text-transform: uppercase;
}
.proDashboard-projectsHeading-tabs > a.isSelected {
  border-color: #ffd451;
  color: #505b66;
}
.proDashboard-filter {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  margin: 5px 0;
}
.proDashboard-filter > i {
  color: #505b66;
  position: absolute;
  top: 6px;
  -webkit-transition: color 0.25s;
  transition: color 0.25s;
  z-index: 10;
}
.proDashboard-filter-icon {
  left: 10px;
}
.proDashboard-filter-clear {
  cursor: pointer;
  right: 10px;
}
.proDashboard-filter-input {
  border-color: #e3e6ea;
  border-style: solid;
  border-width: 0 0 0 1px;
  height: 100%;
  width: 100%;
  padding: 5px 40px;
  font-size: 1.4rem;
  position: absolute;
}
.proDashboard-filter-input:focus {
  border-color: #e3e6ea;
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: 0;
  outline-width: 0;
}
.proDashboard-filter-input:focus + i {
  color: #505b66;
}
.proDashboard-projects-list {
  list-style-type: none;
  margin: 0 -15px -15px;
  padding: 0;
}
.proDashboard-stats {
  padding: 4px 0 0 5px;
}
.proDashboard-stats-number {
  color: #3d454d;
  font-size: 1.7rem;
  font-weight: 700;
  margin: 6px 0 6px 2px;
}
.proDashboard-stats-text {
  color: #3d454d;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 6px;
}
.proDashboard-stats-note {
  color: #505b66;
  font-size: 1.2rem;
  font-weight: 500;
}
.proDashboard-stats .inlineList .proDashboard-box-label {
  font-weight: 700;
}
.proDashboard-stats-border {
  border-left: 1px solid #e3e6ea;
}
.proDashboard-stats .material-icons {
  color: #2b73de;
  font-size: 2.5rem;
  padding-right: 5px;
  vertical-align: text-bottom;
}
.proDashboard-stats-chart {
  border-right: 1px solid #e3e6ea;
}
.proDashboard-viewMoreProjects {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 15px 0;
  text-align: center;
}
.proDashboard-viewMoreProjects:hover {
  background-color: #f3f4f6;
}
.proDashboard-toTop {
  display: block;
  margin: 40px auto;
}
.proDashboard-perks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.proDashboard-perks-badge {
  -ms-flex-item-align: center;
  align-self: center;
  padding: 10px 0;
  text-align: center;
  width: 64px;
}
.proDashboard-perks-badgeIcon {
  color: #ffd451;
  font-size: 5.4rem;
}
.proDashboard-perks-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-left: 5px;
  border-left: 1px solid #f3f4f6;
  padding: 5px 0 5px 15px;
}
.proDashboard-perks-body > a {
  text-transform: uppercase;
  font-weight: 600;
}
.proDashboard-perks-desc {
  color: #505b66;
  margin: 6px 0;
}
.proDashboard-perks-linkDivider {
  color: #f3f4f6;
  padding: 0 4px;
}
.proDashboard-perks-shareModal {
  background-color: #f3f4f6;
  padding: 20px;
}
.proDashboard-firstTimeViewModalHeader {
  text-align: center;
  font-weight: 700;
}
.proDashboard-firstTimeViewModal {
  border: #9ea4ae solid;
  border-width: 1px 0 1px 0;
  padding: 10px 60px 60px 60px;
  text-align: center;
}
.proDashboard-firstTimeViewModal-body {
  margin: 10px 60px;
}
.proDashboard-firstTimeViewModal-body h4 {
  font-weight: normal;
  line-height: 1.5em;
}
.proDashboard-firstTimeViewModal-body img {
  width: 48px;
  height: 48px;
  margin: 0 auto;
}
.proDashboard-onboardingModal {
  padding: 0 20px 20px;
}
.proDashboard-onboardingModal-header h2 {
  font-size: 3rem;
  padding-left: 20px;
}
.proDashboard-onboardingModal-headerIcon {
  color: #4caf50;
  font-weight: 900;
  font-size: 3.5rem;
  position: relative;
  top: 6px;
}
.proDashboard-onboardingModal-description {
  font-size: 1.4rem;
  line-height: 200%;
}
.proDashboard-shopping-widget {
  cursor: pointer;
}
.proDashboard-shopping-widget img {
  width: 100%;
}
.proDashboard-shopping-widget-info {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 60px;
}
.proDashboard-shopping-widget-stats {
  border-right: 1px solid #f3f4f6;
  padding: 10px;
  text-align: center;
  width: 35%;
}
.proDashboard-shopping-widget-number {
  color: #3d454d;
  font-size: 1.7rem;
  font-weight: 700;
}
.proDashboard-shopping-widget-cta {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: center;
}
.proDashboard-shopping-widget-ctaText {
  color: #2b73de;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-align: center;
  text-transform: uppercase;
}
.proDashboard-cta {
  background-color: #2b73de;
  color: #ffffff;
  cursor: pointer;
  display: block;
  padding: 8px;
  position: relative;
}
.proDashboard-cta:link,
.proDashboard-cta:visited {
  color: #ffffff;
}
.proDashboard-cta-icon {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: left;
  height: 80px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
}
.proDashboard-cta-icon.bop {
  height: 119px;
  width: 95px;
}
.proDashboard-cta-icon i.icon {
  margin-top: 0;
}
.proDashboard-cta-message {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  min-height: 80px;
  margin-left: 80px;
  margin-right: 30px;
  padding: 5px 0 5px 10px;
}
.proDashboard-cta-message p {
  margin-bottom: 0;
}
.proDashboard-cta-message.bop {
  margin-left: 100px;
}
.proDashboard-cta-arrow {
  margin-top: -12px;
  position: absolute;
  right: 4px;
  top: 50%;
}
.proMyPlan {
  background-color: #f3f4f6;
}
.proMyPlan-dollars {
  font-size: 2.2rem;
  font-weight: 700;
}
.proMyPlan-header {
  color: #3d454d;
  border-bottom: 1px solid #d0d3da;
  position: relative;
  padding: 15px 0;
  margin-bottom: 25px;
}
.proMyPlan-header h1 {
  margin: 5px 0 0;
  font-weight: 700;
  font-size: 2rem;
}
.proMyPlan-header .container {
  position: relative;
}
.proMyPlan-header .breadcrumbs-crumb-span {
  color: #505b66;
  font-size: 1.3rem;
}
.proMyPlan-box {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  padding: 15px 20px;
  margin-bottom: 20px;
}
.proMyPlan-box hr {
  border: 0;
  border-bottom: 1px solid #d0d3da;
  margin: 0 -20px 15px;
  padding: 15px 0 0;
}
.proMyPlan-box ul li {
  padding-bottom: 5px;
}
.proMyPlan-box-head {
  text-transform: uppercase;
  color: #757d88;
}
.proMyPlan-small-list {
  max-height: 600px;
  overflow-y: auto;
}
.proMyPlan-small-list .inlineList-item {
  width: 30%;
}
.proMyPlan ul.proMyPlan-features {
  padding: 0 0 0 15px;
  margin: 0;
}
.proMyPlan ul.proMyPlan-features i.material-icons {
  vertical-align: bottom;
  margin-left: 10px;
}
.proMyPlan-alert {
  font-size: 1.4rem;
  padding-bottom: 20px;
}
.myLeads {
  font-size: 1.4rem;
}
.myLeads-tabs {
  border-bottom: 1px solid #e3e6ea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.myLeads-tabs::-webkit-scrollbar {
  display: none;
}
.myLeads-tabs a {
  border-bottom: 4px solid transparent;
  color: #505b66;
  cursor: pointer;
  font-weight: 700;
  padding: 15px;
  text-align: center;
  -ms-flex-item-align: end;
  align-self: flex-end;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.myLeads-tabs a.isSelected {
  border-color: #2b73de;
  color: #505b66;
}
.myLeads-tabs a:hover {
  background-color: #e3e6ea;
  color: #505b66;
}
.myLeads .purchasedLeads,
.myLeads .creditRequestLeads,
.myLeads .availableLeads {
  margin: 0 0 10px 0;
  padding: 0;
}
.myLeads .purchasedLeads-group-title,
.myLeads .creditRequestLeads-group-title,
.myLeads .availableLeads-group-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  color: #505b66;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 10px;
  text-transform: uppercase;
}
.myLeads .purchasedLeads-group-title:after,
.myLeads .creditRequestLeads-group-title:after,
.myLeads .availableLeads-group-title:after {
  content: '';
  border-top: 1px solid #e3e6ea;
  margin: 0 20px 0 20px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 20px;
  flex: 1 0 20px;
}
.myLeads .purchasedLeads-row,
.myLeads .creditRequestLeads-row,
.myLeads .availableLeads-row {
  background: #ffffff;
  border-bottom: 1px solid #e3e6ea;
  -webkit-transition: background-color 0.1s;
  transition: background-color 0.1s;
  padding: 10px;
}
.myLeads .purchasedLeads-row-alt,
.myLeads .creditRequestLeads-row-alt,
.myLeads .availableLeads-row-alt {
  background: #f9fafb;
}
.myLeads .purchasedLeads-wrapper,
.myLeads .creditRequestLeads-wrapper,
.myLeads .availableLeads-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.myLeads .purchasedLeads-status,
.myLeads .creditRequestLeads-status,
.myLeads .availableLeads-status {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 5px;
}
.myLeads .purchasedLeads-status i,
.myLeads .creditRequestLeads-status i,
.myLeads .availableLeads-status i {
  font-size: 2.2rem;
  margin-left: 5px;
}
.myLeads .purchasedLeads-status i.green,
.myLeads .creditRequestLeads-status i.green,
.myLeads .availableLeads-status i.green {
  color: #4caf50;
}
.myLeads .purchasedLeads-status i.red,
.myLeads .creditRequestLeads-status i.red,
.myLeads .availableLeads-status i.red {
  color: #d32f2f;
}
.myLeads .purchasedLeads-actions,
.myLeads .creditRequestLeads-actions,
.myLeads .availableLeads-actions {
  border-left: 1px solid #e3e6ea;
  margin-left: 10px;
}
.myLeads .purchasedLeads-actions .pro-project-actions-button,
.myLeads .creditRequestLeads-actions .pro-project-actions-button,
.myLeads .availableLeads-actions .pro-project-actions-button {
  padding: 5px 0 5px 5px;
}
.myLeads .purchasedLeads-actions .pro-project-actions-button span,
.myLeads .creditRequestLeads-actions .pro-project-actions-button span,
.myLeads .availableLeads-actions .pro-project-actions-button span {
  padding-left: 10px;
}
.myLeads .purchasedLeads-empty,
.myLeads .creditRequestLeads-empty,
.myLeads .availableLeads-empty {
  background-color: #e3e6ea;
  padding: 20px;
}
.myLeads .purchasedLeads-empty ul,
.myLeads .creditRequestLeads-empty ul,
.myLeads .availableLeads-empty ul {
  padding: 0;
}
.myLeads .purchasedLeads-empty-link,
.myLeads .creditRequestLeads-empty-link,
.myLeads .availableLeads-empty-link {
  list-style: none;
}
.myLeads .purchasedLeads .more,
.myLeads .creditRequestLeads .more,
.myLeads .availableLeads .more {
  display: none;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 25px 0 10px 0;
  text-align: center;
  border: none;
  cursor: pointer;
}
.myLeads .purchasedLeads .project-summary-pager,
.myLeads .creditRequestLeads .project-summary-pager,
.myLeads .availableLeads .project-summary-pager {
  padding: 15px;
  text-align: right;
  font-size: 1.3rem;
  color: #757d88;
  border: none;
}
.myLeads .purchasedLeads .project-summary-pager a,
.myLeads .creditRequestLeads .project-summary-pager a,
.myLeads .availableLeads .project-summary-pager a {
  color: #757d88;
}
.myLeads .purchasedLeads .project-summary-pager-dash,
.myLeads .creditRequestLeads .project-summary-pager-dash,
.myLeads .availableLeads .project-summary-pager-dash {
  padding: 0 5px;
}
.myLeads .purchasedLeads .project-summary-pager-col,
.myLeads .creditRequestLeads .project-summary-pager-col,
.myLeads .availableLeads .project-summary-pager-col {
  display: inline-block;
  padding: 0 10px;
}
.myLeads .purchasedLeads .project-summary-pager .material-icons,
.myLeads .creditRequestLeads .project-summary-pager .material-icons,
.myLeads .availableLeads .project-summary-pager .material-icons {
  vertical-align: middle;
}
.myLeads .availableLeads-actions {
  border-left: 1px solid #e3e6ea;
  padding: 10px;
  font-weight: 700;
}
.myLeads .availableLeads-actions-wrapper {
  display: inline-block;
  vertical-align: top;
  padding: 5px;
}
.myLeads .availableLeads-price {
  display: inline-block;
  vertical-align: top;
  padding: 5px;
}
.myLeads .availableLeads-price .leadPrice {
  display: inline-block;
}
.myLeads .availableLeads-price .leadPrice .leadPrice-price {
  margin-bottom: 0;
}
.myLeads .availableLeads-price .material-icons {
  display: inline-block;
  vertical-align: top;
  padding: 0 5px;
}
.myLeads .projectHeader {
  font-size: 1.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.myLeads .projectHeader:hover .projectHeader-icon,
.myLeads .projectHeader:hover .projectHeader-info,
.myLeads .projectHeader:hover .projectHeader-info-service-type,
.myLeads .projectHeader:hover .projectHeader-info-location {
  color: #2b73de;
}
.myLeads .projectHeader-icon {
  display: inline-block;
  padding-left: 10px;
  color: #2b73de;
  margin-top: 5px;
}
.myLeads .projectHeader-info {
  margin: 5px 10px 0;
  display: inline-block;
  vertical-align: top;
  color: #3d454d;
}
.myLeads .projectHeader-info-title {
  font-weight: 700;
  margin: 2px 0 2px 0;
}
.myLeads .projectHeader-info-service-type,
.myLeads .projectHeader-info-location {
  color: #757d88;
  font-size: 12px;
}
.pro-settings-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pro-settings-nav ul li {
  padding: 0 0 15px 0;
  font-size: 1.4rem;
}
.pro-settings-nav ul li a {
  color: #505b66;
  font-weight: 700;
}
.pro-settings-nav ul li a:hover {
  color: #505b66;
}
.pro-settings-nav ul li a.pro-settings-nav-selected {
  color: #505b66;
}
.app-CampaignSettings,
.app-CampaignSettingsByCompanyId,
.app-UserInformation,
.app-UserInformationForCompany,
.app-TransactionHistory,
.app-TransactionHistoryForCompany,
.app-Notifications,
.app-NotificationsByCompanyId {
  background-color: #f3f4f6;
}
.proSettings-header-body {
  color: inherit;
}
.proSettings-header-link:link {
  color: inherit;
}
.campaignSettings {
  font-size: 1.4rem;
}
.campaignSettings-header {
  color: #3d454d;
  border-bottom: 1px solid #e3e6ea;
  position: relative;
  padding: 15px 0;
  margin-bottom: 25px;
}
.campaignSettings-header h1 {
  color: inherit;
  margin: 5px 0 0;
  font-weight: 700;
  font-size: 2rem;
}
.campaignSettings-header .container {
  position: relative;
}
.campaignSettings-body {
  padding-bottom: 30px;
}
.campaignSettings-summary-label {
  color: #505b66;
  display: inline-block;
  font-size: 1.2rem;
  margin-top: 5px;
  padding-right: 10px;
  text-transform: uppercase;
}
.campaignSettings-summary-value {
  font-weight: 700;
  font-size: 1.7rem;
}
.campaignSettings-summary-actionLinks {
  border: solid #e3e6ea;
  border-width: 1px 0 0 0;
  margin-top: 15px;
  padding-top: 15px;
}
.campaignSettings-actionLink {
  display: block;
  margin: 6px 0;
}
.campaignSettings-blue-tag {
  background-color: #6ea1ff;
  border-radius: 4px;
  color: #ffffff;
  font-size: 1.2rem;
  padding: 5px 8px;
  text-transform: uppercase;
  display: inline;
  margin-left: 10px;
}
.campaignSettings .retry-delinquent-modal {
  margin-top: 20px;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 1.4rem;
}
input[type="checkbox"].failOnDuplicate-checkbox {
  margin-right: 8px;
}
.app-ProSupport {
  background-color: #f3f4f6;
}
.proSupport-container {
  max-width: 740px;
}
.proProjectSearch-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: calc(100vh - 56px);
}
.proProjectSearch-col-list {
  width: 400px;
  position: relative;
  border-right: 1px solid #d0d3da;
  -webkit-box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  box-shadow: 0 0 3px 0 rgba(87, 87, 87, 0.25);
  z-index: 2;
}
.proProjectSearch-col-list .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100vh;
}
.proProjectSearch-col-list .main {
  height: 100%;
  overflow: auto;
}
.proProjectSearch-col-map {
  -webkit-box-flex: 5;
  -ms-flex: 5 auto;
  flex: 5 auto;
  z-index: 1;
}
.proProjectSearch-iconButton {
  background-color: #ffffff;
  padding: 10px;
}
.proProjectSearch-iconButton .material-icons {
  color: #d0d3da;
  font-size: 22px;
  margin-left: 5px;
}
.proProjectSearch-head {
  background-color: #2b73de;
  padding: 10px 10px 0px 10px;
}
.proProjectSearch-head p {
  font-size: 1.3rem;
  color: #505b66;
  margin: 10px 0 0;
}
.proProjectSearch-head-close-btn {
  border: 0;
  padding: 0;
  background-color: transparent;
  position: absolute;
  right: 18px;
  top: 18px;
}
.proProjectSearch-head-close-btn:disabled {
  color: #d0d3da;
}
.proProjectSearch-btns {
  border-top: 1px solid #d0d3da;
  border-bottom: 1px solid #d0d3da;
  color: #ffffff;
  margin: 0;
}
.proProjectSearch-btns .col-xs-6 {
  margin: 8px 0;
}
.proProjectSearch-link-btn {
  text-transform: uppercase;
  width: 100%;
  display: inline-block;
  font-weight: 700;
  font-size: 1.3rem;
  text-align: left;
}
.proProjectSearch-link-btn:hover {
  color: #2b73de;
}
.proProjectSearch-divider {
  border-right: 1px solid #e3e6ea;
}
.proProjectSearch-box {
  background-color: #2b73de;
  padding: 8px;
}
.proProjectSearch-box-input-container:last-child {
  margin-bottom: 0;
}
.proProjectSearch-box-input-container {
  background-color: #ffffff;
  border-radius: 3px;
  padding: 4px 10px;
  margin-bottom: 8px;
  position: relative;
}
.proProjectSearch-box-icon {
  position: absolute;
  top: 14px;
}
.proProjectSearch-box-icon .material-icons {
  font-size: 22px;
  color: #d0d3da;
}
.proProjectSearch-box-input {
  padding: 0 40px 0 25px;
}
.proProjectSearch-box-input input {
  width: 100%;
  border: 0;
  padding: 10px;
  font-size: 1.4rem;
  outline: none;
}
.proProjectSearch-box-clear {
  border-left: 1px solid #d0d3da;
  padding: 5px;
  position: absolute;
  right: 0;
  top: 5px;
}
.proProjectSearch-box-clear-button {
  height: 30px;
  border: 0;
  background-color: white;
  color: #d0d3da;
  border-left: 1px solid #d0d3da;
  text-decoration: none;
}
.proProjectSearch-box-clear-button:focus {
  border-color: #d0d3da;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.proProjectSearch-header {
  padding: 16px;
  border-bottom: 1px solid #d0d3da;
  border-right: 1px solid #d0d3da;
}
.proProjectSearch-filter {
  font-size: 1.4rem;
}
.proProjectSearch-label {
  font-size: 1.2rem;
  font-weight: 500;
  color: #505b66;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 4px 0 0 0;
  text-align: right;
}
.proProjectSearch-label-teal {
  color: #2b73de;
}
.app-ProProjectSearch .appFooter,
.app-ProProjectSearchByCompanyId .appFooter {
  display: none;
}
.serviceAreaToolPage-pageActions {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #f3f4f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 25px;
}
.serviceAreaToolPage-pageActions-saveResult {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 0 15px;
}
.serviceAreaToolPage-pageActions-resultMessage {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.3rem;
  font-weight: 700;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.serviceAreaToolPage .serviceArea .serviceArea-container {
  height: calc(100vh - 178px);
}
.serviceAreaToolPage .porchGoogleMap-container {
  height: 100%;
}
.app-ServiceAreas {
  height: auto !important;
}
.app-ServiceAreas .dropdownMenu-list .u-textLike {
  padding: 0 10px !important;
}
.app-ServiceAreasForCompany {
  height: auto !important;
}
.serviceAreaModal .modalDialog {
  height: 445px;
  width: 300px;
}
.serviceAreaModal .modalDialog-header {
  height: auto;
  height: initial;
  padding: 0;
}
.serviceAreaModal .modalDialog-body {
  padding: 0;
}
.serviceAreaModal-header {
  padding-top: 80px;
  text-align: center;
}
.serviceAreaModal-headerImage {
  width: 100%;
  height: 235px;
  padding: 10px;
}
.serviceAreaModal-closeBtn--hidden {
  display: none;
}
.serviceAreaModal-body {
  padding: 20px 20px 0;
}
.serviceAreaModal-body-title {
  font-weight: 400;
  margin-top: 0;
}
.serviceAreaModal-body-maxWidth {
  max-width: 260px;
  margin: 0 auto;
}
.serviceAreaModal-mobileStepIndicator {
  position: absolute;
  height: 50px;
  width: 100%;
  bottom: 50px;
}
.serviceAreaModal-mobileStepIndicator-dot {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 6px;
  width: 6px;
  margin-top: -3px;
  border-radius: 50%;
  background: #d0d3da;
}
.serviceAreaModal-mobileStepIndicator-dot--active {
  background: #9ea4ae;
}
.serviceAreaModal-mobileStepIndicator-dot--one {
  margin-left: -21px;
}
.serviceAreaModal-mobileStepIndicator-dot--two {
  margin-left: -9px;
}
.serviceAreaModal-mobileStepIndicator-dot--three {
  margin-left: 3px;
}
.serviceAreaModal-mobileStepIndicator-dot--four {
  margin-left: 15px;
}
.serviceAreaModal-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #d0d3da;
  font-family: 'Sharp Sans', 'Open Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 14px;
  line-height: 50px;
  text-align: center;
  text-transform: uppercase;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.serviceAreaModal-footer-label {
  color: #2b73de;
  cursor: pointer;
  margin: 0;
}
.serviceAreaModal-footer-label:hover {
  color: #2665da;
}
.serviceAreaModal--welcomeDesktop {
  padding-top: 15%;
}
.serviceAreaModal--welcomeDesktop-btn {
  margin: 0 auto;
  height: 60px;
  width: 220px;
  text-transform: capitalize;
  font-size: 1.4rem;
  font-weight: 500;
}
.serviceAreaModal--welcomeDesktop .serviceAreaModal-header {
  padding: 16px 0 0;
}
.serviceAreaModal--welcomeDesktop .serviceAreaModal-body-maxWidth {
  max-width: 316px;
  font-size: 1.3rem;
  padding-bottom: 24px;
}
.serviceAreaModal--welcomeDesktop .serviceAreaModal-body-title {
  font-size: 2.2rem;
  font-weight: 500;
}
.serviceAreaModal--welcomeDesktop .modalDialog {
  height: auto;
  width: 470px;
  padding: 20px;
}
.serviceAreaModal--welcomeDesktop .modalDialog-body {
  padding: 0;
}
.serviceAreaModal--welcomeDesktop .modalDialog-header {
  height: auto;
  padding: 0;
}
.serviceAreaModal--getHelpModal {
  padding-top: 20%;
}
.serviceAreaModal--getHelpModal-header {
  font-size: 1.7rem;
  margin: -20px 0 10px;
}
.serviceAreaModal--getHelpModal-logo {
  margin: 0 0 20px;
}
.serviceAreaModal--getHelpModal .modalDialog {
  width: 300px;
  height: auto;
}
.serviceAreaModal--getHelpModal .modalDialog-body {
  padding: 0;
}
.serviceAreaModal--getHelpModal-body {
  font-size: 1.3rem;
  padding: 0 20px;
  margin-bottom: 10px;
}
.serviceAreaModal--getHelpModal-btn {
  width: 50%;
  display: inline-block;
  border-top: 1px solid #d0d3da;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  font-weight: 700;
  color: #2b73de;
}
.serviceAreaModal--getHelpModal-btn--rightBorder {
  border-right: 1px solid #d0d3da;
}
.serviceAreaModal--getHelpModal-tutorial {
  font-size: 1.3rem;
  color: #2b73de;
  margin: 10px 0 20px;
  cursor: pointer;
}
.serviceAreaModal--error {
  padding-top: 20%;
}
.serviceAreaModal--error .modalDialog {
  width: 300px;
  height: auto;
}
.serviceAreaModal--error .modalDialog-body {
  padding: 0;
}
.serviceAreaModal--error-header {
  font-size: 1.7rem;
  line-height: 50px;
  text-align: center;
}
.serviceAreaModal--error-body {
  padding: 20px;
  text-align: center;
}
.serviceAreaModal--error-body-msg {
  font-size: 1.3rem;
  font-weight: bold;
}
.serviceAreaModal--purchasedWarning {
  padding-top: 20%;
}
.serviceAreaModal--purchasedWarning-close {
  display: none;
}
.serviceAreaModal--purchasedWarning-header {
  font-size: 1.7rem;
  margin: -20px 0 10px;
}
.serviceAreaModal--purchasedWarning-body {
  font-size: 1.3rem;
  padding: 0 20px;
  margin-bottom: 10px;
}
.serviceAreaModal--purchasedWarning-contactSupport {
  font-size: 1.5rem;
  margin-bottom: 10px;
  line-height: 150%;
}
.serviceAreaModal--purchasedWarning-btn {
  width: 100%;
  border-top: 1px solid #d0d3da;
  height: 50px;
  line-height: 50px;
  cursor: pointer;
  font-weight: 700;
  color: #2b73de;
}
.serviceAreaModal--purchasedWarning .modalDialog {
  width: 300px;
  height: auto;
}
.serviceAreaModal--purchasedWarning .modalDialog-body {
  padding: 0;
}
.serviceArea .appHeader {
  display: none;
}
.serviceArea-map {
  position: absolute;
  top: 50px;
  bottom: 50px;
  left: 0;
  right: 0;
}
.serviceAreaContextBox {
  position: absolute;
  left: 7px;
  bottom: 30px;
  min-height: 100px;
  width: 300px;
  background: #ffffff;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  padding: 7px;
}
.serviceAreaContextBox-header {
  font-size: 1.5rem;
}
.serviceAreaModeSelect {
  position: absolute;
  top: 65px;
  left: 10px;
}
.serviceAreaModeSelect-btn {
  margin-right: 7px;
  -webkit-box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.serviceAreaModeSelect-btn[disabled] {
  border-bottom: 2px solid black;
}
.serviceAreaMapSpinner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
}
.serviceAreaMapSpinner-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100px;
  width: 100px;
  margin-top: -50px;
  margin-left: -50px;
  text-align: center;
}
.serviceAreasWelcomeModeTour {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.serviceAreaGetHelpButton {
  position: absolute;
  left: 10px;
  bottom: 30px;
  height: 40px;
  width: 40px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  padding-top: 8px;
}
.proSettingsLander-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.proSettingsLander-box {
  width: 360px;
  height: 300px;
  margin: 0 20px 20px 0;
}
.proSettingsLander-box p {
  margin: 0 0 15px;
  font-size: 1.3rem;
}
.proSettingsLander-box .material-icons-bubble {
  margin-right: 8px;
}
.proSettingsLander .helpfulLinks {
  font-weight: bold;
}
.app-BackgroundCheckStatus,
.app-BackgroundCheckStatusByCompanyId {
  background-color: #f3f4f6;
}
.backgroundCheck-sidebar-head {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: right;
}
.backgroundCheck-footer {
  margin-top: 20px;
  padding: 20px 0;
  border-top: 1px solid #9ea4ae;
}
.backgroundCheck-back-btn {
  padding: 15px 20px;
  display: inline-block;
}
.backgroundCheck .proPage-label {
  font-size: 1.2rem;
  padding-bottom: 5px;
}
.backgroundCheck-agreement-content {
  background-color: #ffffff;
  padding: 0 20px 20px;
  margin-bottom: 15px;
  font-size: 1.3rem;
  line-height: 1.5em;
  height: 300px;
  overflow-y: scroll;
  border: 1px solid #d0d3da;
  max-width: 700px;
}
.backgroundCheck-agreement-content h3 {
  margin: 20px 0 0;
}
.backgroundCheck-agreement-content p {
  color: #757d88;
  margin: 10px 0 20px;
}
@media (min-width: 768px) {
  .container {
    width: 740px;
  }
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    float: left;
  }
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .input-group {
    display: inline-table;
    vertical-align: middle;
  }
  .form-inline .input-group .input-group-addon,
  .form-inline .input-group .input-group-btn,
  .form-inline .input-group .form-control {
    width: auto;
  }
  .form-inline .input-group > .form-control {
    width: 100%;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio label,
  .form-inline .checkbox label {
    padding-left: 0;
  }
  .form-inline .radio input[type="radio"],
  .form-inline .checkbox input[type="checkbox"] {
    position: relative;
    margin-left: 0;
  }
  .form-inline .has-feedback .form-control-feedback {
    top: 0;
  }
  .form-horizontal .control-label {
    text-align: right;
    margin-bottom: 0;
    padding-top: 7px;
  }
  .form-horizontal .form-group-lg .control-label {
    padding-top: 14.3px;
  }
  .form-horizontal .form-group-sm .control-label {
    padding-top: 6px;
  }
  .proSignupProgressContainer .proSignupProgress-col-icon {
    width: 20%;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    float: left;
  }
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 1160px;
  }
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    float: left;
  }
  .col-lg-12 {
    width: 100%;
  }
  .col-lg-11 {
    width: 91.66666667%;
  }
  .col-lg-10 {
    width: 83.33333333%;
  }
  .col-lg-9 {
    width: 75%;
  }
  .col-lg-8 {
    width: 66.66666667%;
  }
  .col-lg-7 {
    width: 58.33333333%;
  }
  .col-lg-6 {
    width: 50%;
  }
  .col-lg-5 {
    width: 41.66666667%;
  }
  .col-lg-4 {
    width: 33.33333333%;
  }
  .col-lg-3 {
    width: 25%;
  }
  .col-lg-2 {
    width: 16.66666667%;
  }
  .col-lg-1 {
    width: 8.33333333%;
  }
  .col-lg-pull-12 {
    right: 100%;
  }
  .col-lg-pull-11 {
    right: 91.66666667%;
  }
  .col-lg-pull-10 {
    right: 83.33333333%;
  }
  .col-lg-pull-9 {
    right: 75%;
  }
  .col-lg-pull-8 {
    right: 66.66666667%;
  }
  .col-lg-pull-7 {
    right: 58.33333333%;
  }
  .col-lg-pull-6 {
    right: 50%;
  }
  .col-lg-pull-5 {
    right: 41.66666667%;
  }
  .col-lg-pull-4 {
    right: 33.33333333%;
  }
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-2 {
    right: 16.66666667%;
  }
  .col-lg-pull-1 {
    right: 8.33333333%;
  }
  .col-lg-pull-0 {
    right: auto;
  }
  .col-lg-push-12 {
    left: 100%;
  }
  .col-lg-push-11 {
    left: 91.66666667%;
  }
  .col-lg-push-10 {
    left: 83.33333333%;
  }
  .col-lg-push-9 {
    left: 75%;
  }
  .col-lg-push-8 {
    left: 66.66666667%;
  }
  .col-lg-push-7 {
    left: 58.33333333%;
  }
  .col-lg-push-6 {
    left: 50%;
  }
  .col-lg-push-5 {
    left: 41.66666667%;
  }
  .col-lg-push-4 {
    left: 33.33333333%;
  }
  .col-lg-push-3 {
    left: 25%;
  }
  .col-lg-push-2 {
    left: 16.66666667%;
  }
  .col-lg-push-1 {
    left: 8.33333333%;
  }
  .col-lg-push-0 {
    left: auto;
  }
  .col-lg-offset-12 {
    margin-left: 100%;
  }
  .col-lg-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-lg-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-lg-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-lg-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-lg-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-lg-offset-0 {
    margin-left: 0%;
  }
  .visible-lg {
    display: block !important;
  }
  table.visible-lg {
    display: table;
  }
  tr.visible-lg {
    display: table-row !important;
  }
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
  .visible-lg-block {
    display: block !important;
  }
  .visible-lg-inline {
    display: inline !important;
  }
  .visible-lg-inline-block {
    display: inline-block !important;
  }
  .hidden-lg {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
  table.visible-xs {
    display: table;
  }
  tr.visible-xs {
    display: table-row !important;
  }
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
  .visible-xs-block {
    display: block !important;
  }
  .visible-xs-inline {
    display: inline !important;
  }
  .visible-xs-inline-block {
    display: inline-block !important;
  }
  .hidden-xs,
  .hidden-xs-inline {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
  table.visible-sm {
    display: table;
  }
  tr.visible-sm {
    display: table-row !important;
  }
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
  .visible-sm-block {
    display: block !important;
  }
  .visible-sm-inline {
    display: inline !important;
  }
  .visible-sm-inline-block {
    display: inline-block !important;
  }
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
  table.visible-md {
    display: table;
  }
  tr.visible-md {
    display: table-row !important;
  }
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
  .visible-md-block {
    display: block !important;
  }
  .visible-md-inline {
    display: inline !important;
  }
  .visible-md-inline-block {
    display: inline-block !important;
  }
  .hidden-md {
    display: none !important;
  }
}
@media print {
  .visible-print {
    display: block !important;
  }
  table.visible-print {
    display: table;
  }
  tr.visible-print {
    display: table-row !important;
  }
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
  .visible-print-block {
    display: block !important;
  }
  .visible-print-inline {
    display: inline !important;
  }
  .visible-print-inline-block {
    display: inline-block !important;
  }
  .hidden-print {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15px;
    overflow-y: hidden;
    overflow-x: auto;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
@media only screen and (max-width: 767px), only screen and (max-device-width: 767px) {
  .Select-control {
    border-radius: 0;
  }
  .u-flexGrid {
    margin: 0 -5px;
  }
  .u-flexGrid-item {
    margin-left: 5px;
    margin-right: 5px;
  }
  .searchWaitIndicator {
    font-size: 2.2rem;
    min-height: 400px;
    padding-top: 25px;
  }
  .searchWaitIndicator-spinner {
    margin-top: 40px;
    font-size: 80px;
  }
  .u-display1 {
    font-size: 32px;
  }
  .u-display1 {
    line-height: 48px;
  }
  .u-display2 {
    font-size: 18px;
  }
  .u-display2 {
    line-height: 28px;
  }
  .u-headline {
    font-size: 28px;
  }
  .u-headline {
    line-height: 40px;
  }
  .u-title {
    font-size: 24px;
  }
  .u-title {
    line-height: 36px;
  }
  .u-subtitle {
    font-size: 18px;
  }
  .u-subtitle {
    line-height: 26px;
  }
  .u-body1 {
    font-size: 16px;
  }
  .u-body1 {
    line-height: 24px;
  }
  .u-body2 {
    font-size: 16px;
  }
  .u-body2 {
    line-height: 24px;
  }
  .u-body3 {
    font-size: 14px;
  }
  .u-body3 {
    line-height: 22px;
  }
  .authFormModal-body {
    padding: 30px 15px 0 15px;
    height: 100%;
  }
  .porchModal input::input-placeholder,
  .porchModal textarea::input-placeholder {
    color: #9ea4ae;
  }
  .porchModal-content {
    height: 100%;
    width: 100%;
    margin: 0;
    border-radius: 0;
    background: #f3f4f6;
    padding: 0;
    -webkit-overflow-scrolling: touch;
  }
  .porchModal-heading {
    position: relative;
    font-size: 1.5rem;
    border-bottom: 1px solid #e3e6ea;
    padding: 0 0 10px 20px;
    font-family: 'Sharp Sans', 'Open Sans', sans-serif;
    font-weight: 500;
    font-style: normal;
  }
  .porchModal-body {
    padding: 0 20px;
  }
  .porchModal-closeIcon {
    z-index: 900;
  }
  .modalDialog {
    margin: auto;
    width: 100%;
    height: 100%;
  }
  .authForm-legal {
    width: 100%;
    white-space: normal;
  }
  .forgotPasswordSuccess-content {
    padding: 10px 0;
    width: 100%;
  }
  .appFooter-cta {
    display: block;
    margin-top: 5px;
  }
  .appFooter-utilLinks {
    padding: 0;
  }
  .appFooter-utilLinks .appFooter__links {
    border-bottom: 1px solid #d0d3da;
    margin-bottom: 0;
  }
  .appFooter-utilLinks .appFooter__links:last-child {
    border-bottom: none;
    margin-top: 2.4rem;
  }
  .appFooter-utilLinks .appFooter__links--is-closed .appFooter__list-item {
    display: none;
  }
  .appFooter-utilLinks .appFooter__list-header {
    line-height: 5.6rem;
    margin-bottom: 0;
    padding-left: 1rem;
  }
  .appFooter-utilLinks .appFooter__list-header .appFooter__list-header-toggle {
    display: block;
    height: auto;
    width: auto;
  }
  .appFooter-utilLinks .appFooter__list-subheader {
    padding-left: 1rem;
  }
  .appFooter-utilLinks .appFooter__list-item {
    padding-left: 1rem;
  }
  .appFooter-utilLinks .appFooter__list-item:last-child {
    margin-bottom: 1.8rem;
  }
  .appFooter-utilLinks .appFooter__terms {
    margin-left: 1rem;
    padding-top: 0.2rem;
  }
  .appFooter-utilLinks .appFooter__terms-logo {
    float: none;
    margin-left: 1rem;
  }
  .appFooter-utilLinks .appFooter__terms-logo img {
    margin: auto;
  }
  .appFooter .nearbyCities {
    margin-bottom: 20px;
  }
  .appFooter .relatedPros {
    margin-bottom: 20px;
  }
  .appFooter-copyrightYear {
    padding-top: 2rem;
  }
  .agentFooter-linkList {
    padding-bottom: 10px;
  }
  .agentFooter-socialIcons {
    display: block;
    float: left;
    margin-right: 30px;
  }
  .proAppFooter-wrapper {
    padding: 15px 0;
    font-size: 1.1rem;
  }
  .proAppFooter-item {
    padding: 0 5px;
  }
  .proAppFooter-copyrightYear {
    -webkit-box-flex: 3;
    -ms-flex: 3 100%;
    flex: 3 100%;
    text-align: center;
    padding: 0 0 10px;
  }
  a.userMenu-a {
    padding-right: 7px;
  }
  .http-error-bg-container {
    max-height: 400px;
  }
  .http-error-header {
    margin-top: 0px;
  }
  .http-error-header-h2 {
    font-size: 1.7rem;
  }
  .authForm-subHeading {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
  .authForm-legal {
    width: 100%;
    white-space: normal;
  }
  .authForm-facebook-button .btn-fb {
    font-size: 1.2rem;
  }
  .forgotPasswordSuccess-content {
    padding: 10px 0;
    width: 100%;
  }
  .authFormModal-body {
    padding: 30px 15px 0 15px;
    height: 100%;
  }
  -iframe {
    max-width: 100%;
    max-height: 100%;
  }
  .proAppointment-detail-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
  }
  .proAppointment-detail-cta .btn {
    min-height: 50px;
    padding: 15px 20px;
    font-size: 1.5rem;
  }
  .proAvail-edit-reason-error {
    margin-bottom: 7px;
  }
  .financeWidget-budget {
    display: block;
  }
  .findWork-text {
    width: auto;
  }
  .findWork-leads {
    display: block;
  }
  .proFinances-list-date {
    background-color: #f3f4f6;
    padding: 5px 20px;
    margin: -10px -15px 10px;
    border-bottom: 1px solid #e3e6ea;
  }
  .proFinances-list-date .proFinances-list-note {
    text-transform: uppercase;
    font-size: 1.1rem;
  }
  .image-lightbox .ul-modal-large .ul-modal-container {
    width: 100%;
  }
  .image-lightbox .ul-modal-center {
    padding: 0;
  }
  .left-nav ul {
    margin-bottom: 20px;
  }
  .left-nav ul li {
    padding: 0;
  }
  .left-nav ul li a {
    display: block;
    font-size: 1.4rem;
    padding: 10px 5px;
  }
  .licenseWrapper .licenseList-item {
    grid-column-gap: 10px;
  }
  .licenseWrapper .licenseList-status-name {
    display: none;
  }
  .page-header-title {
    cursor: pointer;
  }
  .proAccount-companyInfo-container {
    display: block;
  }
  .proAccount-companyInfo-img {
    padding-bottom: 15px;
  }
  .project-summary-tabs a {
    padding: 15px 15px 10px;
  }
  .project-summary-date {
    margin: 0 0 10px 15px;
  }
  .project-summary-actions {
    border-left: none;
  }
  .project-summary-actions .pro-project-actions-button span {
    display: none;
  }
  .productBundle-body {
    height: auto;
  }
  .productBundle ul.productBundle-features {
    display: block;
    height: auto;
  }
  .productBundle-h-opt-bar {
    display: none;
  }
  .productBundle-edit .productBundle-box:hover {
    -webkit-transform: none;
    transform: none;
  }
  .projectReceipt .hop-purchase-headings {
    display: none;
  }
  .projectReceipt .hop-purchase-purchaseDate {
    font-size: 1.2rem;
    color: #505b66;
  }
  .projectReceipt .hop-purchase-reasonText {
    font-size: 1.2rem;
    padding-right: 80px;
  }
  .projectReceipt .hop-purchase-amount {
    font-weight: 700;
    margin-top: 0px;
    border-left: none;
  }
  .projectReceipt .hop-purchase-total-label {
    text-align: left;
  }
  .projectReceipt .hop-purchase-total-value {
    text-align: right;
  }
  .projectReceipt .hop-purchase-item [class*="col-"] {
    padding-top: 3px;
    padding-bottom: 3px;
  }
  .projectReceipt .hop-purchase {
    padding: 0 10px;
  }
  .proProjectSearch-list {
    margin-bottom: 0;
    height: calc(100% - 59px);
  }
  .proProjectSearch-list-item {
    padding: 10px;
    border-left: 0;
  }
  .proProjectSearch-details {
    position: fixed;
    width: 100%;
    left: 0;
    top: 56px;
    -webkit-animation: none;
    animation: none;
    z-index: 10;
  }
  .proProjectSearch-details-body {
    height: calc(100% - 200px);
  }
  .proProjectSearch-details-footer,
  .proProjectSearch-paging {
    width: 100%;
  }
  .relatedProject-list-action {
    border-left: 0;
    text-align: right;
  }
  .serviceArea-search {
    width: 300px;
  }
  .serviceArea .serviceArea-container {
    height: 400px;
    overflow: hidden;
  }
  .backgroundCheck-form .flex-item {
    width: 100%;
  }
  .backgroundCheck-form .flex-container {
    display: inline-block;
  }
  .backgroundCheck-form .flex-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 100%;
    flex: 1 100%;
  }
  .backgroundCheck-form .flex-item-or {
    position: relative;
    margin: 0;
    width: auto;
    border: 0;
  }
  .backgroundCheck-form .flex-or {
    position: relative;
    left: 0;
  }
  .backgroundCheck-form-middleName {
    height: auto;
    margin-bottom: 15px;
  }
  .backgroundCheck-form-examples {
    margin-top: 0;
    font-size: 1.2rem;
  }
  .backgroundCheck-membership-sidebar .proPage-label,
  .backgroundCheck-membership-sidebar-value,
  .backgroundCheck-membership-sidebar-total {
    display: inline-block;
    width: 50%;
    margin: 0;
    font-size: 1.3rem;
  }
  .backgroundCheck-status-wrapper {
    border-right: 0;
  }
  .backgroundCheck-status-body {
    border-right: 0;
  }
  .backgroundCheck-status-none {
    border-right: 0;
  }
  .backgroundCheck-status-sidebar {
    padding: 15px 0 0 0;
    border-top: 1px solid #e3e6ea;
    margin: 10px 15px 0 0;
  }
  .video-container .ul-modal-large .ul-modal-container {
    width: 100%;
  }
  .video-container .ul-modal-center {
    padding: 0;
  }
  .proPage .proFooter-sticky {
    padding: 3px;
    text-align: center;
  }
  .proPage .proFooter-sticky .u-flex-1 {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }
  .pro-modal .porch-modal-content {
    margin-top: 0;
  }
  .buyProject-box {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-top: 1px solid #d0d3da;
    margin: 0 -10px;
  }
  .buyProject-header {
    margin-bottom: -1px;
  }
  .buyProject-map-large {
    height: 100px;
  }
  .buyProject-cta {
    padding: 10px;
  }
  .buyProject-cost .buyProject-cta {
    padding: 0;
  }
  .buyProject-message-button {
    padding-bottom: 0;
  }
  .dashboard-vettedWidget-col {
    margin-right: 0;
  }
  .proFinances-download {
    font-size: 1.1rem;
  }
  .proFinances-content.col-md-9 {
    padding: 0;
  }
  .proFinances-sidebar {
    margin-top: 20px;
  }
  .proHomePage-vetted-benefitDescription {
    padding-left: 16px;
  }
  .proHomePage .proLander-section-pad {
    padding: 24px 20px;
  }
  .proHomePage .proLander-section-heading {
    margin: 0 0 1em;
  }
  .inspector-lander-header {
    background-image: url(https://cdn.porch.com/pro/inspector/inspector-landing-page-header-mobile.jpg);
  }
  .inspector-lander-header-textholder {
    width: 70%;
    left: 30px;
    top: 50px;
  }
  .inspector-lander-header-title {
    font-size: 3rem;
  }
  .inspector-lander-header-subtext {
    font-size: 2rem;
    margin-top: 30px;
    width: 300px;
  }
  .inspector-lander-value-prop-container {
    padding: 15px 15%;
  }
  .inspector-lander-section-title {
    font-size: 3rem;
    padding: 0 12px;
  }
  .inspector-lander-section-subtext {
    max-width: 95%;
  }
  .inspector-lander-learn-more-card {
    margin: 0 8px;
  }
  .inspector-lander-how-it-works-container {
    padding: 0 8px;
  }
  .inspector-lander-podcast {
    background-image: none;
    height: 100%;
  }
  .inspector-lander-podcast-textholder {
    width: 100%;
    position: static;
    padding: 16px 0;
    background-color: #3d454d;
  }
  .inspector-lander-podcast-title {
    text-align: center;
  }
  .inspector-lander-podcast-text {
    margin: 20px;
  }
  .inspector-lander-resources-container {
    margin: 0 0;
  }
  .inspector-lander-resources-container-left {
    margin-left: 0px;
  }
  .inspector-lander-resources-container-right {
    margin-right: 0px;
  }
  .inspector-lander-partner-container-row1 {
    margin: 0 0px;
  }
  .inspector-lander-partner-container-row2 {
    margin: 0 0px;
  }
  .inspector-lander-partner-subtext {
    max-width: 100%;
  }
  .inspector-lander-partner-image-container {
    height: auto;
  }
  .advisory-board-cell {
    height: 100px;
  }
  .homePage-review-section {
    padding-bottom: 1.6rem;
  }
  .homePage-review-section .col-md-3 {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 29rem;
    display: inline-block;
  }
  .homePage-review-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow-x: auto;
    padding: 0.5rem 1rem 0;
  }
  .homePage-review-list::-webkit-scrollbar {
    width: 0;
    background: transparent;
    display: none;
  }
  .homePage-review-content {
    height: 33.5rem;
  }
  .proAccount .btn {
    padding: 10px 15px;
    min-width: 70px;
    min-height: auto;
  }
  .proLogin-body {
    margin: 10px auto;
  }
  .proLogin-wrapper {
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .proLogin-header {
    display: none;
  }
  .proLogin-loginForm {
    padding: 0 20px 0;
  }
  .proLogin-sidebar {
    padding: 20px 23px;
    border-top: 1px solid #d0d3da;
  }
  .proLogin-blurb {
    font-size: 1.3rem;
    line-height: 140%;
  }
  .proLogin .authForm-forgotPassword {
    padding: 0 10px;
  }
  .proLogin .authForm-legal {
    margin: 10px auto;
    width: 80%;
  }
  .proLogin .btn-getStarted {
    max-width: none;
  }
  .proSignup {
    padding-bottom: 190px;
  }
  .proSignup-header .proSignup-steps.page-title {
    color: #505b66;
    float: none;
    font-size: 1.7rem;
    margin-top: -4px;
  }
  .proSignup-body {
    padding: 0 20px;
  }
  .proSignup-footer {
    background-color: #f3f4f6;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    left: 0;
    margin: 0;
    padding: 10px;
    position: fixed;
    width: 100%;
  }
  .proSignup-footer-cancelBtn,
  .proSignup-footer-createAccountBtn {
    margin: 0 10px;
  }
  .proSignup-footer-cancelBtn {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .proSignup-footer-createAccountBtn {
    -webkit-box-flex: 2;
    -ms-flex: 2;
    flex: 2;
    width: auto;
  }
  .proDashboard-projectsHeading {
    position: relative;
    padding-bottom: 40px;
  }
  .proDashboard-projectsHeading.is-allTime {
    padding-bottom: 0;
  }
  .proDashboard-projectsHeading-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .proDashboard-filter {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 40px;
    width: 100%;
    margin: 0;
    border-top: 1px solid #e3e6ea;
  }
  .proDashboard-filter > i {
    top: 8px;
  }
  .proDashboard-filter-input {
    border: none;
  }
  .proDashboard-perks-shareModal {
    height: 100%;
  }
  .col-sm-10 {
    padding: 0;
  }
  .myLeads-tabs a {
    padding: 15px 15px 10px;
  }
  .myLeads .purchasedLeads .more,
  .myLeads .creditRequestLeads .more,
  .myLeads .availableLeads .more {
    display: block;
  }
  .myLeads .purchasedLeads .project-summary-pager,
  .myLeads .creditRequestLeads .project-summary-pager,
  .myLeads .availableLeads .project-summary-pager {
    display: none;
  }
  .myLeads .projectHeader-icon {
    display: none;
  }
  .pro-settings-nav ul {
    margin-bottom: 20px;
  }
  .pro-settings-nav ul li {
    padding: 0;
  }
  .pro-settings-nav ul li a {
    display: block;
    font-size: 1.4rem;
    padding: 10px 5px;
  }
  .proProjectSearch-col-list {
    border-right: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: calc(100% - 56px);
    width: 100%;
  }
  .proProjectSearch-col-map {
    display: none;
  }
  .proProjectSearch-btns {
    display: none;
  }
  .proProjectSearch-head {
    border-bottom: 1px solid #d0d3da;
    padding: 10px;
  }
  .app-ProProjectSearch .porchContent-fixed,
  .app-ProProjectSearchByCompanyId .porchContent-fixed {
    height: calc(100% - 56px);
    margin: 0;
    position: relative;
    top: 56px;
  }
}
@media only screen and (min-width: 768px) {
  .u-flexGrid-2col .u-flexGrid-item {
    width: calc(50% - 20px);
  }
  .porchBody {
    position: relative;
  }
  .searchWaitIndicator {
    font-size: 3.4rem;
    min-height: 800px;
  }
  .searchWaitIndicator-spinner {
    margin-top: 100px;
    font-size: 100px;
  }
  .sectionHeading {
    font-size: 1.7rem;
    margin: 0 0 20px 0;
  }
  .porchModal-content {
    margin: 20px auto 0;
    max-height: calc(100% - 20px);
    min-height: 300px;
  }
  .porchModal-body {
    height: auto;
  }
  .modalDialog {
    margin: 0 auto;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    max-height: calc(100% - 70px);
  }
  a.appHeader-a:hover {
    color: #3d454d;
  }
  .appHeader--landingPage {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .appHeader--landingPage a.appHeader-a {
    font-size: 14px;
    color: #ffffff;
  }
  .appHeader--landingPage a.appHeader-a:hover {
    background: none;
  }
  .userMenu-userName {
    vertical-align: middle;
    max-width: 150px;
    display: inline-block;
  }
  .btn.btn-fb {
    padding: 10px 30px;
  }
  .proLead-projectInfo-map {
    float: right;
  }
  .userInformation-email-change {
    margin-top: -12px;
    right: -65px;
    top: 50%;
  }
  .serviceAreaZoomControl {
    display: block;
  }
  .serviceAreaMobileStatusDrawer {
    display: none;
  }
  .serviceAreaSaveBar {
    display: none;
  }
  .serviceAreaSaveBox {
    display: block;
  }
  .proHomePage .proLander-plans-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .proHomePage .proLander-plans-national {
    padding-bottom: 20px;
  }
  .proDashboard-projectsHeading-tabs > a {
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
  }
  .proSettings-header-link:link {
    cursor: default;
  }
  .app-ProProjectSearch .porchHeader-fixed,
  .app-ProProjectSearchByCompanyId .porchHeader-fixed {
    position: relative;
  }
  .app-ProProjectSearch .porchContent-fixed,
  .app-ProProjectSearchByCompanyId .porchContent-fixed {
    margin: 0;
  }
  .serviceAreaModal--getHelpModal .modalDialog {
    width: 470px;
  }
  .serviceAreaModal--purchasedWarning-close {
    display: block;
  }
  .serviceAreaModal--purchasedWarning-header {
    font-size: 2.2rem;
    font-weight: 500;
  }
  .serviceAreaModal--purchasedWarning-body {
    max-width: 350px;
    margin: 20px auto;
  }
  .serviceAreaModal--purchasedWarning-btn {
    display: none;
  }
  .serviceAreaModal--purchasedWarning .modalDialog {
    width: 470px;
  }
  .serviceAreaModal--purchasedWarning .modalDialog-body {
    padding: 20px 0;
  }
  .serviceArea .appHeader {
    display: block;
  }
  .serviceArea-map {
    bottom: 0;
    top: 56px;
  }
}
@media only screen and (min-width: 992px) {
  .u-flexGrid-3col .u-flexGrid-item {
    width: calc(33.33% - 20px);
  }
  .u-flexGrid-4col .u-flexGrid-item {
    width: calc(25% - 20px);
  }
  .u-flexGrid-6col .u-flexGrid-item {
    width: calc(16.66% - 20px);
  }
  .u-display1 {
    font-size: 72px;
  }
  .u-display1 {
    line-height: 104px;
  }
  .u-display2 {
    font-size: 32px;
  }
  .u-display2 {
    line-height: 48px;
  }
  .u-headline {
    font-size: 24px;
  }
  .u-headline {
    line-height: 36px;
  }
  .u-title {
    font-size: 20px;
  }
  .u-title {
    line-height: 32px;
  }
  .u-subtitle {
    font-size: 16px;
  }
  .u-subtitle {
    line-height: 24px;
  }
  .u-body1 {
    font-size: 14px;
  }
  .u-body1 {
    line-height: 20px;
  }
  .u-body2 {
    font-size: 14px;
  }
  .u-body2 {
    line-height: 20px;
  }
  .u-body3 {
    font-size: 12px;
  }
  .u-body3 {
    line-height: 18px;
  }
  .porchModal-content {
    width: 960px;
  }
  .proAvail-edit select.proAvail-edit-dropdown {
    font-size: 1.3rem;
  }
  .pointsOverlay {
    padding-top: 55px;
    z-index: 10;
  }
  .pointsOverlay-body {
    padding: 30px 0 20px;
  }
  .buyProject .pointsOverlay-footer {
    background-color: transparent;
    padding: 20px 0;
    position: relative;
    width: auto;
    text-align: right;
  }
  .selectPoints-item {
    height: 85px;
    margin-bottom: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .pointsOverlay-note-head {
    margin: 0 0 8px;
  }
  .proDashboard-company {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .proDashboard-helpfulLinks {
    border-left: 1px solid #f3f4f6;
    margin-left: 15px;
    padding-left: 15px;
    padding-top: 4px;
    width: 200px;
  }
  .proDashboard-helpfulLinks li.inlineList-item {
    display: block;
  }
  .campaignSettings-summary-actionLinks {
    border-width: 0 0 0 1px;
    margin-top: 0;
    padding-top: 0;
  }
  .campaignSettings-actionLink {
    margin: 2px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .u-flexGrid-3col .u-flexGrid-item {
    width: calc(50% - 20px);
  }
  .u-flexGrid-4col .u-flexGrid-item {
    width: calc(33.33% - 20px);
  }
  .u-flexGrid-6col .u-flexGrid-item {
    width: calc(25% - 20px);
  }
  .u-display1 {
    font-size: 56px;
  }
  .u-display1 {
    line-height: 80px;
  }
  .u-display2 {
    font-size: 28px;
  }
  .u-display2 {
    line-height: 36px;
  }
  .u-headline {
    font-size: 28px;
  }
  .u-headline {
    line-height: 40px;
  }
  .u-title {
    font-size: 24px;
  }
  .u-title {
    line-height: 36px;
  }
  .u-subtitle {
    font-size: 18px;
  }
  .u-subtitle {
    line-height: 26px;
  }
  .u-body1 {
    font-size: 16px;
  }
  .u-body1 {
    line-height: 24px;
  }
  .u-body2 {
    font-size: 16px;
  }
  .u-body2 {
    line-height: 24px;
  }
  .u-body3 {
    font-size: 14px;
  }
  .u-body3 {
    line-height: 22px;
  }
  .modalDialog {
    width: 70%;
  }
  .appFooter-utilLinks .appFooter__terms {
    padding-top: 0;
    margin-left: 1rem;
  }
  .proProjectSearch-details {
    left: 350px;
    -webkit-animation: slide-in-mobile 200ms;
    animation: slide-in-mobile 200ms;
  }
  .proProjectSearch-details,
  .proProjectSearch-details-footer,
  .proProjectSearch-paging {
    width: 350px;
  }
  .inspector-lander-header-textholder {
    width: 50%;
    left: 30px;
    top: 30px;
  }
  .inspector-lander-resources-container-left {
    margin-left: 100px;
  }
  .inspector-lander-resources-container-right {
    margin-right: 100px;
  }
  .inspector-lander-partner-container-row1 {
    margin: 0 75px;
  }
  .inspector-lander-partner-container-row2 {
    margin: 0 150px;
  }
  .homePage-review-content-review {
    padding: 0 24px;
  }
  .proProjectSearch-col-list {
    width: 350px;
  }
  .proProjectSearch-col-map {
    width: calc(100% - 350px);
  }
}
@media only screen and (min-width: 1200px) {
  .fullWidthContainer {
    padding: 0 18px 0 38px;
  }
}
@media only screen and (max-width: 399px), only screen and (max-device-width: 399px) {
  .appFooter-socialLinksCol .inlineList-item.inlineList--paddedLg:last-child {
    padding-top: 15px;
  }
}
@media only screen and (max-width: 991px) {
  .appFooter-utilLinks .appFooter__terms .inlineList-item.inlineList--padded {
    margin-bottom: 1rem;
    padding-left: 0;
    width: 100%;
  }
  .appFooter-utilLinks .appFooter__terms-logo.appFooter__terms-logo {
    display: block;
    margin: auto;
    margin-bottom: 2.4rem;
  }
  .appFooter-utilLinks .appFooter__terms-logo.appFooter__terms-logo img {
    margin: auto;
  }
  .appFooter-utilLinks .appFooter__icons {
    display: block;
    text-align: center;
  }
  .appFooter-utilLinks .appFooter__icons li {
    display: inline-block;
  }
  .appFooter-utilLinks .appFooter__icons li.appFooter__terms-logo {
    margin-bottom: 2.4rem;
  }
  .appFooter-utilLinks .appFooter__icons li.appFooter__terms-logo img {
    margin: auto;
  }
  .appFooter-copyrightYear {
    width: 100%;
    padding-top: 2rem;
  }
  .waitIndicator-loadingBar-container {
    left: 5%;
    top: 30%;
    width: 90%;
  }
  .proUserMenu {
    display: none;
    top: 59px;
    right: auto;
  }
  .proUserMenu-logged-out {
    display: none;
  }
  .proUserMenu-showMobile {
    display: block;
    z-index: 200;
  }
  .proUserMenu .proDropdownMenu-headshot {
    padding: 10px 0 0 10px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .proUserMenu .proDropdownMenu-flyout {
    display: block;
  }
  .proUserMenu .proDropdownMenu-flyout-wrapper {
    background-color: #ffffff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-left: 0;
    border-bottom: 0;
    border-right: 1px solid #d0d3da;
    height: 100vh;
    width: 250px;
    z-index: 200;
  }
  .proUserMenu .proDropdownMenu-link-mobile-nav {
    display: block;
    font-weight: bold;
  }
  .proUserMenu-logged-out {
    float: none;
    position: absolute;
    top: 56px;
    background-color: #ffffff;
    border-top: 1px solid #d0d3da;
    border-right: 1px solid #d0d3da;
    height: 100vh;
    width: 250px;
  }
  .proUserMenu-logged-out .appHeader-a {
    display: block;
  }
  .flyout .inspectorMobileMenu {
    display: block;
  }
  .proUserMenu {
    display: none;
    top: 59px;
    right: auto;
  }
  .proUserMenu-logged-out {
    display: none;
  }
  .proUserMenu-showMobile {
    display: block;
    z-index: 200;
  }
  .proUserMenu .proDropdownMenu-headshot {
    padding: 10px 0 0 10px;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .proUserMenu .proDropdownMenu-flyout {
    display: block;
  }
  .proUserMenu .proDropdownMenu-flyout-wrapper {
    background-color: #ffffff;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-left: 0;
    border-bottom: 0;
    border-right: 1px solid #d0d3da;
    height: 100vh;
    width: 250px;
    z-index: 200;
  }
  .proUserMenu .proDropdownMenu-link-mobile-nav {
    display: block;
    font-weight: bold;
  }
  .proUserMenu-logged-out {
    float: none;
    position: absolute;
    top: 56px;
    background-color: #ffffff;
    border-top: 1px solid #d0d3da;
    border-right: 1px solid #d0d3da;
    height: 100vh;
    width: 250px;
  }
  .proUserMenu-logged-out .appHeader-a {
    display: block;
  }
  .proAppointment-list {
    font-size: 1.3rem;
  }
  .proAppointment-list-head {
    padding: 10px 0;
  }
  .proAppointment-list-item {
    padding: 10px;
    font-size: 1.2rem;
  }
  .alertBanner {
    padding: 10px 0 0;
  }
  .alertBanner-icon {
    padding-left: 10px;
  }
  .alertBanner-message {
    -webkit-box-flex: 1;
    -ms-flex: 1 80%;
    flex: 1 80%;
  }
  .alertBanner-links {
    -webkit-box-flex: 1;
    -ms-flex: 1 100%;
    flex: 1 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding: 10px;
    margin-top: 10px;
  }
  .proFinances-list {
    font-size: 1.3rem;
    margin: 0 0 15px;
  }
  .proFinances-list-head {
    padding: 10px 0;
  }
  .proFinances-list-item {
    padding: 10px;
    font-size: 1.2rem;
  }
  .proFinances-list-amt-dollar {
    display: none;
  }
  .proFinances-list-note {
    font-size: 1.3rem;
  }
  .proFinances-list-titleWrapper {
    display: block;
  }
  .proLead-conversation-link {
    text-align: center;
  }
  .proLead-conversation-message,
  .proLead-conversation-timestamp {
    margin-left: 0;
  }
  .proLead-homeownerInfo-name {
    margin: 0;
  }
  .proNotificationSettings-optionContainer {
    padding-left: 20px;
  }
  .productBundleConfirmation-wrapper {
    display: block;
  }
  .serviceArea .proAccount-header.serviceArea-header {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .proPage-header {
    margin-bottom: 10px;
    padding: 10px 5px;
  }
  .proPage-header h1 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
  }
  .proPage-box-pad {
    padding: 20px;
  }
  .proPage-curator-col {
    text-align: left;
  }
  .proPage textarea.proPage-small-textarea {
    height: 180px;
  }
  .proPage .proFooter {
    padding: 10px;
  }
  .buyProject {
    height: auto;
  }
  .buyProject .app-ProProjectDetail {
    background-color: #ffffff;
  }
  .buyProject h2 {
    font-size: 1.7rem;
    margin: 0.5em 0;
  }
  .buyProject-heading,
  .buyProject-contact-info {
    padding: 10px;
  }
  .buyProject-contact-address {
    padding: 0 10px 10px;
  }
  .buyProject-contact-type {
    padding-left: 10px;
  }
  .buyProject .hop-data-label {
    padding: 10px 0 0 10px;
  }
  .buyProject .hop-data-value {
    padding: 0px 10px 10px;
  }
  .buyProject-sidebar {
    margin: 0;
  }
  .buyProject-sidebar-box {
    padding: 15px;
  }
  .buyProject h4.buyProject-point-head {
    padding: 15px 10px 0 10px;
    font-size: 1.4rem;
  }
  .buyProject-point-text {
    margin: 10px 10px 0;
  }
  .buyProject-point-note {
    padding: 10px 15px;
  }
  .buyProject .small-map-container {
    margin: 0 0 20px;
  }
  .buyProject-data {
    padding-bottom: 10px;
  }
  .buyProject-map-small {
    height: 90px;
  }
  .buyProject .u-rightSpace20 {
    margin-right: 10px;
  }
  .buyProject .u-leftPad20 {
    padding-left: 10px;
  }
  .buyProject-cost {
    padding: 10px;
  }
  .buyProject .btn {
    max-width: 350px;
  }
  .proHomePage .proLander-plans-plan {
    padding-left: 30px;
    padding-right: 30px;
  }
  .proLead-box-line-left {
    border-top: 1px solid #d0d3da;
    border-left: 0;
  }
  .proSignup-note {
    padding: 0;
  }
  .serviceAreaModal {
    padding: 40px 10px 65px;
  }
  .proSettingsLander-box {
    width: auto;
    height: auto;
    margin: 10px;
  }
}
@media (max-width: 991px) {
  .appHeader--withBanner {
    margin-top: 0;
    top: 80px;
  }
  .appHeader-logo {
    margin-top: 9px;
  }
  .appHeader-logo.center-xs {
    position: absolute;
    left: 50%;
    top: 18px;
    margin: 0 0 0 -42px;
  }
  .appHeader-logo.appHeader-logo-pro {
    margin: 0 0 0 -54px;
  }
  .appHeader-logoImage {
    height: 21px;
    min-width: 81px;
    width: auto;
  }
  a.appHeader-a {
    padding-right: 15px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .userMenu a.appHeader-a {
    padding-left: 10px;
    padding-right: 10px;
  }
  .userMenu .appHeader-btn {
    margin-left: 10px;
    margin-right: 10px;
  }
  .homePage-review-content-review {
    font-size: 1.2rem;
    padding: 0 24px;
  }
}
@media only screen and (max-width: 1115px) {
  .appHeader-navTabs--professionals .u-pullLeft {
    width: 50%;
  }
}
@media only screen and (max-width: 1375px) {
  .appHeader-navTabs--projects .u-pullLeft {
    width: 50%;
  }
}
@media only screen and (max-width: 1245px) {
  .appHeader-navTabs--cost-guides .u-pullLeft {
    width: 50%;
  }
}
@media only screen and (max-width: 767px) {
  .proSignupProgressContainer {
    margin-bottom: 23px;
  }
}
@media only screen and (min-width: 1050px) {
  .proSignupProgressContainer .proSignupProgress-col-text {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 1049px) {
  .proSignupProgressContainer .proSignupProgress-col-text {
    margin-left: 15px;
  }
}
@media (max-width: 768px) {
  .productBundle-v-container {
    display: block;
    margin: 20px 0 0;
  }
  .productBundle-v-container .productBundle-box {
    margin: 20px 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .inspector-lander-header-title {
    font-size: 4rem;
  }
  .inspector-lander-learn-more-card {
    margin: 0 50px;
  }
  .inspector-lander-podcast-textholder {
    top: 10px;
    width: 500px;
  }
}


/*# sourceMappingURL=main.54591abf7dcaa6d4c3ec.css.map*/