@keyframes estatetool-fadein-down {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes estatetool-fadein-up {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes estatetool-fadeout-up {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100px);
    opacity: 0;
  }
}
@keyframes estatetool-grid-animate {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
:root {
  --estatetool-primary: #00979C;
  --estatetool-primary-contrast: #ffffff;
  --estatetool-primary-darken: #00979C;
  --estatetool-secondary: #00979C;
  --estatetool-accent: #957836;
  --estatetool-text: #161616;
  --estatetool-light-bg: #EAEAEA;
}

.estatetool-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 0;
  stroke: currentColor;
  fill: currentColor;
  font-size: 1em;
}

.estatetool-font-family {
  font-family: inherit;
  color: #161616;
  color: var(--estatetool-text);
}

.estl-responsive-iframe {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.estl-responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.estl-text-primary {
  color: var(--estatetool-primary);
}

.estl-flex {
  display: flex;
  align-items: flex-start;
}
.estl-flex--between {
  justify-content: space-between;
}
@media (max-width: 767px) {
  .estl-flex {
    display: block;
  }
}

.estl-mb-0 {
  margin-bottom: 0;
}
.estl-mb-05 {
  margin-bottom: 0.5em;
}
.estl-mb-1 {
  margin-bottom: 1em;
}
@media (min-width: 768px) {
  .estl-mb-md-0 {
    margin-bottom: 0;
  }
}

.estl-skeleton-box {
  display: inline-block;
  height: 1em;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #DDDBDD;
}
.estl-skeleton-box::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  animation: shimmer 2s infinite;
  content: "";
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.estl-skeleton {
  display: inline-block;
  height: 1em;
  max-width: 100%;
  position: relative;
  overflow: hidden;
  background-color: #DDDBDD;
}
.estl-skeleton::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.2) 20%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  animation: shimmer 2s infinite;
  content: "";
}
@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}
.estl-skeleton--fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

a.estatetool-button.estatetool-button,
button.estatetool-button.estatetool-button {
  display: inline-block;
  padding: 12px 24px;
  font-size: 16px;
  line-height: 1.25;
  border: 1px solid;
  border-radius: 0;
  font-weight: 500;
  white-space: nowrap;
  text-overflow: ellipsis;
  text-align: center;
  cursor: pointer;
  vertical-align: middle;
  user-select: none;
  transition: 0.25s cubic-bezier(0.2, 1, 0.3, 1);
  color: var(--estatetool-primary-contrast);
  background-color: var(--estatetool-primary);
  border-color: var(--estatetool-primary);
  font-family: inherit;
  outline: none;
  text-transform: none;
  transition: all 0.3s;
}
a.estatetool-button.estatetool-button:hover, a.estatetool-button.estatetool-button:active,
button.estatetool-button.estatetool-button:hover,
button.estatetool-button.estatetool-button:active {
  color: var(--estatetool-primary-contrast);
  background-color: var(--estatetool-primary-darken);
  border-color: var(--estatetool-primary-darken);
}
@media (max-width: 767px) {
  a.estatetool-button.estatetool-button,
  button.estatetool-button.estatetool-button {
    font-size: 14px;
    padding: 6px 18px;
  }
}
a.estatetool-button.estatetool-button:disabled,
button.estatetool-button.estatetool-button:disabled {
  opacity: 0.25;
  cursor: none;
  color: var(--estatetool-primary-contrast);
  background-color: var(--estatetool-primary-darken);
  border-color: var(--estatetool-primary-darken);
}
a.estatetool-button.estatetool-button--outline,
button.estatetool-button.estatetool-button--outline {
  color: var(--estatetool-primary);
  background-color: transparent;
  border-color: var(--estatetool-primary);
}
a.estatetool-button.estatetool-button--outline:disabled,
button.estatetool-button.estatetool-button--outline:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  color: var(--estatetool-primary);
  background-color: transparent;
  border-color: var(--estatetool-primary);
}
a.estatetool-button.estatetool-button--link,
button.estatetool-button.estatetool-button--link {
  background-color: transparent;
  border: none;
  color: var(--estatetool-primary);
}
a.estatetool-button.estatetool-button--link:hover, a.estatetool-button.estatetool-button--link:active,
button.estatetool-button.estatetool-button--link:hover,
button.estatetool-button.estatetool-button--link:active {
  color: var(--estatetool-primary);
  background-color: transparent;
  border: none;
}
a.estatetool-button.estatetool-button--icon,
button.estatetool-button.estatetool-button--icon {
  background-color: transparent;
  border: none;
  color: inherit;
}
a.estatetool-button.estatetool-button--icon svg,
button.estatetool-button.estatetool-button--icon svg {
  fill: currentColor;
}
a.estatetool-button.estatetool-button--fullwidth,
button.estatetool-button.estatetool-button--fullwidth {
  width: 100%;
}
a.estatetool-button.estatetool-button--reset,
button.estatetool-button.estatetool-button--reset {
  background: none;
  background-color: #ffffff;
  border-color: #DCDCDC;
  color: #323232;
}
a.estatetool-button.estatetool-button--reset:disabled,
button.estatetool-button.estatetool-button--reset:disabled {
  background: none;
  background-color: #ffffff;
  border-color: #DCDCDC;
  color: #323232;
  opacity: 0.5;
  cursor: not-allowed;
}
a.estatetool-button.estatetool-button--reset:hover,
button.estatetool-button.estatetool-button--reset:hover {
  background-color: #DCDCDC;
  border-color: #DCDCDC;
  color: #323232;
}

/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  --pswp-root-z-index: 100000;
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;
  --pswp-error-text-color: var(--pswp-icon-color);
}

/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/
.pswp {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--pswp-root-z-index);
  display: none;
  touch-action: none;
  outline: 0;
  opacity: 0.003;
  contain: layout style size;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}

.pswp * {
  box-sizing: border-box;
}

.pswp img {
  max-width: none;
}

.pswp--open {
  display: block;
}

.pswp,
.pswp__bg {
  transform: translateZ(0);
  will-change: opacity;
}

.pswp__bg {
  opacity: 0.005;
  background: var(--pswp-bg);
}

.pswp,
.pswp__scroll-wrap {
  overflow: hidden;
}

.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.pswp__img,
.pswp__zoom-wrap {
  width: auto;
  height: auto;
}

.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
  cursor: -webkit-zoom-out;
  cursor: -moz-zoom-out;
  cursor: zoom-out;
}

/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.pswp__item {
  /* z-index for fade transition */
  z-index: 1;
  overflow: hidden;
}

.pswp__hidden {
  display: none !important;
}

/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}

.pswp__content > * {
  pointer-events: auto;
}

/*

  PhotoSwipe UI

*/
/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}

.pswp__error-msg {
  margin: auto;
  font-size: 1em;
  line-height: 1;
  color: var(--pswp-error-text-color);
}

/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
  opacity: 0.005;
  will-change: opacity;
  transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
  z-index: 10; /* always overlap slide content */
  pointer-events: none; /* hidden elements should not be clickable */
}

/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
  opacity: 1;
  pointer-events: auto;
}

/* <button> styles, including css reset */
.pswp__button {
  position: relative;
  display: block;
  width: 50px;
  height: 60px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  cursor: pointer;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 0.85;
  -webkit-appearance: none;
  -webkit-touch-callout: none;
}

.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}

.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}

.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
}

.pswp__icn {
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}

.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}

.pswp__icn:focus {
  outline: 0;
}

/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
  background: var(--pswp-placeholder-bg);
}

.pswp__top-bar {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  z-index: 10;
  /* allow events to pass through top bar itself */
  pointer-events: none !important;
}

.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}

/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}

/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}

.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}

.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}

.pswp--one-slide .pswp__button--arrow {
  display: none;
}

/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}

/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}

.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}

.pswp__button--arrow--next {
  right: 0px;
}

.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}

/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}

.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}

/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}

/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}

.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}

.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}

@keyframes pswp-clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}

.pswp--one-slide .pswp__counter {
  display: none;
}

button.pswp__button.pswp__button {
  display: block;
  width: 50px;
  height: 60px;
  padding: 0;
  margin: 0;
  color: inherit;
  background-color: transparent;
  border: none;
  letter-spacing: normal;
  text-transform: none;
  font-family: inherit;
  font-weight: normal;
  box-shadow: none;
  border-radius: 0;
  outline: none;
}

.estatetool-pswp__item {
  display: block;
}

/**
 * Swiper 10.3.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2023 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 28, 2023
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  overflow: clip;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.estatetool-swiper-images__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.estatetool-swiper-images__next, .estatetool-swiper-images__prev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  margin-top: -25px;
  width: 30px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #ffffff;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 1000;
}
.estatetool-swiper-images__next:hover, .estatetool-swiper-images__prev:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.estatetool-swiper-images__prev {
  left: 30px;
}
.estatetool-swiper-images__next {
  right: 30px;
}
@media (min-width: 768px) {
  .estatetool-swiper-images__prev {
    left: 10px;
  }
  .estatetool-swiper-images__next {
    right: 10px;
  }
}
.estatetool-swiper-images .swiper-pagination-bullet {
  opacity: 1;
  background-color: rgba(255, 255, 255, 0.4);
  width: 10px;
  height: 10px;
}
.estatetool-swiper-images .swiper-pagination-bullet-active {
  background-color: #fff;
}

.estatetool-swiper-cards__nav {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.estatetool-swiper-cards__prev, .estatetool-swiper-cards__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  line-height: 30px;
  font-size: 14px;
  text-align: center;
  margin-left: 8px;
  background-color: var(--estatetool-primary);
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s;
}
.estatetool-swiper-cards__prev:hover, .estatetool-swiper-cards__next:hover {
  background-color: var(--estatetool-primary-darken);
}

.estatetool-frontpage-image {
  display: flex;
  align-items: center;
  position: relative;
  min-height: 400px;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.estatetool-frontpage-image__body {
  height: 100%;
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.estatetool-frontpage-image__caption1, .estatetool-frontpage-image__caption2 {
  display: block !important;
  font-size: 18px;
  padding: 1.25em 1em;
  line-height: 1.1;
  color: inherit !important;
}
.estatetool-frontpage-image__caption1:hover, .estatetool-frontpage-image__caption2:hover {
  color: inherit !important;
}
.estatetool-frontpage-image__caption1 {
  width: 85%;
  padding-bottom: 1.75em;
  max-width: 600px;
  background-color: rgba(197, 216, 216, 0.7);
}
.estatetool-frontpage-image__caption2 {
  width: 90%;
  max-width: 700px;
  margin-top: -1em;
  margin-left: 5%;
  background-color: #FF3337;
}
@media (min-width: 992px) {
  .estatetool-frontpage-image {
    min-height: 600px;
  }
  .estatetool-frontpage-image__caption1, .estatetool-frontpage-image__caption2 {
    font-size: 24px;
  }
  .estatetool-frontpage-image__caption1 {
    width: 65%;
  }
  .estatetool-frontpage-image__caption2 {
    width: 70%;
    margin-left: 10%;
  }
}
@media (min-width: 1200px) {
  .estatetool-frontpage-image {
    min-height: 800px;
  }
  .estatetool-frontpage-image__caption1, .estatetool-frontpage-image__caption2 {
    font-size: 28px;
  }
  .estatetool-frontpage-image__caption1 {
    width: 45%;
  }
  .estatetool-frontpage-image__caption2 {
    width: 50%;
    margin-left: 15%;
  }
}

.estatetool-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -10px;
  margin-right: -10px;
}
.estatetool-grid__item {
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
  width: 100%;
}
@media (min-width: 620px) {
  .estatetool-grid__item {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  .estatetool-grid__item {
    width: 50%;
  }
}
.estatetool-grid__item--animated {
  -webkit-animation: estatetool-grid-animate 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: estatetool-grid-animate 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}
@media (min-width: 768px) {
  .estatetool-grid--2 .estatetool-grid__item {
    width: 50%;
  }
}
@media (min-width: 768px) {
  .estatetool-grid--3 .estatetool-grid__item {
    width: 50%;
  }
}
@media (min-width: 992px) {
  .estatetool-grid--3 .estatetool-grid__item {
    width: 33.33%;
  }
}
.estatetool-grid__item-hide {
  display: none;
}

.estatetool-grid-more {
  margin: 20px 0 0;
  text-align: center;
}

.estatetool-loader {
  display: inline-block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  position: relative;
  animation: rotate 1s linear infinite;
}

.estatetool-loader::before,
.estatetool-loader::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  inset: 0px;
  border-radius: 50%;
  border: 5px solid #00979C;
  animation: prixClipFix 2s linear infinite;
}

.estatetool-loader::after {
  border-color: #957836;
  animation: prixClipFix 2s linear infinite, rotate 0.5s linear infinite reverse;
  inset: 6px;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes prixClipFix {
  0% {
    clip-path: polygon(50% 50%, 0 0, 0 0, 0 0, 0 0, 0 0);
  }
  25% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 0, 100% 0, 100% 0);
  }
  50% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 100% 100%, 100% 100%);
  }
  75% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 100%);
  }
  100% {
    clip-path: polygon(50% 50%, 0 0, 100% 0, 100% 100%, 0 100%, 0 0);
  }
}
.estl-field {
  margin-bottom: 20px;
}
.estl-field__label {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 700;
}

.estl-field-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -5px;
  margin-right: -5px;
}
.estl-field-grid__item {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5px;
  padding-right: 5px;
}
@media (min-width: 620px) {
  .estl-field-grid__item {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 560px) {
  .estl-field-grid__item {
    width: 50%;
  }
}

.estatetool-field {
  margin-bottom: 2em;
}
@media (min-width: 992px) {
  .estatetool-field {
    margin-bottom: 3.5em;
  }
  .estatetool-field--sm {
    margin-bottom: 2.5em;
  }
}
.estatetool-field__header {
  position: relative;
  margin-bottom: 1em;
}
@media (min-width: 992px) {
  .estatetool-field__header {
    margin-bottom: 18px;
  }
}
.estatetool-field__header--icon {
  padding-left: 2.25em;
  padding-top: 2px;
}
.estatetool-field__icon {
  position: absolute;
  left: 0;
  top: 0;
}
.estatetool-field__icon svg {
  width: 1.375em;
  height: 1.375em;
  fill: #323232;
}
.estatetool-field__title {
  font-size: 1.125em;
  margin-bottom: 2px;
  line-height: 1.2;
  font-weight: 600;
  color: #323232;
  color: var(--estatetool-text);
}
.estatetool-field__subtitle {
  font-size: 0.875em;
  color: inherit;
}
.estatetool-field--reset {
  margin-bottom: 2em;
  display: none;
}
@media (min-width: 992px) {
  .estatetool-field--reset {
    display: block;
  }
}

input[type=date].estl-input,
input[type=email].estl-input,
input[type=number].estl-input,
input[type=password].estl-input,
input[type=search].estl-input,
input[type=tel].estl-input,
input[type=text].estl-input,
input[type=url].estl-input,
select.estl-input,
textarea.estl-input {
  padding: 10px 16px;
  font-size: 16px;
  line-height: 1.4;
  border: 1px solid #EAEAEA;
  border-radius: 0;
}
input[type=date].estl-input:focus,
input[type=email].estl-input:focus,
input[type=number].estl-input:focus,
input[type=password].estl-input:focus,
input[type=search].estl-input:focus,
input[type=tel].estl-input:focus,
input[type=text].estl-input:focus,
input[type=url].estl-input:focus,
select.estl-input:focus,
textarea.estl-input:focus {
  border-color: var(--estatetool-primary);
  outline: none;
}

.estatetool-input {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: 11px 19px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  background-color: #fff;
  background-image: none;
  border-radius: 6px;
  -webkit-appearance: none;
  transition: 0.3s ease-in-out;
  border: 1px solid #c5c6cd;
}

select.estatetool-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAANCAYAAAC+ct6XAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6RjBBRUQ1QTQ1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6RjBBRUQ1QTU1QzkxMTFFMDlDNDdEQzgyNUE1RjI4MTEiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDpGMEFFRDVBMjVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDpGMEFFRDVBMzVDOTExMUUwOUM0N0RDODI1QTVGMjgxMSIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/Pk5mU4QAAACUSURBVHjaYmRgYJD6////MwY6AyaGAQIspCieM2cOjKkIxCFA3A0TSElJoZ3FUCANxAeAWA6IOYG4iR5BjWwpCDQCcSnNgxoIVJCDFwnwA/FHWlp8EIpHSKoGgiggLkITewrEcbQO6mVAbAbE+VD+a3IsJTc7FQAxDxD7AbEzEF+jR1DDywtoCr9DbhwzDlRZDRBgACYqHJO9bkklAAAAAElFTkSuQmCC);
  background-position: center right;
  background-repeat: no-repeat;
}

.estatetool-checkbox {
  margin-bottom: 16px;
  user-select: none;
}
.estatetool-checkbox:last-child {
  margin-bottom: 0;
}
.estatetool-checkbox > label {
  display: inline-block;
  margin: 0;
  padding: 0;
  padding-left: 28px;
  line-height: 1.4;
  position: relative;
  cursor: pointer;
}
.estatetool-checkbox > label > span {
  display: block;
  align-items: center;
}
.estatetool-checkbox > label > span::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 2px;
  width: 16px;
  height: 16px;
  margin-top: 0.1em;
  border: 1px solid rgba(61, 61, 61, 0.2);
  background-color: rgba(50, 50, 50, 0.2);
  transition: all 0.3s;
  opacity: 1;
}
.estatetool-checkbox > label > span::after {
  content: " ";
  display: none;
  position: absolute;
  left: 3px;
  top: 5px;
  width: 10px;
  height: 6px;
  margin-top: 0.1em;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}
.estatetool-checkbox > label > input:checked + span {
  opacity: 1;
}
.estatetool-checkbox > label > input:checked + span::before {
  background-color: var(--estatetool-primary);
  border: none;
}
.estatetool-checkbox > label > input:checked + span::after {
  display: block;
}
.estatetool-checkbox input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.estatetool-checkbox--radio > label > span::before {
  border-radius: 50%;
}
.estatetool-checkbox--radio > label > span::after {
  top: 6px;
  left: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ffffff;
  border-left: none;
  border-bottom: none;
  transform: none;
}
.estatetool-checkbox--badge > label > span {
  padding-right: 30px;
}
.estatetool-checkbox__badge {
  position: absolute;
  display: inline-block;
  right: 0;
  top: -2px;
  background-color: #323232;
  width: 24px;
  height: 24px;
  line-height: 24px;
  border-radius: 24px;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  color: #ffffff;
  vertical-align: text-bottom;
  margin-left: 8px;
}
.estatetool-checkbox--secondary > label > input:checked + span::before {
  background-color: var(--estatetool-primary);
}
.estatetool-checkbox--lg > label {
  padding-left: 42px;
}
.estatetool-checkbox--lg > label > span::before {
  content: " ";
  top: 0;
  width: 28px;
  height: 28px;
  margin-top: 0;
}
.estatetool-checkbox--lg > label > span::after {
  content: " ";
  display: none;
  position: absolute;
  left: 6px;
  top: 7px;
  width: 16px;
  height: 8px;
  margin-top: 0;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}

.estatetool-checkbox--partial > label > input:not(:checked) + span::before {
  background-color: var(--estatetool-primary);
}
.estatetool-checkbox--partial > label > input:not(:checked) + span::after {
  content: " ";
  display: block;
  position: absolute;
  left: 3px;
  top: 8px;
  width: 10px;
  height: 2px;
  background-color: #ffffff;
  transform: rotate(0);
}

@media (max-width: 767px) {
  .estatetool-checkbox--mobchip {
    display: inline-flex;
    margin-bottom: 8px;
    margin-right: 4px;
    user-select: none;
  }
  .estatetool-checkbox--mobchip > label {
    padding: 0;
  }
  .estatetool-checkbox--mobchip > label > span {
    border: 1px solid #EAEAEA;
    padding: 8px 12px;
  }
  .estatetool-checkbox--mobchip > label > span::before, .estatetool-checkbox--mobchip > label > span::after {
    display: none;
  }
  .estatetool-checkbox--mobchip > label > input:checked + span {
    background-color: #EAEAEA;
  }
  .estatetool-checkbox--mobchip > label > input:checked + span::before, .estatetool-checkbox--mobchip > label > input:checked + span::after {
    display: none;
  }
  .estatetool-checkbox--mobchip.estatetool-checkbox--badge > label > span {
    display: flex;
  }
  .estatetool-checkbox--mobchip.estatetool-checkbox--badge .estatetool-checkbox__badge {
    position: unset;
  }
}
.estatetool-checkbox-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.estatetool-checkbox-buttons > label {
  position: relative;
  cursor: pointer;
}
.estatetool-checkbox-buttons > label > span {
  position: relative;
  display: block;
  padding: 8px 24px;
  border: 2px solid #DCDCDC;
  background-color: #fff;
  font-size: 14px;
  line-height: 1.4;
  transition: all 0.3s;
  z-index: 1;
  cursor: pointer;
}
.estatetool-checkbox-buttons > label input {
  position: absolute;
  opacity: 0.5;
}
.estatetool-checkbox-buttons > label:hover > span {
  background-color: #FaF8F8;
}
.estatetool-checkbox-buttons > label input:checked + span {
  background-color: #00979C;
  background-color: var(--estatetool-primary);
  color: #ffffff;
}

.estatetool-range__slider-wrapper {
  padding: 4px 8px;
}
.estatetool-range__slider-wrapper .ui-slider-range {
  background-color: #323232;
  background-color: var(--estatetool-primary);
}
.estatetool-range__slider-wrapper .ui-slider {
  background-color: #EAEAEA;
  background-color: var(--estatetool-light-bg);
  border: none;
}
.estatetool-range__slider-wrapper .ui-slider-horizontal {
  height: 4px;
}
.estatetool-range__slider-wrapper .ui-slider-horizontal .ui-slider-handle {
  border-radius: 50%;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  top: -6px;
  outline: none;
  cursor: pointer;
  background-color: #323232;
  background-color: var(--estatetool-primary);
  border: none;
  background-repeat: no-repeat;
  background-position: center center;
}
.estatetool-range__slider-wrapper .ui-slider-horizontal .ui-state-active {
  background-color: #323232;
  border: none;
}
.estatetool-range__labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.875em;
  color: rgba(22, 22, 22, 0.6);
  color: var(--estatetool-text);
}
.estatetool-range__labels > div:first-child {
  padding-right: 20px;
}

.estl-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}
.estl-switch > input {
  opacity: 0;
  width: 0;
  height: 0;
}
.estl-switch > span {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.2);
  transition: 0.4s;
  border-radius: 34px;
}
.estl-switch > span:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #ffffff;
  border-radius: 50%;
  transition: 0.4s;
}
.estl-switch input:checked + span:before {
  transform: translateX(26px);
  background-color: var(--estatetool-primary);
}
.estl-switch input:focus + span {
  box-shadow: 0 0 1px var(--estatetool-primary);
}
.estl-switch input:disabled + span {
  opacity: 0.5;
  cursor: not-allowed;
}

.estatetool-units {
  position: relative;
  font-size: 16px;
}
@media (max-width: 767px) {
  .estatetool-units {
    font-size: 14px;
  }
}
.estatetool-units__noresult {
  font-size: 20px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 12% 0;
}
@media (min-width: 1100px) {
  .estatetool-units__container {
    display: flex;
  }
  .estatetool-units__side {
    flex: 0 0 250px;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid #EAEAEA;
    min-width: 1px;
  }
  .estatetool-units__main {
    flex: 0 1 100%;
    min-width: 1px;
  }
}
@media (min-width: 1200px) {
  .estatetool-units__side {
    flex: 0 0 250px;
    padding-right: 10px;
    margin-right: 10px;
  }
}
@media (min-width: 1320px) {
  .estatetool-units__side {
    flex: 0 0 300px;
    padding-right: 20px;
    margin-right: 20px;
  }
}
@media screen and (min-width: 1600px) {
  .estatetool-units__side {
    flex: 0 0 340px;
    padding-right: 56px;
    margin-right: 56px;
  }
}

.estatetool-units--no-grid .estatetool-units__grid, .estatetool-units:not(.estatetool-units--grid) .estatetool-units__grid {
  display: none;
}
.estatetool-units--no-table .estatetool-units__table, .estatetool-units:not(.estatetool-units--table) .estatetool-units__table {
  display: none;
}

.estatetool-units__top_mobile {
  margin-bottom: 1.5em;
  display: flex;
}
@media (min-width: 1100px) {
  .estatetool-units__top_mobile {
    display: none;
  }
}
.estatetool-units__top_mobile > button {
  margin-right: 1em;
}

.estatetool-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5em;
}
@media (min-width: 1100px) {
  .estatetool-toolbar {
    flex-wrap: nowrap;
  }
}
.estatetool-toolbar__info {
  font-size: 1.125em;
  flex: 0 1 100%;
  margin-right: auto;
  margin-bottom: 0.75em;
}
@media (min-width: 1100px) {
  .estatetool-toolbar__info {
    flex: 0 1 auto;
  }
}
.estatetool-toolbar__buttons {
  display: flex;
  margin-right: 1em;
}
.estatetool-toolbar button.estatetool-toolbar__button {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 8px;
  margin: 0;
  margin-right: 1.5em;
  border: none;
  background-color: transparent;
  border-radius: 0;
  color: inherit;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  transition: background-color 0.3s;
  letter-spacing: normal;
  text-transform: none;
  cursor: pointer;
}
.estatetool-toolbar button.estatetool-toolbar__button svg {
  display: inline-block;
  font-size: 1.25em;
}
.estatetool-toolbar button.estatetool-toolbar__button > span {
  display: inline-block;
  margin-left: 8px;
}
.estatetool-toolbar button.estatetool-toolbar__button:focus {
  outline: none;
  background-color: transparent;
}
.estatetool-toolbar button.estatetool-toolbar__button:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.estatetool-toolbar__sort {
  position: relative;
  display: flex;
  align-items: center;
}
.estatetool-toolbar__sort select {
  display: inline-block;
  background-color: transparent;
  background: none;
  border: none;
  font-size: 14px;
  line-height: 22px;
  color: inherit;
  min-height: 30px;
  padding: 4px 8px;
}
.estatetool-toolbar__sort button.estatetool-toolbar__button {
  margin-right: 0;
  margin-left: 8px;
}
.estatetool-toolbar__sort::after {
  position: absolute;
  display: none;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: 10;
}
.estatetool-toolbar__sort-dir {
  display: inline-flex;
  margin: 0;
  padding: 0;
  margin-right: 0;
  margin-left: 12px;
  cursor: pointer;
  font-size: 1em;
  font-weight: normal;
  color: inherit;
  user-select: none;
}
.estatetool-toolbar__sort-dir > span {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.estatetool-toolbar__sort-dir svg {
  font-size: 1.375em;
}
.estatetool-toolbar__sort-dir > input {
  position: absolute;
  visibility: hidden;
}
.estatetool-toolbar__sort-dir > input ~ span {
  display: none;
}
.estatetool-toolbar__sort-dir > input ~ span:first-of-type {
  display: inline-flex;
}
.estatetool-toolbar__sort-dir > input:checked ~ span:first-of-type {
  display: none;
}
.estatetool-toolbar__sort-dir > input:checked ~ span:last-of-type {
  display: inline-flex;
}
@media (max-width: 767px) {
  .estatetool-toolbar__info {
    width: 100%;
    margin-bottom: 8px;
  }
  .estatetool-toolbar button.estatetool-toolbar__button {
    padding-left: 0;
    padding-right: 0;
    margin-right: 16px;
  }
  .estatetool-toolbar button.estatetool-toolbar__button > span {
    display: none;
  }
  .estatetool-toolbar__sort button.estatetool-toolbar__button {
    margin-right: 0;
    margin-left: 16px;
  }
}

.estatetool-units--table .estatetool-toolbar__button--table, .estatetool-units--no-grid .estatetool-toolbar__button--table, .estatetool-units--table .estatetool-toolbar__button--floorplan, .estatetool-units--no-grid .estatetool-toolbar__button--floorplan, .estatetool-units--table .estatetool-toolbar__button--hide-floorplan, .estatetool-units--no-grid .estatetool-toolbar__button--hide-floorplan {
  display: none !important;
}
.estatetool-units--no-table .estatetool-toolbar__button--table, .estatetool-units--no-table .estatetool-toolbar__sort {
  display: none !important;
}
.estatetool-units--grid .estatetool-toolbar__button--grid, .estatetool-units--no-table .estatetool-toolbar__button--grid {
  display: none !important;
}
.estatetool-units--floorplan .estatetool-toolbar__button--floorplan {
  display: none !important;
}
.estatetool-units:not(.estatetool-units--floorplan) .estatetool-toolbar__button--hide-floorplan {
  display: none !important;
}
.estatetool-units--table .estatetool-toolbar__button--floorplan {
  display: inline-flex !important;
  cursor: not-allowed !important;
  opacity: 0.5;
}
@media (min-width: 1100px) {
  .estatetool-units--table .estatetool-toolbar__sort {
    cursor: not-allowed !important;
    opacity: 0.5;
  }
  .estatetool-units--table .estatetool-toolbar__sort::after {
    display: block;
    cursor: not-allowed !important;
  }
}
.estatetool-units--no-grid .estatetool-toolbar__button--floorplan {
  display: none !important;
}
.estatetool-units--desc .estatetool-toolbar__button--asc {
  display: none !important;
}
.estatetool-units:not(.estatetool-units--desc) .estatetool-toolbar__button--desc {
  display: none !important;
}

.estatetool-grid--units {
  margin-left: -15px;
  margin-right: -15px;
}
.estatetool-grid--units .estatetool-grid__item {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
}

.estatetool-unit-card {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  color: #323232;
  color: var(--estatetool-text);
}
.estatetool-unit-card__top {
  position: relative;
  min-height: 100px;
  padding-top: 60%;
  overflow: hidden;
}
.estatetool-unit-card__image, .estatetool-unit-card__floorplan {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  z-index: 0;
  transition: all 0.3s;
  transform-origin: center top;
}
.estatetool-unit-card__floorplan {
  top: 100%;
  z-index: 1;
}
.estatetool-units--floorplan .estatetool-unit-card__floorplan {
  top: 0;
}
.estatetool-unit-card__body {
  position: relative;
  padding: 20px;
  height: 100%;
  font-size: 16px;
  background-color: #EAEDEE;
  background-color: var(--estatetool-light-bg);
}
.estatetool-unit-card__price {
  position: absolute;
  right: 20px;
  top: 0;
  transform: translateY(-50%);
  padding: 6px 15px;
  background-color: var(--estatetool-primary);
  color: var(--estatetool-primary-contrast);
  font-size: 16px;
  line-height: 1.25;
  z-index: 10;
}
.estatetool-unit-card__title {
  font-size: 20px;
}
.estatetool-unit-card__footer {
  padding: 16px 20px;
  margin-top: 2px;
  background-color: #EAEDEE;
  background-color: var(--estatetool-light-bg);
}
.estatetool-unit-card__info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-left: -10px;
  margin-right: -10px;
}
.estatetool-unit-card__info > div {
  position: relative;
  flex: 0 0 50%;
  padding: 4px 10px;
}
.estatetool-unit-card__info > div > span {
  display: block;
  position: relative;
  padding-left: 24px;
}
.estatetool-unit-card__info > div > span > svg {
  position: absolute;
  width: 16px;
  height: 16px;
  left: 0;
  top: 0.25em;
  color: var(--estatetool-primary);
}
.estatetool-unit-card__info--3 > div {
  flex-basis: 33.33%;
}
.estatetool-unit-card__oh {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 12px;
  background-color: #FF3337;
  background-color: var(--estatetool-accent);
  font-size: 0.875em;
  font-weight: 700;
  color: #ffffff;
  z-index: 5;
}
.estatetool-unit-card__full-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.estatetool-unit-card__reserved {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 7;
}
.estatetool-unit-card__reserved > span {
  display: inline-block;
  padding: 15px;
  font-size: 1.5em;
  font-weight: 700;
  color: var(--estatetool-primary);
  background-color: rgba(255, 253, 194, 0.8);
}

.estatetool-cardsm {
  position: relative;
  padding: 15px;
}
.estatetool-cardsm__body {
  display: flex;
  justify-content: space-between;
}
.estatetool-cardsm__title {
  font-size: 1.125em;
  line-height: 1.1;
  margin-bottom: 5px;
}
.estatetool-cardsm__price {
  font-weight: 700;
}
.estatetool-cardsm__footer {
  display: flex;
  justify-content: space-between;
  padding-top: 8px;
}
.estatetool-cardsm__info {
  position: relative;
  display: flex;
  align-items: center;
  margin-right: 10px;
  margin-bottom: 6px;
}
.estatetool-cardsm__info:last-child {
  margin-right: 0;
}
.estatetool-cardsm__info svg {
  font-size: 1em;
  height: 1.125em;
  margin-right: 4px;
}
.estatetool-cardsm__info-wrapper {
  display: flex;
}
.estatetool-cardsm__status {
  display: inline-block !important;
  min-width: 100px;
  padding: 4px 8px;
  text-align: center;
}
.estatetool-cardsm__full-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

button.estatetool-filter-reset.estatetool-filter-reset {
  display: inline-block;
  position: relative;
  background: none;
  background-color: transparent;
  color: black;
  margin: 0;
  padding: 0;
  padding-left: 1.75em;
  border: none;
  outline: none;
  color: #323232;
  text-decoration: underline;
  text-transform: none;
  font-size: 18px;
  cursor: pointer;
}
button.estatetool-filter-reset.estatetool-filter-reset:hover, button.estatetool-filter-reset.estatetool-filter-reset:focus {
  background-color: transparent;
  border: none;
  outline: none;
  color: #323232;
  text-decoration: underline;
}
button.estatetool-filter-reset.estatetool-filter-reset:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
button.estatetool-filter-reset.estatetool-filter-reset:disabled:hover, button.estatetool-filter-reset.estatetool-filter-reset:disabled:focus {
  opacity: 0.5;
}
button.estatetool-filter-reset.estatetool-filter-reset > svg {
  position: absolute;
  font-size: 1em;
  top: 0.25em;
  left: 0;
}
button.estatetool-filter-reset.estatetool-filter-reset > span {
  display: inline-block;
  line-height: 1;
  border-bottom: 1px solid #323232;
}

.estatetool-filter-search {
  position: relative;
  height: 50px;
  padding-right: 16px;
  padding-left: 45px;
  border: none !important;
  background-color: #EAEDEE;
  background-color: var(--estatetool-light-bg);
  outline-color: transparent;
  border-radius: 0px;
}
.estatetool-filter-search input[type=text] {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  border: none !important;
  box-shadow: none !important;
  background: transparent !important;
  padding: 10px 16px;
}
.estatetool-filter-search input[type=text]:focus {
  outline-color: var(--estatetool-primary);
  outline-width: 1px;
}
.estatetool-filter-search__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 4px;
  top: 4px;
  height: calc(100% - 8px);
  width: 42px;
  background-color: #323232;
  color: #ffffff;
  font-size: 18px;
}

.estatetool-filter-properties button.estatetool-filter-properties__button.estatetool-button {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  min-height: 44px;
  padding: 10px 32px 10px 16px;
  text-align: left;
  background-color: #EAEAEA;
  background-color: var(--estatetool-light-bg);
  color: #323232;
  color: var(--estatetool-text);
  font-weight: 400;
  border: none;
}
.estatetool-filter-properties button.estatetool-filter-properties__button.estatetool-button:hover {
  background-color: var(--estatetool-primary-darken);
  color: #ffffff;
}
.estatetool-filter-properties button.estatetool-filter-properties__button.estatetool-button > span {
  display: block;
  white-space: normal;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.estatetool-filter-properties button.estatetool-filter-properties__button.estatetool-button > svg {
  position: absolute;
  width: 14px;
  height: 14px;
  right: 16px;
  top: 14px;
  line-height: 1;
  transition: transform 0.3s;
}
.estatetool-filter-properties.open .estatetool-filter-properties__button > svg {
  transform: rotate(180deg);
}
.estatetool-filter-properties--selected button.estatetool-filter-properties__button.estatetool-button {
  background-color: var(--estatetool-primary);
  color: #ffffff;
}
.estatetool-filter-properties__dropdown {
  display: none;
  max-height: 320px;
  margin-top: 8px;
  padding: 16px 10px 12px 20px;
  background: #FFFFFF;
  border: 1px solid rgba(61, 61, 61, 0.2);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
  overflow-y: scroll;
}
.estatetool-filter-properties__dropdown::-webkit-scrollbar {
  width: 12px;
}
.estatetool-filter-properties__dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
  background: transparent;
}
.estatetool-filter-properties__dropdown::-webkit-scrollbar-thumb {
  background: #EAEAEA;
  border-radius: 0;
  transition: all 0.3s;
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
.estatetool-filter-properties__dropdown::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--estatetool-primary), 0.5);
  background-clip: padding-box;
  border: 3px solid rgba(0, 0, 0, 0);
}
.estatetool-filter-properties__list {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}
.estatetool-filter-properties__list ul {
  display: none;
  list-style: none;
  padding-left: 16px;
  padding-top: 8px;
}
.estatetool-filter-properties__list li {
  position: relative;
  margin-bottom: 8px;
}
.estatetool-filter-properties__list li .estatetool-checkbox {
  margin-bottom: 0;
}
.estatetool-filter-properties__toggle {
  position: absolute;
  right: 0;
  top: 0.375em;
  cursor: pointer;
}
.estatetool-filter-properties__toggle > svg {
  width: 12px;
  height: 12px;
  line-height: 1;
}
.estatetool-filter-properties__toggle > svg:first-child {
  display: block;
}
.estatetool-filter-properties__toggle > svg:last-child {
  display: none;
}
li.open > .estatetool-filter-properties__toggle > svg:first-child {
  display: none;
}
li.open > .estatetool-filter-properties__toggle > svg:last-child {
  display: block;
}

.estatetool-filter {
  display: block;
}
.estatetool-filter__header, .estatetool-filter__footer {
  display: none;
  height: 50px;
  padding: 8px 20px;
  background-color: #EAEAEA;
}
.estatetool-filter__header {
  align-items: center;
  justify-content: space-between;
  padding-right: 0;
  font-size: 1.25em;
}
.estatetool-filter__header_title {
  margin-right: auto;
  font-weight: 700;
}
.estatetool-filter__footer {
  align-items: center;
  justify-content: space-between;
}
.estatetool-filter__footer > button {
  padding-left: 6px !important;
  padding-right: 6px !important;
  margin-left: 1px !important;
  margin-right: 1px !important;
}
@media (min-width: 1100px) {
  .estatetool-filter {
    height: auto !important;
  }
}
@media (max-width: 1099px) {
  .estatetool-filter {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s;
  }
  .estatetool-filter--open, .estatetool-filter.open {
    display: flex;
    transform: translateX(0);
  }
  .estatetool-filter__header, .estatetool-filter__footer {
    display: flex;
  }
  .estatetool-filter__body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
}

.estl-units-map {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #EAEAEA;
  width: 100%;
  height: 250px;
}
@media (min-width: 1100px) {
  .estl-units-map {
    height: 250px !important;
  }
}
@media (max-width: 1099px) {
  .estl-units-map {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    padding: 0;
    padding-top: 20px;
    margin: 0;
    transform: translateX(-100%);
    transition: transform 0.3s;
    background-color: #ffffff;
    z-index: 1000;
  }
}
.estl-units-map__wrapper {
  position: relative;
  flex: 1;
  transition: all 2s;
}
.estl-units-map__map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #EAEAEA;
}
.estl-units-map__close {
  display: none !important;
  align-self: flex-start;
  margin-bottom: 1.5em;
}
@media (max-width: 1099px) {
  .estl-units-map__open {
    display: none !important;
  }
  .estl-units-map__close {
    display: inline-block !important;
  }
}
.estl-units-map .gm-style .gm-style-iw {
  padding: 0px;
  border-radius: 0 !important;
}
.estl-units-map .gm-style .gm-style-iw > button {
  background-color: #ffffff !important;
  opacity: 1 !important;
  top: 0 !important;
  right: 0 !important;
  width: 24px !important;
  height: 24px !important;
  text-align: center;
}
.estl-units-map .gm-style .gm-style-iw > button > span {
  display: inline-block;
  background-color: var(--estatetool-primary) !important;
  margin: 0 auto !important;
}
.estl-units-map .gm-style .gm-style-iw-d {
  overflow: auto !important;
}
.estl-units-map.open {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
  z-index: 1000;
}
.estl-units-map.open .estl-units-map__open {
  display: none !important;
}
.estl-units-map.open .estl-units-map__wrapper {
  flex: 1;
}
.estl-units-map.open .estl-units-map__close {
  display: inline-block !important;
}
@media (min-width: 1100px) {
  .estl-units-map.open {
    height: 100% !important;
  }
}
@media (max-width: 1099px) {
  .estl-units-map.open {
    position: fixed;
    padding-top: 20px;
    transform: translateX(0);
  }
}

.estatetool-units--open-map {
  height: 700px;
  overflow: hidden;
}

table.estatetool-table {
  color: #323232;
  margin-bottom: 30px;
  width: 100%;
  background: #ffffff;
}
table.estatetool-table thead tr {
  background-color: transparent;
}
table.estatetool-table thead tr th {
  padding: 6px;
  vertical-align: middle;
  border: none !important;
  text-align: left;
  font-weight: 700;
}
table.estatetool-table tbody tr {
  position: relative;
  transition: all 0.3s;
  cursor: pointer;
}
table.estatetool-table tbody tr td {
  padding: 6px;
  border: none;
  text-align: left;
  vertical-align: middle;
}
table.estatetool-table tbody tr td > span {
  display: block;
}
table.estatetool-table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.04);
}
table.estatetool-table tbody tr:hover {
  background: #f5f6fa;
  background-color: rgba(0, 0, 0, 0.05);
}

.estatetool-table__status {
  display: inline-block !important;
  min-width: 100px;
  padding: 4px 8px;
  text-align: center;
}
.estatetool-table__full-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}
.estatetool-table .td-nowrap {
  white-space: nowrap;
}
.estatetool-table .td-center {
  text-align: center;
}
.estatetool-table .td-right {
  text-align: right;
}

.estatetool-table-more {
  text-align: center;
}

table.estatetool-datatable {
  width: 100% !important;
}
table.estatetool-datatable.dataTable {
  border-bottom: none;
}
table.estatetool-datatable thead .sorting {
  background-image: none;
}
table.estatetool-datatable thead .sorting::before, table.estatetool-datatable thead .sorting::after {
  display: none !important;
}
table.estatetool-datatable thead .sorting > span {
  display: inline-block;
  position: relative;
  padding-right: 18px;
  white-space: nowrap;
}
table.estatetool-datatable thead .sorting > span::after {
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAPCAYAAADd/14OAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAACjSURBVHgBnZBNCsIwEIUnyUpE3PizEU8gniE363iT3kR7Bb2A6Mq6aqHdtpP+MUzaUPrgkTDzkcw8gKU6nK+Rs6wbCdGBZLveHqHIfokHMuhGdgBKuP+uIiOrYVdrx9idLlZCEnbMAMOEQr1pzXnRuIvW+u5t2M4YKaXi1WafmDJP3wQpEHHwuP7fV9zkSM0Hh8m2h9LPE715WHajcY3BYSikGspXQLSF2zyBAAAAAElFTkSuQmCC");
  position: absolute;
  right: 0;
  top: 2px;
  opacity: 0.3;
}
table.estatetool-datatable thead .sorting_asc {
  background-image: none !important;
}
table.estatetool-datatable thead .sorting_asc > span::after {
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAHCAYAAAAxrNxjAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAABcSURBVHgBnc49CoAwDAXggKODi+ginkA8Q29mPJrHcezQuU3oD+WVLg08Cq8fJESjs533o8F+QiQPS8y87OTs/zWwQq9EASPO67yEq45TF89Yj8sgQqymYOpM/gvy7BtNGSk/8QAAAABJRU5ErkJggg==");
  top: -4px;
  opacity: 1;
}
table.estatetool-datatable thead .sorting_desc {
  background-image: none !important;
}
table.estatetool-datatable thead .sorting_desc > span::after {
  content: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAHCAYAAAAxrNxjAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAB5SURBVHgBfY69CYAwEIUvSSUiNv404gTiDG5m3CSbaFbQBUQrY6WgrV4ggYCYBx8c7z6OA8AkRdXAT+yO6YFS2odxDtexSVfKyrolhIggSiW7TzWjRLDnrqwl3SHdvk6C6RKXgysjjZXUMvLPP3iFI4+Bgy9G9ku+vNvGJWiMm+UzAAAAAElFTkSuQmCC");
  top: 0px;
  opacity: 1;
}

.estatetool-datatable-responsive {
  overflow-y: auto;
}

.estatetool-tablemob-wrapper {
  display: none;
}

.estatetool-tablemob__item:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.04);
}

.estatetool-tablemob-more {
  margin-top: 20px;
  text-align: center;
}

@media (max-width: 767px) {
  .estatetool-table-wrapper {
    display: none;
  }
  .estatetool-tablemob-wrapper {
    display: block;
  }
}
.estl-map-info {
  color: #161616;
}
.estl-map-info__img {
  width: 100%;
  height: 157px !important;
  object-fit: cover;
}
@media (max-width: 767px) {
  .estl-map-info__img {
    height: 120px !important;
  }
}
.estl-map-info__content {
  padding: 14px;
}
.estl-map-info__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .estl-map-info__title {
    font-size: 14px;
  }
}
.estl-map-info__desc {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .estl-map-info__desc {
    font-size: 12px;
  }
}
.estl-map-info__buttons {
  margin-top: 12px;
}
.estl-map-info__buttons .estl-map-info__button {
  width: auto;
  min-width: auto !important;
  height: auto;
  padding: 6px 8px !important;
  margin: 0 5px 10px 0;
  text-transform: none;
  font-size: 13px !important;
  transition: all 0.3s;
}
.estl-map-info__buttons .estl-map-info__button:last-child {
  margin-right: 0;
}
@media (max-width: 767px) {
  .estl-map-info__buttons .estl-map-info__button {
    display: block;
    width: 100%;
    padding: 4px 8px;
    font-size: 12px;
  }
}

.estatetool-grid--properties {
  margin-left: -15px;
  margin-right: -15px;
}
.estatetool-grid--properties .estatetool-grid__item {
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 30px;
}

.estatetool-property-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  height: 100%;
  color: #323232;
  color: var(--estatetool-text);
  background-color: #ffffff;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.08);
}
.estatetool-property-card__top {
  position: relative;
  min-height: 100px;
  padding-top: 65%;
  overflow: hidden;
}
.estatetool-property-card__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  z-index: 0;
  transition: all 0.3s;
  transform-origin: center top;
}
.estatetool-property-card__oh {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  background-color: var(--estatetool-accent);
  color: #ffffff;
  z-index: 10;
  padding: 12px 32px;
}
.estatetool-property-card__oh > span {
  display: inline-block;
}
.estatetool-property-card__body {
  padding: 32px;
}
.estatetool-property-card__content {
  margin-bottom: auto;
  padding-bottom: 12px;
}
.estatetool-property-card__title {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
}
.estatetool-property-card__subtitle {
  font-size: 18px;
}
.estatetool-property-card__info {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
  margin-bottom: 20px;
  margin-left: 0;
  margin-right: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-left: -16px;
  margin-right: -16px;
}
@media (min-width: 560px) {
  .estatetool-property-card__info {
    display: flex;
    flex-direction: row;
  }
}
.estatetool-property-card__info > div {
  position: relative;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 16px;
}
.estatetool-property-card__info > div > span {
  display: block;
  position: relative;
  padding-left: 34px;
}
.estatetool-property-card__info > div > span > svg {
  position: absolute;
  display: inline-block;
  top: 0;
  left: 0;
  width: 23px;
  height: 23px;
  fill: var(--estatetool-primary);
}
.estatetool-property-card__desc {
  margin-bottom: 18px;
  max-height: 100px;
  line-height: 20px;
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-line-clamp: 5;
  -moz-line-clamp: 5;
  -ms-line-clamp: 5;
}
.estatetool-property-card__bottom {
  margin-top: auto;
  padding: 12px 16px;
  background-color: var(--estatetool-primary);
  color: #ffffff;
  text-align: center;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 700;
}
.estatetool-property-card__full-link {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.estatetool-card-swiper.swiper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.estatetool-card-swiper img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  z-index: 0;
  transition: all 0.3s;
  transform-origin: center top;
}
.estatetool-card-swiper .estatetool-swiper-images__next,
.estatetool-card-swiper .estatetool-swiper-images__prev {
  width: 42px;
  height: 70px;
  margin-top: -35px;
  background-color: transparent;
}
.estatetool-card-swiper .estatetool-swiper-images__next:hover,
.estatetool-card-swiper .estatetool-swiper-images__prev:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.estatetool-card-swiper .estatetool-swiper-images__next > svg,
.estatetool-card-swiper .estatetool-swiper-images__prev > svg {
  width: 40px;
  height: 27px;
  fill: var(--estatetool-primary);
}
.estatetool-card-swiper .estatetool-swiper-images__prev {
  left: 0;
}
.estatetool-card-swiper .estatetool-swiper-images__next {
  right: 0;
}

.estatetool-card-oh {
  font-size: 14px;
}
.estatetool-card-oh__title {
  margin-bottom: 4px;
  font-weight: 700;
}
.estatetool-card-oh__desc {
  display: flex;
  column-gap: 30px;
}
.estatetool-card-oh__time, .estatetool-card-oh__map {
  position: relative;
  padding-left: 20px;
}
.estatetool-card-oh__time svg, .estatetool-card-oh__map svg {
  position: absolute;
  left: 0;
  top: 0.125em;
  width: 16px;
  height: 16px;
}

.estl-proplist {
  color: #000;
}
.estl-proplist__mobile {
  display: block;
}
@media (min-width: 768px) {
  .estl-proplist__mobile {
    display: none;
  }
}
.estl-proplist__hide-mobile {
  display: none;
}
@media (min-width: 768px) {
  .estl-proplist__hide-mobile {
    display: block;
  }
}
.estl-proplist__total {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .estl-proplist__total {
    font-size: 20px;
  }
}
.estl-proplist__total__more {
  margin: 20px auto 0;
  text-align: center;
}
.estl-proplist .estl-proplist a.estatetool-button.estatetool-button,
.estl-proplist .estl-proplist button.estatetool-button.estatetool-button {
  padding: 8px 18px;
  font-size: 14px;
  line-height: 1.42;
  letter-spacing: 0.5px;
  font-weight: 600;
}
@media (min-width: 768px) {
  .estl-proplist .estl-proplist a.estatetool-button.estatetool-button,
  .estl-proplist .estl-proplist button.estatetool-button.estatetool-button {
    padding: 12px 24px;
  }
}

.estl-proplist {
  background-color: #F1EFF1;
}
.estl-proplist__side {
  background-color: #fff;
  flex-grow: 0;
  flex-shrink: 0;
}
.estl-proplist__main {
  flex: auto;
  min-width: 1px;
  padding: 24px 18px;
}
@media (min-width: 768px) {
  .estl-proplist__layout {
    display: flex;
  }
  .estl-proplist__main {
    padding: 40px 24px;
  }
  .estl-proplist__side {
    flex-basis: 250px;
    padding: 40px 24px;
    width: 250px;
  }
}
@media (min-width: 992px) {
  .estl-proplist__main {
    padding: 40px;
  }
  .estl-proplist__side {
    flex-basis: 300px;
    width: 300px;
  }
}
@media (min-width: 1200px) {
  .estl-proplist__side {
    flex-basis: 364px;
    width: 364px;
  }
}
.estl-proplist__loading-items {
  display: none;
}
.estl-proplist__loaded-items {
  display: block;
}
.estl-proplist.loading .estl-proplist__loading-items {
  display: block;
}
.estl-proplist.loading .estl-proplist__loaded-items {
  display: none;
}

.estl-proplist__grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -12px;
  margin-right: -12px;
}

.estl-proplist__grid-item {
  width: 100%;
  padding: 0 12px 24px;
}
@media (min-width: 560px) {
  .estl-proplist__grid-item {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .estl-proplist__grid-item {
    width: 33.33%;
  }
}
.estl-proplist__grid-item--animated {
  -webkit-animation: estatetool-grid-animate 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: estatetool-grid-animate 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.estl-proplist-topbar__header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.estl-proplist-topbar .estatetool-field {
  margin-bottom: 20px;
}
.estl-proplist-topbar__mobile-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.estl-proplist-topbar__field-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -8px;
  margin-right: -8px;
}
.estl-proplist-topbar__field-row-item {
  flex: 0 0 100%;
  padding-left: 8px;
  padding-right: 8px;
}
@media (min-width: 768px) {
  .estl-proplist-topbar__field-row-item {
    flex-basis: 50%;
  }
}
@media (min-width: 992px) {
  .estl-proplist-topbar__field-row-item {
    flex-basis: 33.33%;
  }
}

.estl-proplist .estatetool-field__header {
  margin-bottom: 12px;
}
.estl-proplist .estatetool-checkbox > label > span::before {
  margin-top: 0;
  background-color: #fff;
}
.estl-proplist .estatetool-checkbox > label > span::after {
  top: 1px;
}
.estl-proplist .estatetool-checkbox {
  margin-bottom: 12px;
  font-size: 0.875em;
}
.estl-proplist .estatetool-filter-properties button.estatetool-filter-properties__button.estatetool-button {
  background-color: #ffffff;
  border: 1px solid #DCDCDC;
  font-weight: 300;
  padding-left: 16px;
}
.estl-proplist .estatetool-filter-properties button.estatetool-filter-properties__button.estatetool-button:hover {
  background-color: #ffffff;
  border: 1px solid #DCDCDC;
  color: inherit;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1215686275);
}
.estl-proplist .estatetool-filter-properties--selected button.estatetool-filter-properties__button.estatetool-button {
  background-color: var(--estatetool-primary);
  color: #ffffff;
  border-color: transparent;
}
.estl-proplist .estatetool-filter-properties--selected button.estatetool-filter-properties__button.estatetool-button:hover {
  background-color: var(--estatetool-primary);
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1215686275);
}

.estl-propcard {
  position: relative;
  height: 100%;
  background-color: #fff;
}
@media (max-width: 767px) {
  .estl-propcard {
    font-size: 14px;
  }
}
.estl-propcard__type {
  font-weight: 600;
  padding: 8px 24px;
  background-color: #5B5351;
  color: #ffffff;
}
@media (max-width: 767px) {
  .estl-propcard__type {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.estl-propcard__img {
  position: relative;
  overflow: hidden;
  padding-top: 66.66%;
}
.estl-propcard__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.estl-propcard__header {
  padding: 12px 24px;
}
@media (max-width: 767px) {
  .estl-propcard__header {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.estl-propcard__name {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 4px;
}
@media (max-width: 767px) {
  .estl-propcard__name {
    font-size: 16px;
  }
}
.estl-propcard__address {
  font-weight: 300;
}
.estl-propcard__sep {
  width: 94%;
  margin: 0 auto;
  border-bottom: 3px solid #DCDCDC;
}
.estl-propcard__body {
  padding: 16px 24px;
}
@media (max-width: 767px) {
  .estl-propcard__body {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.estl-propcard-info {
  position: relative;
  margin-bottom: 16px;
  padding-left: 28px;
  font-weight: 300;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .estl-propcard-info {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.estl-propcard-info:last-child {
  margin-bottom: 0;
}
.estl-propcard-info > svg {
  position: absolute;
  width: 20px;
  height: 20px;
  left: 0;
  top: 0;
}
@media (max-width: 767px) {
  .estl-propcard-info > svg {
    height: 18px;
    width: 18px;
  }
}
.estl-propcard-info--noicon {
  padding-left: 0;
}
.estl-propcard-info > span {
  display: inline-block;
}
.estl-propcard__link-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.estl-proplist-filter__header {
  display: none;
  padding: 12px 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.125);
}
.estl-proplist-filter__title {
  margin-right: auto;
  font-size: 20px;
  font-weight: 600;
}
.estl-proplist-filter__close {
  color: inherit;
}
.estl-proplist-filter__close:hover {
  color: inherit;
}
@media (max-width: 767px) {
  .estl-proplist-filter {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    transform: translateX(-100%);
    transition: transform 0.3s;
    z-index: 10;
  }
  .estl-proplist-filter__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
  }
  .estl-proplist-filter__body {
    padding: 20px;
    overflow: auto;
    flex: 1;
    overscroll-behavior: contain;
  }
  .estl-proplist-filter.open {
    transform: translateX(0);
  }
}

.estl-proplist-map {
  display: flex;
  flex-direction: column;
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid #EAEAEA;
  width: 100%;
  height: 250px;
}
@media (min-width: 768px) {
  .estl-proplist-map {
    height: 250px !important;
  }
}
@media (max-width: 767px) {
  .estl-proplist-map {
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    padding: 0;
    padding-top: 20px;
    margin: 0;
    transform: translateX(-100%);
    transition: transform 0.3s;
    background-color: #ffffff;
    z-index: 1000;
  }
}
.estl-proplist-map__wrapper {
  position: relative;
  flex: 1;
  transition: all 2s;
}
.estl-proplist-map__map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #EAEAEA;
}
.estl-proplist-map__close {
  display: none !important;
  align-self: flex-start;
  margin-bottom: 1.5em;
}
@media (max-width: 767px) {
  .estl-proplist-map__open {
    display: none !important;
  }
  .estl-proplist-map__close {
    display: inline-block !important;
  }
}
.estl-proplist-map .gm-style .gm-style-iw {
  padding: 0px;
  border-radius: 0 !important;
}
.estl-proplist-map .gm-style .gm-style-iw > button {
  background-color: #ffffff !important;
  opacity: 1 !important;
  top: 0 !important;
  right: 0 !important;
  width: 24px !important;
  height: 24px !important;
  text-align: center;
}
.estl-proplist-map .gm-style .gm-style-iw > button > span {
  display: inline-block;
  background-color: var(--estatetool-primary) !important;
  margin: 0 auto !important;
}
.estl-proplist-map .gm-style .gm-style-iw-d {
  overflow: auto !important;
}
.estl-proplist-map.open {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: #fff;
  z-index: 1000;
}
.estl-proplist-map.open .estl-proplist-map__open {
  display: none !important;
}
.estl-proplist-map.open .estl-proplist-map__wrapper {
  flex: 1;
}
.estl-proplist-map.open .estl-proplist-map__close {
  display: inline-block !important;
}
@media (min-width: 992px) {
  .estl-proplist-map.open {
    height: 100% !important;
  }
}
@media (max-width: 767px) {
  .estl-proplist-map.open {
    position: fixed;
    padding-top: 20px;
    transform: translateX(0);
  }
}

.estatetool-proplist--open-map {
  height: 700px;
  overflow: hidden;
}

.estl-property-header-wrapper {
  position: relative;
}

.estl-property-header {
  position: relative;
  min-height: 450px;
  padding-top: 42%;
  line-height: 1.25;
}

.estl-property-header-wrapper .estl-property-featured-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.estl-property-header-wrapper .estl-property-type {
  position: absolute;
  top: 24px;
  right: 24px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 20px;
  background-color: #5B5351;
  color: #ffffff;
  border-radius: 4px;
  z-index: 2;
}
@media (max-width: 767px) {
  .estl-property-header-wrapper .estl-property-type {
    padding: 8px 16px;
    top: 18px;
    right: 18px;
  }
}
.estl-property-header-wrapper .estl-property-title-wrapper {
  position: absolute;
  left: 0;
  bottom: 32px;
  padding: 22px 40px;
  width: 400px;
  min-height: 100px;
  max-width: 70%;
  color: #000;
  z-index: 3;
}
@media (max-width: 767px) {
  .estl-property-header-wrapper .estl-property-title-wrapper {
    position: static;
    width: auto;
    max-width: 100%;
    padding: 12px 24px;
    min-height: auto;
  }
}
.estl-property-header-wrapper .estl-property-name {
  margin-bottom: 8px;
  font-size: 32px;
  font-weight: 500;
  line-height: 1.1;
}
@media (max-width: 767px) {
  .estl-property-header-wrapper .estl-property-name {
    font-size: 28px;
    margin-bottom: 4px;
  }
}
.estl-property-header-wrapper .estl-property-zip {
  font-size: 20px;
}

@media (min-width: 992px) {
  .estl-property-header2-wrapper {
    padding-bottom: 60px;
  }
}

.estl-property-header2 {
  display: flex;
  align-items: center;
  min-height: 350px;
  padding-top: 0;
}
.estl-property-header2 .estl-property-title-wrapper {
  position: unset;
  padding-left: 0;
  padding-right: 0;
}
.estl-property-header2__img {
  position: absolute;
  right: 130px;
  right: 0;
  top: 60px;
  width: 490px;
  height: 362px;
}
@media (max-width: 991px) {
  .estl-property-header2 {
    min-height: 200px;
    padding-top: 0;
  }
  .estl-property-header2__img {
    display: none;
  }
}
@media (max-width: 767px) {
  .estl-property-header2 {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.estl-property-header2-wrapper .estl-property-type {
  right: 0;
  padding: 0;
  background-color: transparent;
  color: #5B5351;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
}
.estl-property-header2-wrapper .estl-property-title-wrapper {
  color: #00979C;
  color: var(--estatetool-primary);
}

.estl-property-info-title {
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #00979C;
  color: var(--estatetool-primary);
}

.estl-property-info-address {
  color: #00979C;
  color: var(--estatetool-primary);
}

.estl-property-internal-note p {
  margin-bottom: 0;
  margin-top: 0;
}

.estl-property-info-sep {
  margin-top: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid #5B5351;
}

.estl-property-info {
  line-height: 1.5rem;
}
.estl-property-info__title {
  margin-top: 24px;
  font-weight: 600;
}

ul.estl-property-info-list {
  margin: 0;
  margin-top: 10px;
  padding: 0;
  list-style: none;
}
ul.estl-property-info-list > li {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
ul.estl-property-info-list > li .estl-properties-tooltip {
  display: inline-block;
  margin-right: 4px;
}

ul.estl-property-owner-list {
  margin: 0;
  margin-top: 10px;
  padding: 0;
  list-style: none;
}
ul.estl-property-owner-list li {
  margin-bottom: 14px;
}

.post-content h2.estl-property-heading,
.estl-property-heading {
  margin-bottom: 0.75em;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .post-content h2.estl-property-heading,
  .estl-property-heading {
    font-size: 28px;
  }
}

.estl-property-administrator .estl-property-administrator__title {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px !important;
  font-weight: 600 !important;
}

.estl-property-gallery-grid {
  display: flex;
  margin: 0 -4px 20px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .estl-property-gallery-grid {
    display: block;
  }
}
.estl-property-gallery-grid__item {
  display: block;
  position: relative;
  padding-top: 100%;
  overflow: hidden;
  margin-bottom: 8px;
  cursor: zoom-in;
  background-color: #ccc;
}
@media (max-width: 767px) {
  .estl-property-gallery-grid__item {
    padding-top: 60%;
  }
}
.estl-property-gallery-grid__item img {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  width: auto !important;
  max-width: none !important;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}
.estl-property-gallery-grid__main {
  width: 66.66%;
  padding-left: 4px;
  padding-right: 4px;
}
@media (max-width: 767px) {
  .estl-property-gallery-grid__main {
    width: 100%;
  }
}
.estl-property-gallery-grid__side {
  width: 33.33%;
  padding-left: 4px;
  padding-right: 4px;
}
@media (max-width: 767px) {
  .estl-property-gallery-grid__side {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .estl-property-gallery-grid__side .estl-property-gallery-grid__item {
    width: 50%;
    width: calc(50% - 4px);
    padding-top: 35%;
  }
}
.estl-property-gallery-grid__button {
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.42 !important;
  background-color: #fff !important;
  border: 1px solid #DCDCDC !important;
  color: #000000 !important;
  letter-spacing: 0.5px;
  cursor: pointer;
}
.estl-property-gallery-grid__button:hover {
  background-color: #DCDCDC !important;
  border: 1px solid #DCDCDC !important;
}

.estl-property-map {
  height: 543px;
}
@media (max-width: 767px) {
  .estl-property-map {
    height: 400px;
  }
}

.estl-properties-tooltip {
  display: inline-block;
}
.estl-properties-tooltip__box {
  display: none;
  max-width: 273px;
  background: #fff;
  border: 1px solid #DCDCDC;
  color: #000;
  border-radius: 4px;
}
.estl-properties-tooltip__box[data-show] {
  display: block;
}
.estl-properties-tooltip__arrow, .estl-properties-tooltip__arrow::before {
  position: absolute;
  width: 8px;
  height: 8px;
  background: inherit;
}
.estl-properties-tooltip__arrow {
  visibility: hidden;
  z-index: 1;
}
.estl-properties-tooltip__arrow::before {
  visibility: visible;
  content: "";
  transform: rotate(45deg);
  border: 1px solid #DCDCDC;
}
.estl-properties-tooltip__box[data-popper-placement^=top] > .estl-properties-tooltip__arrow {
  bottom: -4px;
}
.estl-properties-tooltip__box[data-popper-placement^=bottom] > .estl-properties-tooltip__arrow {
  top: -4px;
}
.estl-properties-tooltip__box[data-popper-placement^=left] > .estl-properties-tooltip__arrow {
  right: -4px;
}
.estl-properties-tooltip__box[data-popper-placement^=right] > .estl-properties-tooltip__arrow {
  left: -4px;
}
.estl-properties-tooltip__content {
  position: relative;
  background: #fff;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  text-align: center;
  z-index: 2;
  border-radius: 4px;
}

.estl-rel-propcard {
  position: relative;
}
.estl-rel-propcard__img {
  position: relative;
  overflow: hidden;
  padding-top: 66.66%;
  margin-bottom: 16px;
}
.estl-rel-propcard__img img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.estl-rel-propcard__name {
  margin-bottom: 6px;
  font-size: 20px;
  font-weight: 600;
}
.estl-rel-propcard__link-cover {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.estl-property-related {
  margin-left: -12px;
  margin-right: -12px;
}
.estl-property-related__grid {
  display: flex;
}
.estl-property-related__item {
  width: 33.33%;
  padding-left: 12px;
  padding-right: 12px;
}

@media (max-width: 767px) {
  .estl-property-related-wrapper {
    overflow-y: auto;
    padding-bottom: 16px;
  }
  .estl-property-related {
    margin-left: -8px;
    margin-right: -8px;
  }
  .estl-property-related__item {
    width: 284px;
    flex-shrink: 0;
    padding-left: 8px;
    padding-right: 8px;
  }
}
.estl-proplist .estatetool-range__slider-wrapper .ui-slider-horizontal .ui-slider-handle {
  border-radius: 0;
  width: 10px;
  height: 10px;
  top: -3px;
}

.estl-proplist * {
  box-sizing: border-box;
}

.estl-proplist .estatetool-checkbox > label > span::after {
  width: 9px;
  height: 4px;
}

.estl-proplist .estatetool-checkbox > label > span::before {
  margin-top: -2px;
}

.estl-proplist .estatetool-checkbox > label > span::after {
  top: 2px;
}

.estl-proplist-map {
  padding-bottom: 0;
}

.estl-proplist .estatetool-field-checkboxes-wrapper {
  max-height: 250px;
  overflow-y: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.estl-proplist .estatetool-field-checkboxes-wrapper::-webkit-scrollbar {
  width: 5px;
}
.estl-proplist .estatetool-field-checkboxes-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.estl-proplist .estatetool-field-checkboxes-wrapper::-webkit-scrollbar-thumb {
  background: #888;
}
.estl-proplist .estatetool-field-checkboxes-wrapper::-webkit-scrollbar-thumb:hover {
  background: #555;
}
@media (min-width: 992px) {
  .estl-proplist .estatetool-field {
    margin-bottom: 2.5em;
  }
}

.estl-searchbox--properties .estl-searchbox-link {
  text-decoration: none !important;
}
.estl-searchbox--properties .estl-searchbox-link > svg {
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.estl-searchbox--properties .estl-searchbox-input__label {
  display: none;
}
.estl-searchbox--properties .estl-searchbox-input__input {
  padding-left: 20px;
}
.estl-searchbox--properties .estl-searchbox-input__button {
  background-color: #fff;
  color: #000000;
}
@media (min-width: 768px) {
  .estl-searchbox--properties .estl-searchbox-input, .estl-searchbox--properties .estl-searchbox__input {
    width: 600px;
  }
  .estl-searchbox--properties .estl-searchbox__modal .estl-searchbox-input {
    width: 600px;
    max-width: 96%;
  }
  .estl-searchbox--properties .estl-searchbox__body {
    width: 600px;
    max-width: 96%;
  }
}
.estl-searchbox--properties .estl-searchbox-input__input > input {
  font-size: 16px !important;
}
.estl-searchbox--properties .estl-searchbox__body {
  margin-top: 0;
  border-top: 1px solid #DCDCDC;
}
.estl-searchbox--properties .estl-searchbox-title {
  background-color: transparent;
  font-weight: 600;
  color: #000;
  border-bottom: 1px solid #DCDCDC;
  max-width: calc(100% - 40px);
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}
.estl-searchbox--properties .estl-searchbox-areas_grid {
  padding-left: 0;
  padding-right: 0;
}
.estl-searchbox--properties .estl-searchbox-areas_grid__item {
  max-width: 100%;
  width: 100%;
}
.estl-searchbox--properties .estl-searchbox-area {
  padding-left: 20px;
  padding-right: 20px;
  color: #000000;
}
.estl-searchbox--properties .estl-searchbox-area:hover {
  background-color: #F6F5F5;
}
.estl-searchbox--properties .estl-searchbox-area__title {
  font-weight: 400;
}
.estl-searchbox--properties .estl-searchbox-area__count {
  font-weight: 300;
}

.estatetool-unit-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.estatetool-unit-main {
  display: flex;
  margin-top: 40px;
  margin-bottom: 40px;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column-reverse;
}
@media (min-width: 992px) {
  .estatetool-unit-main {
    flex-direction: row;
    margin-top: 52px;
  }
  .estatetool-unit-main__left {
    min-height: 1px;
    width: calc(100% - 450px);
    padding-right: 70px;
  }
  .estatetool-unit-main__right {
    min-height: 1px;
    width: 450px;
  }
}

@media (min-width: 992px) {
  .estatetool-unit-cols {
    display: flex;
    justify-content: center;
  }
  .estatetool-unit-cols__50 {
    width: 50%;
  }
}

.estatetool-unit-content {
  margin-bottom: 30px;
}

.estatetool-unit-title-section {
  font-size: 1.5em;
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 1.25em;
  padding-bottom: 0;
  color: inherit;
}
.estatetool-unit-title-section + p {
  margin-top: -0.5em;
}
.estatetool-unit-title-section__center {
  text-align: center;
}

.estatetool-unit-title {
  font-size: 1.5em;
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 1em;
  color: inherit;
}

.estatetool-unit-description {
  margin-bottom: 30px;
}

.estatetool-unit-map {
  height: 500px;
}

.estatetool-unit-oh {
  margin-bottom: 30px;
}

.estatetool-unit-tabs__wrapper {
  position: relative;
  padding-top: 60%;
  background-color: #dddddd;
  background-color: var(--estatetool-light-bg);
  overflow: hidden;
}
@media (min-width: 1200px) {
  .estatetool-unit-tabs__wrapper {
    padding-top: 40%;
    height: 650px;
  }
}
.estatetool-unit-tabs__content {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #dddddd;
  background-color: var(--estatetool-light-bg);
  transition: top 0.3s;
  z-index: 1;
}
.estatetool-unit-tabs__content.active {
  z-index: 2;
  top: 0;
}
.estatetool-unit-tabs__tabs-wrapper {
  background-color: #EAEDEE;
  background-color: var(--estatetool-light-bg);
}
.estatetool-unit-tabs__tabs {
  display: flex;
  align-items: stretch;
}
.estatetool-unit-tabs__tab {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #323232 !important;
  font-size: 14px;
  font-weight: normal;
  padding: 12px 16px;
  background-color: transparent;
  text-decoration: none;
  min-height: 80px;
  min-width: 80px;
  margin-right: 1px;
  transition: all 0.3s;
}
.estatetool-unit-tabs__tab.active, .estatetool-unit-tabs__tab:hover {
  background-color: var(--estatetool-primary);
  color: #ffffff !important;
  text-decoration: none;
}
.estatetool-unit-tabs__tab.active svg, .estatetool-unit-tabs__tab:hover svg {
  fill: #ffffff;
}
.estatetool-unit-tabs__tab svg {
  margin-bottom: 0;
  font-size: 22px;
  height: 30px;
  line-height: 30px;
}
.estatetool-unit-tabs__content .estatetool-swiper-images {
  height: 100%;
}
.estatetool-unit-tabs__content .estatetool-unit-image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.estatetool-unit-tabs__content .estatetool-unit-map {
  height: 100% !important;
}

.estatetool-unit-infobox {
  background-color: #EAEDEE;
  background-color: var(--estatetool-light-bg);
  padding: 25px;
  border-radius: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #323232;
  color: var(--estatetool-text);
}
@media (min-width: 992px) {
  .estatetool-unit-infobox {
    padding: 35px;
  }
}

.estatetool-unit-property {
  margin-bottom: 0.75em;
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.3;
}

.estatetool-unit-address {
  font-size: 1em;
  margin-bottom: 1.5em;
}

.estatetool-unit-status__pill {
  display: block;
  margin-bottom: 1.75em;
  padding: 8px;
  font-weight: bold;
  text-align: center;
}

.estatetool-unit-info-title {
  margin-bottom: 0.5em;
  font-size: 1.125em;
  font-weight: bold;
}

.estatetool-info-separator {
  margin: 30px 0 !important;
  border-color: rgba(255, 255, 255, 0.8);
}

table.estatetool-info-table {
  width: 100%;
  margin-bottom: 30px;
  table-layout: fixed;
}
table.estatetool-info-table tbody tr td {
  padding: 4px 0;
  background-color: transparent !important;
  border: none !important;
  vertical-align: top;
}
table.estatetool-info-table tbody tr td:last-of-type {
  text-align: right;
}

.estatetool-unit-documents {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}
.estatetool-unit-documents > li {
  position: relative;
  display: block;
  padding: 0;
  padding-left: 2.75em;
  margin: 0;
  margin-bottom: 0.75em;
}
.estatetool-unit-documents > li > svg {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.5em;
  fill: var(--estatetool-primary);
}
.estatetool-unit-documents > li a {
  color: #323232;
  color: var(--estatetool-text);
  font-weight: bold;
  text-decoration: underline;
}

.estatetool-unit-contact {
  background-color: #EAEDEE;
  background-color: var(--estatetool-light-bg);
}
.estatetool-unit-contact__photo {
  width: 100%;
}
.estatetool-unit-contact__photo > img {
  width: 100% !important;
  height: auto !important;
  object-fit: cover;
}
.estatetool-unit-contact__content {
  flex: 1 1 auto;
  padding: 20px;
}
.estatetool-unit-contact__name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 6px;
}
.estatetool-unit-contact__title {
  margin-bottom: 10px;
}
.estatetool-unit-contact__phone {
  margin-bottom: 15px;
}
.estatetool-unit-contact a {
  color: inherit;
}
.estatetool-unit-contact__button {
  display: inline-block;
  background-color: var(--estatetool-accent);
  color: #ffffff;
}
@media (min-width: 992px) {
  .estatetool-unit-contact {
    display: flex;
    min-height: 150px;
  }
  .estatetool-unit-contact__photo {
    width: 150px;
  }
  .estatetool-unit-contact__photo img {
    height: 100% !important;
  }
}
@media (min-width: 1200px) {
  .estatetool-unit-contact {
    min-height: 264px;
  }
  .estatetool-unit-contact__photo {
    width: 264px;
  }
  .estatetool-unit-contact__content {
    padding: 40px;
  }
}

.estatetool-unit-facilities {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 20px -4px;
}
.estatetool-unit-facilities > li {
  display: inline-block;
  padding: 6px 12px;
  margin: 0 4px 4px;
  background-color: #EAEAEA;
  background-color: var(--estatetool-light-bg);
}

.estatetool-unit-video {
  position: relative;
  padding-bottom: 56.25%;
  min-height: 400px;
}
.estatetool-unit-video__cover {
  cursor: pointer;
}
.estatetool-unit-video__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.estatetool-unit-video__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 80px;
  height: 80px;
  background-color: rgba(var(--estatetool-primary), 0.75);
  background-color: var(--estatetool-primary);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.75;
  transition: all 0.3s;
}
.estatetool-unit-video__icon > svg {
  fill: #ffffff;
  margin-left: 8%;
  width: 40%;
  height: 40%;
}
.estatetool-unit-video:hover .estatetool-unit-video__icon {
  opacity: 1;
}
.estatetool-unit-video__video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.estatetool-unit-video__video iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.estatetool-gallery-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2px;
  margin-right: -2px;
  margin-bottom: 32px;
}
.estatetool-gallery-grid__item {
  display: block;
  position: relative;
  padding: 2px;
  width: 100%;
  height: auto;
  color: #ffffff;
  cursor: pointer;
}
@media (min-width: 992px) {
  .estatetool-gallery-grid__item {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .estatetool-gallery-grid__item {
    width: 33.33%;
  }
}
.estatetool-gallery-grid__inner {
  display: block;
  position: relative;
}
.estatetool-gallery-grid__inner > img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 0;
}
.estatetool-gallery-grid__inner:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 1;
}
.estatetool-gallery-grid__inner:hover .estatetool-gallery-grid-content, .estatetool-gallery-grid__inner:hover:before {
  opacity: 1;
  visibility: visible;
}
.estatetool-gallery-grid__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 2;
  font-weight: 300;
  font-size: 1em;
  padding: 0 1.5em;
}
.estatetool-gallery-grid__link {
  display: block;
  position: relative;
  z-index: 5;
}
.estatetool-gallery-grid__title {
  font-weight: 300;
  font-size: 1em;
}

body.estl-searchbox-open {
  overflow: hidden !important;
}

.estl-searchbox__input {
  width: 518px;
  max-width: 100%;
  height: 56px;
  margin-left: auto;
  margin-right: auto;
}
.estl-searchbox__modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
}
.estl-searchbox__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 22, 22, 0.75);
  z-index: 0;
}
.estl-searchbox__inner {
  display: flex;
  position: relative;
  top: 120px;
  min-height: 300px;
  max-height: 600px;
  max-height: 75vh;
  flex-direction: column;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.estl-searchbox__body {
  flex: 1;
  width: 96%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  max-height: 100%;
  margin-top: 6px;
  padding-bottom: 2em;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.4;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.estl-searchbox__body::-webkit-scrollbar {
  width: 12px;
}
.estl-searchbox__body::-webkit-scrollbar-track {
  background: #f1f1f1;
  background: transparent;
}
.estl-searchbox__body::-webkit-scrollbar-thumb {
  background: #EAEAEA;
  border-radius: 0;
  transition: all 0.3s;
  border: 3px solid rgba(0, 0, 0, 0);
  background-clip: padding-box;
}
.estl-searchbox__body::-webkit-scrollbar-thumb:hover {
  background: rgba(var(--estatetool-primary), 0.5);
  background-clip: padding-box;
  border: 3px solid rgba(0, 0, 0, 0);
}
.estl-searchbox__padding {
  padding: 1.75em 1.25em;
}
.estl-searchbox__padding-x {
  padding-left: 1.25em;
  padding-right: 1.25em;
}
.estl-searchbox a {
  color: var(--estatetool-primary);
}
.estl-searchbox a:hover {
  color: var(--estatetool-primary-darken);
}

.estl-searchbox__innerinput {
  height: 56px;
}
@media (min-width: 768px) {
  .estl-searchbox__inner {
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .estl-searchbox__inner {
    top: 0 !important;
    height: 100vh;
    max-height: none;
  }
  .estl-searchbox__body {
    width: 100%;
    margin-top: 1px;
    padding-bottom: 1.5em;
  }
  .estl-searchbox__innerinput .estl-searchbox-input {
    width: 100%;
  }
  .estl-searchbox__innerinput .estl-searchbox-input__close {
    display: flex;
  }
}

.estl-searchbox-link {
  text-decoration: underline !important;
}

.estl-searchbox-input {
  display: flex;
  position: relative;
  width: 518px;
  height: 56px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  align-items: center;
  font-size: 16px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .estl-searchbox-input {
    font-size: 20px;
  }
}
.estl-searchbox-input__label {
  color: var(--estatetool-primary);
  padding: 0 0.75em 0 1em;
  flex-shrink: 0;
}
.estl-searchbox-input__input {
  flex: 1 1 auto;
}
.estl-searchbox-input__input > input {
  font-size: inherit !important;
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  padding-left: 0 !important;
  font-weight: 300 !important;
  cursor: text;
}
.estl-searchbox-input__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  background-color: var(--estatetool-primary);
  color: #ffffff;
  height: 100%;
}
.estl-searchbox-input__close {
  display: none;
}
.estl-searchbox-input__reset {
  padding-right: 16px;
  padding-left: 8px;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
}

.estl-searchbox-title {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 1em 1.25em;
  background-color: #EAEAEA;
  color: var(--estatetool-primary);
}
.estl-searchbox-title__inner {
  display: inline-flex;
}
.estl-searchbox-title__inner > svg {
  line-height: 1;
  height: 0.75em;
  width: 0.75em;
  margin-top: 0.25em;
  margin-right: 0.5em;
}
.estl-searchbox-title__inner--clickable {
  cursor: pointer;
}

.estl-searchbox-areas_grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0.5em 0.5em 0;
}
.estl-searchbox-areas_grid__item {
  width: 100%;
  padding-bottom: 0.5em;
}
@media (min-width: 768px) {
  .estl-searchbox-areas_grid__item {
    width: 380px;
    max-width: 48%;
  }
}

.estl-searchbox-area {
  position: relative;
  padding: 0.75em 2em 0.75em 1em;
  cursor: pointer;
  transition: background-color 0.3s;
}
.estl-searchbox-area:hover {
  background-color: #EAEAEA;
}
.estl-searchbox-area__title {
  font-weight: bold;
  margin-bottom: 0.25em;
}
.estl-searchbox-area__count {
  font-size: 0.875em;
}
.estl-searchbox-area__arrow {
  position: absolute;
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  transform: translateY(-50%);
}
.estl-searchbox-area__arrow > svg {
  width: 0.875em;
  height: 0.875em;
  fill: var(--estatetool-primary);
}

.estl-searchbox-properties {
  padding-left: 1.25em;
  padding-right: 1.25em;
}
.estl-searchbox-properties__item {
  margin-bottom: 1em;
}
.estl-searchbox-properties__item:last-of-type {
  margin-bottom: 0;
}
.estl-searchbox-properties__more {
  padding-top: 1em;
  padding-bottom: 1em;
  text-align: center;
}
.estl-searchbox-properties__more > a {
  display: inline-flex;
  align-items: center;
  font-weight: bold;
}
.estl-searchbox-properties__more > a svg {
  margin-left: 0.5em;
  width: 0.875em;
  height: 0.875em;
}

.estl-searchbox-property {
  background-color: #EAEAEA;
}
.estl-searchbox-property__image img {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover;
}
.estl-searchbox-property__body {
  padding: 1.5em;
}
.estl-searchbox-property__content {
  flex: 1;
}
.estl-searchbox-property__title {
  margin-bottom: 0.25em;
  font-size: 1.25rem;
  font-weight: 500;
}
.estl-searchbox-property__address {
  margin-bottom: 0.5em;
}
.estl-searchbox-property__count {
  color: var(--estatetool-primary);
}
.estl-searchbox-property__actions {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 0.5em;
}
.estl-searchbox-property__actions > a.estatetool-button {
  display: block;
  width: 100%;
  padding-top: 0.625em;
  padding-bottom: 0.625em;
  font-size: 0.875em !important;
  font-weight: 400 !important;
  text-align: center;
  margin-top: 0.75em;
}
.estl-searchbox-property__actions > a.estl-searchbox-property__link {
  background-color: #ffffff;
  color: var(--estatetool-primary);
  border-color: transparent;
}
@media (min-width: 560px) {
  .estl-searchbox-property__actions > a.estatetool-button {
    display: inline-block;
    width: auto;
    min-width: 200px;
    margin-right: 0.75em;
  }
}
@media (min-width: 768px) {
  .estl-searchbox-property {
    display: flex;
    align-items: stretch;
    min-height: 155px;
  }
  .estl-searchbox-property__image {
    width: 200px;
  }
  .estl-searchbox-property__body {
    display: flex;
    flex: 1;
  }
  .estl-searchbox-property__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .estl-searchbox-property__actions > a.estatetool-button {
    margin-right: 0.75em;
    margin-right: 0;
  }
}

.estl-searchbox-featured {
  margin-top: 1.875em;
  padding: 2em 1.5em 0;
  border-top: 1px solid #EAEAEA;
}
.estl-searchbox-featured__title {
  font-size: 1.125em;
  margin-bottom: 1em;
}
.estl-searchbox-featured__grid > div {
  margin-bottom: 1.5em;
}
.estl-searchbox-featured__grid > div:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .estl-searchbox-featured__grid {
    display: flex;
    justify-content: space-between;
  }
  .estl-searchbox-featured__grid > div {
    width: 48%;
    margin-bottom: 0;
  }
}

.estl-searchbox-fproperty {
  position: relative;
}
.estl-searchbox-fproperty__header {
  margin-bottom: 0.5em;
  font-size: 12px;
  color: #323232;
}
.estl-searchbox-fproperty__body {
  position: relative;
  height: 200px;
  padding: 1em 1.25em;
}
.estl-searchbox-fproperty__image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover;
}
.estl-searchbox-fproperty__name {
  position: relative;
  color: #ffffff;
  font-size: 1.375em;
  line-height: 1;
}
.estl-searchbox-fproperty__coverlink {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.estl-searchbox-properties--simple {
  margin-top: 24px;
  padding-left: 0;
  padding-right: 0;
}
.estl-searchbox-properties--simple .estl-searchbox-properties__item {
  margin-bottom: 0;
}
.estl-searchbox-properties--simple .estl-searchbox-property {
  display: flex;
  min-height: 92px;
  padding: 16px 24px;
  background-color: transparent;
  transition: all 0.3s;
  color: #000;
  cursor: pointer;
}
.estl-searchbox-properties--simple .estl-searchbox-property:hover {
  background-color: #F6F5F5;
}
.estl-searchbox-properties--simple .estl-searchbox-property__image {
  width: 80px;
  height: 60px;
}
.estl-searchbox-properties--simple .estl-searchbox-property__body {
  padding-top: 8px;
  padding-bottom: 0;
}
@media (max-width: 767px) {
  .estl-searchbox-properties--simple .estl-searchbox-property__body {
    padding-top: 4px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
.estl-searchbox-properties--simple .estl-searchbox-property__title {
  font-size: 16px;
  font-weight: 400;
}
.estl-searchbox-properties--simple .estl-searchbox-property__address {
  font-weight: 300;
  margin-bottom: 0;
  font-size: 14px;
}
.estl-searchbox-properties--simple .estl-searchbox-property__arrow {
  align-self: center;
  margin-left: auto;
}

.estl-searchbox-input .autocomplete-suggestions {
  position: absolute;
  width: 100% !important;
  top: 60px;
  background-color: #fff;
  font-size: 16px;
  overflow: auto;
}
.estl-searchbox-input .autocomplete-suggestion {
  padding: 12px 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  white-space: nowrap;
  overflow: hidden;
  cursor: pointer;
}
.estl-searchbox-input .autocomplete-selected {
  background: rgba(0, 0, 0, 0.05);
}
.estl-searchbox-input .autocomplete-suggestions strong {
  font-weight: 500;
}
.estl-searchbox-input .autocomplete-no-suggestion {
  padding: 12px 16px;
}

.estl-account {
  min-height: 300px;
  background-color: #EAEAEA;
}
.estl-account__container {
  max-width: 1200px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.estl-account__tabs_wrapper {
  background-color: #fff;
}
.estl-account__header {
  font-size: 16px;
  margin-bottom: 32px;
}
.estl-account__header h3 {
  font-size: 26px;
  margin-bottom: 16px;
  font-weight: 400;
}
.estl-account__header p {
  margin: 0;
}
.estl-account__content {
  padding-top: 40px;
  padding-bottom: 60px;
}

.estl-account-tabs {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.estl-account-tabs__item {
  flex: 1 0 auto;
}
.estl-account-tabs__item > a {
  display: block;
  padding: 20px;
  color: #3D3D3D;
}
.estl-account-tabs__item > a:hover {
  color: #161616;
}
.estl-account-tabs__item--active > a {
  color: #161616;
  font-weight: 700;
}

.estl-account-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -10px;
  margin-right: -10px;
}
.estl-account-grid__item {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 620px) {
  .estl-account-grid__item {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .estl-account-grid__item {
    width: 50%;
  }
}

.estl-auth {
  width: 640px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.estl-actor {
  min-height: 300px;
  background-color: #EAEAEA;
}
.estl-actor__container {
  max-width: 1200px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.estl-actor__menu_wrapper {
  background-color: #fff;
}
.estl-actor__header {
  font-size: 16px;
  margin-bottom: 32px;
}
.estl-actor__header h3 {
  font-size: 26px;
  margin-bottom: 16px;
  font-weight: 400;
}
.estl-actor__header p {
  margin: 0;
}
.estl-actor__main {
  padding-top: 40px;
  padding-bottom: 60px;
}
.estl-actor__content {
  display: none;
}
.estl-actor__content--active {
  display: block;
}
.estl-actor a {
  color: var(--estatetool-primary);
}
.estl-actor a:hover {
  color: var(--estatetool-primary-darken);
}

.estl-actor-menu {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
  margin-right: -20px;
}
.estl-actor-menu__item {
  flex: 1 0 auto;
}
.estl-actor-menu__item > a {
  display: block;
  padding: 20px;
  color: #3D3D3D;
}
.estl-actor-menu__item > a:hover {
  color: #161616;
}
.estl-actor-menu__item.active > a {
  color: #161616;
  font-weight: 700;
}
.estl-actor-menu__badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--estatetool-primary);
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  vertical-align: middle;
}

.estl-actor-grid {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin-left: -10px;
  margin-right: -10px;
}
.estl-actor-grid__item {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}
@media (min-width: 620px) {
  .estl-actor-grid__item {
    margin-left: 0;
    margin-right: 0;
  }
}
@media (min-width: 992px) {
  .estl-actor-grid__item {
    width: 50%;
  }
}

.estl-auth-form {
  position: relative;
}
.estl-auth-form.loading::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 10;
}

.estl-searchagent-panel {
  max-width: 727px;
}

.estl-searchagent-chips {
  display: flex;
  flex-wrap: wrap;
}
.estl-searchagent-chip {
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 0.625em 0.75em;
  line-height: 1;
  font-size: 16px;
  background-color: #EAEAEA;
  color: #161616;
}
@media (min-width: 768px) {
  .estl-searchagent-chip {
    font-size: 18px;
  }
}
.estl-searchagent-chip--sm {
  font-size: 14px;
}
.estl-searchagent-chip--delete {
  display: inline-flex;
  align-items: center;
}
.estl-searchagent-chip__delete {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  cursor: pointer;
  opacity: 0.5;
}
.estl-searchagent-chip__delete:hover {
  opacity: 1;
}
.estl-searchagent-chip__delete::after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEyIiBoZWlnaHQ9IjEyIiB2aWV3Qm94PSIwIDAgMTIgMTIiPgo8dGl0bGU+Y2xvc2U8L3RpdGxlPgo8cGF0aCBkPSJNNiA1bC01LTUtMSAxIDUgNS01IDUgMSAxIDUtNSA1IDUgMS0xLTUtNSA1LTUtMS0xLTUgNXoiPjwvcGF0aD4KPC9zdmc+Cg==");
  width: 10px;
  height: 10px;
  background-size: 100%;
  background-position: center center;
}
.estl-searchagent-chip__label {
  display: inline-block;
}

.estl-searchagent-switch-group {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.estl-searchagent-switch-group > div:last-child {
  flex: 1;
  text-align: right;
}
.estl-searchagent-switch-group + .estl-searchagent-switch-group {
  margin-top: 16px;
}

.estl-search-agent-overwrite__loading {
  display: none;
  text-align: center;
}
.estl-search-agent-overwrite.loading .estl-search-agent-overwrite__loading {
  display: block;
}
.estl-search-agent-overwrite.loading .estl-search-agent-overwrite__main {
  display: none;
}

.estl-search-agent-form {
  position: relative;
}
.estl-search-agent-form.loading::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 10000;
}

.estl-field--searchagent {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .estl-field--searchagent {
    display: flex;
  }
}
.estl-field--searchagent .estl-field__label {
  flex: 0 1 30%;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 14px;
}
@media (min-width: 768px) {
  .estl-field--searchagent .estl-field__label {
    font-size: 18px;
  }
}
.estl-field--searchagent .estl-field__input {
  flex: 0 1 70%;
}
.estl-field--searchagent select.estl-input {
  max-width: 340px;
}
.estl-field--searchagent .estatetool-filter-properties,
.estl-field--searchagent .estatetool-range {
  max-width: 340px;
}
.estl-field--searchagent .estatetool-range__labels {
  font-size: 16px;
}

.estl-searchagent-checkboxes {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .estl-searchagent-checkboxes .estatetool-checkbox {
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .estl-searchagent-checkboxes--grid .estatetool-checkbox {
    flex: 0 1 25%;
    width: 25%;
  }
}

.estl-units-sa {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding: 20px;
  background-color: #EAEAEA;
  background-color: var(--estatetool-light-bg);
}
@media (max-width: 767px) {
  .estl-units-sa {
    flex-wrap: wrap;
    flex-direction: row;
  }
  .estl-units-sa > div {
    margin-bottom: 20px;
  }
  .estl-units-sa > div:last-child {
    margin-bottom: 0;
  }
}
.estl-units-sa__title {
  font-size: 1.125em;
  margin-bottom: 0.5em;
  line-height: 1.2;
  font-weight: 600;
  color: #323232;
  color: var(--estatetool-text);
}
.estl-units-sa p:last-child {
  margin-bottom: 0;
}

.estatetool-unit-card .estl-favorite-button {
  position: absolute;
  right: 8px;
  top: 8px;
  z-index: 50;
}

.estl-favorite-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50px;
  transition: all 0.3s;
}
.estl-favorite-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.estl-favorite-button > a {
  position: relative;
  display: block;
  width: 22px;
  height: 22px;
}
.estl-favorite-button > a > svg {
  width: 22px;
  height: 22px;
  color: rgba(0, 0, 0, 0.1);
}
.estl-favorite-button > a > svg:hover {
  color: rgba(0, 0, 0, 0.2);
}
.estl-favorite-button > a > svg:last-child {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}
.estl-favorite-button > a.active > svg {
  color: var(--estatetool-primary);
}
.estl-favorite-button > a.active > svg:hover {
  color: var(--estatetool-primary);
}

.estatetool-unit-info {
  position: relative;
}
.estatetool-unit-info .estl-favorite-button {
  position: absolute;
  top: 0;
  right: 0;
}
.estatetool-unit-info .estatetool-unit-property,
.estatetool-unit-info .estatetool-unit-address {
  padding-right: 34px;
}

.estl-alert {
  margin-bottom: 24px;
}
.estl-alert--error {
  color: #cb3d48;
}
.estl-alert--success {
  color: #008000;
}

body.body-estl-modal-open {
  overflow: hidden;
}

.estl-modal {
  position: fixed;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 100000;
  overflow-y: auto;
}
.estl-modal.open {
  display: block;
}
.estl-modal__overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.estl-modal__container {
  position: relative;
  display: flex;
  width: 650px;
  max-width: 90%;
  min-height: 100%;
  margin: 0 auto;
  padding: 20px 0;
  z-index: 5;
}
.estl-modal__container--xl {
  width: 1000px;
}
.estl-modal__container--sm {
  width: 550px;
}
.estl-modal__container--auto, .estl-modal__container--auto .estl-modal__body {
  width: auto;
}
.estl-modal__body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  animation: estatetool-fadein-down 0.3s;
  z-index: 10;
}
.estl-modal__body--center {
  align-self: center;
}
.estl-modal__close {
  position: absolute;
  padding: 0 !important;
  margin: 0 !important;
  right: 16px;
  top: 16px;
  font-size: 14px !important;
  line-height: 1 !important;
  background: none !important;
  background-color: transparent !important;
  color: inherit !important;
  outline: none !important;
  box-shadow: none !important;
  cursor: pointer;
  z-index: 2000;
}
.estl-modal.closing .estl-modal__body {
  animation: estatetool-fadeout-up forwards 0.3s;
}
.estl-modal__content {
  background-color: #fff;
}

#estatetool_modal .estatetool-modal-body {
  position: relative;
  height: auto;
}
#estatetool_modal .estatetool-modal-content {
  padding-top: 65%;
}

.estl-panel {
  position: relative;
  margin-bottom: 30px;
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.08);
}
.estl-panel__title {
  line-height: 1.2;
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .estl-panel__title {
    font-size: 22px;
    margin-bottom: 24px;
  }
}
.estl-panel__header {
  position: relative;
  padding: 24px;
  border-bottom: 1px solid #EAEAEA;
}
.estl-panel__header .estl-panel__title {
  margin-bottom: 0;
}
.estl-panel h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}
.estl-panel__body {
  padding: 24px;
}
.estl-panel__footer {
  border-top: 1px solid #EAEAEA;
  padding: 24px;
}
.estl-panel__body + .estl-panel__body {
  border-top: 1px solid #EAEAEA;
}
.estl-panel p {
  margin-bottom: 16px;
}
.estl-panel__space {
  height: 24px;
}
.estl-panel a {
  color: var(--estatetool-primary);
}
.estl-panel a:hover, .estl-panel a:focus {
  color: var(--estatetool-primary-darken);
}
.estl-panel__footer_action {
  display: flex;
  justify-content: space-between;
  background-color: #EAEAEA;
}
.estl-panel__close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 20px;
  height: 20px;
  color: inherit;
  z-index: 2;
  cursor: pointer;
}
.estl-panel__header .estl-panel__close {
  right: 24px;
  top: 32px;
}

.estl-panel--empty {
  padding-top: 24px;
  padding-bottom: 24px;
}
.estl-panel--empty .estl-panel__body {
  text-align: center;
  padding-top: 10%;
  padding-bottom: 10%;
}
.estl-panel--empty .estl-panel__heading {
  margin-bottom: 28px;
  font-size: 16px;
}
.estl-panel--empty .estl-panel__heading h4 {
  font-size: 24px;
  font-weight: 700;
}

.estl-expand {
  position: relative;
}
.estl-expand--expandable .estl-expand__content {
  overflow: hidden;
}
.estl-expand__toggler {
  display: none;
  position: relative;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 8px 6px 8px;
  text-align: center;
  cursor: pointer;
}
.estl-expand__toggler > span {
  display: inline-block;
  transition: transform 0.3s;
}
.estl-expand__toggler::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 70px;
  background: rgba(255, 255, 255, 0.5);
  background: linear-gradient(180deg, transparent 0%, #fff 100%);
}
.estl-expand--expandable .estl-expand__toggler {
  display: block;
}
.estl-expand--expanded .estl-expand__toggler > span {
  transform: rotate(180deg);
}
.estl-expand--expanded .estl-expand__toggler::after {
  display: none;
}

.estl-select-dropdown *,
.estl-select-dropdown :after,
.estl-select-dropdown :before {
  box-sizing: border-box;
}
.estl-select-dropdown__button {
  position: relative;
  min-height: 44px;
  background-color: #fff;
  border: 1px solid #D1D1D1;
  font-size: 16px;
  line-height: 1.3;
  padding: 10px 18px;
  padding-right: 40px;
  user-select: none;
  cursor: pointer;
}
.estl-select-dropdown__button::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 10px;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml;base64,PCEtLSBHZW5lcmF0ZWQgYnkgSWNvTW9vbi5pbyAtLT4KPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjI4OCIgaGVpZ2h0PSI0NDgiIHZpZXdCb3g9IjAgMCAyODggNDQ4Ij4KPHRpdGxlPjwvdGl0bGU+CjxnIGlkPSJpY29tb29uLWlnbm9yZSI+CjwvZz4KPHBhdGggZmlsbD0iIzAwMCIgZD0iTTI2OC43NSAxODRjMCAyLTEgNC4yNS0yLjUgNS43NWwtMTE2LjUgMTE2LjVjLTEuNSAxLjUtMy43NSAyLjUtNS43NSAyLjVzLTQuMjUtMS01Ljc1LTIuNWwtMTE2LjUtMTE2LjVjLTEuNS0xLjUtMi41LTMuNzUtMi41LTUuNzVzMS00LjI1IDIuNS01Ljc1bDEyLjUtMTIuNWMxLjUtMS41IDMuNS0yLjUgNS43NS0yLjUgMiAwIDQuMjUgMSA1Ljc1IDIuNWw5OC4yNSA5OC4yNSA5OC4yNS05OC4yNWMxLjUtMS41IDMuNzUtMi41IDUuNzUtMi41czQuMjUgMSA1Ljc1IDIuNWwxMi41IDEyLjVjMS41IDEuNSAyLjUgMy43NSAyLjUgNS43NXoiPjwvcGF0aD4KPC9zdmc+Cg==");
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.3s;
}
.estl-select-dropdown__popover {
  display: none;
  background: #FFFFFF;
  border: 1px solid #D1D1D1;
  color: #000000;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.2;
  z-index: 10;
}
.estl-select-dropdown[data-show] .estl-select-dropdown__popover {
  display: block;
}
.estl-select-dropdown[data-show] .estl-select-dropdown__button::after {
  transform: rotate(180deg);
}
.estl-select-dropdown__options {
  margin: 0;
  padding: 0;
  list-style: none;
}
.estl-select-dropdown__options > li {
  position: relative;
  border-bottom: 1px solid #D1D1D1;
  font-size: 14px;
  line-height: 1.3;
  padding: 12px 18px;
  padding-left: 44px;
  font-weight: normal;
  cursor: pointer;
  transition: background-color 0.3s;
}
.estl-select-dropdown__options > li:hover {
  background-color: rgba(0, 0, 0, 0.05);
}
.estl-select-dropdown__options > li:last-child {
  border-bottom: none;
}
.estl-select-dropdown__options > li label {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  vertical-align: initial;
}
.estl-select-dropdown__options > li::before {
  content: " ";
  position: absolute;
  left: 20px;
  top: 0;
  width: 16px;
  height: 16px;
  margin-top: 12px;
  border: 1px solid rgba(61, 61, 61, 0.2);
  background-color: transparent;
  transition: all 0.3s;
  opacity: 1;
}
.estl-select-dropdown__options > li::after {
  content: " ";
  display: none;
  position: absolute;
  left: 23px;
  top: 3px;
  width: 10px;
  height: 6px;
  margin-top: 12px;
  border-left: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(-45deg);
}
.estl-select-dropdown__options > li[data-checked] {
  opacity: 1;
}
.estl-select-dropdown__options > li[data-checked]::before {
  background-color: var(--estatetool-primary);
  border: none;
}
.estl-select-dropdown__options > li[data-checked]::after {
  display: block;
}

.isometri-responsive-iframe {
  position: relative;
  display: block;
  height: 0;
  padding: 0;
  overflow: hidden;
  padding-bottom: 75%;
}

.isometri-responsive-iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  height: 100% !important;
  width: 100%;
  border: 0;
}

#isometri_detail_full {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
  z-index: 100000;
}

#isometri_detail_full > iframe {
  margin-bottom: -6px !important;
}

#isometri_detail_full iframe {
  height: 100%;
  width: 100%;
}

@keyframes estatetool-list-loading-cubes {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
.estatetool-list-loading-cubes div {
  position: absolute;
  width: 40px;
  height: 40px;
  top: 6.6666666667px;
  left: 6.6666666667px;
  background: #6a6a6a;
  background: #00979C;
  animation: estatetool-list-loading-cubes 1s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  animation-delay: -0.3s;
}

.estatetool-list-loading-cubes div:nth-child(2) {
  top: 6.6666666667px;
  left: 53.3333333333px;
  background: #979797;
  background: #00c8cf;
  animation-delay: -0.2s;
}

.estatetool-list-loading-cubes div:nth-child(3) {
  top: 53.3333333333px;
  left: 6.6666666667px;
  background: #e2e2e2;
  background: #00e1e9;
  animation-delay: 0s;
}

.estatetool-list-loading-cubes div:nth-child(4) {
  top: 53.3333333333px;
  left: 53.3333333333px;
  background: #bdbdbd;
  background: #1df8ff;
  animation-delay: -0.1s;
}

.estatetool-list-loading-cubes-wrapper {
  width: 80px;
  height: 80px;
  display: inline-block;
  overflow: hidden;
  background: none;
}

.estatetool-list-loading-cubes {
  width: 100%;
  height: 100%;
  position: relative;
  transform: translateZ(0) scale(0.8);
  backface-visibility: hidden;
  transform-origin: 0 0; /* see note above */
}

.estatetool-list-loading-cubes div {
  box-sizing: content-box;
}

.estatetool-open-house {
  font-size: 16px;
  padding: 24px;
  background-color: #323232;
  background-color: var(--estatetool-secondary);
  color: #ffffff;
  color: var(--estatetool-primary-contrast);
}
.estatetool-open-house__title {
  margin-bottom: 5px;
}
.estatetool-open-house__text {
  margin-bottom: 20px;
}
.estatetool-open-house p {
  margin-bottom: 10px;
}
.estatetool-open-house a.estatetool-open-house__button.estatetool-open-house__button {
  display: inline-block;
  padding: 10px 18px;
  background-color: var(--estatetool-accent);
  color: #ffffff;
  color: var(--estatetool-primary-contrast);
  transition: all 0.3s;
}
.estatetool-open-house a.estatetool-open-house__button.estatetool-open-house__button:hover {
  background-color: var(--estatetool-accent);
  color: #ffffff;
  color: var(--estatetool-primary-contrast);
}
/*# sourceMappingURL=style.css.map */
