/* All Variables should be declared here which makes it easier to update if something changes globally */
/*---------------------------------------------------------
  ANIMATION MIXINS
---------------------------------------------------------*/
/*---------------------------------------------------------
  LAYOUT MIXINS
---------------------------------------------------------*/
/*---------------------------------------------------------
  MISC MIXINS
---------------------------------------------------------*/
.locationsMap {
  position: relative;
  margin-bottom: 45px;
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 768px) {
  .locationsMap {
    margin-bottom: 30px;
    flex-direction: column;
  }
}
@media (min-width: 1200px) {
  .locationsMap {
    margin-bottom: 55px;
  }
}
.locationsMap__container {
  height: 500px;
}
@media (min-width: 768px) {
  .locationsMap__container {
    display: block;
    height: 800px;
  }
}
.locationsMap__filters {
  padding: 20px 20px 30px;
  background: rgba(200, 200, 200, 0.9);
}
@media (min-width: 768px) {
  .locationsMap__filters {
    padding: 30px 30px 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}
@media (min-width: 1200px) {
  .locationsMap__filters {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 100;
    padding: 25px 3.5%;
    gap: 20px 30px;
  }
}
@media (min-width: 1900px) {
  .locationsMap__filters {
    gap: 15px 20px;
  }
}
.locationsMap__info {
  margin-bottom: 35px;
}
@media (min-width: 1200px) {
  .locationsMap__info {
    background: #ffffff;
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 100;
    box-shadow: 0 0 5.82px 0.18px rgba(34, 24, 24, 0.3);
    padding: 10px 20px;
  }
}
.locationsMap__info ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
  line-height: 40px;
}
@media (min-width: 1200px) {
  .locationsMap__info ul {
    display: block;
  }
}
.locationsMap__info li {
  position: relative;
  padding-left: 32px;
  margin: 0 45px 0 0;
}
@media (min-width: 1200px) {
  .locationsMap__info li {
    margin: 0;
  }
}
.locationsMap__info li:before {
  content: "";
  display: block;
  width: 20px;
  height: 22px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.locationsMap__info li:first-child:before {
  background: url("../images/commercial-property-icon.svg") no-repeat center;
  background-size: contain;
}
.locationsMap__info li:last-child:before {
  background: url("../images/commercial-property-icon-sale.svg") no-repeat center;
  background-size: contain;
}

.locationsMapFiltersLabel {
  display: block;
  line-height: 40px;
  margin-right: 30px;
  font-size: 18px;
  color: #383838;
  white-space: nowrap;
  margin-bottom: 5px;
}
@media (min-width: 768px) {
  .locationsMapFiltersLabel {
    margin-bottom: 0;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .locationsMapFiltersLabel {
    line-height: normal;
  }
}
@media (min-width: 1900px) {
  .locationsMapFiltersLabel {
    width: auto;
    margin-right: 0;
  }
}

.locationsMapFilter {
  margin-bottom: 22px;
}
@media (min-width: 768px) {
  .locationsMapFilter {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .locationsMapFilter {
    margin-bottom: 0;
  }
}
@media (min-width: 1900px) {
  .locationsMapFilter {
    flex: 1;
  }
}
.locationsMapFilter__fieldContainer {
  width: 100%;
}
@media (min-width: 1200px) {
  .locationsMapFilter--bedrooms {
    width: calc((100% - 60px) / 3);
  }
}
@media (min-width: 1900px) {
  .locationsMapFilter--bedrooms {
    width: auto;
  }
}
@media (min-width: 1200px) {
  .locationsMapFilter--commercialType {
    width: calc((100% - 60px) / 3);
  }
}
@media (min-width: 1900px) {
  .locationsMapFilter--commercialType {
    width: auto;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .locationsMapFilter--location {
    width: 47.7%;
    margin-right: 4.6%;
  }
}
@media (min-width: 1200px) {
  .locationsMapFilter--location {
    width: calc((100% - 60px) / 3);
    margin-right: 0;
  }
}
@media (min-width: 1900px) {
  .locationsMapFilter--location {
    width: auto;
  }
}
@media (min-width: 768px) {
  .locationsMapFilter--date {
    width: 47.7%;
  }
}
@media (min-width: 1200px) {
  .locationsMapFilter--date {
    width: calc((100% - 60px) / 3);
  }
}
@media (min-width: 1900px) {
  .locationsMapFilter--date {
    width: auto;
  }
}
.locationsMapFilter--furnished, .locationsMapFilter--promotion {
  width: 105px;
  flex: none;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .locationsMapFilter--furnished, .locationsMapFilter--promotion {
    margin-right: 30px;
  }
}
@media (min-width: 1200px) {
  .locationsMapFilter--furnished, .locationsMapFilter--promotion {
    margin-bottom: 0;
  }
}
@media (min-width: 1900px) {
  .locationsMapFilter--furnished, .locationsMapFilter--promotion {
    margin-right: 0;
  }
}
.locationsMapFilter--furnished label, .locationsMapFilter--promotion label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.locationsMapFilter--furnished input[type=checkbox], .locationsMapFilter--promotion input[type=checkbox] {
  display: none;
}
.locationsMapFilter--furnished input[type=checkbox] + span, .locationsMapFilter--promotion input[type=checkbox] + span {
  display: block;
  width: 13px;
  height: 13px;
  border: 3px solid #ffffff;
  background: #ffffff;
  box-shadow: 0 0 0 1px #dedede;
  margin-right: 9px;
}
.locationsMapFilter--furnished input[type=checkbox]:checked + span, .locationsMapFilter--promotion input[type=checkbox]:checked + span {
  background: #383838;
}
.locationsMapFilter--slider {
  margin-top: 40px;
  flex: none;
}
@media (min-width: 768px) {
  .locationsMapFilter--slider {
    margin-top: 22px;
  }
}
@media (min-width: 1200px) {
  .locationsMapFilter--slider {
    flex: 1;
    margin-top: 10px;
  }
}

.filterDropdown2__label,
.filterSelect__label,
.sortDropdown__label {
  display: block;
  position: relative;
  cursor: pointer;
}
.filterDropdown2__label:after,
.filterSelect__label:after,
.sortDropdown__label:after {
  content: "";
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff;
  width: 38px;
  height: 30px;
  border: none;
  border-left: 1px solid #dddddd;
  z-index: 10;
}
.filterDropdown2__label:before,
.filterSelect__label:before,
.sortDropdown__label:before {
  content: "";
  background: no-repeat center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='18px' height='11px'%3E%3Cpath fill-rule='evenodd' fill='rgb(119, 119, 119)' d='M0.503,0.612 L9.029,7.046 L17.555,0.612 L17.555,4.070 L9.029,10.504 L0.503,4.070 L0.503,0.612 Z'/%3E%3C/svg%3E");
  width: 38px;
  height: 30px;
  background-size: 17px auto;
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}
.filterDropdown2__text,
.filterSelect__text,
.sortDropdown__text {
  margin-right: 23px;
}
.filterDropdown2 input[type=text], .filterDropdown2 select,
.filterSelect input[type=text],
.filterSelect select,
.sortDropdown input[type=text],
.sortDropdown select {
  height: 40px;
  border-radius: 0;
  box-shadow: none;
  border: 1px solid #dddddd;
  outline: none;
  line-height: 38px;
  padding: 0 45px 0 14px;
  width: 100%;
  font-size: 18px;
  font-weight: 300;
  background: #ffffff;
  cursor: pointer;
  color: #383838;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.filterDropdown2 select,
.filterSelect select,
.sortDropdown select {
  width: 270px;
}
.filterDropdown2 ::-webkit-input-placeholder,
.filterSelect ::-webkit-input-placeholder,
.sortDropdown ::-webkit-input-placeholder {
  color: #383838;
}
.filterDropdown2 :-moz-placeholder,
.filterSelect :-moz-placeholder,
.sortDropdown :-moz-placeholder {
  color: #383838;
}
.filterDropdown2 ::-moz-placeholder,
.filterSelect ::-moz-placeholder,
.sortDropdown ::-moz-placeholder {
  color: #383838;
}
.filterDropdown2 :-ms-input-placeholder,
.filterSelect :-ms-input-placeholder,
.sortDropdown :-ms-input-placeholder {
  color: #383838;
}
.filterDropdown2__dropdown,
.filterSelect__dropdown,
.sortDropdown__dropdown {
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 100%;
  background: #fff;
  border: 1px solid #aaa;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  z-index: 100;
}
.filterDropdown2__dropdownItem,
.filterSelect__dropdownItem,
.sortDropdown__dropdownItem {
  position: relative;
  display: block;
  white-space: nowrap;
  padding: 5px 10px 5px 30px;
  font-size: 16px;
  line-height: 24px;
  cursor: pointer;
}
.filterDropdown2__dropdownItem--default,
.filterSelect__dropdownItem--default,
.sortDropdown__dropdownItem--default {
  border-bottom: 1px solid #ddd;
}
.filterDropdown2__checkbox,
.filterSelect__checkbox,
.sortDropdown__checkbox {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.filterDropdown2.open .filterDropdown2__label:before {
  transform: translateY(-50%) rotate(180deg);
}
.filterDropdown2.open .filterDropdown2__dropdown {
  display: block !important;
}

.filterSlider__slider {
  margin: 11px 10px 0;
}
.filterSlider__amount {
  text-align: center;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 1.1px;
  margin-top: 10px;
}
.filterSlider--area .filterSlider__slider {
  margin-left: 55px;
  border: none;
}
.filterSlider--price .filterSlider__slider {
  margin-left: 25px;
  margin-right: 25px;
  border: none;
}

.locationsMapButtons {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media (min-width: 768px) {
  .locationsMapButtons {
    width: 290px;
    margin-top: 10px;
  }
}
@media (min-width: 1200px) {
  .locationsMapButtons {
    margin-top: 0;
  }
}
.locationsMapButtons .btn {
  display: block;
  line-height: 40px;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.16px;
  text-align: center;
  border: none;
  padding: 0;
  outline: none;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .locationsMapButtons .btn {
    line-height: 48px;
    font-size: 20px;
    letter-spacing: 0.2px;
  }
}
.locationsMapButtons .btnApplyFilters {
  width: 80px;
  margin-right: 20px;
  color: #ffffff;
  background: #003652;
  border: 1px solid #003652;
}
@media (min-width: 768px) {
  .locationsMapButtons .btnApplyFilters {
    width: 120px;
  }
}
.locationsMapButtons .btnResetFilters {
  position: relative;
  background: transparent;
  border: 1px solid #565656;
  color: #565656;
  padding: 0 15px 0 40px;
}
@media (min-width: 768px) {
  .locationsMapButtons .btnResetFilters {
    flex: 1;
    padding: 0 10px 0 40px;
  }
}
.locationsMapButtons .btnResetFilters:before, .locationsMapButtons .btnResetFilters:after {
  content: "";
  height: 2px;
  width: 20px;
  position: absolute;
  left: 25px;
  top: 50%;
  background: #565656;
}
.locationsMapButtons .btnResetFilters:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.locationsMapButtons .btnResetFilters:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.locationsToolbar {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .locationsToolbar {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-bottom: 34px;
  }
}
.locationsToolbar__links {
  margin-right: auto;
  font-weight: 400;
  letter-spacing: 0.18px;
}
@media (min-width: 1200px) {
  .locationsToolbar__links {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .locationsToolbar__links .lnk {
    margin-right: 30px;
  }
}
.locationsToolbar .lnk--availabilityReport {
  position: relative;
  padding-left: 35px;
  text-transform: uppercase;
  display: flex;
}
.locationsToolbar .lnk--availabilityReport:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-style: normal;
  width: 20px;
  aspect-ratio: 1;
  mask: var(--icon-download) no-repeat center/contain;
  background: currentColor;
}
.locationsToolbar .lnk--vacancyAlerts {
  position: relative;
  padding-left: 35px;
  text-transform: uppercase;
  display: flex;
}
.locationsToolbar .lnk--vacancyAlerts:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 20px;
  aspect-ratio: 1;
  mask: var(--icon-envelop) no-repeat center/contain;
  background: currentColor;
}
.locationsToolbar .lnk--differentNeighbourhood {
  position: relative;
  padding-left: 25px;
}
.locationsToolbar .lnk--differentNeighbourhood:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-style: normal;
  height: 20px;
  aspect-ratio: 384/515;
  mask: var(--icon-map-marker) no-repeat center/contain;
  background: currentColor;
}

.sortDropdown {
  margin-top: 30px;
}
@media (min-width: 768px) {
  .sortDropdown {
    display: flex;
    align-items: center;
    margin-bottom: 0;
    margin-top: 0;
  }
}
.sortDropdown__label {
  display: block;
  white-space: nowrap;
}
.sortDropdown__label:before, .sortDropdown__label:after {
  display: none;
}
@media (max-width: 767px) {
  .sortDropdown__text {
    display: block;
    margin-right: 0;
    margin-bottom: 5px;
  }
}
.sortDropdown__select {
  width: 100% !important;
}
.sortDropdown__arrow {
  display: block;
  width: 38px;
  height: 30px;
  position: absolute;
  right: 1px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  border-left: 1px solid #dddddd;
  background: #ffffff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='18px' height='11px'%3E%3Cpath fill-rule='evenodd' fill='rgb(119, 119, 119)' d='M0.503,0.612 L9.029,7.046 L17.555,0.612 L17.555,4.070 L9.029,10.504 L0.503,4.070 L0.503,0.612 Z'/%3E%3C/svg%3E") no-repeat center;
  background-size: 17px auto;
  pointer-events: none;
}

.locationsTeasers {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0;
}
@media (min-width: 768px) {
  .locationsTeasers {
    margin: 0 -2.25%;
  }
}
@media (min-width: 1200px) {
  .locationsTeasers {
    margin: 0 -1%;
  }
}
@media (min-width: 1600px) {
  .locationsTeasers {
    margin: 0 -0.45%;
  }
}

.propertyTeaser {
  position: relative;
  border: 1px solid #dddddd;
  background: #ffffff;
  transition: opacity 0.3s !important;
  width: 100%;
  margin-bottom: 6%;
}
@media (min-width: 768px) {
  .propertyTeaser {
    width: 45.5%;
    margin-left: 2.25%;
    margin-right: 2.25%;
    margin-bottom: 4%;
  }
}
@media (min-width: 1200px) {
  .propertyTeaser {
    width: 31.3%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 3%;
  }
}
@media (min-width: 1600px) {
  .propertyTeaser {
    width: 24.1%;
    margin-left: 0.45%;
    margin-right: 0.45%;
    margin-bottom: 2.2%;
  }
}
.propertyTeaser__labels {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  display: flex;
}
.propertyTeaser__label {
  color: #ffffff;
  text-transform: uppercase;
}
.propertyTeaser__label--sold {
  background: #b5131b;
  line-height: 48px;
  padding: 0 35px;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: 0.8px;
}
.propertyTeaser__label--listingType {
  right: 0;
  bottom: 0;
  line-height: 28px;
  padding: 0 15px;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.64px;
  background: #003652;
}
.propertyTeaser__label--type2 {
  background-color: #5f8b00;
}
.propertyTeaser__label--full, .propertyTeaser__label--promotion {
  background: #b5131b;
  line-height: 35px;
  padding: 0 15px;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.64px;
}
.propertyTeaser__label--furnished {
  background: #003652;
  line-height: 35px;
  padding: 0 15px;
  font-weight: 300;
  font-size: 16px;
  letter-spacing: 0.64px;
}
.propertyTeaser__thumb {
  position: relative;
  margin: -1px -1px 0;
  padding-bottom: 66.7%;
}
.propertyTeaser__img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.propertyTeaser__text {
  padding: 10% 8%;
}
@media (min-width: 768px) {
  .propertyTeaser__text {
    padding: 10%;
  }
}
@media (min-width: 1200px) {
  .propertyTeaser__text {
    padding: 7% 10%;
  }
}
.propertyTeaser__title {
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .propertyTeaser__title {
    margin-bottom: 10px;
  }
}
.propertyTeaser__price {
  margin-bottom: 10px;
}
.propertyTeaser__location {
  margin-bottom: 20px;
}
.propertyTeaser__lnkInquire {
  color: #003652;
  padding-left: 40px;
  background: url("../images/icon-envelop-closed-purple.svg") no-repeat left center;
  background-size: 28px auto;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  font-weight: 400;
}
.propertyTeaser__btnMore {
  position: absolute;
  right: 0;
  bottom: 0;
}
.propertyTeaser__btnMorePlus {
  display: block;
  position: relative;
  width: 45px;
  height: 45px;
  background: #003652;
  transition: background-color 0.3s;
}
.propertyTeaser__btnMorePlus:before, .propertyTeaser__btnMorePlus:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
}
.propertyTeaser__btnMorePlus:before {
  width: 3px;
  height: 25px;
}
.propertyTeaser__btnMorePlus:after {
  height: 3px;
  width: 25px;
}
.propertyTeaser__btnMoreText {
  display: none;
  padding-left: 15px;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Hind", sans-serif;
}
.propertyTeaser__btnMore:hover .propertyTeaser__btnMorePlus {
  background: #b5131b;
}
.propertyTeaser--sold {
  display: block;
}
.neighbourhoodTeaser {
  position: relative;
  width: 100%;
  margin-bottom: 6%;
}
@media (min-width: 768px) {
  .neighbourhoodTeaser {
    width: 45.5%;
    margin-left: 2.25%;
    margin-right: 2.25%;
    margin-bottom: 4%;
  }
}
@media (min-width: 1200px) {
  .neighbourhoodTeaser {
    width: 31.3%;
    margin-left: 1%;
    margin-right: 1%;
    margin-bottom: 3%;
  }
}
@media (min-width: 1600px) {
  .neighbourhoodTeaser {
    width: 24.1%;
    margin-left: 0.45%;
    margin-right: 0.45%;
    margin-bottom: 1.3%;
  }
}
.neighbourhoodTeaser .neighbourhoodTeaser__img {
  width: 100%;
}
.neighbourhoodTeaser__lnkOverlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
}
.neighbourhoodTeaser__lnkOverlay:after {
  content: "";
  width: 45px;
  height: 45px;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #003652 url("../images/icon-search-white.svg") no-repeat center;
  background-size: 20px auto;
}
.neighbourhoodTeaser__title {
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.25);
  margin-top: 15px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.neighbourhoodTeaser__btn {
  display: none;
}

.infoBox {
  box-shadow: 0 0 7.68px 0.32px rgba(34, 24, 24, 0.3);
  background: #ffffff;
  color: #383838;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 28px;
}
.infoBox > img {
  position: absolute !important;
  right: 0;
  top: 0;
  width: auto;
  z-index: 10;
}
.infoBox .propertyImage {
  position: static !important;
  width: 200px;
  aspect-ratio: 200/210;
  object-fit: cover;
}
.infoBox .propertyTeaser {
  width: 290px;
  display: flex;
  margin: 0;
  border: none;
  font-family: "Hind", sans-serif;
}
@media (min-width: 768px) {
  .infoBox .propertyTeaser {
    min-width: 500px;
    width: auto;
  }
}
.infoBox .propertyTeaser__thumb {
  display: none;
  width: 200px;
  aspect-ratio: 200/210;
  object-fit: cover;
  margin: 0;
  padding-bottom: 0;
}
@media (min-width: 768px) {
  .infoBox .propertyTeaser__thumb {
    display: block;
  }
}
.infoBox .propertyTeaser__text {
  flex: 1;
  padding: 25px 25px 70px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 300;
}
@media (min-width: 768px) {
  .infoBox .propertyTeaser__text {
    padding: 25px 30px;
  }
}
@media (min-width: 768px) {
  .infoBox .propertyTeaser__title {
    white-space: nowrap;
  }
}
.infoBox .propertyTeaser__btnMore {
  left: 0;
  right: auto;
  bottom: 0;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .infoBox .propertyTeaser__btnMore {
    left: 78px;
    bottom: 50%;
    transform: translateY(50%);
  }
}
.infoBox .propertyTeaser__btnMorePlus {
  background: #003652;
}
@media (min-width: 768px) {
  .infoBox .propertyTeaser__btnMorePlus {
    background: #fff;
  }
}
.infoBox .propertyTeaser__btnMorePlus:before, .infoBox .propertyTeaser__btnMorePlus:after {
  background: #ffffff;
}
@media (min-width: 768px) {
  .infoBox .propertyTeaser__btnMorePlus:before, .infoBox .propertyTeaser__btnMorePlus:after {
    background: #003652;
  }
}
@media (min-width: 768px) {
  .infoBox .propertyTeaser__btnMorePlus:hover:before, .infoBox .propertyTeaser__btnMorePlus:hover:after {
    background: #ffffff;
  }
}
.infoBox .propertyTeaser__btnMoreText {
  display: block;
}
@media (min-width: 768px) {
  .infoBox .propertyTeaser__btnMoreText {
    display: none;
  }
}
.infoBox .propertyTeaser__label--full {
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
}
.infoBox .propertyTeaser--full .propertyTeaser__text, .infoBox .propertyTeaser--promotion .propertyTeaser__text {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .infoBox .propertyTeaser--full .propertyTeaser__text, .infoBox .propertyTeaser--promotion .propertyTeaser__text {
    padding-top: 25px;
  }
}
.infoBox .neighbourhoodTeaser {
  background: #ffffff;
  width: auto;
  margin: 0;
  padding: 35px 40px;
}
.infoBox .neighbourhoodTeaser__thumb {
  display: none;
}
.infoBox .neighbourhoodTeaser__lnkOverlay {
  display: block;
  position: static;
  background: transparent;
  padding: 0;
}
.infoBox .neighbourhoodTeaser__lnkOverlay:after {
  display: none;
}
.infoBox .neighbourhoodTeaser__title {
  position: static;
  color: #383838;
  text-shadow: none;
  transform: none;
  margin: 0 0 15px;
}
.infoBox .neighbourhoodTeaser__btn {
  display: block;
  white-space: nowrap;
}

.locationsPagination {
  text-align: center;
  margin-top: 20px;
}

.locationsNotFound {
  display: none;
  padding: 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .locationsNotFound {
    font-size: 24px;
    padding: 40px 130px;
  }
}

/*# sourceMappingURL=maps.css.map */
