/* FONT */
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@400;700&display=swap');

/* LOADER */
.loader{
  display: inline-flex;
  width: 100%;
  padding: 30px 0;
}

.loader .l_main{
  width: 200px;
  height: 200px;
  margin: auto;
}

/* GRID */
.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

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

.col-2 {
  width: -webkit-calc((100% - 60px) / 2);
  width: -moz-calc((100% - 60px) / 2);
  width: calc((100% - 60px) / 2);
}

@media (max-width: 767px) {
  .col-2 {
    width: 100%;
  }
}

/* BOX-SIZING */

/**
 * More sensible default box-sizing:
 * css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice
 */
html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0;
}

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

/* RESET */
body,
h1, h2, h3, h4, h5, h6,
blockquote, p, pre,
dl, dd, ol, ul,
figure,
hr,
fieldset, legend {
  margin: 0;
  padding: 0;
}


/* Remove trailing margins from nested lists. */
li > ol,
li > ul {
  margin-bottom: 0;
}

/* Remove default table spacing. */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/**
 * 1. Reset Chrome and Firefox behaviour which sets a `min-width: min-content;`
 *    on fieldsets.
 */
fieldset {
  min-width: 0;
  /* [1] */
  border: 0;
}

button {
  outline: none;
  background: none;
  border: none;
}

/* PAGE WRAPPER */
.page-wrapper {
  min-height: 100vh;
}

body {
  font-weight: 400;
  font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

h1 {
  font-size: 36px;
}

h2 {
  font-size: 1.4rem;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 15px;
}

h6 {
  font-size: 13px;
}

/* BACKGROUND */
.bg-blue {
  background: #1b1b1b;
}

/* SPACING */
.p-t-100 {
  padding-top: 100px;
}

.p-t-20 {
  padding-top: 20px;
}

.p-b-100 {
  padding-bottom: 100px;
}

/* WRAPPER */
.wrapper {
  margin: 0 auto;
}

.wrapper--w680 {
  max-width: 680px;
}

/* BUTTON */
.btn {
  line-height: 40px;
  display: inline-block;
  padding: 0 25px;
  cursor: pointer;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 14px;
  font-weight: 700;
}

.btn--radius {
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

/* .btn--green {
  background: #57b846;
} */

/* .btn--green:hover {
  background: #4dae3c;
} */

.btn--modern {
  /* background: #f8fcff; */
  border: solid 2px #069;
  color: #069;
}

.btn--modern:hover {
  background: #dfeef9;
}


/* DATE PICKER */

/* td.active {
  background-color: #1b1b1b;
} */

/* input[type="date" i] {
  padding: 14px;
} */

/* .table-condensed td, .table-condensed th {
  font-size: 14px;
  font-weight: 400;
} */

/* .daterangepicker td {
  width: 40px;
  height: 30px;
} */

/* .daterangepicker {
  border: none;
  -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  display: none;
  border: 1px solid #e0e0e0;
  margin-top: 5px;
} */

/* .daterangepicker::after, .daterangepicker::before {
  display: none;
} */

/* .daterangepicker thead tr th {
  padding: 10px 0;
} */

/* .daterangepicker .table-condensed th select {
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  font-size: 14px;
  padding: 5px;
  outline: none;
} */


/* FORM */
input {
  outline: none;
  margin: 0;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  width: 100%;
  font-size: 14px;
  font-family: inherit;
}

.input-group {
  position: relative;
  margin-bottom: 30px;
  border-bottom: 2px solid #ccc;
}

.input-icon {
  position: absolute;
  font-size: 18px;
  color: #ccc;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

.input--style-1 {
  padding: 9px 0;
  color: #666;
}

.input--style-1::-webkit-input-placeholder {
  /* WebKit, Blink, Edge */
  color: #555;
}

.input--style-1:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #555;
  opacity: 1;
}

.input--style-1::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #555;
  opacity: 1;
}

.input--style-1:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #555;
}

.input--style-1:-ms-input-placeholder {
  /* Microsoft Edge */
  color: #555;
}


/* SELECT2 */
.select--no-search .select2-search {
  display: none !important;
}

.rs-select2 .select2-container {
  width: 100% !important;
  outline: none;
}

.rs-select2 .select2-container .select2-selection--single {
  outline: none;
  border: none;
  height: 34px;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 34px;
  padding-left: 0;
  color: #555;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__arrow {
  height: 32px;
  right: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.rs-select2 .select2-container .select2-selection--single .select2-selection__arrow:after {
  font-size: 20px;
  color: #ccc;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  transition: all 0.4s ease;
  content: '\2304';
  padding-bottom: 8px;
}

.rs-select2 .select2-container.select2-container--open .select2-selection--single .select2-selection__arrow::after {
  -webkit-transform: rotate(-180deg);
  -moz-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  -o-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.select2-container--open .select2-dropdown--below {
  border: none;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid #e0e0e0;
  margin-top: 5px;
  overflow: hidden;
}

/* TITLE */
.title {
  margin-bottom: 37px;
  letter-spacing: -0.5px;
  font-weight: 600;
}

/* CARD */
.card {
  overflow: hidden;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  background: #fff;
}

.card-1 {
  -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.15);
}

.card-1 .card-wpec-heading {
  background: url("/assets/img/city_vancouver_960x300.jpg") center center/cover no-repeat;
  padding-top: 210px;
}

.card-1 .card-wpet-heading {
  background: url("/assets/img/townhouse_960x400.jpg") center center/cover no-repeat;
  padding-top: 270px;
}

.card-1 .card-wpeh-heading {
  background: url("/assets/img/house_960x400.jpg") center center/cover no-repeat;
  padding-top: 270px;
}

.card-1 .card-body {
  padding: 0 90px;
  padding-top: 55px;
  padding-bottom: 65px;
}

@media (max-width: 767px) {
  .card-1 .card-body {
    padding: 0 40px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}


html, body {
    font-family: 'Ubuntu', sans-serif;
}

.switch {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 17px;
    /*  border: solid 1px #e9e5df;*/
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 13px;
    width: 13px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #2196F3;
}

input:focus+.slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked+.slider:before {
    -webkit-transform: translateX(13px);
    -ms-transform: translateX(13px);
    transform: translateX(13px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 17px;
}

.slider.round:before {
    border-radius: 50%;
}

.switch-label {
    /* color: olive; */
    font-size: 14px;
    color: #666;
    /*padding-bottom: 1rem;*/
/*            font-family: "Roboto", "Arial", "Helvetica Neue", sans-serif;*/
    /*border: solid 1px #e5e9df;*/
}

.switch-input-group {
    border-bottom: none;
}


.sub-caption {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    width: 100%;
/*            font-family: "Roboto", "Arial", "Helvetica Neue", sans-serif;*/
    padding: 2.5rem 0 1.5rem 0;
    /*    border: solid 1px #e5e9df;*/
}

@media (max-width: 767px) {
    .col-2-always {
        width: 50%;
    }
}


.app-version {
    padding: 3rem 0 0 0;
    color: #999;
    text-align: center;
    font-weight: 100;
    font-size: 0.7rem;
}

.addon {
    display: flex;
    width: 100%;
    /* border: solid 0px red; */
    padding: 1rem 0;
}

.addon .left {
    width: 75%;
    border: solid 0px lightpink;
}

.addon .right {
    flex-grow: 1;
    text-align: right;
    border: solid 0px lightpink;
    text-align: right;
}

.ai-svg {
    background: #1b1b1b;
    background-image: url('/assets/svg/ai-svg-01.svg');
}

.btn-start {
    text-align: center;
    padding-top: 3rem;
}

/* .zip {
    text-transform: uppercase;
} */

/* .zip input::placeholder {
    font-weight: bold;
    opacity: 0.5;
    color: red;
} */

.wpec-estimate {
  text-align: center;
  color: rgb(72, 116, 90);
  font-size: 1.8rem;
}

.wpec-similar-listing {
  display: flex;
  width: 100%;
  margin: 0.75rem 0;
  border-bottom: solid 1px #ece9da;
}

.wpec-similar-listing .left {
  width: 75%;
}

.wpec-similar-listing .right {
  flex-grow: 1;
  text-align: right;
  /* text-align: right; */
}

.lower-case {
	text-transform: lowercase;
}

/* COLLAPSIBLE */
.pch-collapsible {
/*  background-color: #888;*/
/*  color: white;*/
    cursor: pointer;
/*  padding: 18px;*/
    width: 100%;
    border: none;
/*  text-align: left;*/
    outline: none;
/*  font-size: 15px;*/
    /* margin: 0.4rem 0; */
    font-family: 'Ubuntu', sans-serif;
    font-size: 14px;
    color: #666;
}

.pch-collapsible-active
{
/*  background-color: #f3f3f3;*/
/*  font-weight: 600;*/
    color: #069;
}

.pch-collapsible:hover {
/* background-color: #f3f3f3; */
 /* font-weight: 600; */
    color: #069;
}

.pch-collapsible-content {
  padding: 1rem 18px;
  display: none;
  overflow: hidden;
  /* background-color: #f6f6f6; */

  /* light lime */
  /* border: solid 1px #e2efe2; */

  border: solid 1px #ece9da;
  border-radius: 6px;
/* font-family: 'Ubuntu', sans-serif; */
/* font-size: 14px; */
  color: #666;
/* margin: 0 1rem; */
}

.pch-collapsible-content div {
    padding: 0.4rem 0;
}

.container {
/*    background-color: #2E4272;*/
    display: flex;
    align-items: center;
/*    font-family: inherit;*/
}

.fixed {
/*    background-color:#4F628E;*/
    /* width: 65%; */
/*        font-family: inherit;*/
/*    font-size: 1.5rem;*/
    text-align: left;
    /* color: palevioletred; */
}

.flex-item {
    text-align: right;
    flex-grow: 1;
}


@media only screen and (max-width: 600px) {

  .container {
/*    background-color:#2E4272;*/
    display: inline-block;
    width: 100%;
  }
  
.fixed {
/*    background-color: red;*/
    width: 100%;
    }
}

