@charset "UTF-8";
* {
  box-sizing: border-box;
}

.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px dashed;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropdown {
  position: relative;
}

.dropdown-toggle:focus {
  outline: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  text-align: left;
  background-color: #fff;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 20px;
  clear: both;
  font-weight: normal;
  line-height: 1.42857143;
  color: #333;
  white-space: nowrap;
  text-decoration: none;
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: #f5f5f5;
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  background-color: #337ab7;
}

.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}

.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: 400;
  text-align: center;
  vertical-align: middle;
  touch-action: manipulation;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  user-select: none;
}
.btn:hover, .btn:focus, .btn.focus {
  color: #333;
  text-decoration: none;
}
.btn:active, .btn.active {
  outline: 0;
  background-image: none;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn-link {
  color: #337ab7;
  font-weight: normal;
  border-radius: 0;
}
.btn-link, .btn-link:active, .btn-link.active {
  background-color: transparent;
  box-shadow: none;
}
.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
  border-color: transparent;
}
.btn-link:hover, .btn-link:focus {
  color: #23527c;
  text-decoration: underline;
  background-color: transparent;
}

.btn-group {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}

.btn-group > .btn:first-child {
  margin-left: 0;
}

.btn-group > .btn.active,
.btn-group > .btn:active,
.btn-group > .btn:focus,
.btn-group > .btn:hover {
  z-index: 2;
}

.btn-group > .btn {
  position: relative;
  float: left;
}

.h4, .h5, .h6, h4, h5, h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

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, .fetched-menu-wrapper .menu-item > a {
  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);
  }
}
.icon {
  height: 14px;
  width: 14px;
  fill: currentColor;
}

html {
  font-size: 14px;
}

body {
  font-family: "Open Sans", Tahoma, sans-serif;
}
body.no-scroll {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

#root.scroll {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: scroll;
}
#root.scroll.no-scroll {
  overflow: hidden;
}

h3 {
  font-size: 24px;
  color: #39434d;
  margin: 70px 0 30px;
  line-height: 1;
}
@media only screen and (min-width: 1920px) {
  h3 {
    font-size: 26px;
    margin-bottom: 38px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  h3 {
    font-size: 18px;
    margin: 30px 0 20px;
  }
}

h4 {
  font-size: 18px;
  color: #3c8dbc;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  h4 {
    font-size: 16px;
  }
}

h5 {
  font-size: 15px;
  color: #39434d;
}

a, a:hover, a:focus, a:active {
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
}
ul .label {
  width: 166px;
}

label {
  font-weight: normal;
}

input:focus, select:focus, textarea:focus, button:focus {
  outline: none;
}

button {
  border: none;
  outline: none;
  box-shadow: none;
  display: block;
  width: 100%;
  border-radius: 3px;
}

#tracking-code-area {
  height: 0;
  overflow: hidden;
}

.layout-default {
  width: 100%;
  position: relative;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}
.layout-default .page-container {
  position: relative;
  flex-grow: 1;
}
.layout-default .page-container .section-separator {
  height: 0.4em;
  width: 100%;
  position: absolute;
  margin: 0;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0));
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .layout-default .page-container {
    padding: 0;
  }
}
.layout-default .page-container .page-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  z-index: 9;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.layout-default .page {
  -webkit-box-shadow: inset 0 4px 15px -7px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0 4px 15px -7px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 4px 15px -7px rgba(0, 0, 0, 0.1);
  position: relative;
}
.layout-default .page-inner {
  padding: 15px 0;
  width: 100%;
  max-width: 1266px;
  margin: 0 auto;
  display: inherit;
  flex-direction: inherit;
  align-items: inherit;
}
@media only screen and (min-width: 1920px) {
  .layout-default .page-inner {
    max-width: 1620px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .layout-default .page-inner {
    max-width: 100%;
  }
}
.layout-default .legal-disclaimer {
  text-align: center;
  margin: 0;
  padding: 2em 2em 0;
}
.layout-default .legal-disclaimer:last-child {
  padding-bottom: 2em;
}

.overlay-dropdown {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
}
.overlay-dropdown .dropdown-popup {
  background-color: #fff;
  position: relative;
  padding: 15px 0;
  width: 100%;
  min-height: 100px;
  max-height: 100%;
  overflow-y: auto;
}
.overlay-dropdown .dropdown-popup .close {
  position: absolute;
  display: inline-block;
  padding: 15px 20px;
  top: 0 !important;
  right: 0 !important;
  width: 12px;
  height: 10px;
  background: url("/cs/img/icons/x.svg") center center no-repeat;
  background-size: 10px auto !important;
  opacity: 1;
}
.overlay-dropdown .dropdown-popup .filter-values-list {
  padding: 0;
  background-color: #fff;
}
.overlay-dropdown .dropdown-popup .filter-values-list.type-filter .filter-item {
  width: 100%;
  cursor: pointer;
}
.overlay-dropdown .dropdown-popup .filter-values-list.type-filter .filter-item:hover {
  background-color: #d8e8f2;
}
.overlay-dropdown .dropdown-popup .filter-values-list.type-filter .filter-item label {
  font-size: 14px;
  font-weight: normal;
  padding: 7px 10px;
  white-space: nowrap;
  margin-bottom: 0;
  cursor: pointer;
}
.overlay-dropdown .dropdown-popup .filter-values-list.type-filter .filter-item label .custom-checkbox {
  margin-right: 8px;
}
.overlay-dropdown .dropdown-popup .filter-values-list.price-filter {
  padding-bottom: 10px;
}
.overlay-dropdown .dropdown-popup .filter-values-list.price-filter .inputs {
  padding: 10px;
}
.overlay-dropdown .dropdown-popup .filter-values-list.price-filter .inputs > div:first-of-type {
  margin-right: 20px;
}
.overlay-dropdown .dropdown-popup .filter-values-list.price-filter input {
  font-size: 14px;
  padding: 12px 20px;
  display: block;
  width: 100%;
  outline: 1px solid #d9dcde;
}
.overlay-dropdown .dropdown-popup .filter-values-list.price-filter input:focus {
  outline: 2px solid #3c8dbc;
}
.overlay-dropdown .dropdown-popup .filter-values-list.price-filter .prices {
  width: 100%;
}
.overlay-dropdown .dropdown-popup .filter-values-list.price-filter .prices ul {
  margin-bottom: 0;
}
.overlay-dropdown .dropdown-popup .filter-values-list.price-filter .prices li {
  padding: 8px 20px 8px;
  cursor: pointer;
}
.overlay-dropdown .dropdown-popup .filter-values-list.price-filter .prices li:hover {
  background-color: #d8e8f2;
}

.modal-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
}
.modal-overlay > div {
  flex-grow: 1;
}
.modal-overlay .modal-dialog {
  width: 100%;
  margin: 0;
}

@media only print {
  a[href]:after {
    content: none !important;
  }
}
@page {
  size: auto;
  margin: 0;
}
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, .fetched-menu-wrapper .menu-item > a {
  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);
  }
}
.menu-wrapper,
.header {
  position: relative;
}
.menu-wrapper.no-search-bar,
.header.no-search-bar {
  display: none;
}
.menu-wrapper ul,
.header ul {
  list-style-type: none;
  padding: 0;
}
.menu-wrapper a,
.menu-wrapper a:hover,
.menu-wrapper a:focus,
.menu-wrapper a:active,
.header a,
.header a:hover,
.header a:focus,
.header a:active {
  text-decoration: none;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .menu-wrapper,
  .header {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
  }
  .menu-wrapper.active, .menu-wrapper.active.no-search-bar,
  .header.active,
  .header.active.no-search-bar {
    display: block;
    z-index: 1001;
  }
}
.menu-wrapper__overlay,
.header__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.menu-wrapper .mobile-menu-header,
.header .mobile-menu-header {
  background-color: #fff;
  position: relative;
  padding: 10px 20px;
}
.menu-wrapper .mobile-menu-header a.mobile-menu-logo,
.header .mobile-menu-header a.mobile-menu-logo {
  display: inline-block;
  height: 50px;
  width: 230px;
  text-align: center;
}
.menu-wrapper .mobile-menu-header a.mobile-menu-logo img,
.header .mobile-menu-header a.mobile-menu-logo img {
  max-height: 100%;
  max-width: 100%;
}
.menu-wrapper .mobile-menu-header .close-menu,
.header .mobile-menu-header .close-menu {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 70px;
  border: 1px solid #d9dcde;
  background: url("/cs/img/icons/x.svg") center center no-repeat;
  background-size: 12px 12px;
  background-color: rgba(0, 0, 0, 0.1);
}

.main-menu-part {
  background-color: #2e2e2e;
  display: flex;
  color: #e2e2e2;
  justify-content: space-between;
  position: relative;
}
.main-menu-part.mobile-block {
  display: none;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .main-menu-part {
    color: #c1c1c1;
    overflow-y: auto;
  }
  .main-menu-part.mobile-block {
    display: block;
  }
}
.main-menu-part__contacts {
  display: none;
  margin: 0;
  align-self: center;
  height: 100%;
  font-size: 12px;
}
@media (min-width: 1025px) {
  .main-menu-part__contacts {
    display: flex;
  }
}
.main-menu-part__contacts a {
  display: block;
  padding: 10px;
  color: inherit;
  transition: all 0.2s linear 0s;
}
.main-menu-part__contacts a:hover {
  color: #fff;
  background-color: #3c3c3c;
  text-decoration: none;
}
@media only screen and (min-width: 760px) and (max-width: 1024px) {
  .main-menu-part__contacts a {
    font-size: 10px;
    padding: 6px;
  }
}
.main-menu-part__contacts-icon {
  padding-right: 0.5em;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .main-menu-part {
    height: calc(100% - 70px);
    width: calc(100% - 70px);
    background-color: #39434d;
  }
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .main-menu-part .mls-access-block {
    padding: 14px 20px 15px;
  }
}
.main-menu-part .mls-access-block .mls-access {
  text-align: center;
  background-color: #d62a3d;
  border-radius: 2px;
  color: #fff;
  padding: 13px 0 13px;
  cursor: pointer;
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 600;
}
@media only screen and (min-width: 1920px) {
  .main-menu-part .mls-access-block .mls-access {
    width: 200px;
    padding: 18px 0 17px;
  }
}
.main-menu-part nav {
  padding: 0 4px;
  display: flex;
  z-index: 16;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .main-menu-part nav {
    display: block;
    background-color: #4b545d;
    width: 100%;
    transition: left 0.2s linear 0s;
    padding: 0;
  }
}
.main-menu-part nav ul {
  margin: 0;
}
.main-menu-part nav a {
  display: block;
  padding: 10px 14px;
  color: inherit;
  transition: all 0.2s linear 0s;
  font-size: 14px;
}
.main-menu-part nav a:hover {
  color: #fff;
  background-color: #3c3c3c;
  text-decoration: none;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .main-menu-part nav a {
    padding: 15px 0 15px 44px;
    border-bottom: 1px solid #39434d;
    color: #fff;
    background: transparent url("/cs/img/icons/arrow_mobile_menu.svg") 21px center no-repeat;
    background-size: 12px auto;
  }
  .main-menu-part nav a:active, .main-menu-part nav a:hover {
    background-color: #4f5962;
    color: #fff;
    font-weight: 600;
  }
}
@media only screen and (min-width: 760px) and (max-width: 1024px) {
  .main-menu-part nav a {
    font-size: 13px;
  }
}
.main-menu-part nav li {
  position: relative;
}
.main-menu-part nav li.dropdown > a:after {
  content: "";
  display: inline-block;
  vertical-align: baseline;
  height: 6px;
  width: 9px;
  margin-left: 6px;
  background: url(/cs/img/icons/arrow_small_mobile_white.svg) center center no-repeat;
  background-size: 100% auto;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .main-menu-part nav li.dropdown > a:after {
    padding-right: 5px;
    float: right;
  }
}
@media (min-width: 768px) {
  .main-menu-part nav li.dropdown li {
    text-align: right;
  }
  .main-menu-part nav li.dropdown li a {
    padding: 1em;
    font-size: 12px;
    line-height: 1em;
  }
}
.main-menu-part nav li ul {
  display: none;
  position: absolute;
  min-width: 160px;
  right: 0;
  left: initial;
  top: 100%;
  margin-top: 0;
  background-color: #fff;
  border: 1px solid #d9dcde;
  z-index: 20;
  border-radius: 0;
}
.main-menu-part nav li ul li {
  white-space: nowrap;
}
.main-menu-part nav li ul li a {
  padding: 7px 16px;
  color: #39434d;
}
.main-menu-part nav li ul li a:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: #39434d;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .main-menu-part nav li ul {
    width: 100%;
    position: static;
    float: none;
    padding: 0;
    border: none;
    box-shadow: none;
  }
  .main-menu-part nav li ul li a {
    padding-left: 54px;
  }
  .main-menu-part nav li ul li a, .main-menu-part nav li ul li a:hover {
    background: #4f5962 url("/cs/img/icons/arrow_mobile_menu.svg") 31px center no-repeat;
    background-size: 12px auto;
    color: #fff;
  }
  .main-menu-part nav li ul li a:hover {
    font-weight: 600;
  }
  .main-menu-part nav li ul li li a {
    padding-left: 64px;
  }
  .main-menu-part nav li ul li li a, .main-menu-part nav li ul li li a:hover {
    background-position-x: 41px;
  }
}
.main-menu-part .favourites {
  display: inline-block;
  position: relative;
  padding-left: 35px;
  padding-right: 16px;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .main-menu-part .favourites {
    color: #fff;
    padding-left: 65px;
    width: 100%;
  }
}
.main-menu-part .favourites .heart {
  display: block;
  position: absolute;
  top: 12px;
  left: 12px;
  width: 15px;
  height: 15px;
  background: url("/cs/img/icons/heart_mobile_gray.svg") center center no-repeat;
  background-size: 15px auto;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .main-menu-part .favourites .heart {
    left: 43px;
    top: 17px;
  }
}
.main-menu-part .favourites .heart.hovered {
  opacity: 0;
  background: url("/cs/img/icons/heart_mobile_white.svg") center center no-repeat;
}
.main-menu-part .favourites:hover {
  color: #fff;
}
.main-menu-part .favourites:hover .heart {
  opacity: 0;
}
.main-menu-part .favourites:hover .heart.hovered {
  opacity: 1;
  display: block;
}
.main-menu-part .favourites:hover div {
  opacity: 1;
}
.main-menu-part .favourites div {
  opacity: 0.8;
  transition: all 0.2s linear 0s;
  position: absolute;
  top: 4px;
  right: 3px;
  padding: 1px 5px 2px;
  background-color: #d62a3d;
  font-size: 9px;
  line-height: 1.3em;
  border-radius: 8px;
  color: #fff;
  min-width: 16px;
  text-align: center;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .main-menu-part .favourites div {
    left: 124px;
    top: 11px;
    max-width: 18px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .main-menu-part .favourites div.digits-count-2 {
    max-width: 21px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .main-menu-part .favourites div.digits-count-3 {
    max-width: 26px;
  }
}
.main-menu-part .see-saved-homes {
  padding: 16px 0 16px 43px;
  background: url("/cs/img/icons/heart_mobile_white.svg") 21px center no-repeat;
  background-size: 15px auto;
}
.main-menu-part .see-saved-homes.selected {
  background: url(/cs/img/icons/heart_selected.svg) 21px center no-repeat;
  background-size: 15px auto;
}
.main-menu-part .see-saved-homes a {
  position: relative;
  color: #fff;
}
.main-menu-part .see-saved-homes a span {
  position: absolute;
  top: -9px;
  right: -12px;
  font: 8px "Lato", Tahoma, sans-serif;
  background-color: #d62a3d;
  color: #fff;
  border-radius: 50%;
  display: inline-block;
  padding: 4px 6px;
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header--overrides-for-device {
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: fixed;
    z-index: 4;
    top: 0;
    left: 0;
  }
  .header--overrides-for-device.active, .header--overrides-for-device.active.no-search-bar, .header--overrides-for-device.active.mobile-block {
    display: block;
    z-index: 1001;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header--overrides-for-device .mobile-menu-header.mobile-block {
    display: block;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header--overrides-for-device .main-menu-part {
    color: #c1c1c1;
    overflow-y: auto;
    height: calc(100% - 70px);
    width: calc(100% - 70px);
    background-color: #39434d;
  }
  .header--overrides-for-device .main-menu-part.mobile-block {
    display: block;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header--overrides-for-device .main-menu-part .mls-access-block {
    padding: 14px 20px 15px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header--overrides-for-device .main-menu-part nav {
    display: block;
    background-color: #4b545d;
    width: 100%;
    transition: left 0.2s linear 0s;
    padding: 0;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header--overrides-for-device .main-menu-part nav .fetched-menu-wrapper > ul,
  .header--overrides-for-device .main-menu-part nav .fetched-menu-wrapper .fetched-menu {
    display: block !important;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header--overrides-for-device .main-menu-part nav a {
    padding: 15px 0 15px 44px;
    border-bottom: 1px solid #39434d;
    color: #fff;
    background: transparent url("/cs/img/icons/arrow_mobile_menu.svg") 21px center no-repeat;
    background-size: 12px auto;
  }
  .header--overrides-for-device .main-menu-part nav a:active, .header--overrides-for-device .main-menu-part nav a:hover {
    background-color: #4f5962;
    color: #fff;
    font-weight: 600;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header--overrides-for-device .main-menu-part nav li.dropdown li {
    text-align: left;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header--overrides-for-device .main-menu-part nav li ul {
    width: 100%;
    position: static;
    float: none;
    padding: 0;
    border: none;
    box-shadow: none;
  }
  .header--overrides-for-device .main-menu-part nav li ul li a {
    padding-left: 54px;
  }
  .header--overrides-for-device .main-menu-part nav li ul li a, .header--overrides-for-device .main-menu-part nav li ul li a:hover {
    background: #4f5962 url("/cs/img/icons/arrow_mobile_menu.svg") 31px center no-repeat;
    background-size: 12px auto;
    color: #fff;
  }
  .header--overrides-for-device .main-menu-part nav li ul li a:hover {
    font-weight: 600;
  }
  .header--overrides-for-device .main-menu-part nav li ul li li a {
    padding-left: 64px;
  }
  .header--overrides-for-device .main-menu-part nav li ul li li a, .header--overrides-for-device .main-menu-part nav li ul li li a:hover {
    background-position-x: 41px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header--overrides-for-device .main-menu-part .favourites {
    color: #fff;
    padding-left: 65px;
    width: 100%;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header--overrides-for-device .main-menu-part .favourites .heart {
    left: 43px;
    top: 17px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header--overrides-for-device .main-menu-part .favourites div {
    left: 124px;
    top: 11px;
    max-width: 18px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header--overrides-for-device .main-menu-part .favourites div.digits-count-2 {
    max-width: 21px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .header--overrides-for-device .main-menu-part .favourites div.digits-count-3 {
    max-width: 26px;
  }
}

.fetched-menu-wrapper .menu-item-has-children:hover > .dropdown-menu {
  display: block;
}
.search-block {
  padding: 20px;
  position: relative;
  display: flex;
  min-height: 100px;
  z-index: 15;
  background: #fff;
}
.search-block .logo {
  display: block;
  width: 228px;
  max-height: 100px;
  align-self: center;
  color: #39434d;
  text-align: center;
  text-decoration: none;
}
@media only screen and (min-width: 760px) and (max-width: 1024px) {
  .search-block .logo {
    margin: 0 auto 20px;
  }
}
@media only screen and (min-width: 1920px) {
  .search-block .logo {
    width: 280px;
  }
}
.search-block .logo img {
  max-width: 100%;
  width: auto !important;
  max-height: 100px;
  height: auto !important;
}
.search-block .logo.with-filters {
  display: none;
}
.search-block.no-search-bar {
  padding: 17px 40px 17px 45px;
  align-items: center;
}
.search-block.no-search-bar .logo, .search-block.no-search-bar .logo img {
  max-height: 90px;
}
.search-block.no-search-bar .logo {
  width: auto;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .search-block {
    display: none !important;
  }
}
@media only screen and (min-width: 760px) and (max-width: 1024px) {
  .search-block {
    display: block;
  }
}
.search-block .search-replaced-menu {
  position: relative;
}
@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .search-block .search-replaced-menu {
    top: 0;
  }
}
.search-block .search-replaced-menu nav {
  padding: 0 4px;
  display: flex;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .search-block .search-replaced-menu nav {
    display: block;
    background-color: #4b545d;
    width: 100%;
    transition: left 0.2s linear 0s;
    padding: 0;
  }
}
.search-block .search-replaced-menu nav ul {
  margin: 0;
}
.search-block .search-replaced-menu nav a {
  display: block;
  padding: 10px 20px;
  color: #000;
  transition: all 0.2s linear 0s;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.search-block .search-replaced-menu nav a:hover, .search-block .search-replaced-menu nav a:focus {
  color: #39434d;
  text-decoration: none;
}
.search-block .search-replaced-menu nav li {
  position: relative;
}
@media (min-width: 768px) {
  .search-block .search-replaced-menu nav li.dropdown li {
    text-align: right;
  }
  .search-block .search-replaced-menu nav li.dropdown li a {
    padding: 1em;
    font-size: 12px;
    line-height: 1em;
  }
}
.search-block .search-replaced-menu nav li ul {
  display: none;
  position: absolute;
  min-width: 160px;
  right: 0;
  left: initial;
  top: 100%;
  margin-top: 0;
  background-color: #fff;
  border: 1px solid #d9dcde;
  z-index: 20;
  border-radius: 0;
}
.search-block .search-replaced-menu nav li ul li {
  white-space: nowrap;
}
.search-block .search-replaced-menu nav li ul li a {
  padding: 7px 16px;
  color: #39434d;
}
.search-block .search-replaced-menu nav li ul li a:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: #39434d;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .search-block .search-replaced-menu nav li ul {
    width: 100%;
    position: static;
    float: none;
    padding: 0;
    border: none;
    box-shadow: none;
  }
  .search-block .search-replaced-menu nav li ul li a {
    padding-left: 54px;
    background: #4f5962 url("/cs/img/icons/arrow_mobile_menu.svg") 31px center no-repeat;
    color: #fff;
    background-size: 12px auto;
  }
  .search-block .search-replaced-menu nav li ul li a:hover {
    background: #4f5962 url("/cs/img/icons/arrow_mobile_menu.svg") 31px center no-repeat;
    font-weight: 600;
    color: #fff;
    background-size: 12px auto;
  }
}
.search-block .search-replaced-menu .favourites {
  color: #4b545d;
  display: inline-block;
  position: relative;
  padding-left: 35px;
}
.search-block .search-replaced-menu .favourites .heart {
  display: block;
  position: absolute;
  top: 12px;
  left: 12px;
  width: 15px;
  height: 15px;
  background: url("/cs/img/icons/heart_mobile.svg") center center no-repeat;
  background-size: 15px auto;
}
.search-block .search-replaced-menu .favourites .heart.hovered {
  opacity: 0;
  background: url("/cs/img/icons/heart_mobile.svg") center center no-repeat;
}
.search-block .search-replaced-menu .favourites:hover {
  color: #39434d;
}
.search-block .search-replaced-menu .favourites:hover .heart {
  opacity: 0;
}
.search-block .search-replaced-menu .favourites:hover .heart.hovered {
  opacity: 1;
  display: block;
}
.search-block .search-replaced-menu .favourites:hover div {
  opacity: 1;
}
.search-block .search-replaced-menu .favourites div {
  opacity: 0.8;
  transition: all 0.2s linear 0s;
  position: absolute;
  top: 4px;
  right: 3px;
  padding: 1px 5px 2px;
  background-color: #d62a3d;
  font-size: 9px;
  border-radius: 8px;
  color: #fff;
  min-width: 16px;
  text-align: center;
}
.search-block .search {
  width: 100%;
  align-self: center;
}
@media only screen and (min-width: 760px) and (max-width: 1024px) {
  .search-block .search-filters-wrap {
    max-width: none;
  }
}
.search-block .search-filters-wrap .mls-access {
  text-align: center;
  width: 186px;
  background-color: #d62a3d;
  border-radius: 2px;
  color: #fff;
  padding: 13px 0 13px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
@media only screen and (min-width: 1920px) {
  .search-block .search-filters-wrap .mls-access {
    width: 200px;
    padding: 18px 0 17px;
  }
}
.search-block .search-box {
  margin: 0 0 0 40px;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
}
@media only screen and (min-width: 760px) and (max-width: 1024px) {
  .search-block .search-box {
    margin: 0;
  }
}
.search-block .search-box__back-button {
  position: absolute;
  bottom: -22px;
  right: 0;
  cursor: pointer;
}
.search-block .search-box__back-button:hover {
  text-decoration: underline;
}
.search-block .search-box .search-bar {
  border: 2px solid #3c8dbc;
  border-radius: 3px;
}
.search-block .search-box .search-bar input[type=text] {
  display: block;
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 3px;
  padding: 0 20px;
}
@media only screen and (min-width: 1920px) {
  .search-block .search-box .search-bar input[type=text] {
    height: 56px;
  }
}
.search-block .search-box .search-bar .search-header-input-block {
  height: 46px;
}
@media only screen and (min-width: 1920px) {
  .search-block .search-box .search-bar .search-header-input-block {
    height: 56px;
  }
}
.search-block .search-box .search-bar .search-header-input-block .react-autosuggest__container {
  position: relative;
}
.search-block .search-box .search-bar .search-header-input-block .react-autosuggest__suggestions-container {
  overflow: hidden;
  overflow-y: auto;
}
.search-block .search-box .search-bar .search-header-input-block .react-autosuggest__input {
  font-size: 14px;
  color: #39434d;
  display: block;
  width: 100%;
  height: 46px;
  border: none;
  padding: 0 20px;
}
@media only screen and (min-width: 1920px) {
  .search-block .search-box .search-bar .search-header-input-block .react-autosuggest__input {
    height: 56px;
  }
}
.search-block .search-box .search-bar .search-header-input-block .react-autosuggest__input::-webkit-input-placeholder, .search-block .search-box .search-bar .search-header-input-block .react-autosuggest__input::-moz-placeholder, .search-block .search-box .search-bar .search-header-input-block .react-autosuggest__input:-moz-placeholder, .search-block .search-box .search-bar .search-header-input-block .react-autosuggest__input:-ms-input-placeholder {
  color: #828a93;
}
.search-block .search-box .search-bar .search-header-input-block .react-autosuggest__input--focused {
  outline: none;
}
.search-block .search-box .search-bar .search-header-input-block .react-autosuggest__suggestions-container {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  color: #39434d;
  max-height: 65vh;
  border: 1px solid #d9dcde;
  background-color: #fff;
  font-weight: 300;
  font-size: 16px;
  z-index: 1001;
  border-top: none;
  box-sizing: content-box;
  width: 100%;
  left: -1px;
}
.search-block .search-box .search-bar .search-header-input-block .react-autosuggest__suggestions-container--open {
  display: block;
}
.search-block .search-box .search-bar .search-header-input-block .react-autosuggest__suggestions-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.search-block .search-box .search-bar .search-header-input-block .react-autosuggest__suggestion {
  cursor: pointer;
  padding: 9px 20px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
}
.search-block .search-box .search-bar .search-header-input-block .react-autosuggest__suggestion--highlighted {
  background-color: #d8e8f2;
}
.search-block .search-box .search-bar .search-header-input-block .react-autosuggest__section-container {
  border-top: 1px solid #d9dcde;
  padding: 8px 0;
}
.search-block .search-box .search-bar .search-header-input-block .react-autosuggest__section-container:first-of-type {
  border-top: none;
}
.search-block .search-box .search-bar .search-header-input-block .react-autosuggest__section-title {
  padding: 9px 20px;
  font-size: 16px;
  font-weight: 600;
}
.search-block .search-box .search-bar .search-header-block {
  position: relative;
  border-left: 1px solid #d9dcde;
  font-size: 14px;
  color: #39434d;
  cursor: pointer;
}
.search-block .search-box .search-bar .search-header-block.search-button {
  position: relative;
  background: #3c8dbc url("/cs/img/icons/search.svg") center center no-repeat;
  background-size: 17px auto;
  border-left: none;
  width: auto;
  padding: 0 33px 0 15px;
  cursor: pointer;
}
.search-block .search-box .search-bar .search-header-block.search-button a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.search-block .search-box .search-bar .search-header-block > div {
  justify-content: space-between;
  padding: 0 15px;
  line-height: 1;
}
.search-block .search-box .search-bar .search-header-block > div:first-of-type {
  white-space: nowrap;
  min-width: 100px;
}
.search-block .search-box .search-bar .search-header-block > div > span {
  height: 8px;
  width: 12px;
  background: url("/cs/img/icons/arrow_small_mobile.svg") center center no-repeat;
  background-size: 100% auto;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list {
  position: absolute;
  top: calc(100% + 2px);
  left: -1px;
  padding: 5px 0;
  background-color: #fff;
  z-index: 1001;
  border: 1px solid #d9dcde;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.multi-select-filter-block {
  width: 494px;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.multi-select-filter-block h4 {
  color: #39434d;
  font-size: 18px;
  padding: 0 10px;
  text-transform: capitalize;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.multi-select-filter-block .filter-item {
  width: 246px;
  cursor: pointer;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.multi-select-filter-block .filter-item:hover {
  background-color: #d8e8f2;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.multi-select-filter-block .filter-item label {
  font-size: 14px;
  font-weight: normal;
  padding: 7px 12px;
  white-space: nowrap;
  margin-bottom: 0;
  cursor: pointer;
  text-transform: capitalize;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.multi-select-filter-block .filter-item label .custom-checkbox {
  margin-right: 8px;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.price-block {
  padding-bottom: 10px;
  min-width: 294px;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.price-block .inputs {
  padding: 20px 20px 10px;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.price-block .inputs > div:first-of-type input {
  margin-right: 20px;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.price-block input {
  font-size: 14px;
  padding: 12px 20px;
  width: 116px;
  border: 2px solid #d9dcde;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.price-block input:focus {
  outline: 2px solid #3c8dbc;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.price-block .prices {
  width: 100%;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.price-block .prices ul {
  margin-bottom: 0;
  max-height: 300px;
  overflow-y: auto;
  list-style: none;
  padding: 0;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.price-block .prices li {
  padding: 8px 20px 8px;
  cursor: pointer;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.price-block .prices li:hover {
  background-color: #d8e8f2;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.radio-button-block {
  padding: 13px 0;
  min-width: 88px;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.radio-button-block label {
  margin-bottom: 0;
  padding: 7px 20px;
  font-size: 14px;
  font-weight: normal;
  cursor: pointer;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.radio-button-block label:hover {
  background-color: #d8e8f2;
}
.search-block .search-box .search-bar .search-header-block .filter-values-list.radio-button-block label .custom-radio {
  margin-right: 6px;
}
.search-block .search-box .search-bar__loading-spinner-wrapper {
  width: 48px;
  display: flex;
  position: relative;
}
.search-block .search-box .search-bar__loading-spinner {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
}
.search-block .advanced-filters-block {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #fff;
  z-index: 10;
}
.search-block .advanced-filters-block .filters-inner-block {
  padding: 0 50px 20px 50px;
  overflow-y: auto;
  height: calc(100vh - 39px - 100px - 96px);
}
@media only screen and (min-width: 760px) and (max-width: 1024px) {
  .search-block .advanced-filters-block .filters-inner-block > div {
    flex-wrap: wrap;
  }
}
.search-block .advanced-filters-block .filters-inner-block .section-dropdowns {
  justify-content: space-between;
  flex-wrap: wrap;
}
.search-block .advanced-filters-block .filters-inner-block .dropdown-block {
  width: 30%;
  flex-shrink: 1;
  flex-grow: 0;
}
.search-block .advanced-filters-block .filters-inner-block .dropdown-block .dropdown-group, .search-block .advanced-filters-block .filters-inner-block .dropdown-block .checkbox-group {
  margin-bottom: 20px;
}
.search-block .advanced-filters-block .filters-inner-block .dropdown-block h4 {
  color: #39434d;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
  margin-top: 0;
  padding: 0;
}
.search-block .advanced-filters-block .filters-inner-block .dropdown-block .dropdown-wrapper {
  width: calc(50% - 10px);
}
.search-block .advanced-filters-block .filters-inner-block .dropdown-block .dropdown-wrapper.single {
  width: 100%;
}
.search-block .advanced-filters-block .filters-inner-block .dropdown-block .dropdown-wrapper-hr {
  width: 20px;
  padding: 5px 2px;
}
.search-block .advanced-filters-block .filters-inner-block .dropdown-block .dropdown-wrapper-hr hr {
  border-top: 2px solid #d9dcde;
  margin-top: 20px;
  margin-bottom: 20px;
}
.search-block .advanced-filters-block .filters-inner-block .dropdown-block .checkbox-group {
  padding: 13px 50px;
  border: 2px solid #d9dcde;
  position: relative;
  display: block;
  background-color: #ebebeb;
  background-position: 17px center;
  background-repeat: no-repeat;
  cursor: pointer;
}
.search-block .advanced-filters-block .filters-inner-block .dropdown-block .checkbox-group.has-photo {
  background-image: url("/cs/img/icons/has_photo.svg");
  background-size: auto 16px;
}
.search-block .advanced-filters-block .filters-inner-block .dropdown-block .checkbox-group.open-house {
  background-size: auto 18px;
  background-image: url("/cs/img/icons/open_house.svg");
}
.search-block .advanced-filters-block .filters-inner-block .dropdown-block .checkbox-group .custom-checkbox {
  position: absolute;
  top: 15px;
  right: 23px;
  border: 2px solid #d9dcde;
}
.search-block .advanced-filters-block .filters-inner-block .dropdown-block .checkbox-group.active {
  color: #3c8dbc;
}
.search-block .advanced-filters-block .filters-inner-block .dropdown-block .checkbox-group.active.has-photo {
  background-image: url("/cs/img/icons/has_photo_active.svg");
}
.search-block .advanced-filters-block .filters-inner-block .dropdown-block .checkbox-group.active.open-house {
  background-image: url("/cs/img/icons/open_house_active.svg");
}
.search-block .advanced-filters-block .filters-inner-block .dropdown-block .checkbox-group.active .custom-checkbox {
  border: 2px solid #3c8dbc;
}
.search-block .advanced-filters-block .filters-inner-block .filter-groups {
  margin-top: 6px;
}
.search-block .advanced-filters-block .filters-inner-block .filter-groups .group {
  border-top: 1px solid #d9dcde;
  padding: 10px 0 5px;
  user-select: none;
}
.search-block .advanced-filters-block .filters-inner-block .filter-groups .group h4 {
  position: relative;
  padding: 10px 0 12px;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #39434d;
  cursor: pointer;
  text-transform: capitalize;
}
.search-block .advanced-filters-block .filters-inner-block .filter-groups .group h4 .toggle-icon {
  position: absolute;
  top: 2px;
  right: 0;
  height: 26px;
  width: 26px;
}
.search-block .advanced-filters-block .filters-inner-block .filter-groups .group h4 .toggle-icon.plus {
  background: url("/cs/img/icons/plus.svg") center center no-repeat;
  background-size: 100% auto;
}
.search-block .advanced-filters-block .filters-inner-block .filter-groups .group h4 .toggle-icon.minus {
  background: url("/cs/img/icons/minus.svg") center center no-repeat;
  background-size: 100% auto;
}
.search-block .advanced-filters-block .filters-inner-block .filter-groups .group .group-body {
  margin: 0 0 10px 0;
}
.search-block .advanced-filters-block .filters-inner-block .filter-groups .group .group-body label {
  font-size: 15px;
  font-weight: normal;
  width: 25%;
  margin-bottom: 12px;
  text-transform: capitalize;
}
@media only screen and (min-width: 760px) and (max-width: 1024px) {
  .search-block .advanced-filters-block .filters-inner-block .filter-groups .group .group-body label {
    width: 33%;
  }
}
.search-block .advanced-filters-block .filters-inner-block .filter-groups .group .group-body label .custom-checkbox {
  margin-right: 7px;
}
.search-block .advanced-filters-block .bottom-panel {
  background-color: #f3f4f5;
  padding: 21px 50px;
  border-top: 1px solid #d9dcde;
}
.search-block .advanced-filters-block .bottom-panel h3 {
  font-size: 22px;
  font-weight: lighter;
  padding: 12px 21px;
  margin: 0;
}
.search-block .advanced-filters-block .bottom-panel__button {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  width: 158px;
  margin-left: 20px;
  text-transform: uppercase;
}
.search-block .advanced-filters-block .bottom-panel__button.cs-button-blue {
  padding: 15px 0;
}
.search-block .advanced-filters-block .bottom-panel__button-inner {
  display: block;
  width: 100%;
  padding: 17px 0;
  color: #fff;
}
.search-block.with-filters .search-box {
  margin: 0 30px;
}
.search-block.with-filters .selected-filters {
  margin: 0 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #d9dcde;
}
.search-block.with-filters .search-filters-wrap {
  max-width: none;
}
.search-block.with-filters .search-filters-wrap .mls-access {
  display: none;
}
.search-block .selected-filters {
  width: calc(100% - 190px);
}

.search-mobile-block {
  display: none;
  padding: 26px;
  position: relative;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.8);
}
.search-mobile-block_properties {
  padding: 0;
}
.search-mobile-block .logo {
  width: 228px;
  color: #39434d;
  display: inline-block;
  text-decoration: none;
}
.search-mobile-block .logo img {
  max-width: 100%;
  max-height: 70px;
}
.search-mobile-block .menu-icon {
  position: absolute;
  width: 17px;
  height: 12px;
  top: calc(50% - 6px);
  left: 20px;
  background: url("/cs/img/icons/menu.svg") center center no-repeat;
  background-size: 100% auto;
}
.search-mobile-block .menu-icon_properties {
  top: 18px;
  left: 15px;
  z-index: 2;
}
.search-mobile-block .favourites-icon {
  position: absolute;
  width: 19px;
  height: 17px;
  top: calc(50% - 8px);
  right: 20px;
  background: url("/cs/img/icons/heart.svg") center center no-repeat;
  background-size: 100% auto;
}
.search-mobile-block .favourites-icon span {
  position: absolute;
  top: -10px;
  right: -8px;
  background-color: #d62a3d;
  color: #fff;
  border-radius: 7px;
  line-height: 1;
  font-size: 9px;
  padding: 3px 4px;
  min-width: 15px;
  text-align: center;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .search-mobile-block {
    display: block;
  }
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .cs-footer-wrapper {
    position: relative;
  }
}

@media only screen and (min-width: 320px) and (max-width: 1024px) {
  .cs-footer {
    position: absolute;
    width: 100%;
    height: 100%;
  }
}

.estimate {
  color: #fff;
  background: rgba(0, 0, 0, 0.75);
  max-width: 500px;
  margin: 0.53em auto;
  padding: 25px;
  border: 1px solid rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  position: relative;
}
.estimate.short-mode {
  color: black;
  background: white;
  max-width: none;
  margin: 0;
  border: none;
  border-radius: 0;
}
.estimate.short-mode .estimate__header {
  color: black;
}
.estimate.short-mode .estimate__description {
  color: black;
}
.estimate__suggestions {
  position: absolute;
  background-color: #fff;
  width: 100%;
  color: #222;
  list-style: none !important;
  margin-top: -0.5em;
  margin-left: 0;
  margin-right: 0;
  padding: 0.5em 0 !important;
  border: 1px solid #d9dcde;
}
.estimate__suggestions .estimate__suggestions-selection {
  padding: 9px 20px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  width: 100%;
}
.estimate__suggestions .estimate__suggestions-selection:hover {
  background-color: #d8e8f2;
}
.estimate__suggestions-selection {
  cursor: pointer;
}
.estimate__loading {
  display: none;
  position: relative;
  height: 120px;
}
.estimate__loading::before {
  background: none;
}
.estimate__loading:after {
  content: "";
  z-index: 100;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
  width: 120px;
  height: 120px;
  background: url("http://crm.greatagentusa.com/img/spinner.svg") no-repeat;
}
.estimate .button {
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  height: 48px;
  display: block;
  width: 100%;
  border: none;
  cursor: pointer;
  background-color: #ec4246;
  border-radius: 3px;
}
.estimate .button:focus {
  outline: none;
}
.estimate input {
  display: block;
  border: 1px solid #222;
  line-height: 48px;
  height: 48px;
  padding: 0 10px;
  margin-bottom: 0.5em;
  outline: none;
  width: 100%;
  color: #222;
}
.estimate input.wrong-input {
  border: 1px solid red;
}
.estimate label {
  font-weight: normal;
}
.estimate #step-two, .estimate #step-one, .estimate #success {
  display: none;
}
.estimate__highlight {
  font-weight: 700;
  white-space: nowrap;
}
.estimate__header {
  font-size: 27px;
  font-weight: 500;
  text-align: center;
  color: #fff;
}
.estimate__close-icon {
  position: absolute;
  padding: 15px 20px 15px 20px;
  font-size: 18px;
  right: 0;
  top: -3px;
  z-index: 1;
}
.estimate__description {
  font-size: 15px;
  text-align: center;
  color: #fff;
}
.estimate .address-error {
  text-align: center;
  margin: 0 0 0.5em 0;
  padding: 3px;
  border-radius: 10px;
}
.estimate__controls {
  width: 80%;
  margin: 0 auto;
  padding-top: 25px;
  position: relative;
}
.estimate a, .estimate a:hover {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .estimate .estimate__controls {
    width: 100%;
  }
  .estimate .estimate {
    width: 95%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .estimate .estimate .button {
    font-size: 14px;
  }
  .estimate .estimate .button:hover {
    box-shadow: 0 0 9px 1px rgba(0, 0, 0, 0.2);
  }
  .estimate .estimate__controls {
    display: block;
  }
}

.estimate {
  color: #fff;
  position: relative;
  max-width: 500px;
  padding: 40px 25px;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 10px;
  margin: 15vh auto;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .estimate {
    width: 95%;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .estimate.short-mode {
    width: 100%;
  }
}
.estimate--compact {
  padding: 0;
  margin: 0;
  background: inherit;
  border: none;
  max-width: 500px;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .estimate--compact {
    width: 100%;
  }
}
.estimate--compact .estimate__header, .estimate--compact .estimate__description {
  display: none;
}
.estimate--compact .estimate__controls {
  margin-left: 0;
  padding-top: 20px;
  width: 100%;
}
.estimate--compact .estimate__congratulation {
  padding-top: 20px;
}

.pac-container {
  z-index: 1003;
}

#main-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100vh;
  width: auto;
  height: auto;
  z-index: -1;
  background-position: center center;
  transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

#main-video::-webkit-media-controls {
  display: none;
}

.home-intro {
  color: white;
  text-align: center;
  width: 100%;
  text-shadow: 1px 1px 2px #000;
  margin-top: 15vh;
  padding: 0 5px;
}
.home-intro h1 {
  font-size: 60px;
  font-weight: 900;
}
@media (max-width: 768px) {
  .home-intro h1 {
    font-size: 40px;
  }
}
.home-intro .subline {
  font-size: 18px;
}
@media (max-width: 768px) {
  .home-intro .subline {
    font-size: 14px;
  }
}

.company-banner {
  display: flex;
  width: 100%;
  flex-direction: row;
  background-color: rgba(255, 255, 255, 0.8);
  align-items: center;
}
.company-banner__logo {
  justify-content: left;
  text-align: left;
  flex-grow: 1;
  padding: 1em;
  flex-shrink: 1;
}
@media (max-width: 768px) {
  .company-banner__logo {
    display: none;
  }
}
.company-banner__logo a {
  display: block;
  width: 228px;
  max-height: 100%;
}
@media only screen and (min-width: 1920px) {
  .company-banner__logo a {
    width: 280px;
  }
}
.company-banner__logo img {
  max-width: 100%;
  width: auto !important;
  max-height: 100px;
  height: auto !important;
}
.company-banner__menu nav {
  padding: 20px 0;
  display: flex;
  justify-content: center;
  margin-right: 1em;
}
.company-banner__menu nav ul {
  justify-content: center !important;
  margin-bottom: 0;
  top: calc(100% + 5px);
}
.company-banner__menu nav ul .dropdown-menu {
  padding-bottom: 0;
  right: 0;
  left: initial;
}
.company-banner__menu nav ul .dropdown-menu::before, .company-banner__menu nav ul .dropdown-menu::after {
  content: "";
  display: block;
  position: absolute;
  right: 1em;
  border: 8px solid transparent;
}
.company-banner__menu nav ul .dropdown-menu::before {
  top: -16px;
  border-bottom-color: rgba(0, 0, 0, 0.15);
}
.company-banner__menu nav ul .dropdown-menu::after {
  top: -15px;
  border-bottom-color: #fff;
}
.company-banner__menu nav ul .dropdown-menu a:hover {
  border-radius: 4px;
}
.company-banner__menu nav ul > li {
  font-weight: bold;
}
.company-banner__menu nav ul li {
  margin: 0 25px;
}
.company-banner__menu nav ul li .dropdown-menu li {
  margin: 0;
}
.company-banner__menu nav a {
  color: #39434d;
  font-size: 14px;
}
.company-banner__menu .menu-item {
  font-weight: bold;
  margin-left: 25px;
}
@media (max-width: 960px) {
  .company-banner__menu nav ul li {
    margin: 0 10px;
  }
  .company-banner__menu .menu-item {
    margin-left: 10px;
  }
}
.company-banner__menu .fetched-menu-wrapper .menu-item-has-children:hover::before {
  content: "";
  display: block;
  position: absolute;
  height: 10px;
  width: 150%;
  top: 100%;
  right: 0;
}
.company-banner__menu .fetched-menu-wrapper .menu-item > .dropdown-menu > .menu-item-has-children:hover::before {
  display: none;
}
.company-banner__menu .fetched-menu-wrapper .menu-item > .dropdown-menu > .menu-item-has-children:hover > .dropdown-menu {
  top: 100%;
  margin: -1px 0 0 -1px;
  padding-top: 0;
}
.company-banner__menu .fetched-menu-wrapper .menu-item > .dropdown-menu > .menu-item-has-children:hover > .dropdown-menu::before, .company-banner__menu .fetched-menu-wrapper .menu-item > .dropdown-menu > .menu-item-has-children:hover > .dropdown-menu::after {
  display: none;
}

.home-search {
  margin-top: 2em;
  margin-bottom: 30vh;
}
.home-search .search-block .search-filters-wrap {
  max-width: initial;
  width: 100%;
}
.home-search .selected-filters {
  margin: 0 0.5em;
}
@media only screen and (max-width: 1024px) and (min-width: 320px) {
  .home-search .selected-filters {
    margin: 0 0.5em;
  }
}
.home-search .search-box {
  margin: 0 0.5em;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  padding: 5px;
}
.home-search .search-block {
  margin: 0 auto;
  padding: 0;
  width: 700px;
  flex-direction: column;
  align-items: center;
  background: none;
}
@media only screen and (max-width: 759px) and (min-width: 320px) {
  .home-search .search-block {
    display: block !important;
    width: 100% !important;
  }
}
.home-search .advanced-filters-block {
  position: relative;
  width: 100%;
}
.home-search .mobile-filters-wrapper {
  display: none;
}
@media (max-width: 768px) {
  .home-search .mobile-filters-wrapper {
    display: block;
  }
}
.home-search .search-box .search-bar {
  border-right: 2px solid #3c8dbc;
  border-top: none;
  border-left: none;
  border-bottom: none;
}
.home-search .search-box .search-bar .search-header-input-block .react-autosuggest__input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.home-search--compact {
  margin-top: 40px;
  margin-bottom: 8px;
}
.home-search--compact .page-inner {
  padding: 0;
}
.home-search--compact .search-block {
  margin-left: 0;
  width: 500px;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .home-search--compact .search-block {
    width: 100%;
  }
}
.home-search--compact .search-box {
  margin: 0;
}

.seller-focused-home-main__wrapper {
  width: 80%;
  max-width: 1260px;
  margin: 15vh auto;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .seller-focused-home-main__wrapper {
    width: 100%;
    margin: 5vh 0;
  }
}
.seller-focused-home-main {
  box-sizing: content-box;
  width: 500px;
  padding: 50px 60px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .seller-focused-home-main {
    box-sizing: border-box;
    width: 100%;
    padding: 50px 20px;
  }
}
.seller-focused-home-main .home-intro {
  text-align: left;
  text-shadow: none;
  padding: 0;
  margin-top: 0;
}
.seller-focused-home-main .home-intro h3 {
  margin-top: 0;
  color: white;
  font-weight: bold;
}
.seller-focused-home-main .seller-focused-home-tabs__tab {
  font-size: 16px;
  margin-right: 35px;
  user-select: none;
}
.seller-focused-home-main .seller-focused-home-tabs__tab--active {
  font-weight: bold;
  border-bottom: 3px solid;
}

.property-price-questions {
  width: 50%;
  min-width: 360px;
  max-width: 600px;
  margin: 10% auto 0;
  background: #fff;
}
.property-price-questions__title {
  font-size: 15px;
  margin: 10px 0 0;
}
.property-price-questions__q {
  max-height: calc(100vh - 50px);
  padding: 26px 20px 15px;
}
.property-price-questions__q-text {
  margin: 0 0 26px;
  font-size: 20px;
  text-align: center;
  line-height: 26px;
  color: #39434d;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .property-price-questions__q-text {
    display: block;
  }
}
.property-price-questions__answer-list {
  overflow: auto;
  padding-right: 10px;
}
.property-price-questions__answer-button {
  margin-bottom: 15px;
  line-height: 18px;
  padding: 14px 5px;
  color: #fff;
  font-weight: 600;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .property-price-questions__answer-button {
    padding: 19px 5px;
  }
}
.property-price-questions__input {
  margin-bottom: 10px;
}

.property-price-header {
  position: relative;
}
.property-price-header__back-img {
  width: 20px;
  height: auto;
  margin-right: 6px;
}
.property-price-header__address {
  font-size: 14px;
  line-height: 1;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.property-price-no-results {
  text-align: center;
}
.property-price-no-results.property-price-section {
  margin-top: 100px;
}
.property-price-no-results__title {
  font-size: 22px;
  line-height: 1.4;
  margin: 0;
}
.property-price-no-results__tip {
  font-size: 16px;
  line-height: 1.4;
  margin: 50px 0 0;
}

@media only screen and (min-width: 320px) and (max-width: 759px) {
  .property-price-step2 {
    padding: 0 20px;
  }
}

.property-price-estimate__header {
  padding: 25px 40px 35px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  color: #fff;
}
.property-price-estimate__header--mobile {
  padding-left: 20px;
  padding-right: 20px;
}
.property-price-estimate__body {
  padding: 32px 40px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.028) 0px 0.4px 1.2px, rgba(0, 0, 0, 0.04) 0px 1.3px 4px, rgba(0, 0, 0, 0.07) 0px 6px 18px;
}
.property-price-estimate__body--mobile {
  padding: 16px 20px;
}
.property-price-estimate__header-title {
  margin: 0 0 20px 0;
  font-size: 21px;
}
.property-price-estimate__value {
  margin: 0;
  color: #fff;
  font-size: 46px;
}
.property-price-estimate__header-button-wrapper {
  margin-left: 32px;
}
.property-price-estimate__header-button-wrapper--mobile {
  margin-left: 0;
  margin-top: 15px;
}
.property-price-estimate__header-button {
  height: 36px;
  display: inline-block;
  border: none;
  cursor: pointer;
  background-color: #ec4246;
  border-radius: 3px;
  padding: 0 12px;
}
.property-price-estimate__header-tip {
  margin-left: 16px;
}
.property-price-estimate__header-tip--mobile {
  margin-left: 0;
  margin-top: 15px;
}
.property-price-estimate__popup-content {
  margin: 0;
  font-size: 14px;
  font-weight: normal;
  line-height: 1.2;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .property-price-estimate__popup-content {
    max-width: 320px;
  }
  .property-price-estimate__popup-content--smaller {
    max-width: 250px;
  }
}
.property-price-estimate__bar {
  color: #fff;
  padding: 7px 16px;
  border-radius: 24px;
  margin-bottom: 10px;
  width: 100%;
}
.property-price-estimate__bar--85p {
  width: 85%;
}
.property-price-estimate__bar--70p {
  width: 70%;
}
.property-price-estimate__detail {
  margin-right: 28px;
  font-size: 16px;
}
.property-price-estimate__detail--mobile {
  margin-bottom: 10px;
}
.property-price-estimate__edit-link {
  font-size: 16px;
}
.property-price-estimate__edit-link--mobile {
  margin-bottom: 10px;
}

.property-price-section {
  max-width: 1000px;
  margin: 25px auto 0;
  padding: 0;
}

.property-price-heading__title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0 0 5px 0;
}
.property-price-heading__tip {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  color: #696969;
}

.property-price-map.map-block {
  margin-top: 25px;
}

.property-price-properties {
  margin-left: -20px;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .property-price-properties {
    margin-left: -10px;
  }
}
@media (min-width: 1319px) {
  .property-price-properties .property {
    width: 33.333%;
  }
}

.property-price-cta {
  margin: 15px 0 25px;
}
.property-price-cta__button {
  font-size: 15px;
  height: 40px;
  width: 150px;
  display: inline-block;
  vertical-align: middle;
  border: none;
  cursor: pointer;
  background-color: #ec4246;
  border-radius: 3px;
  padding: 0 12px;
  color: #fff;
}

.property-price-screen {
  width: 100%;
  max-width: 1920px;
}

.estimate-screen {
  margin: 0 auto;
  height: 95vh;
}
@media only screen and (max-width: 850px), (orientation: landscape) and (max-width: 1025px) {
  .estimate-screen {
    height: unset;
    min-height: 700px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .estimate-screen {
    min-height: 600px;
  }
}
@media only screen and (max-width: 600px) {
  .estimate-screen {
    min-height: unset;
  }
}
.estimate-screen__wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media only screen and (max-width: 1340px) {
  .estimate-screen__wrapper {
    justify-content: flex-start;
  }
}
.estimate-screen__wrapper::before, .estimate-screen__wrapper::after {
  display: none;
  content: "";
  position: absolute;
}
@media only screen and (min-width: 1921px) {
  .estimate-screen__wrapper::before, .estimate-screen__wrapper::after {
    width: calc((100vw - 1920px) / 2);
    display: block;
  }
}
.estimate-screen__wrapper::before {
  left: calc(0px - (100vw - 1920px) / 2);
  top: 318px;
  height: 122px;
  background: #228be7;
}
.estimate-screen__wrapper::after {
  right: calc(0px - (100vw - 1920px) / 2);
  top: 43px;
  height: 121px;
  background: #f9df5e;
}
.estimate-screen__bg {
  position: absolute;
  background-image: url(/cs/img/property-price-above-fold.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 825px;
  z-index: -1;
  top: -50px;
}
@media only screen and (max-width: 1190px) {
  .estimate-screen__bg {
    left: 100px;
  }
}
@media only screen and (max-width: 970px) {
  .estimate-screen__bg {
    top: -30px;
    left: 5%;
    margin-left: 25%;
    width: 75%;
  }
}
@media only screen and (max-width: 850px), (orientation: landscape) and (max-width: 1025px) {
  .estimate-screen__bg {
    top: -150px;
    left: 0;
    margin-left: 0;
    width: 100%;
    height: 600px;
  }
}
@media only screen and (max-width: 600px) {
  .estimate-screen__bg {
    display: none;
  }
}
.estimate-screen__line {
  display: none;
  position: absolute;
  background: #228be7;
  top: 339px;
  width: 100px;
  height: 65px;
}
@media only screen and (max-width: 1190px) {
  .estimate-screen__line {
    display: inherit;
  }
}
@media only screen and (max-width: 970px) {
  .estimate-screen__line {
    top: 378px;
    width: 30%;
    height: 38px;
  }
}
@media only screen and (max-width: 850px), (orientation: landscape) and (max-width: 1025px) {
  .estimate-screen__line {
    display: none;
  }
}
.estimate-screen .estimate-screen-form {
  margin: 0;
  width: 600px;
  position: relative;
  top: 100px;
  right: 400px;
}
@media only screen and (max-width: 1460px) {
  .estimate-screen .estimate-screen-form {
    right: 350px;
  }
}
@media only screen and (max-width: 1340px) {
  .estimate-screen .estimate-screen-form {
    right: 0;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 850px), (orientation: landscape) and (max-width: 1025px) {
  .estimate-screen .estimate-screen-form {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
    top: 50px;
  }
}
@media only screen and (max-width: 600px) {
  .estimate-screen .estimate-screen-form {
    top: 0;
    padding-top: 20px;
  }
}
.estimate-screen .estimate-screen-form .estimate {
  border: 2px solid #E8E9E9;
  border-radius: 8px;
  padding: 28px 32px 16px 32px;
  background: #fff;
}
@media only screen and (max-width: 850px), (orientation: landscape) and (max-width: 1025px) {
  .estimate-screen .estimate-screen-form .estimate {
    max-width: unset;
    width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .estimate-screen .estimate-screen-form .estimate {
    padding: 14px 16px 8px 16px;
  }
}
.estimate-screen .estimate-screen-form .estimate__controls {
  padding-top: 0;
}
.estimate-screen .estimate-screen-form .estimate__controls label {
  color: #050e3d;
}
.estimate-screen .estimate-screen-form .estimate__controls button {
  margin-top: 25px;
}
.estimate-screen .estimate-screen-form__title {
  text-transform: uppercase;
  color: #050e3d;
  font-weight: bold;
  font-size: 48px;
  margin: 0 0 50px;
  word-spacing: 5px;
  line-height: 1;
}
@media only screen and (max-width: 850px), (orientation: landscape) and (max-width: 1025px) {
  .estimate-screen .estimate-screen-form__title {
    font-size: 32px;
    width: 360px;
    margin-bottom: 160px;
  }
}
@media only screen and (max-width: 600px) {
  .estimate-screen .estimate-screen-form__title {
    width: 100%;
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 10px;
    text-align: center;
  }
}
.estimate-screen .estimate-screen-form__tip {
  margin: 40px 0 0;
  color: #828a93;
  font-size: 10px;
}
.estimate-screen .estimate-screen-form__mobile-img {
  width: calc(100% + 40px); /* padding from form */
  height: auto;
  margin: 0 0 0 -20px;
  display: none;
}
@media only screen and (max-width: 600px) {
  .estimate-screen .estimate-screen-form__mobile-img {
    display: block;
  }
}

.hero-screen {
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1250px;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .hero-screen {
    margin-top: 50px;
  }
}
.hero-screen__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.explanation-screen {
  padding: 0 25px;
  margin: 25px auto 0;
  max-width: 1365px;
}
.explanation-screen__title {
  color: #050e3d;
  text-align: center;
  font-size: 36px;
  font-weight: 600;
  padding: 50px 0;
  margin: 0;
  line-height: 1.2;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .explanation-screen__title {
    padding: 25px 0;
    text-align: left;
    font-size: 28px;
  }
}
.explanation-screen .explanation-screen-steps {
  padding: 70px 0 30px;
  position: relative;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .explanation-screen .explanation-screen-steps {
    padding: 35px 0 0;
  }
}
.explanation-screen .explanation-screen-steps__title {
  color: #050e3d;
  font-size: 30px;
  font-weight: 600;
  margin: 0;
  position: absolute;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .explanation-screen .explanation-screen-steps__title {
    position: static;
    margin-bottom: 30px;
  }
}
.explanation-screen .explanation-screen-steps__wrapper-1 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .explanation-screen .explanation-screen-steps__wrapper-1 {
    flex-direction: column;
  }
}
.explanation-screen .explanation-screen-steps__wrapper-2 {
  flex: 1;
  margin: 30px 120px 0 0;
  position: relative;
  top: 30px;
  min-width: 250px;
}
@media only screen and (max-width: 900px) {
  .explanation-screen .explanation-screen-steps__wrapper-2 {
    margin-right: 60px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .explanation-screen .explanation-screen-steps__wrapper-2 {
    top: 0;
    margin-right: 0;
  }
}
.explanation-screen .explanation-screen-steps__img {
  width: 578px;
  height: auto;
  border-radius: 24px;
}
@media only screen and (max-width: 1080px) {
  .explanation-screen .explanation-screen-steps__img {
    width: 384px;
  }
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .explanation-screen .explanation-screen-steps__img {
    order: -1;
    width: 100%;
  }
}
.explanation-screen .explanation-screen-point {
  flex: 1;
  margin-right: 40px;
  max-width: 425px;
}
@media only screen and (max-width: 782px) {
  .explanation-screen .explanation-screen-point {
    width: 100%;
    max-width: unset;
    flex: unset;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    margin: 0 0 30px 0;
  }
}
@media only screen and (max-width: 782px) {
  .explanation-screen .explanation-screen-point__wrapper {
    flex: 1;
    margin: 10px 0 0 20px;
  }
}
.explanation-screen .explanation-screen-point__icon {
  font-size: 40px;
  color: #228be7;
}
.explanation-screen .explanation-screen-point__title {
  color: #050e3d;
  margin: 16px 0;
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 782px) {
  .explanation-screen .explanation-screen-point__title {
    margin-top: 0;
  }
}
.explanation-screen .explanation-screen-point__text {
  margin: 0;
  font-size: 16px;
}
.explanation-screen .explanation-screen-circle {
  align-items: stretch;
}
.explanation-screen .explanation-screen-circle__outer {
  margin-right: 25px;
  display: flex;
  flex-direction: column;
}
.explanation-screen .explanation-screen-circle__inner {
  width: 60px;
  height: 60px;
  font-size: 24px;
  font-weight: 600;
  color: #228be7;
  border: 2px solid #228be7;
  border-radius: 50%;
  padding: 10px 22px;
}
.explanation-screen .explanation-screen-circle__text-wrapper {
  flex: 1;
  margin: 15px 0 40px;
}
.explanation-screen .explanation-screen-circle__text-wraper--last {
  margin-bottom: 0;
}
.explanation-screen .explanation-screen-circle__title {
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 8px;
  line-height: 24px;
  color: #050e3d;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .explanation-screen .explanation-screen-circle__title {
    font-size: 18px;
  }
}
.explanation-screen .explanation-screen-circle__text {
  font-size: 16px;
  margin: 0;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .explanation-screen .explanation-screen-circle__text {
    font-size: 14px;
  }
}
.explanation-screen .explanation-screen-circle__connection {
  height: 100%;
  border-left: 2px solid #228be7;
  margin-left: 30px;
}
.explanation-screen__cta {
  margin-top: 30px;
  max-width: 250px;
  font-size: 16px;
  font-weight: 600;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .explanation-screen__cta {
    margin-top: 10px;
    max-width: unset;
  }
}

.summary-screen {
  padding: 0 25px;
  margin: 75px auto 0;
  max-width: 1365px;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .summary-screen {
    margin-top: 50px;
  }
}
.summary-screen__wrapper-1 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 910px) {
  .summary-screen__wrapper-1 {
    flex-direction: column;
  }
}
.summary-screen__screenshot {
  width: auto;
  height: 400px;
  margin-right: 40px;
}
@media only screen and (max-width: 910px) {
  .summary-screen__screenshot {
    width: 100%;
    height: auto;
    margin-right: 0;
  }
}
.summary-screen__wrapper-2 {
  flex: 1;
  width: 100%;
}
.summary-screen__title {
  color: #050e3d;
  font-size: 36px;
  font-weight: 600;
  padding: 0 0 25px;
  margin: -5px 0 0;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .summary-screen__title {
    font-size: 28px;
  }
}
.summary-screen__subtitle {
  color: #475569;
  margin: 0;
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 25px;
  line-height: 28px;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .summary-screen__subtitle {
    font-size: 18px;
  }
}
.summary-screen__wrapper-3 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
@media only screen and (max-width: 1200px) {
  .summary-screen__wrapper-3 {
    flex-direction: column;
  }
}
.summary-screen__list {
  margin-bottom: 0px;
}
@media only screen and (max-width: 1200px) {
  .summary-screen__list {
    width: 100%;
  }
}
.summary-screen__list-item {
  font-size: 20px;
  font-weight: 600;
  color: #050e3d;
  margin-bottom: 20px;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .summary-screen__list-item {
    font-size: 18px;
  }
}
.summary-screen__list-item-icon {
  margin-right: 8px;
  font-size: 24px;
  position: relative;
  color: #228be7;
  top: 1px;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .summary-screen__list-item-icon {
    font-size: 22px;
  }
}
.summary-screen__banner {
  border-radius: 24px;
  padding: 56px 24px;
  margin: 85px 0px 120px;
  background: #228be7;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .summary-screen__banner {
    padding: 40px 24px;
    margin: 36px 0px 56px;
  }
}
.summary-screen__banner-title {
  text-align: center;
  margin: 0;
  padding: 0px 0px 40px;
  font-size: 36px;
  line-height: 1.2;
  color: #fff;
  font-weight: 600;
}
@media only screen and (min-width: 320px) and (max-width: 759px) {
  .summary-screen__banner-title {
    font-size: 24px;
  }
}
.summary-screen__banner-title::after {
  content: "See how your home\2019s value compares to similar sold properties";
}
@media only screen and (max-width: 1205px) {
  .summary-screen__banner-title::after {
    content: "See how your value compares to similar sold homes";
  }
}
.summary-screen__cta {
  max-width: 250px;
  font-size: 16px;
  font-weight: 600;
  margin: 0 auto;
}
