* { 
    -moz-box-sizing: border-box; 
    -webkit-box-sizing: border-box; 
     box-sizing: border-box; 
}

a {
	color:var(--main-color);
	transition: color 0.2s;
}

a:hover, a:focus, a:active {
	color:#5bdabc;
}

html {
  height: 100%;
  overflow-x: hidden;
}

body {
	background:#eff1f3;
	font-size:14px;
	margin:0;
	padding:0;
	min-height: 100%;
	overflow: contain;
	overflow-y: contain;
	flex-wrap: wrap;
	overscroll-behavior: contain;
	overscroll-behavior-y: contain;
	position: relative;
	font-family: 'Montserrat', sans-serif;
	color:#4B4852;
}

button,
input,
textarea,
select {
	font-family: 'Montserrat', sans-serif;
}

textarea:focus, input:focus, select:focus {
    outline: none;
}

.map-page {
	display:block;
	width:100%;
	height: 100vh;
	overflow: hidden;
}

.map-container {
	width:calc(100% - 443px);
	position: relative;
	height: calc(100vh - 82px);
}

.has-fav-bar .map-container {
	height: calc(100vh - 150px);
}

.map-container .map-inner {
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height: 100%;
	border:0px none;
}

.filter-container {
	width:440px;
	height: 100vh;
	overflow: auto;
	padding-right: 29px;
	
	height: calc(100vh);
}

.has-fav-bar .filter-inner-container {
	padding-bottom: 70px;
}

.filter-row {
	display:flex;
	flex-flow: wrap;
}

.range-container {
  padding: 2px 0px;
}

.range-container .range-size-value,
.range-container .range-floor-value,
.range-container .range-room-value,
.range-container .range-terrace-value {
  padding-bottom: 12px;
  text-align: right;
  position: relative;
}

.range-container .range-size-value .range-label,
.range-container .range-floor-value .range-label,
.range-container .range-room-value .range-label,
.range-container .range-terrace-value .range-label {
  font-weight: 600;
  font-size: 14px;
  position: absolute;
  top: 3px;
  left: 0;
}

.range-container .range-size-value .range-limits,
.range-container .range-floor-value .range-limits,
.range-container .range-room-value .range-limits,
.range-container .range-terrace-value .range-limits {
  display: inline-block;
  background: #F5F7F8;
  border-radius: 2px;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  padding: 2px 7px;
  margin-left: 10px;
}

.range-container .range-size-value .range-price-label,
.range-container .range-floor-value .range-price-label,
.range-container .range-room-value .range-price-label,
.range-container .range-terrace-value .range-price-label {
  font-weight: 500;
  font-size: 12px;
}

.noUi-horizontal {
  height: 2px;
  background: #EAECEE;
  width: calc(100% - 12px);
  margin: 0 3px;
}

.noUi-connects {
  border-radius: 2px;
}

.noUi-connect {
  background: #8E99AF;
}

.noUi-horizontal .noUi-handle {
  width: 30px;
  height: 30px;
  border: 0px none;
  background: transparent;
  cursor: pointer;
  box-shadow: none;
  top: -14px;
}

.noUi-horizontal .noUi-handle::before {
  display: none;
}

.noUi-horizontal .noUi-handle::after {
  display: block;
  width: 6px;
  height: 6px;
  border: 2px solid #8E99AF;
  border-radius: 50%;
  background: #FFF;
  cursor: pointer;
  top: 10px;
  left: 10px;
  transition: background 0.2s;
}

label.custom-checkbox-label {
  display:block;
}

.custom-checkbox-container {
  display: inline-block;
  position: relative;
  vertical-align: top;
  margin-top: -3px;
  margin-right: 2px;
  cursor: pointer;
}

.custom-checkbox-container .custom-checkbox {
  opacity: 0.0;
  display: none;
  width: 0;
  height: 0;
}

.custom-checkbox-container::after {
  content: ' ';
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background: var(--main-color);
  border: 1px solid #C1CCE0;;
  background: #FFF;
  opacity: background 0.2s, border-color 0.2s;
}

.custom-checkbox-container.checked::after {
  background-image: url(/images/check_grey.svg);
  background-size: 15px 12px;
  background-repeat: no-repeat;
  background-position: center 5px;
}

.filter-item {
	border-bottom: 1px solid #EAECEE;
	width:100%;
}

.filter-item.slide-item {
	padding:17px 22px 23px 30px;
}

.filter-item.slide-item.slide-item-6 {
	width:50%;
}

.filter-row .filter-item.slide-item.slide-item-6:first-child {
	border-right:1px solid #EAECEE;
	padding-right: 26px;
}

.filter-row .filter-item.slide-item.slide-item-6:last-child {
	padding-left: 26px;
}

label.slider-custom-checkbox {
	position: absolute;
	top: 15px;
	left: 135px;
}

.filter-item.checkbox-item {
	padding:17px 7px 18px 30px;
}

.checkbox-item .label-before,
.checkbox-item .label-after {
	font-weight: 600;
	font-size: 14px;
}

.checkbox-item .custom-checkbox-container {
	float:right;
}

.multi-checkbox-item .multi-label {
	display:block;
	font-weight: 600;
	font-size: 14px;
	padding:17px 30px 14px;
	position: relative;
	cursor:pointer;
}

.multi-checkbox-item .multi-label:after {
	content:' ';
	position: absolute;
	top:25px;
	right:7px;
	width:10px;
	height:6px;
	background-image:url(/images/arrow-down.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transition: transform 0.3s;
	
}

.multi-checkbox-item .multi-label.active:after {
	transform: rotate(180deg);
}

.multi-checkbox-item .multi-ch-list {
	display:none;
	padding:6px 30px 16px;
}

.multi-checkbox-item .multi-ch-list .multi-ch-inner {
	display:flex;
	flex-flow: wrap;
	width:100%;
}

.multi-checkbox-item .multi-ch-list .multi-ch-item {
	display:block;
	width:50%;
	padding:9px 0 10px;
}

.multi-ch-item .label-after {
	display:inline-block;
	padding-left: 12px;
}

.filter-item.checkbox-item.checkbox-item-small {
	  padding: 33px 7px 28px 30px;
}

.checkbox-item-small.checkbox-item .custom-checkbox-label {
	position: relative;
}

.checkbox-item-small.checkbox-item .custom-checkbox-container {
	float:none;
	position: absolute;
	left:135px;
	top:0;
}

.filter-button-container {
	padding:30px 0;
}

.filter-button {
	font-weight: 600;
	font-size: 14px;
	border:0px none;
	background:transparent;
	text-align: center;
	display:block;
	margin:0 auto;
	cursor: pointer;
}

.filter-button .icon-close {
	width:20px;
	height: 20px;
	border-radius: 50%;
	background: #8E99AF;
	position: relative;
	display:inline-block;
	vertical-align: middle;
	margin-right: 9px;
}

.filter-button .icon-close:before,
.filter-button .icon-close:after {
	width:2px;
	height: 12px;
	background:#FFF;
	position: absolute;
	display:block;
	content:' ';
	top:4px;
	left:9px;
}

.filter-button .icon-close:before {
	transform: rotate(45deg);
}

.filter-button .icon-close:after {
	transform: rotate(-45deg);
}

.flat-grey-button {
	border: 1px solid rgba(142, 153, 175, 0.3);
	background: #FFF;
	color: var(--main-color);
	transition: opacity 0.2s;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
}

.flat-color-button {
	background: var(--main-color);
	border: 1px solid var(--main-color);
	color: #FFF;
	transition: opacity 0.2s;
	font-weight: 600;
	font-size: 13px;
	cursor: pointer;
}

.fav-bar {
	position: fixed;
	left: 0;
	width: 100%;
	background: #FFFFFF;
	border-top: 1px solid #EAECEE;
	display: flex;
	z-index: 51;
	height: 70px;
	bottom: -70px;
	transition: bottom 0.3s;
	box-shadow: 0px -2px 8px rgba(0, 0, 0, 0.08);
}

.fav-bar.show {
	bottom: 0;
}

.fav-bar .fav-bar-content {
	width: calc(100%);
	display: flex;
	padding: 0px 5px 0px;
}

.fav-bar .fav-list-first {
	padding: 27px 7px;
}

.fav-bar .fav-list-first .fav-list-first-icon {
	position: relative;
}

.star-fav-icon {
	display: none;
}

.fav-bar .fav-list-first .fav-list-first-icon .num {
	position: absolute;
	background: var(--main-color);
	width: 14px;
	height: 14px;
	border-radius: 50%;
	color: #FFF;
	font-weight: 600;
	font-size: 9px;
	text-align: center;
	line-height: 13px;
	top: -7px;
	right: -6px;
	left: auto;
}

.fav-bar .fav-bottom-list {
	width: 100%;
	padding: 8px 6px 6px 25px;
	overflow-y: hidden;
	overflow-x: auto;
	display: block;
	flex-flow: wrap;
	white-space: nowrap;
}

.fav-bar .fav-bottom-list .item {
	background: #FFF;
	border: 1px solid #EAECEE;
	border-radius: 2px;
	width: 50px;
	height: 50px;
	padding: 3px;
	position: relative;
	cursor: inherit;
	display: inline-block;
	vertical-align: top;
	white-space: normal;
	margin-right: 18px;
}

.fav-bar .fav-bottom-list .item img {
	max-height: 42px;
	max-width: 42px;
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.fav-bar .fav-bottom-list .item .fav-num {
	display:block;
	position: absolute;
	right:-7px;
	top:-3px;
	background-color:var(--main-color);
	width:14px;
	height: 14px;
	text-align: center;
	color:#FFF;
	font-family: 'Montserrat', sans-serif;
	font-size: 9px;
	font-weight: 600;
	border-radius: 50%;
	padding-top:1px;
}

.fav-bar .fav-bar-buttons {
	width: 560px;
	padding: 18px 15px 14px;
	display: flex;
	justify-content: flex-end;
}

.fav-bar .fav-bar-buttons button {
	display: block;
	font-family: 'Montserrat', sans-serif;
	cursor: pointer;
	float: right;
	color: rgba(66, 71, 77, 0.8);
	padding: 9px 15px;
	font-weight: 500;
	text-transform: none;
	white-space: nowrap;
}

.fav-bar .fav-bar-buttons button:first-child {
	margin-right: 10px;
}

.desktop-only {
	display: inline;
}

.tablet-only {
	display: none;
}

.mobile-only {
	display: none;
}

.fav-bar .fav-bar-buttons .fav-offer,
.fc-header .fav-offer {
	padding:9px 21px;
	color: #FFF;
	font-weight: 500;
	text-transform: none;
	display: block;
	font-family: 'Montserrat', sans-serif;
	cursor: pointer;
	float: right;
}

/*.marker-label,
.marker-label-fav-digit1,
.marker-label-fav-digit2,
.marker-label-fav-digit3 {
	background: #FFFFFF;
	box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.1);
	border-radius: 2px;
	margin-top:50px;
	font-size:11px;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif !important;
	color:#4B4852;
	padding:0px 7px;
	position: relative;
	height: 24px;
	line-height: 24px;
	vertical-align: middle;
}

.marker-label-fav-digit1 {
	padding-right: 45px;
}

.marker-label-fav-digit2 {
	padding-right: 55px;
}

.marker-label-fav-digit3 {
	padding-right: 65px;
}

.marker-label-fav-digit1:after,
.marker-label-fav-digit2:after,
.marker-label-fav-digit3:after {
	content:'';
	display:block;
	position: absolute;
	right:0;
	top:0px;
	width:20px;
	height: 24px;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}

.marker-label-fav-digit1:after {
	content:'9';
	width:20px;
}

.marker-label-fav-digit2:after {
	content:'99';
	width:30px;
}

.marker-label-fav-digit3:after {
	content:'999';
	width:40px;
}

.marker-label-fav-digit1:before,
.marker-label-fav-digit2:before,
.marker-label-fav-digit3:before {
	content:' ';
	display:block;
	position: absolute;
	right:18px;
	top:0;
	background-image:url(https://betawebshow.property-sales-engine.com/images/fav-orange.svg);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: 14px 14px;
	width:20px;
	height: 24px;
	border-left: 1px solid #EAECEE;
}

.marker-label-fav-digit1:before {
	right:18px;
}

.marker-label-fav-digit2:before {
	right:28px;
}

.marker-label-fav-digit3:before {
	right:38px;
}*/

.gm-style .gm-style-iw-c {
	padding: 0 !important;
	border-radius: 0px !important;
	background: transparent !important;
	overflow: visible !important;
	box-shadow: none !important;
	max-width: 100% !important;
}

.gm-style .gm-style-iw-c:after {
	content:'';
	position: absolute;
	bottom:-8px;
	left:50%;
	transform:translateX(-50%);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 8px 8px 0 8px;
	border-color: #ffffff transparent transparent transparent;
}

.gm-style .gm-style-iw-tc {
	display:none !important;
	overflow: hidden !important;
}

.gm-style .gm-style-iw-d {
	overflow: visible !important;
	max-height: 400px !important;
}

.custom-infowindow {
	width:auto;
	min-width:90px;
	height: 100px;
	background:#FFF;
}

.custom-infowindow .project-logo {
	width:100%;
	height:77px;
	border-bottom:1px solid #EAECEE;
	position: relative;
	overflow: hidden;
}

.custom-infowindow .project-logo a {
	display:block;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	text-decoration: none;
	width:calc(100% - 16px);
	height:calc(100% - 10px);
	top:5px;
	left:8px;
}

.custom-infowindow .project-logo a:focus { outline: none; }

.custom-infowindow .flat-count {
	color:#4B4852;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	font-size: 11px;
	display:flex;
}

.custom-infowindow .flat-count .basic-result {
	text-align: center;
	width:100%;
	padding:4px;
	height: 23px;
	white-space: nowrap;
}

.custom-infowindow .flat-count .fav-result {
	display:none;
}

.custom-infowindow .flat-count .basic-result.with-fav {
	width:auto;
}

.custom-infowindow .flat-count.with-fav .fav-result {
	display:block;
	width:auto;
	white-space: nowrap;
	border-left: 1px solid #EAECEE;
	padding:4px;
	line-height: 14px;
	vertical-align: middle;
}

.custom-infowindow .icon-fav,
.marker-label .icon-fav {
	display:inline-block;
	background-image:url(/images/fav-orange.svg);
	background-repeat: no-repeat;
	background-position: center right;
	background-size: 14px 14px;
	width:14px;
	height: 14px;
	vertical-align: top;
	margin-right: 2px;
}

.marker-label {
    background: #FFFFFF;
	box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.1);
	border-radius: 2px;
	font-size:11px;
	font-weight: 600;
	font-family: 'Montserrat', sans-serif !important;
	color:#4B4852;
	position: relative;
	height: 24px;
	line-height: 24px;
	vertical-align: middle;
	display:flex !important;
	transform:translateX(-50%);
}

.marker-label .basic-data {
	padding:0px 7px;
	display:block;
}

.marker-label .marker-fav {
	border-left: 1px solid #EAECEE;
	display:block;
	padding:0px 7px;
}

.marker-label .icon-fav {
	margin-top:5px;
}

.hidden-label {
	display:none !important;
}

.flat-compare {
	position: fixed;
	background:#eff1f3;
	top:0;
	left:0;
	width:100%;
	height: 100%;
	z-index: 60;
}

.flat-compare .fc-header {
	padding:8px 10px 0;
	position: absolute;
	background:transparent;
	display:flex;
	flex-flow: wrap;
	width:100%;
	box-shadow: none;
	height: auto;
}

.flat-compare .fc-header .fc-header-inner {
	display:flex;
	flex-flow: wrap;
	width:100%;
	background:#FFF;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
	height: 64px;
}

.flat-compare .fc-header-left {
	width:calc(100% - 217px);
	padding:10px 5px;
}

.flat-compare .back-to-results {
	background:transparent;
	border:0px none;
	cursor: pointer;
	position: relative;
	font-weight: 500;
	font-size: 14px;
	color: rgba(66, 71, 77, 0.8);
	width: 54px;
	height: 44px;
	display: block;
	padding: 14px 40px;
	width:auto;
}

.flat-compare .back-to-results:before {
	display:block;
	content:' ';
	position: absolute;
	top:18px;
	left:7px;
	background-image:url(/images/arrow-right.svg);
	width:18px;
	height: 10px;
	transform:rotate(180deg);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.flat-compare .back-to-results .icon-container {
	display:none;
}

.flat-compare .back-to-results .text-container {
	color: rgba(66, 71, 77, 0.8);
	font-weight: 500;
	font-size: 14px;
	text-transform: none;
	text-align: center;
	display: block;
	padding-top: 0;
	transition: color 0.2s;
}

.flat-compare .back-to-results:hover svg path {
  stroke: var(--main-color);
}

.flat-compare .fc-header-right {
	width:217px;
	padding:13px 15px 12px 22px;
	position: relative;
}

.flat-compare .fc-header-right:before {
	display:none;
	content:' ';
	position: absolute;
	top:7px;
	left:0;
	width:1px;
	height: 50px;
	background:#EAECEE;
}

.flat-compare .fc-header-right .flat-color-button {
	padding:9px;
	width:100%;
	cursor: pointer;
	font-style: normal;
	font-weight: 500;
	font-size: 14px;
	text-transform: none;
}

.flat-compare .fc-header-right .flat-share {
	display:none;
}

.flat-compare .fc-content-outer {
	position: absolute;
	width:100%;
	background:#e7e9eb;
	top:72px;
	height: calc(100% - 72px);
}

.flat-compare .fc-content {
	position: absolute;
	width:100%;
	max-height: 100%;
	height: auto;
	display:flex;
	flex-flow: wrap;
	overflow: auto;
	padding-top: 10px;
}

.flat-compare .fc-labels {
	width:153px;
	display:block;
	background: #F7F9FB;
	border: 1px solid #EAECEE;
	box-shadow: 4px 0px 10px rgba(0, 0, 0, 0.06);
	border-radius: 2px;
	flex-wrap: wrap;
}

.flat-compare .fc-labels .image-label {
	width:100%;
	height: 202px;
	padding:5px 10px;
}

.flat-compare .fc-labels .text-label {
	width:100%;
	height: 30px;
	padding:5px 10px;
	font-weight: 600;
	font-size: 14px;
	line-height: 19px;
	color: #4B4852;
}

.flat-compare .fc-labels .space-label {
	width:100%;
	height: 30px;
	padding:5px 10px;
}

.flat-compare .fc-labels .text-project-label {
	width:100%;
	height: 150px;
	padding:5px 10px;
	font-weight: 600;
	font-size: 14px;
	line-height: 19px;
	color: #4B4852;
}

.flat-compare .fc-flats {
	width:calc(100% - 153px);
	height: 100%;
	overflow-x: auto;
	overflow-y: hidden;
}

.flat-compare .fc-flats-list {
	display:flex;
	flex-flow: nowrap;
	padding-bottom: 10px;
  flex-direction: row;
flex-direction: row;
white-space: nowrap;
}

.flat-compare .fc-flats .item {
	position: relative;
	width:247px;
	padding-left: 7px;
	min-width: 240px;
}

.flat-compare .fc-flats .item:last-child {
	padding-right: 7px;
	width:254px;
	min-width: 247px;
}

.flat-compare .fc-flats .item .item-inner {
	background:#FFF;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
	border-radius: 2px;
	position: relative;
}

.flat-compare .fc-flats .item .flat-close {
	position: absolute;
	border:0px none;
	background:transparent;
	width:20px;
	height: 20px;
	top:9px;
	right:11px;
	padding:0;
	cursor: pointer;
	cursor: pointer;
}

.flat-compare .fc-flats .item .flat-close:after,
.flat-compare .fc-flats .item .flat-close:before {
	content:' ';
	position: absolute;
	top:5px;
	left:0;
	height:14px;
	width:1px;
	background:#A7ACB0;
}

.flat-compare .fc-flats .item .flat-close::after {
	transform: rotate(45deg);
	top:4px;
	left:10px;
}

.flat-compare .fc-flats .item .flat-close::before {
	transform: rotate(-45deg);
	top:4px;
	left:10px;
}

.flat-compare .fc-flats .item .flat-title {
	padding:11px;
	text-align: center;
	color:#42474D;
	font-weight: 800;
	font-size: 16px;
}

.flat-compare .fc-flats .item .image-container {
	display:block;
	padding:4px 20px 18px;
	width:100%;
	border-bottom:1px solid #EAECEE;
	opacity:1.0;
	transition:opacity 0.1s;
}

.flat-compare .fc-flats .item .image-container .image {
	display:block;
	width:100%;
	height: 0;
	padding-bottom: 70%;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
}

.flat-compare .fc-flats .item .image-container.invisible {
	opacity:0.0;
}

.flat-compare .fc-flats .item .text-data {
	font-weight: normal;
	font-size: 14px;
	border-bottom:1px solid #EAECEE;
	background: #FAFBFB;
	display:block;
	width:100%;
	height: 30px;
	padding:5px 10px;
	text-align: center;
	line-height: 19px;
}

.flat-compare .fc-flats .item .space-data {
	border-bottom:1px solid #EAECEE;
	background: #FAFBFB;
	height: 30px;
	display:block;
	width:100%;
}

.flat-compare .fc-flats .item .text-data.project-info {
	font-weight: 400;
	font-size: 13px;
	background: transparent;
	display:block;
	width:100%;
	height: 150px;
	padding:5px 30px;
	text-align: center;
	line-height: 16px;
	border-bottom:0px none;
	color: #8E99AF;
}

.flat-compare .fc-flats .item .text-data.project-info .project-logo-outer {
	height: 105px;
	padding-bottom:10px;
	padding-top: 10px;
	display:block;
}

.flat-compare .fc-flats .item .text-data.project-info .project-logo {
	height: 85px;
	display:block;
	position: relative;
}

.flat-compare .fc-flats .item .text-data.project-info .project-logo img {
	max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.flat-compare .fc-flats .item .text-data.project-info .project-address1 {
	height: 16px;
	display:block;
}

.flat-compare .fc-flats .item .text-data.project-info .project-address2 {
	height: 16px;
	display:block;
}

.flat-compare .fc-flats .item .download-button-container {
	padding:11px 8px 8px 8px;
}

.flat-compare .fc-flats .item .flat-sheet-download {
	position: relative;
	border: 1px solid rgba(142, 153, 175, 0.3);
	text-align: center;
	background:#FFF;
	text-decoration: none;
	height: 48px;
	whidth:100%;
	display:block;
	line-height: 26px;
	vertical-align: middle;
	padding:10px 6px;
	font-weight: 500;
	font-size: 13px;
	text-transform: none;
	color:#42474D;
}

.flat-compare .fc-flats .item .flat-sheet-download:after {
	content:' ';
	top:0;
	left:0;
	position: absolute;
	background-image:url(/images/download.svg);
	width:18px;
	height: 18px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 20px 20px;
	width:46px;
	height: 46px;
	border-right:1px solid rgba(142, 153, 175, 0.3);
	display:none;
}

.empty-flat-sheet-download {
	height: 48px;
	width: 100%;
	display:block;
}

.help {
	display:inline-block;
	width:14px;
	height: 14px;
	background-image: url(/images/help.svg);
	background-size: contain;
	background-position: center center;
	background-repeat: no-repeat;
	font-size: 0;
	text-indent: -9999px;
	vertical-align: middle;
}

.remove-confirm {
	display:none;
	position: absolute;
	top:0;
	left:0;
	width:100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.8);
	text-align: center;
}

.remove-confirm .confirm-text {
	font-weight: bold;
	font-size: 12px;
	text-align: center;
	margin-top: 51px;
}

.remove-confirm .confirm-countdown {
	font-weight: bold;
	font-size: 16px;
	text-align: center;
	margin-top: 9px;
}

.remove-confirm .confirm-cancel-button {
	border: 1px solid rgba(142, 153, 175, 0.3);
	background:#FFF;
	border-radius: 2px;
	font-weight: 500;
	font-size: 12px;
	padding:4px 23px 3px;
	margin:32px auto 0;
	cursor: pointer;
}

.show-remove-confirm .remove-confirm {
	display:block;
}

.flat-compare .fc-flats .item.show-remove-confirm  .image-container {
	opacity: 0.0;
}

.flat-compare .fc-flats .item-empty-item {
	
}

.flat-compare .fc-flats .item.empty-item .item-inner {
	position: relative;
	top:0;
	left:0;
	width: 232px;
	height: 100%;
	background:transparent;
	border: 1px solid #DBDDE0;
	box-shadow: none;
}

.map-type-change {
	position: absolute;
	top:10px;
	right:10px;
	display:flex;
}

.map-type-change .road-button,
.map-type-change .satellite-button {
	font-weight: 400;
	font-size: 14px;
	background-color:#FFF;
	padding:6px 11px;
	border:0px none;
	display:block;
	border-right:1px solid #CCC;
	cursor: pointer;
	transition:background-color 0.2s;
}

.map-type-change .road-button.active,
.map-type-change .satellite-button.active {
	font-weight: 700;
}

.map-type-change .road-button:hover,
.map-type-change .satellite-button:hover {
	background-color:#EEE;
}

.map-type-change .road-button {
	
}

.map-type-change .satellite-button {
	border-right:0px solid #CCC;
}

.heart-fav-icon path {
	stroke: var(--main-color);
}


/* new header */
.ws-header {
	width:100%;
	display:block;
	position: relative;
	z-index: 59;
	padding:0 0 11px 0;
	background:#eef0f2;
	height: auto;
	box-shadow: none;
}

.ws-header-inner {
	background:#FFF;
	width:100%;
	display: flex;
	height: 64px;
	position: relative;
	box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
	border-radius: 2px;
	justify-content: space-between;
}

.ws-header .logo-container {
	width:160px;
	z-index: 4;
}

.ws-header .logo-container .logo {
	display:block;
	width:121px;
	height: 44px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center center;
	background-image:url(/images/map/logo_cordia.svg);
	margin-top: 11px;
	margin-left: 20px;
	
}

.ws-header .logo-container .logo img {
	width: 0;
	height: 0;
	visibility: hidden;
	opacity: 0;
}

.ws-header .logo-container.logo-with-back {
}

.ws-header .logo-container.logo-with-back .logo {
	background-image:url('/images/lake11/lake11-logo2.svg');
	height: 34px;
	margin-top: 8px;
}

.ws-header .logo-container .back-home {
	display:none;
	font-size: 10px;
	font-weight: 600;
	text-decoration: none;
	text-align: center;
	margin-top: 2px;
}

.ws-header .logo-container.logo-with-back .back-home {
	display:block;
}

.ws-header-filters-container {
	width:calc(100% - 160px);
	display:flex;
	z-index: 4;
}

.ws-header-filters-container .ws-header-filter-item {
	width:25%;
	padding:10px 0 10px 0;
	position: relative;
}

.ws-header-filters-container .ws-header-filter-item:before {
	content:' ';
	background:#EAECEE;
	width:1px;
	height: 50px;
	position: absolute;
	top:7px;
	left:0;
}

.ws-header-filters-container .ws-header-filter-item:nth-child(1),
.ws-header-filters-container .ws-header-filter-item:nth-child(2) {
	  max-width: 210px;
	  width: 210px;
}

.ws-header-filters-container .ws-header-filter-item:nth-child(3) {
	width:calc(100% - 420px);
}

.ws-header-filters-container .ws-header-filter-item:last-child:after {
	display:none;
}

.range-container {
	padding: 2px 30px;
}

.room-container {
	padding:5px 30px;
}

.room-container .room-text {
	font-weight: 600;
	font-size: 12px;
}

.room-container .room-list {
	list-style: none;
	padding:0;
	margin:0;
	display:inline-block;
	margin-left: 10px;
}

.room-container .room-list li {
	display:inline-block;
}

.room-container .room-list li button {
	display:block;
	border: 1px solid #EAECEE;
	border-radius: 2px;
	font-weight: 600;
	font-size: 12px;
	padding:9px;
	background:#FFF;
	width:34px;
	height: 34px;
	text-align: center;
	position: relative;
	cursor: pointer;
	transition:color 0.3s;
}

.room-container .room-list li button:after {
	content:' ';
	position: absolute;
	bottom:-1px;
	left:-1px;
	background:transparent;
	width:calc(100% + 2px);
	height: 3px;
	border-radius: 0 0 2px 2px;
	transition:background 0.3s;
}

.room-container .room-list li button.active,
.room-container .room-list li button:hover {
	
}

.room-container .room-list li button.active:after {
	
}

.range-container .range-size-value .range-label, .range-container .range-floor-value .range-label, .range-container .range-price-value .range-label {
	font-weight: 600;
	font-size: 12px;
	position: absolute;
	top: 4px;
	left: 0;
}

.range-container .range-size-value .range-limits, .range-container .range-floor-value .range-limits, .range-container .range-price-value .range-limits {
	display: inline-block;
	background: #F5F7F8;
	border-radius: 2px;
	font-weight: 600;
	font-size: 14px;
	line-height: 17px;
	padding: 2px 7px;
	margin-left: 10px;
}

.range-container .range-size-value .range-price-label, .range-container .range-floor-value .range-price-label, .range-container .range-price-value .range-price-label {
	font-weight: 500;
	font-size: 12px;
}

.room-container .room-list li button.active.room-filter-1::after {
	background: #8fc19a;
}

.room-container .room-list li button.active.room-filter-1,
.room-container .room-list li button.room-filter-1:hover {
	color: #8fc19a;
}

.room-container .room-list li button.active.room-filter-2::after {
	background: #83c3de;
}

.room-container .room-list li button.active.room-filter-2,
.room-container .room-list li button.room-filter-2:hover {
	color: #83c3de;
}

.room-container .room-list li button.active.room-filter-3::after {
	background: #f0e056;
}

.room-container .room-list li button.active.room-filter-3,
.room-container .room-list li button.room-filter-3:hover {
	color: #f0e056;
}

.room-container .room-list li button.active.room-filter-4::after {
	background: #c7a0c3;
}

.room-container .room-list li button.active.room-filter-4,
.room-container .room-list li button.room-filter-4:hover {
	color: #c7a0c3;
}

.room-container .room-list li button.active.room-filter-5::after {
	background: #deb483;
}

.room-container .room-list li button.active.room-filter-5,
.room-container .room-list li button.room-filter-5:hover {
	color: #deb483;
}

.ws-header-filters-container-buttons {
	display:none;
}

.map-list-container {
	display:flex;
	width: 100%;
}

.project-list-container {
	width: 443px;
	height: calc(100vh - 82px);
	padding: 0px 5px 0 0;
}

.has-fav-bar .project-list-container {
	height: calc(100vh - 150px);
}

.project-list-container .project-list {
	height: 100%;
}

.project-list-container .project-list:not(.os-host-scrollbar-vertical-hidden) {
	padding-right: 13px;
}

.project-list-container .project-list .project-list-inner {
	padding-left: 15px;
}

.gm-ui-hover-effect {
	display:none !important;
}

.project-item {
	display:flex;
	flex-flow:wrap;
	height: 128px;
	background:#FFF;
	margin-bottom: 10px;
	box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.1);
	border-radius: 2px;
	transition: transform 0.2s, box-shadow 0.1s;
}

.project-item:hover {
	transform: scale(1.015);
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

.project-map-item {
	background:#FFF;
	box-shadow: 0px 4px 9px rgba(0, 0, 0, 0.1);
	border-radius: 2px;
}

.project-list-inner .project-item:last-child {
	margin-bottom: 0;
}

.project-item .project-image,
.project-map-item .project-image {
	width:150px;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	height: 128px;
	display:block;
}

.project-item .project-image {
	width:218px;
}

.project-map-item .project-image {
	width:100%;
	height: 174px;
}

.project-item .project-image img,
.project-map-item .project-image img {
	width:0;
	height: 0;
	opacity: 0.0;
}

.project-item .project-details,
.project-map-item .project-details {
	width:260px;
	height: 128px;
	max-width: 100%;
}

.project-item .project-details {
	width:calc(100% - 218px);
}

.project-item .project-details .project-main-data,
.project-map-item .project-details .project-main-data {
	display:flex;
	flex-flow:wrap;
	width:100%;
	height: 86px;
}

.project-item .project-details .project-main-data {
	height:84px;
}

.project-item .project-details .project-main-data .project-logo,
.project-map-item .project-details .project-main-data .project-logo {
	width:32%;
	padding:4px;
}

.project-item .project-details .project-main-data .project-logo {
	display:none;
}

.project-item .project-details .project-main-data .project-logo .this-logo,
.project-map-item .project-details .project-main-data .project-logo .this-logo {
	text-align: center;
	height: 100%;
	width: 100%;
	position: relative;
	display:block;
}

.project-item .project-details .project-main-data .project-logo .this-logo img,
.project-map-item .project-details .project-main-data .project-logo .this-logo img {
	max-width: 100%;
	max-height: 64px;
	position: absolute;
	top:50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

.project-item .project-details .project-main-data .project-title-container,
.project-map-item .project-details .project-main-data .project-title-container {
	width:68%;
	display: flex;
	align-items: center;
	padding-left:15px;
	padding-right: 5px;
}

.project-item .project-details .project-main-data .project-title-container {
	width:100%;
	align-items:normal;
	padding-top: 10px;
	padding-left:13px;
}

.project-item .project-details .project-main-data .project-title,
.project-map-item .project-details .project-main-data .project-title {
	
}

.project-item .project-details .project-main-data .project-title .project-maintitle,
.project-map-item .project-details .project-main-data .project-title .project-maintitle {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 16px;
	line-height: 22px;
	color: #000000;
	display:block;
	text-decoration: none;
}

.project-item .project-details .project-main-data .project-title .project-maintitle {
	line-height: 20px;
}

.project-item .project-details .project-main-data .project-title .project-subtitle,
.project-map-item .project-details .project-main-data .project-title .project-subtitle {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 13px;
	line-height: 16px;
	color: #8E99AF;
	display:block;
	padding-top:1px;
}

.project-item .project-details .project-other-data,
.project-map-item .project-details .project-other-data {
	display:flex;
	flex-flow:wrap;
	width:100%;
	border-top: 1px solid #EAECEE;
	height: 42px;
}

.project-item .project-details .project-other-data {
	border-top:0px none;
	height:44px;
	display:block;
	line-height: 1.0em;
}

.project-item .project-details .project-other-data .project-result,
.project-map-item .project-details .project-other-data .project-result {
	width:40%;
	padding:5px 9px;
}

.project-item .project-details .project-other-data .project-custom-data,
.project-map-item .project-details .project-other-data .project-custom-data {
	width:60%;
	padding:6px 9px;
}

.project-item .project-details .project-other-data .project-result,
.project-item .project-details .project-other-data .project-custom-data {
	width:100%;
	padding-top: 1px;
	padding-bottom: 0px;
	padding-left: 13px;
}

.project-item .project-details .project-other-data .other-label,
.project-map-item .project-details .project-other-data .other-label {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 400;
	font-size: 11px;
	line-height: 13px;
	color: #8E99AF;
	display:block;
}

.project-item .project-details .project-other-data .other-value,
.project-map-item .project-details .project-other-data .other-value {
	font-family: 'Montserrat', sans-serif;
	font-style: normal;
	font-weight: 600;
	font-size: 11px;
	line-height: 13px;
	color: #4B4852;
	display:block;
	padding-top: 1px;
}

.project-item .project-details .project-other-data .other-label,
.project-item .project-details .project-other-data .other-value {
	display:inline-block;
}

.project-item .project-details .project-other-data .other-label {
	position: relative;
	padding-right: 3px;
}

.project-item .project-details .project-other-data .other-label:after {
	content:':';
	position: absolute;
	top:0;
	right:0;
}

.ws-header-filter-toggle-container {
	padding:5px 0 5px 18px;
	display:none;
	position: relative;
}

.ws-header-filter-toggle-container .filter-toggle {
	padding:0;
	display:block;
	height: 54px;
	width:54px;
	padding-top: 4px;
	position: relative;
	outline: none;
	-webkit-tap-highlight-color: transparent;
	background: #FFFFFF;
	border: 1px solid #EAECEE;
	border-radius: 2px;
	cursor: pointer;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	line-height: 15px;
	min-width: 54px;
	text-align: center;
	transition: color 0.2s;
}

.ws-header-filter-toggle-container .filter-toggle:after {
	content:' ';
	position: absolute;
	width: calc(100% + 2px);
	height: 3px;
	bottom:-1px;
	left: -1px;
	border-radius: 0 0 2px 2px;
	background: #54542c;
	opacity: 0;
	transition:opacity 0.2s;
}

.ws-header-filter-toggle-container .filter-toggle.active:after {
	opacity: 1.0;
}

.ws-header-filter-toggle-container .filter-toggle:not(.active):hover:after {
	opacity: 0.0;
}

.ws-header-filter-toggle-container .filter-toggle .filter-toggle-icon {
	border-right: 0px none;
}

.ws-header-filter-toggle-container .filter-toggle .filter-toggle-text {
	display:block;
	font-size: 8px;
	text-transform: uppercase;
	padding: 6px 0px 0 0px;
}

.ws-header-filter-toggle-container .filter-toggle:hover .filter-toggle-text,
.ws-header-filter-toggle-container .filter-toggle.active .filter-toggle-text {
	color:#42474D;
}

.ws-header-filter-toggle-container .filter-toggle .filter-toggle-icon svg path {
	transition:stroke 0.2s;
}

.ws-header-filter-toggle-container .filter-toggle:not(.active):hover .filter-toggle-icon svg path {
	stroke:#A7ACB0;
}

.ws-header-filter-toggle-container .filter-toggle.active .filter-toggle-icon svg path {
	stroke: #42474D;
}

.ws-header-filter-toggle-container .filter-toggle .filter-toggle-text .num {
	display:none;
	background: #42474D;
	width:12px;
	height: 12px;
	top:-6px;
	right:-6px;
	font-weight: 600;
	font-size: 8px;
	color:#FFF;
	text-align: center;
	line-height: 12px;
	vertical-align: middle;
	position: absolute;
	border-radius: 50%;
	margin-left: 4px;
}

.ws-header-filter-toggle-container .filter-toggle.has-filter .filter-toggle-text .num {
	display:block;
}

.ws-header-view-container {
	width:auto;
	text-align: right;
	background: #FFF;
	z-index: 4;
}

.ws-header-view-list {
	padding:13px;
	margin:0;
	display:flex;
	list-style: none;
	float:right;
}

.ws-header-view-list li {
	padding:4px;
}

.ws-header-view-list li a {
	display:block;
	background-color:#F5F7F8;
	border-radius: 2px;
	font-size: 0;
	text-indent: -9999px;
	width:28px;
	height: 28px;
	position: relative;
}

.ws-header-view-list li a svg {
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	width:24px;
	height: 24px;
}

.ws-header-view-list li a line,
.ws-header-view-list li a path {
	transition:stroke 0.3s, fill 0.3s;
}

.ws-header-view-list li a.active line.stroke,
.ws-header-view-list li a.active path.stroke {
	stroke:#42474D;
}

.ws-header-view-list li a.active line.fill,
.ws-header-view-list li a.active path.fill {
	fill:#42474D;
}

.ws-header-view-list li a:after,
.ws-header-view-list li a:after {
	content:' ';
	position: absolute;
	top:100%;
	left:0;
	width:100%;
	height:3px;
	background:var(--main-color);
	border-radius: 0 0 3px 3px;
	opacity:0.0;
	transition:opacity 0.2s;
}

.ws-header-view-list li a.active:after {
	opacity:1.0;
}

.ws-header-view-list {
	padding:0;
}

.ws-header-view-list li {
	padding:0;
}

.ws-header-view-list li a {
	padding:10px 0 0 0;
	background:transparent;
	border-left: 1px solid #EAECEE;
	height: 64px;
	width:64px;
	text-align: center;
	text-indent: 0;
	font-weight: 700;
	font-size: 8px;
	color:#8E99AF;
	text-decoration: none;
	text-transform: uppercase;
	
}

.ws-header-view-list li a svg {
	position: relative;
	top:0;
	left:0;
	transform:none;
	width: 26px;
	height: 26px;
}

.ws-header-view-list li a .icon-container {
	display:block;
}

.ws-header-view-list li a.back-menu svg {
	transform:rotate(180deg);
}

.ws-header-view-list li a .text-container {
	display:flex;
	height: 24px;
	text-align: center;
	align-items: center;
	justify-content: center;
	transition: color 0.2s;
	font-weight: 600;
	word-break: break-all;
}

.ws-header-view-list li a::after,
.ws-header-view-list li a.active::after {
	bottom:0;
	top:auto;
	border-radius: 0;
	background: var(--main-color);
}

.ws-header-view-list li a.active {
	background:#fafbfb;
}

.ws-header-view-list li a.active .text-container {
	color:#42474D;
	font-weight: 700;
}

.ws-header-view-list li a.active line.stroke,
.ws-header-view-list li a.active path.stroke {
	stroke: #42474D;
}

.ws-header-view-list li a.active line.fill,
.ws-header-view-list li a.active path.fill {
	fill:#42474D;
}

.filter-topmenu-container {
	display:none;
}

@media (hover: hover) {
	.ws-header-view-list li a:hover line.stroke,
	.ws-header-view-list li a:hover path.stroke {
		stroke:#42474D;
	}

	.ws-header-view-list li a:hover line.fill,
	.ws-header-view-list li a:hover path.fill {
		fill:#42474D;
	}
	
	.ws-header-view-list li a:hover .text-container {
		color:#42474D;
		font-weight: 700;
	}

	.ws-header-view-list li a:hover line.stroke,
	.ws-header-view-list li a:hover path.stroke {
		stroke: #42474D;
	}
	
	.ws-header-view-list li a:hover line.fill,
	.ws-header-view-list li a:hover path.fill {
		fill:#42474D;
	}
}

.ws-header-view-list li a .num {
	width:12px;
	height: 12px;
	transition:background-color 0.3s;
	background:#8E99AF;
	border-radius: 50%;
	display:none;
	font-weight: 600;
	font-size: 10px;
	color:#FFF;
	text-align: center;
	line-height: 12px;
	margin-left: 4px;
	vertical-align: middle;
	z-index: 1;
	position: absolute;
	top: 6px;
	right: 13px;
}

.ws-header-view-list li a.active .num,
.ws-header-view-list li a:hover .num {
	background-color: #42474D;
}

.ws-header-view-list li a.has-filter .num{
	display:inline-block;
}

.ws-filter-overlay {
	position: absolute;
	display: none;
	z-index: 58;
	top: 64px;
	left: 0;
	height: calc(100% - 64px);
	width: 100%;
	background: rgba(0, 0, 0, 0.5);
}

.ws-header-content3d .ws-header-bg {
	background: #FFF;
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 3;
}

@media screen and (max-width: 1099px) {
	

	.desktop-only {
		display: none;
	}

	.tablet-only {
		display: inline;
	}

	.mobile-only {
		display: none;
	}

	.map-page {
		display:flex;
		flex-flow: wrap;
	}
	
	.map-container, .has-fav-bar .map-container {
		width:100%;
		height: 400px;
	}
	
	.range-container {
		padding: 2px 14px;
	}
	
	.room-container {
		padding: 5px 14px;
	}
	
	.filter-container {
		width: 100%;
		height: 100%;
		position: relative;
		padding-right: 0;
	}
	
	.filter-item.slide-item {
		padding: 17px 29px 19px 29px;
	}
	
	.filter-item.slide-item-tablet-4 {
		width:33.333% !important;
	}
	
	.filter-item.slide-item-tablet-4:last-child {
		border-left: 1px solid #EAECEE;
	}
	
	.floor-slider-container .noUi-horizontal {
		width:calc(100% - 12px);
		float:none;
	}
	
	.floor-slider-container .range-container .range-floor-value .range-label {
		top:3px;
	}
	
	.terrace-slider-container .noUi-horizontal {
		width: calc(33.333% - 40px);
		margin-right: -3px;
	}
	
	.filter-item.checkbox-item {
		padding-right: 10px;
	}
	
	.multi-checkbox-item .multi-label::after {
		right:15px;
	}
	
	.map-page {
		padding-top: 0;
		height: auto;
	}
	
	.map-container {
		
	}
	
	.map-list-container {
		display:block;
	}
	
	.project-list-container {
		width:100%;
		height: auto;
		padding:0;
	}
	
	.has-fav-bar .project-list-container {
		height: auto;
		padding-bottom: 68px;
	}
	
	.project-list-container .project-list .project-list-inner {
		width:100%;
		display:flex;
		flex-flow: wrap;
		padding:5px;
	}
	
	.project-item {
		width: calc(50% - 10px);
		margin: 5px;
	}
	
	.project-item:hover {
		transform: none;
	}
	
	.project-item .project-details {
		
	}
	
	.project-item .project-details .project-main-data .project-title-container {
		
	}
}

@media screen and (max-width: 949px) {
	/* filter */
	
	.filter-topmenu-container {
		display:block;
	}
	
	.ws-header-filters-container {
		display: flex;
		flex-flow: wrap;
		position: absolute;
		top: 100%;
		background: #FFF;
		width: 100%;
		height: auto;
		padding: 12px 0;
		transition: transform 0.2s;
		transform: translateY(-100%);
		border-top: 1px solid #EAECEE;
		z-index: 3;
	}
	
	.ws-header-filters-container.active {
		transform: translateY(0);
	}
	
	.ws-header-filters-container.hide {
		transform: translateY(-100%);
	}
	
	.ws-header-filter-toggle-container {
		display:none;
	}
	
	.ws-header-filter-toggle-container::before {
		content: ' ';
		position: absolute;
		top: 0;
		left: 0;
		background: #EAECEE;
		width: 1px;
		height: 50px;
		top: 7px;
	}
	
	.ws-menu-overlay, .ws-filter-overlay {
		top: 65px;
		height: calc(100% - 65px);
	}
	
	.ws-header-filters-container-buttons {
		display:flex;
		flex-flow: wrap;
		z-index: 3;
	}
	
	.ws-header-filter-clear,
	.ws-header-filter-apply {
		padding: 16px 15px;
		display:block;
	}
	
	.clear-filters,
	.apply-filters {
		color: #42474D;
		padding: 9px 15px;
		font-weight: 500;
		text-transform: none;
	  }
}

@media screen and (max-width: 879px) {
	.project-item .project-details .project-other-data .project-result {
		
	}
	
	.project-item .project-details .project-other-data .project-custom-data {
		
	}
}

@media screen and (max-width: 767px) {
	.fav-bar .fav-bottom-list {
		display:none;
	}
	
	.fav-bar .fav-bar-content {
		width: auto;
	}
	
	.fav-bar .fav-bar-buttons {
		width: auto;
		padding-left: 0;
		padding-right: 0;
	}
	
	.fav-bar .fav-bar-buttons button {
		padding: 9px 11px !important;
	}
	
	.project-item {
		width: 100%;
		margin: 0 0px 5px 0;
	}
	
	.ws-header-content3d .ws-header-filters-container {
		height: auto;
		top: 100%;
		display: block;
		padding: 3px 0;
	}
	
	.ws-header-filters-container .ws-header-filter-item {
		border-bottom: 1px solid #EAECEE;
		padding-top: 26px;
		padding-bottom: 38px;
	}
	
	.ws-header-filters-container .ws-header-filter-item::before,
	.ws-header-filters-container .ws-header-filter-item::after {
		display:none;
	}
	
	.ws-header-filters-container .ws-header-filter-item, .ws-header-filters-container .ws-header-filter-item:nth-child(1),
	.ws-header-filters-container .ws-header-filter-item:nth-child(2),
	.ws-header-filters-container .ws-header-filter-item:nth-child(3) {
		width: 100%;
		max-width: 100%;
	}
	
	.range-container .range-size-value .range-label,
	.range-container .range-floor-value .range-label,
	.range-container .range-price-value .range-label {
		font-size: 14px;
	}
	
	.ws-header-filters-container .ws-header-filter-item:last-child {
		border-bottom: 0px none;
	}
	
	.room-container .room-list {
		float: right;
	}
	
	.room-container {
		height: 45px;
		line-height: 34px;
	}
	
	.room-container .room-text {
		font-size: 14px;
	}
	
	.ws-header-filters-container-buttons {
		width:100%;
	}
	
	.ws-header-filters-container-buttons .ws-header-filter-clear,
	.ws-header-filters-container-buttons .ws-header-filter-apply {
		width:50%;
		padding:0 !important;
	}
	
	.ws-header-filters-container-buttons .ws-header-filter-clear .clear-filters.flat-grey-button,
	.ws-header-filters-container-buttons .ws-header-filter-apply .apply-filters.flat-grey-button {
		border:0px none;
		width:100%;
		padding:14px 20px;
		border:0px none;
		font-size:14px;
		font-weight: 500;
		text-transform: uppercase;
	}
	
	.ws-header-filters-container-buttons .ws-header-filter-clear .clear-filters.flat-grey-button {
		border-right:1px solid rgba(142, 153, 175, 0.3);
	}
	
	.gm-style .gm-style-iw-c:after {
		bottom: -85px;
	}
	
	.project-item .project-image {
		width:calc(100% - 170px);
	}
	
	.project-item .project-details {
		width: 170px;
	}
	
	.project-item .project-details .project-main-data .project-title .project-subtitle {
		font-size:10px;
	}
}

@media screen and (max-width: 479px) {
	
	.desktop-only {
		display: none;
	}

	.tablet-only {
		display: none;
	}

	.mobile-only {
		display: inline;
	}
	
	.filter-container {
		padding-left:10px;
		padding-right: 10px;
	}
	
	.filter-item.slide-item-tablet-4 {
		width:100% !important;
	}
	
	.multi-checkbox-item .multi-ch-list .multi-ch-item {
		width:100%;
	}
	
	.noUi-horizontal,
	.floor-slider-container .noUi-horizontal,
	.terrace-slider-container .noUi-horizontal {
		height: 4px;
		width: calc(100% - 20px);
		margin: 0 7px;
		float: none;
	}
	
	.noUi-horizontal .noUi-handle::after {
		width:12px;
		height: 12px;
		border-width: 4px;
		top: 7px;
		left: 5px;
	}
	
	.floor-slider-container .noUi-horizontal,
	.terrace-slider-container .noUi-horizontal {
		padding-right: 0;
	}
	
	.filter-item.slide-item {
		padding-top: 22px;
		padding-bottom: 28px;
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.filter-row .filter-item.slide-item.slide-item-6:first-child {
		padding-right: 10px;
	}
	
	.terrace-slider-container .range-container .range-terrace-value .range-label {
		top:3px;
	}
	
	.range-container .range-size-value, .range-container .range-floor-value,
	.range-container .range-room-value, .range-container .range-terrace-value {
		padding-bottom: 17px;
	}
	
	label.slider-custom-checkbox {
		top:4px;
	}
	
	.range-container .range-size-value .range-limits,
	.range-container .range-floor-value .range-limits,
	.range-container .range-room-value .range-limits,
	.range-container .range-terrace-value .range-limits {
		font-size: 16px;
		height: 24px;
		padding-top: 4px;
		padding-bottom: 4px;
	}
	
	.range-container .range-size-value .range-price-label,
	.range-container .range-floor-value .range-price-label,
	.range-container .range-room-value .range-price-label,
	.range-container .range-terrace-value .range-price-label {
		font-size: 14px;
	}
	
	.filter-row .filter-item.slide-item.slide-item-6:first-child {
		border-right: 0px none;
	}
	
	.filter-item.slide-item-tablet-4:last-child {
		border-left: 0px none;
	}
	
	.filter-item.checkbox-item.checkbox-item-small,
	.filter-item.checkbox-item,
	.multi-checkbox-item .multi-label {
		padding-left: 10px;
		padding-right: 10px;
	}
	
	.multi-checkbox-item .multi-ch-list {
		padding:0px 10px 20px;
	}
	
	.map-container {
		height: 55vh;
	}
	
	.project-item .project-image {
		
	}
	
	.project-item .project-details {
		
	}
}
