html, body, #map-canvas {
  height: 100%;
  margin: 0;
  padding: 0;
}

.flex-row {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.text-center {
  text-align: center !important;
}

.no-wrap {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hidden {
  display: none !important;
}

@media only screen and (min-width: 320px) and (max-width: 759px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media only screen and (min-width: 760px) and (max-width: 1024px) {
  .hidden-tablet {
    display: none !important;
  }
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .hidden-device {
    display: none !important;
  }
}

.inline-block {
  display: inline-block;
}

.mobile-block {
  display: none;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .mobile-block {
    display: block;
  }
}

.tablet-block {
  display: none !important;
}
@media only screen and (min-width: 760px) and (max-width: 1024px) {
  .tablet-block {
    display: block !important;
  }
}

.device-block {
  display: none;
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .device-block {
    display: block;
  }
}

.mobile-flex {
  display: none;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .mobile-flex {
    display: flex;
  }
}

.device-flex {
  display: none;
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .device-flex {
    display: flex;
  }
}

.flexbox {
  display: flex;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .flexbox.no-flex-mobile {
    display: block;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .flexbox.no-flex-device {
    display: block;
  }
}

.flexbox-inline {
  display: inline-flex;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .flexbox-inline.no-flex-mobile {
    display: inline-block;
  }
}

.flex-direction-column {
  flex-direction: column;
}

.flex-direction-row {
  flex-direction: row;
}

.flex-direction-row-inverse {
  flex-direction: row-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-no-wrap {
  flex-wrap: nowrap;
}

.flex-grow-1 {
  flex-grow: 1;
}

.flex-grow-2 {
  flex-grow: 2;
}

.flex-justify-start {
  justify-content: flex-start !important;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-align-top {
  align-items: flex-start;
}

.flex-align-center {
  align-items: center;
}

.flex-align-end {
  align-items: flex-end;
}

.flex-align-stretch {
  align-items: stretch;
}

.flex-align-self-bottom {
  align-self: flex-end;
}

.flex-1 {
  flex: 1;
}

.cs-button {
  background-color: #d33724;
  color: #fff;
  width: 100%;
  border: none;
}
.cs-button:hover {
  background-color: #c51327;
  box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.2);
}
.cs-button_disabled {
  opacity: 0.7;
  cursor: default;
}

.cs-button-blue {
  background-color: #3c8dbc;
  color: #fff;
}
.cs-button-blue:hover {
  background-color: #357ca5;
  box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.2);
}
.cs-button-blue.transparent {
  background-color: #fff;
  color: #3c8dbc;
  border: 2px solid #3c8dbc;
}
.cs-button-blue.disabled {
  cursor: default;
  opacity: 0.5;
}
.cs-button-blue.disabled:hover {
  background-color: #3c8dbc;
  box-shadow: none;
}

.sign-up-button {
  color: #fff;
  background-color: #d62a3d;
  padding: 8px 40px;
  box-shadow: 0px 1px 3px 1px #a7afb8;
  text-transform: uppercase;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  line-height: 2.154;
  transition: all 0.5s;
}
.sign-up-button:hover {
  background-color: #c51327;
}
.sign-up-button_blue {
  background-color: #3c8dbc;
}
.sign-up-button_blue:hover {
  background-color: #357ca5;
}
.sign-up-button_white {
  color: #3c8dbc;
  padding: 6px 40px;
  background-color: #fff;
  border: 2px solid #3c8dbc;
}
.sign-up-button_white:hover {
  box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}
.sign-up-button [disabled], .sign-up-button[disabled] {
  opacity: 0.6;
  cursor: default;
}

.status-label {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 0 7px;
  letter-spacing: 0.1em;
}

.progress-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 4;
  background: rgba(255, 255, 255, 0.3) url("/img/spinner.svg") center center no-repeat;
}
.progress-overlay.active {
  display: block;
}
.progress-overlay__fixed-wrapper {
  z-index: -1;
}
.progress-overlay__fixed-wrapper .progress-overlay--fixed {
  position: fixed;
  height: 100%;
}

.custom-checkbox {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 17px;
  border: 2px solid #3c8dbc;
  background-color: #fff;
}
.custom-checkbox span {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  color: #3c8dbc;
  display: none;
  line-height: 1;
}
.custom-checkbox input {
  display: none !important;
}
.custom-checkbox input:checked + span {
  display: block;
}
.custom-checkbox.is-checked span {
  display: block;
}

.custom-radio {
  position: relative;
  display: inline-block;
}
.custom-radio__outer {
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid #f3f4f5;
  border-radius: 50%;
  background-color: #fff;
  padding: 3px;
}
.custom-radio__inner {
  display: none;
}
.custom-radio__input {
  display: none !important;
}
.custom-radio--checked .custom-radio__outer {
  border: 2px solid #3c8dbc;
  background-color: #d8e8f2;
}
.custom-radio--checked .custom-radio__inner {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #3c8dbc;
}

.shadow-box {
  box-shadow: -1px 2px 9px 0px #a7afb8;
}

.sticky {
  animation: fadeIn 0.7s;
}

.fullPageHeight {
  height: 100vh;
  overflow: hidden !important;
}

.error-message {
  padding: 40px 40px 0 40px;
}
.error-message p {
  font-weight: 600;
  font-size: 16px;
  color: #d62a3d;
  text-align: center;
  margin: 0;
}

.error-field {
  border-color: #d62a3d !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
button a:hover {
  text-decoration: none;
}

.main-spinner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5) url("/img/spinner.svg") center center no-repeat;
  z-index: 1001;
}

.loading {
  text-align: center;
}

.bold {
  font-weight: 600;
}

.fixed {
  position: fixed;
}

.hidden-visibility {
  visibility: hidden;
}

.pointer {
  cursor: pointer;
}

.no-select {
  user-select: none;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: scale(1);
    height: 61px;
  }
  to {
    opacity: 0;
    transform: scale(0.5);
    height: 0;
    margin: 0;
    cursor: default;
  }
}
.link {
  cursor: pointer;
}
.link:focus, .link:hover {
  text-decoration: underline;
}

@keyframes scaleIn {
  from {
    transform: scale(0.5);
  }
  to {
    transform: scale(1);
  }
}
.property {
  min-width: 320px;
  max-width: 340px;
  position: relative;
  width: 20%;
}
@media (max-width: 1319px) {
  .property {
    width: 33.333%;
  }
}
@media (max-width: 974px) {
  .property {
    width: 50%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .property:first-child {
    margin-top: 16px;
  }
  .property {
    margin-bottom: 16px;
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
    max-width: unset;
  }
}
.property--loading .info-wrapper {
  height: 118px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.property--blurred .image-block,
.property--blurred .property-image-block {
  filter: blur(5px);
}
.property .property-deal-rating-cost-wrapper {
  align-self: center;
  margin-right: 8px;
}
.property .property-deal-rating-info-wrapper {
  margin-left: 5px;
}
.property .property-deal-rating-wrapper .popup--bottom {
  left: -40px;
}
.property .property-image-slider-prev {
  left: 15px;
}
.property .property-image-slider-next {
  right: 15px;
}
.property .property-image-slider-prev,
.property .property-image-slider-next {
  opacity: 0;
  z-index: 1;
  width: 30px;
  height: 30px;
}
.property .property-image-slider-prev:before,
.property .property-image-slider-next:before {
  font-size: 30px;
}
.property:hover .property-image-slider-prev,
.property:hover .property-image-slider-next {
  opacity: 1;
}
.property .small-long-address {
  font-size: 12px;
}
.property .favourites {
  position: absolute;
  right: 20px;
  height: 42px;
  width: 42px;
  border-left: 1px solid #d9dcde;
  border-bottom: 1px solid #d9dcde;
  cursor: pointer;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(/cs/img/icons/heart.svg);
  background-size: 20px auto;
}
.property .favourites.active {
  background-image: url(/cs/img/icons/heart_selected.svg);
}
.property .favourites i {
  display: none;
}
.property .favourites--mobile {
  position: static;
  border: none;
  align-self: flex-end;
}
.property a {
  width: 100%;
  display: block;
  padding: 20px;
  cursor: pointer;
  box-sizing: border-box;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .property a {
    width: 100%;
    padding: 2px 0;
    margin: 0;
  }
}
.property a > div {
  border: 1px solid #d9dcde;
}
.property a .info-wrapper {
  border-top: 1px solid #d9dcde;
}
.property a .info-wrapper--mobile {
  padding-bottom: 15px;
}
.property a .img-wrapper {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  height: 250px;
  background-color: #cdcdcd;
}
.property a .img-wrapper .image-block {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #cdcdcd;
  background-position: center;
  background-size: cover;
}
.property a .img-wrapper .info-hover {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  opacity: 0;
  transition: all 0.3s linear 0s;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
}
.property a .img-wrapper .info-hover:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}
.property a .img-wrapper .info-hover .inner {
  display: inline-block;
  vertical-align: middle;
}
.property a .img-wrapper .slick-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.property a .img-wrapper .slick-slider .slide-wrapper {
  background-color: #39434d;
}
.property a .img-wrapper .slick-slider .slick-list {
  height: 100%;
}
.property a .img-wrapper .slick-slider .slick-list .slick-track {
  height: 100%;
  transition: left 0.6s ease-out 0s;
}
.property a .img-wrapper .slick-slider .slick-list .slick-track.animated {
  left: -60px;
}
.property a:not(.no-hover):hover {
  box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.25);
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .property a:not(.no-hover):hover {
    box-shadow: initial;
  }
}
.property a:not(.no-hover):hover .img-wrapper .info-hover {
  opacity: 1;
}
.property a .cost-block .cost {
  font-size: 22px;
  font-weight: 600;
  position: relative;
  padding: 14px 12px 6px;
  color: #39434d;
}
.property a .cost-block .cost span:not(.Price) {
  font-size: 14px;
  position: absolute;
  top: 15px;
  left: 16px;
}
.property a .parameters {
  font-size: 14px;
  font-weight: 600;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 0.5em;
  height: 1.7em;
  white-space: nowrap;
  overflow: hidden;
}
.property a .parameters .parameter {
  text-align: center;
  display: inline-block;
  margin-right: 5px;
}
.property a .parameters .parameter span {
  width: 100%;
}
.property a .parameters .parameter__count {
  font-size: 18px;
}
.property a .parameters .parameter:last-child {
  border-right: none;
}
.property a .parameters .parameter::after {
  content: "|";
  color: #d9dcde;
  padding: 0 0 2px 5px;
  font-size: 12px;
}
.property a .parameters .parameter:last-of-type {
  margin-right: 0;
}
.property a .parameters .parameter:last-of-type::after {
  content: none;
}
.property a .parameters--compact {
  font-weight: initial;
  height: unset;
}
.property a .parameters--compact.parameters .parameter {
  margin-right: 8px;
}
.property a .parameters--compact.parameters .parameter:last-of-type {
  margin-right: 0;
}
.property a .parameters--compact.parameters .parameter::after {
  content: none;
}
.property a .parameters--large {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: normal;
  height: auto;
  margin-bottom: 0;
}
.property a .parameters--large .parameter {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  border-right: 1px solid #fff;
}
.property a .parameters--large .parameter::after {
  content: none;
}
.property a .info-block {
  padding: 0 12px;
  color: #39434d;
}
.property a .info-block .mls,
.property a .info-block .disclaimer {
  color: #828a93;
}
.property a .info-block .mls {
  text-transform: capitalize;
  font-size: 12px;
}
.property a .info-block .disclaimer {
  font-size: 10px;
  line-height: 1.4;
  margin: 7px 0;
  height: 30px;
  overflow: hidden;
  white-space: normal;
}
.property a .info-block .disclaimer img {
  display: block;
  float: left;
  height: auto;
  width: auto;
  max-height: 20px;
  max-width: 60px;
  margin-right: 5px;
}
.property a .info-block.listing-office {
  color: #828a93;
  font-size: 12px;
  height: 40px;
  display: table-cell;
  vertical-align: middle;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .property a .info-block.listing-office {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.property--info-block {
  width: 250px;
  min-width: unset;
  max-width: unset;
  position: relative;
  top: 25px;
  margin: 0 auto;
}
.property--info-block a {
  padding: 0;
}
.property--info-block a:not(.no-hover):hover {
  box-shadow: initial;
}
.property--info-block a .img-wrapper {
  height: 200px;
}
.property--info-block .favourites {
  right: 0;
}

.info-rows {
  display: flex !important;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}
.info-rows__top-row {
  align-items: flex-start;
  position: absolute;
  top: 10px;
  left: 10px;
  padding-right: 5px;
}
.info-rows__top-row .status-label {
  margin: 0 10px 5px 0;
  padding: 5px 10px;
  border-radius: 15px;
  font-size: 10px;
}
.info-rows__bottom-row {
  flex-wrap: nowrap;
  padding: 10px;
  box-sizing: border-box;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  background: -ms-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
  align-items: flex-end;
  position: absolute;
  bottom: 0;
  width: 100%;
}
.info-rows__bottom-row.slider-row {
  background: none;
  align-items: center;
  justify-content: center;
}
.info-rows__bottom-row.slider-row .count {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  font: 12px "Open Sans", Tahoma, sans-serif;
  padding: 3px 5px;
}
.info-rows .slick-arrow {
  display: none !important;
}

.properties-items {
  width: 100%;
  max-width: 1700px;
  transition: opacity 0.01s linear 0s;
}
.properties-items.transparent {
  opacity: 0;
}
@media only screen and (min-width: 1320px) and (max-width: 1699px) {
  .properties-items {
    max-width: 1340px;
  }
}
@media only screen and (min-width: 995px) and (max-width: 1319px) {
  .properties-items {
    max-width: 1005px;
  }
}
@media only screen and (min-width: 760px) and (max-width: 974px) {
  .properties-items {
    max-width: 670px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .properties-items > * {
    flex-basis: 100%;
  }
}

.property-deal-rating {
  color: #39434d;
}
.property-deal-rating__icon, .property-deal-rating__icon-wrapper {
  width: 40px;
  height: 40px;
}
.property-deal-rating__text {
  font-size: 15px;
}

.property-deal-rating-wrapper {
  position: relative;
}
.property-deal-rating-wrapper .popup--bottom {
  right: auto;
  left: 0px;
  width: 165px;
}
.property-deal-rating-wrapper .popup--bottom .popup-content-option:hover {
  background: #d9dcde;
}
.property-deal-rating-wrapper .popup__hide-icon {
  display: none;
}

.ga-app {
  font-family: "Open Sans", Tahoma, sans-serif;
}
.ga-app a, .ga-app a:hover, .ga-app a:focus, .ga-app a:active {
  text-decoration: none;
}
.ga-app ul {
  list-style-type: none;
  padding: 0;
}
.ga-app ul .label {
  width: 166px;
}
.ga-app label {
  font-weight: normal;
}
.ga-app input:focus, .ga-app select:focus, .ga-app textarea:focus, .ga-app button:focus {
  outline: none;
}
.ga-app button {
  border: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  display: block;
  width: 100%;
  -webkit-border-radius: 3px;
  border-radius: 3px;
}
.ga-app .property {
  margin-right: 1em;
  margin-bottom: 1em;
  min-width: 260px;
}
.ga-app .property a {
  padding: 0;
  width: 100%;
}
.ga-app .property a:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
}
@media (max-width: 1319px) {
  .ga-app .property {
    width: -webkit-calc(33.333% - 1em);
    width: calc(33.333% - 1em);
  }
}
@media (max-width: 974px) {
  .ga-app .property {
    width: -webkit-calc(50% - 1em);
    width: calc(50% - 1em);
  }
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .ga-app .property {
    max-width: unset;
    margin-right: unset;
    width: auto;
  }
}

.wpb_wrapper .ga-app .properties-list .gallery-wrapper {
  max-width: 840px;
}
.wpb_wrapper .ga-app .properties-list .gallery-wrapper .gallery-item a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 15px;
  width: 335px;
}
.wpb_wrapper .ga-app .properties-list .gallery-wrapper .gallery-item a .info-block .parameters .parameter {
  margin-right: 3px;
  letter-spacing: -0.5px;
  text-align: center;
}

@media only screen and (max-width: 1000px) and (min-width: 760px) {
  .wpb_wrapper .ga-app .properties-list .gallery-wrapper {
    max-width: 560px;
  }
  .wpb_wrapper .ga-app .properties-list .gallery-wrapper .gallery-item a {
    width: 290px;
  }
}
@media only screen and (max-width: 1399px) and (min-width: 1001px) {
  .wpb_wrapper .ga-app .properties-list .gallery-wrapper {
    max-width: 650px !important;
  }
}
@media only screen and (min-width: 1400px) {
  .wpb_wrapper .ga-app .properties-list .gallery-wrapper {
    max-width: 975px !important;
  }
}
@media only screen and (max-width: 759px) {
  .wpb_wrapper .ga-app .properties-list .gallery-wrapper {
    max-width: 100% !important;
  }
  .wpb_wrapper .ga-app .properties-list .gallery-wrapper .gallery-item a {
    padding: 0;
    width: 100%;
  }
}
