/* required styles */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Prevents IE11 from highlighting tiles in blue */
.leaflet-tile::selection {
  background: transparent;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
  max-height: none !important;
}

.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
  width: auto;
  padding: 0;
}

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}

.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}

.leaflet-tile-loaded {
  visibility: inherit;
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

.leaflet-pane {
  z-index: 400;
}

.leaflet-tile-pane {
  z-index: 200;
}

.leaflet-overlay-pane {
  z-index: 400;
}

.leaflet-shadow-pane {
  z-index: 500;
}

.leaflet-marker-pane {
  z-index: 600;
}

.leaflet-tooltip-pane {
  z-index: 650;
}

.leaflet-popup-pane {
  z-index: 700;
}

.leaflet-map-pane canvas {
  z-index: 100;
}

.leaflet-map-pane svg {
  z-index: 200;
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

.leaflet-top {
  top: 0;
}

.leaflet-right {
  right: 0;
}

.leaflet-bottom {
  bottom: 0;
}

.leaflet-left {
  left: 0;
}

.leaflet-control {
  float: left;
  clear: both;
}

.leaflet-right .leaflet-control {
  float: right;
}

.leaflet-top .leaflet-control {
  margin-top: 10px;
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

.leaflet-left .leaflet-control {
  margin-left: 10px;
}

.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

svg.leaflet-zoom-animated {
  will-change: transform;
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */
.leaflet-interactive {
  cursor: pointer;
}

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* visual tweaks */
.leaflet-container {
  background: #ddd;
  outline-offset: 1px;
}

.leaflet-container a {
  color: #0078A8;
}

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
.leaflet-container {
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* general toolbar styles */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

.leaflet-bar a {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}

.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}

.leaflet-bar a:hover,
.leaflet-bar a:focus {
  background-color: #f4f4f4;
}

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* zoom control */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px "Lucida Console", Monaco, monospace;
  text-indent: 1px;
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

/* layers control */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}

.leaflet-control-layers-toggle {
  background-image: url(images/layers.png);
  width: 36px;
  height: 36px;
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(images/layers-2x.png);
  background-size: 26px 26px;
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

.leaflet-control-layers label {
  display: block;
  font-size: 13px;
  font-size: 1.08333em;
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
.leaflet-default-icon-path { /* used only in path-guessing heuristic, see L.Icon.Default */
  background-image: url(images/marker-icon.png);
}

/* attribution and scale controls */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
  line-height: 1.4;
}

.leaflet-control-attribution a {
  text-decoration: none;
}

.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
  text-decoration: underline;
}

.leaflet-control-attribution svg {
  display: inline !important;
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5);
}

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}

.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

/* popup */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

.leaflet-popup-content {
  margin: 13px 24px 13px 20px;
  line-height: 1.3;
  font-size: 13px;
  min-height: 1px;
  max-width: 240px;
  min-width: 240px;
}

.leaflet-popup-content p {
  margin: 17px 0;
  margin: 1.3em 0;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-top: -1px;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  pointer-events: auto;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  text-align: center;
  width: 24px;
  height: 24px;
  font: 16px/24px Tahoma, Verdana, sans-serif;
  color: #757575;
  text-decoration: none;
  background: transparent;
}

.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
  color: #585858;
}

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  -ms-zoom: 1;
}

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.leaflet-tooltip.leaflet-interactive {
  cursor: pointer;
  pointer-events: auto;
}

.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Directions */
.leaflet-tooltip-bottom {
  margin-top: 6px;
}

.leaflet-tooltip-top {
  margin-top: -6px;
}

.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}

.leaflet-tooltip-left {
  margin-left: -6px;
}

.leaflet-tooltip-right {
  margin-left: 6px;
}

.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}

/* Printing */
@media print {
  /* Prevent printers from removing background-images of controls. */
  .leaflet-control {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }
}
/* Functional styling;
 * These styles are required for noUiSlider to function.
 * You don't need to change these rules to apply your design.
 */
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

/* Wrapper for all connect elements.
 */
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}

/* Offset direction
 */
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

/* Give origins 0 height/width so they don't interfere with clicking the
 * connect elements.
 */
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

/* Slider size and handle placement;
 */
.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

/* Styling;
 * Giving the connect element a border radius causes issues with using transform: scale
 */
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3FB8AF;
}

/* Handles and cursors;
 */
.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}

.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}

/* Handle stripes;
 */
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

/* Disabled state;
 */
[disabled] .noUi-connect {
  background: #B8B8B8;
}

[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}

/* Base;
 *
 */
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

/* Values;
 *
 */
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

/* Markings;
 *
 */
.noUi-marker {
  position: absolute;
  background: #CCC;
}

.noUi-marker-sub {
  background: #AAA;
}

.noUi-marker-large {
  background: #AAA;
}

/* Horizontal layout;
 *
 */
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

/* Vertical layout;
 *
 */
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media (max-width: 575px) {
  body {
    --realpress-space-item: 10px;
    --property--padding-horizontal-item: 8px ;
  }
}
html {
  line-height: 1.6rem;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  cursor: pointer;
}

ul {
  padding-left: 0;
  margin-left: 0;
}
ul li {
  list-style: none;
}

select {
  cursor: pointer;
}

.hidden {
  display: none !important;
  visibility: hidden !important;
}

.realpress-container, .realpress-porperty-media-section {
  margin-left: auto;
  margin-right: auto;
  max-width: 1290px;
  width: 100%;
  padding-left: var(--property--padding-horizontal-item, 15px);
  padding-right: var(--property--padding-horizontal-item, 15px);
}

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

.row > * {
  width: 100%;
}

.realpress-wave-loading {
  height: 100%;
  min-height: 500px;
  background: linear-gradient(90deg, hsla(0deg, 0%, 74.5%, 0.2) 25%, hsla(0deg, 0%, 50.6%, 0.24) 37%, hsla(0deg, 0%, 74.5%, 0.2) 63%);
  animation: waveLoading 1.4s ease infinite;
  background-size: 400% 100%;
  width: 100%;
}

@keyframes waveLoading {
  0% {
    background-position: 100% 50%;
  }
  to {
    background-position: 0 50%;
  }
}
.row {
  margin-left: calc(-1 * var(--property--padding-horizontal-item, 15px));
  margin-right: calc(-1 * var(--property--padding-horizontal-item, 15px));
}

.realpress-archive-property-content, .realpress-single-property-main-content {
  width: 75%;
  padding-left: var(--property--padding-horizontal-item, 15px);
  padding-right: var(--property--padding-horizontal-item, 15px);
}

.realpress-archive-property-sidebar, .realpress-single-property-sidebar {
  width: 25%;
  padding-left: var(--property--padding-horizontal-item, 15px);
  padding-right: var(--property--padding-horizontal-item, 15px);
}

.realpress-property-container {
  margin-left: calc(-1 * var(--property--padding-horizontal-item, 15px));
  margin-right: calc(-1 * var(--property--padding-horizontal-item, 15px));
}
.realpress-property-container > div {
  padding-left: var(--property--padding-horizontal-item, 15px);
  padding-right: var(--property--padding-horizontal-item, 15px);
  margin: 0 0 calc(2 * var(--property--padding-horizontal-item, 15px));
}

.realpress-form-message {
  margin-bottom: 50px;
  width: 100%;
}

.success {
  color: #28a745;
}

.failed {
  color: #ff4136;
}

.leaflet-control-attribution {
  display: none;
}

.realpress-property-wishlist {
  display: inline;
  cursor: pointer;
}
.realpress-property-wishlist.active {
  color: red;
}

.realpress-property-compare.active {
  color: #1EC6BC;
}

@keyframes rp-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.rp-spinner {
  display: inline-block;
  margin: 0 4px;
  animation: rp-spin 2s linear infinite;
}

.realpress-loading-display {
  width: 2rem;
  height: 2rem;
  border: 5px solid #2271b1;
  border-top: 6px solid #FFF;
  border-radius: 100%;
  margin: auto;
  display: none;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 1s infinite linear;
  display: block;
}

.realpress-load-more {
  text-align: center;
}

.gm-style-iw-d > div {
  display: flex;
  align-items: center;
}
.gm-style-iw-d .realpress-popup-property-header {
  max-width: 150px;
  margin-right: 15px;
  margin-left: 0;
}

.gm-svpc > div > img {
  max-width: none;
}

.realpress-property-item .realpress-property-body .realpress-agent, .realpress-property-item .realpress-property-body .realpress-groups-button-wrapper {
  display: none;
}

#realpress-snackbar {
  z-index: 9999;
  display: none;
  min-width: 250px;
  background-color: black;
  color: #fff;
  text-align: center;
  padding: 15px;
  position: fixed;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  bottom: 0;
}
#realpress-snackbar.active {
  display: block;
}

@media (max-width: 1199px) {
  .realpress-property-container {
    margin-left: -8px;
    margin-right: -8px;
  }
  .realpress-property-container > div {
    padding-left: 8px;
    padding-right: 8px;
  }
  .realpress-property-item {
    margin-bottom: 16px;
  }
  .realpress-property-item .realpress-property-body {
    padding: 15px;
  }
  .realpress-property-item .realpress-property-item-title {
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
  }
  .realpress-property-item .realpress-property-item-title a {
    white-space: nowrap;
    font-size: 16px;
  }
  .realpress-property-item .realpress-property-item-status {
    left: 15px;
    top: 15px;
  }
}
@media (max-width: 768px) {
  .realpress-archive-property-content, .realpress-single-property-main-content,
.realpress-archive-property-sidebar, .realpress-single-property-sidebar {
    width: 100%;
  }
}
.thim-ekits-property-item-location svg {
  margin-right: var(--thim-prt-location-icon-spacing, 10px);
  margin-left: 0;
}

.realpress-breadcrumb {
  flex-basis: 100%;
  margin-bottom: calc(2 * var(--realpress-space-item, 15px));
}
.realpress-breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
}
.realpress-breadcrumb ul li {
  font-weight: 500;
  display: inline-block;
  font-size: 14px;
  line-height: 24px;
  color: #686868;
  margin: 0;
  margin-right: 16px;
  margin-left: 0;
  list-style: none;
}
.realpress-breadcrumb ul li a {
  font-weight: 500;
  color: #000;
  display: inline-block;
}
.realpress-breadcrumb ul li + li {
  font-weight: 400;
}
.realpress-breadcrumb ul li + li::before {
  content: "\e919";
  font-family: "rp-fonticon";
  font-weight: 600;
  margin-right: 16px;
  margin-left: 0;
  font-size: 11px;
  color: black;
}

.realpress-control-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 27px;
}
.realpress-control-group h1 {
  font-size: 36px;
  font-weight: 600;
  color: black;
}
.realpress-control-group .realpress-item-switch-view {
  margin-left: 10px;
  margin-right: 0;
}
.realpress-control-group .realpress-item-switch-view li {
  display: inline;
  list-style: none;
  cursor: pointer;
  padding: 0 6px;
  color: #87A198;
}
.realpress-control-group .realpress-item-switch-view li.active {
  color: black;
}

.realpress-sort-by {
  margin-left: auto;
}
.realpress-sort-by > select {
  display: none;
}
.realpress-sort-by .ts-wrapper .ts-control, .realpress-sort-by .ts-wrapper.single.input-active .ts-control {
  height: auto;
  line-height: inherit;
  border: 0;
  padding: 0 !important;
  background-color: transparent;
  cursor: pointer;
}
.realpress-sort-by .ts-wrapper .ts-control input, .realpress-sort-by .ts-wrapper.single.input-active .ts-control input {
  display: none !important;
}
.realpress-sort-by .ts-dropdown {
  min-width: 200px;
}

.realpress-pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  line-height: 24px;
}

.realpress-pagination ul {
  display: flex;
  justify-content: flex-end;
}
.realpress-pagination ul li {
  width: var(--thim-ekits-archive-prt-number-width, 44px);
  height: var(--thim-ekits-archive-prt-number-height, 44px);
  line-height: 44px;
  margin: 0 3px;
  border: 1px solid white;
  background-color: white;
  font-weight: 600;
  position: relative;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.realpress-pagination ul li.current a {
  color: #f06292;
}

.realpress-container .realpress-advanced-search {
  margin-bottom: calc(2 * var(--realpress-space-item, 15px));
}

.realpress-advanced-search {
  width: 100%;
}
.realpress-advanced-search .realpress-search-field {
  flex-basis: 20%;
}
.realpress-advanced-search .realpress-search-field input[type=text], .realpress-advanced-search .realpress-search-field select {
  width: 100%;
  height: 50px;
  border: 1px solid #e7e7e7;
  font-size: 14px;
  line-height: normal;
  padding: 0 15px;
  color: #6c6c6c;
  margin: 0;
}
.realpress-advanced-search .realpress-search-field .realpress-search-keyword {
  position: relative;
}
.realpress-advanced-search .realpress-search-field .realpress-search-keyword i.rp-spinner {
  position: absolute;
  line-height: 50px;
  right: 15px;
  font-family: "rp-fonticon" !important;
}
.realpress-advanced-search .realpress-search-field .content-section {
  visibility: hidden;
  opacity: 0;
  margin-top: 15px;
  transition: 0.3s;
}
.realpress-advanced-search .realpress-search-field .content-section ul > li.active {
  font-weight: 500;
}
.realpress-advanced-search .realpress-search-field.active .content-section {
  visibility: visible;
  opacity: 1;
  margin-top: 3px;
}
.realpress-advanced-search .realpress-search-field.type .parent, .realpress-advanced-search .realpress-search-field.location .parent {
  margin-left: 0;
}
.realpress-advanced-search .realpress-search-field.type .child, .realpress-advanced-search .realpress-search-field.location .child {
  margin-left: 20px;
}
.realpress-advanced-search .realpress-search-field .full-width {
  flex-basis: 100%;
  position: relative;
}
.realpress-advanced-search .realpress-search-field button i {
  margin: 0 5px;
}
.realpress-advanced-search .price-slider {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0;
  font-size: 16px;
}
@media (min-width: 1200px) and (max-width: 1440px) {
  .realpress-advanced-search .price-slider {
    flex-basis: 50%;
  }
}
.realpress-advanced-search .price-slider .realpress-search-price {
  width: 100%;
  margin-left: 20px;
}
.realpress-advanced-search .price-slider #realpress-search-price {
  width: 100%;
  height: 10px;
  margin-bottom: 10px;
}
.realpress-advanced-search .price-slider .noUi-horizontal .noUi-handle {
  height: 20px;
  width: 20px;
}
.realpress-advanced-search .field-item .list-item {
  visibility: hidden;
  opacity: 0;
  margin-top: 15px;
  transition: 0.3s;
}
.realpress-advanced-search .field-item.active .list-item {
  visibility: visible;
  opacity: 1;
  margin-top: 3px;
}

.wrapper-search-fields {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(var(--padding-advanced-search-field, 5px) * -1);
  margin-right: calc(var(--padding-advanced-search-field, 5px) * -1);
  align-items: flex-end;
}
.wrapper-search-fields > div {
  padding: var(--padding-advanced-search-field, 5px);
}

.realpress-advanced-search .realpress-search-field {
  margin: 0;
  position: relative;
}
.realpress-advanced-search .realpress-search-field.range-slider {
  margin-top: 8px;
}
.realpress-advanced-search .realpress-search-field select, .realpress-advanced-search .realpress-search-field input[type=text], .realpress-advanced-search .realpress-search-field > button[type=button] {
  font-size: var(--thim-font_body-font-size);
  padding: var(--thim-padding-advanced-search-field, 8px 15px);
  background-color: var(--thim-advs-field-background-color, #EFEFEF);
  border-width: var(--thim-advanced-search-border-width-input, 1px);
  border-style: var(--thim-advanced-search-border-type-input, solid);
  border-color: var(--thim-advs-field-border-color, #EFEFEF);
  border-radius: var(--thim-advanced-seaarch-field-border-radius, 0);
  outline: none;
  height: auto;
  width: 100%;
  text-align: left;
  line-height: 24px;
}
.realpress-advanced-search .realpress-search-field select:focus, .realpress-advanced-search .realpress-search-field input[type=text]:focus, .realpress-advanced-search .realpress-search-field > button[type=button]:focus {
  color: var(--thim-advs-field-color-hover, #000);
  background-color: var(--thim-advs-field-bg-color-hover, #fff);
  border-color: var(--thim-advs-field-border-color-hover, #000);
}
.realpress-advanced-search .realpress-search-field select, .realpress-advanced-search .realpress-search-field > button[type=button] {
  cursor: pointer;
  color: var(--thim-advs-field-color, #000);
}
.realpress-advanced-search .realpress-search-field > button[type=button].has-value {
  color: var(--thim-advs-field-color-hover, #000);
}
.realpress-advanced-search .realpress-search-field input[type=text] {
  color: var(--thim-advs-field-color-hover, #000);
}
.realpress-advanced-search .realpress-search-field input[type=text]::-webkit-input-placeholder {
  color: var(--thim-advs-field-color, #000);
}
.realpress-advanced-search .realpress-search-field input[type=text]:focus::-webkit-input-placeholder {
  color: var(--thim-advs-field-color-hover, #000);
}
.realpress-advanced-search .realpress-search-field .content-section {
  border: 1px solid #e7e7e7;
  padding: 25px;
  position: absolute;
  min-width: 300px;
  background-color: white;
  top: 100%;
  left: 0;
  right: auto;
  z-index: 100000;
  margin-top: 15px;
}
.realpress-advanced-search .realpress-search-field .content-section input {
  appearance: auto;
  width: 14px;
  height: 14px;
  cursor: pointer;
}
.realpress-advanced-search .realpress-search-field .content-section label {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.realpress-advanced-search .realpress-search-field .content-section label > input + span {
  line-height: 22px;
  display: inline-flex;
  align-items: center;
}
.realpress-advanced-search .realpress-search-field .content-section > div {
  display: flex;
  align-items: center;
  padding: 0 0 10px;
}
.realpress-advanced-search .realpress-search-field .content-section > button {
  margin: 10px 0 0;
  padding: 10px 30px;
}
.realpress-advanced-search .realpress-search-field .content-section > ul {
  display: flex;
  align-items: center;
  min-width: 310px;
  margin-bottom: 10px;
}
.realpress-advanced-search .realpress-search-field .content-section > ul > li {
  border: 1px solid rgba(0, 0, 0, 0.15);
  line-height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 8px;
  cursor: pointer;
  background-color: white;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -khtml-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.realpress-advanced-search .realpress-search-field .content-section > ul > li + li {
  border-left: 0;
}
.realpress-advanced-search .realpress-search-field .content-section > ul > li:hover {
  background-color: rgba(144, 144, 144, 0.15);
}
.realpress-advanced-search .realpress-search-field .content-section > ul > li.active {
  color: red;
}
.realpress-advanced-search .realpress-search-field .field-item ul {
  border: 1px solid #DEDEDE;
  padding: 10px 0 20px;
  max-height: 230px;
  overflow: hidden;
  overflow-y: auto;
  background-color: white;
}
.realpress-advanced-search .realpress-search-field .field-item ul::-webkit-scrollbar {
  width: 5px;
}
.realpress-advanced-search .realpress-search-field .field-item ul::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.15);
}
.realpress-advanced-search .realpress-search-field .field-item ul > li {
  padding: 3px 24px;
  line-height: 24px;
  cursor: pointer;
}
.realpress-advanced-search .realpress-search-field .field-item ul > li + li {
  margin-top: 6px;
}
.realpress-advanced-search .realpress-search-field .field-item ul > li:hover {
  background-color: #EFEFEF;
  color: black;
}
.realpress-advanced-search .realpress-search-field > .title {
  font-size: var(--thim-font_body-font-size);
  font-weight: 500;
  margin-bottom: 5px;
  line-height: 33px;
}
.realpress-advanced-search .realpress-search-field.active select, .realpress-advanced-search .realpress-search-field.active input[type=text], .realpress-advanced-search .realpress-search-field.active button[type=button] {
  color: var(--thim-advs-field-color-hover, #000);
  background-color: var(--thim-advs-field-bg-color-hover, #fff);
  border-color: var(--thim-advs-field-border-color-hover, #000);
}
.realpress-advanced-search .realpress-search-keyword {
  display: flex;
  align-items: center;
}
.realpress-advanced-search .price-input, .realpress-advanced-search .year, .realpress-advanced-search .area-input {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.realpress-advanced-search .price-input .title, .realpress-advanced-search .year .title, .realpress-advanced-search .area-input .title {
  width: 100%;
}
.realpress-advanced-search .field-item {
  width: calc(50% - 20px);
  position: relative;
}
.realpress-advanced-search .field-item .list-item {
  position: absolute;
  left: 0;
  right: auto;
  top: 100%;
  z-index: 99;
  width: 100%;
  margin-top: 10px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -khtml-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.realpress-advanced-search .field-item + .field-item::before {
  content: "";
  background-color: black;
  width: 20px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: -30px;
  right: auto;
}
.realpress-advanced-search .field-item.active .list-item {
  margin-top: 3px;
}
.realpress-advanced-search .ts-wrapper.multi.has-items .ts-control {
  padding: var(--thim-padding-advanced-search-field, 8px 15px);
}
.realpress-advanced-search .ts-wrapper.multi .ts-control > div {
  margin: 3px;
  margin-left: 0;
  padding: 0 6px;
  line-height: 18px;
}
.realpress-advanced-search .ts-wrapper.has-items .ts-control > input {
  display: none !important;
}
.realpress-advanced-search .ts-wrapper.single.input-active .ts-control {
  color: var(--thim-advs-field-color-hover, #000);
  background-color: var(--thim-advs-field-bg-color-hover, #fff);
  border-color: var(--thim-advs-field-border-color-hover, #000);
}
.realpress-advanced-search .ts-wrapper.single.has-items .ts-control {
  color: var(--thim-advs-field-color-hover, #000);
}
.realpress-advanced-search .realpress-search-control-button {
  margin-top: 10px;
}
.realpress-advanced-search .price-slider {
  display: flex;
  align-items: flex-end;
  position: relative;
}
.realpress-advanced-search .price-slider span {
  color: black;
  font-size: var(--thim-font_body-font-size);
  font-weight: 400;
}
.realpress-advanced-search .price-slider .realpress-search-price {
  margin-left: 0;
  text-align: right;
}
@media (max-width: 575px) {
  .realpress-advanced-search .price-slider .realpress-search-price {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.realpress-advanced-search .price-slider .title {
  position: absolute;
  color: #888;
  font-size: var(--thim-font_body-font-size);
  bottom: 0;
  margin-bottom: 0;
  line-height: 24px;
}
.realpress-advanced-search .price-slider #realpress-search-price {
  margin-bottom: 15px;
}
.realpress-advanced-search .price-slider #realpress-search-price {
  height: 4px;
  background-color: transparent;
}
.realpress-advanced-search .realpress-search-control-button {
  display: inline-flex;
  align-items: flex-start;
  width: 100%;
}
.realpress-advanced-search .realpress-search-control-button button {
  border: 0;
  font-weight: 500;
  margin: 0;
  cursor: pointer;
}
.realpress-advanced-search .realpress-search-control-button button + button {
  margin-left: 20px;
  margin-right: 0;
}
.realpress-advanced-search .realpress-reset {
  padding: 10px 15px;
  margin-right: 10px;
}
.realpress-advanced-search .realpress-search {
  background-color: red;
  height: auto;
  padding: 10px 15px;
  color: white;
  font-size: var(--thim-font_body-font-size);
  text-transform: capitalize;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -khtml-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.realpress-advanced-search .realpress-search i {
  margin-left: 14px;
  margin-right: 0;
}
.realpress-advanced-search .realpress-search-control-button .realpress-search-toggle-fields-button {
  background-color: transparent;
  color: #808080;
  font-size: 12px;
  line-height: 18px;
  text-transform: uppercase;
  height: auto;
  padding: 12px 0 9px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -khtml-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.realpress-advanced-search .realpress-search-control-button .realpress-search-toggle-fields-button i {
  color: #D3D3D3;
  margin-right: 14px;
  margin-left: 0;
  font-size: 23px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -khtml-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.realpress-advanced-search .realpress-search-control-button .realpress-search-toggle-fields-button:hover {
  color: red;
}
.realpress-advanced-search .realpress-search-control-button .realpress-search-toggle-fields-button:hover i {
  color: red;
}
.realpress-advanced-search .noUi-tooltip {
  line-height: 1;
  padding: 2px 5px 0;
}
.realpress-advanced-search .realpress-price-search-control-group {
  margin-top: 0;
  margin-bottom: 0;
  align-items: unset;
}
.realpress-advanced-search .ts-control {
  cursor: pointer;
  position: relative;
}
.realpress-advanced-search .ts-control > input {
  height: auto;
  cursor: pointer;
  line-height: 24px !important;
  min-width: unset;
  font-size: 14px;
}
.realpress-advanced-search .ts-control > input::-webkit-input-placeholder {
  color: var(--thim-advs-field-color, #000);
}
.realpress-advanced-search .ts-control > input:focus::-webkit-input-placeholder {
  color: var(--thim-advs-field-color-hover, #000);
}
.realpress-advanced-search .ts-control .item {
  line-height: 24px;
}
.realpress-advanced-search .ts-dropdown {
  z-index: 1000;
  border-top: 1px solid #d0d0d0;
}
.realpress-advanced-search .realpress-tom-select .ts-dropdown .option, .realpress-advanced-search .realpress-tom-select .ts-dropdown .optgroup-header, .realpress-advanced-search .realpress-tom-select .ts-dropdown .no-results, .realpress-advanced-search .realpress-tom-select .ts-dropdown .create {
  font-size: var(--thim-font_body-font-size);
  line-height: 24px;
  padding: 3px 15px;
}
.realpress-advanced-search .realpress-tom-select .ts-dropdown .option + div, .realpress-advanced-search .realpress-tom-select .ts-dropdown .optgroup-header + div, .realpress-advanced-search .realpress-tom-select .ts-dropdown .no-results + div, .realpress-advanced-search .realpress-tom-select .ts-dropdown .create + div {
  margin-top: 6px;
}
.realpress-advanced-search .ts-wrapper.single .ts-control {
  height: auto;
  padding: var(--thim-padding-advanced-search-field, 8px 15px) !important;
  color: var(--thim-advs-field-color, #000);
  background-color: var(--thim-advs-field-background-color, #EFEFEF);
  border-width: var(--thim-advanced-search-border-width-input, 1px);
  border-style: var(--thim-advanced-search-border-type-input, solid);
  border-color: var(--thim-advs-field-border-color, #EFEFEF);
  border-radius: var(--thim-advanced-seaarch-field-border-radius, 0);
  line-height: 24px;
  font-size: var(--thim-font_body-font-size);
}

.realpress-advanced-search .price-slider .noUi-horizontal .noUi-handle {
  cursor: pointer;
  width: 24px;
  height: 24px;
  right: -10px;
  left: auto;
  top: -10px;
  border-radius: 50%;
  background-color: red;
  border: 4px solid white;
  box-shadow: 2px 2px 10px 2px rgba(0, 0, 0, 0.1);
}
.realpress-advanced-search .price-slider .noUi-horizontal .noUi-handle:before, .realpress-advanced-search .price-slider .noUi-horizontal .noUi-handle::after {
  display: none;
}

.realpress-suggest-result {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: white;
  max-height: 300px;
  overflow-y: auto;
  margin: 0;
}
.realpress-suggest-result li {
  margin: 0;
  list-style: none;
  padding: 8px 15px;
}
.realpress-suggest-result li a {
  display: flex;
}
.realpress-suggest-result::-webkit-scrollbar {
  width: 0;
}
.realpress-suggest-result > li {
  padding: 8px 15px;
  font-size: var(--thim-font_body-font-size);
  line-height: var(--thim-font_body-line-height);
}
.realpress-suggest-result.show {
  padding-top: 15px;
  margin-top: 3px;
  border: 1px solid #e7e7e7;
}
.realpress-suggest-result .realpress-view-all {
  padding: 15px 15px;
  background-color: transparent;
  border-top: 1px solid #e7e7e7;
  margin-top: 15px;
  font-size: 15px;
  font-weight: 600;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -khtml-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.realpress-suggest-result .realpress-view-all:hover {
  color: red;
  text-decoration: underline;
}

@media (max-width: 575px) {
  .realpress-advanced-search .price-slider #realpress-search-price {
    margin-top: 3px;
  }
  .realpress-advanced-search .realpress-search-field {
    flex-basis: calc(50% - 8px);
  }
  .realpress-advanced-search .full-width {
    flex-basis: 100%;
  }
}
.ts-wrapper.single .ts-control {
  padding: 0 15px !important;
  height: 50px;
  line-height: 50px;
  align-items: center;
}

.ts-wrapper.single .ts-control input {
  width: auto;
}

.realpress-tom-select .ts-dropdown {
  margin: 0;
}
.realpress-tom-select .ts-dropdown .option, .realpress-tom-select .ts-dropdown .optgroup-header, .realpress-tom-select .ts-dropdown .no-results, .realpress-tom-select .ts-dropdown .create {
  padding: 8px 15px;
}

.plugin-clear_button .ts-control .clear-button {
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  color: #999;
}

@media (max-width: 1199px) {
  .realpress-advanced-search .price-slider {
    flex-basis: 50%;
  }
}
.elementor-widget-property-feature .realpress-features {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--thim-features-col-gap-item, 30px);
  row-gap: var(--thim-features-row-gap-item, 30px);
}
.elementor-widget-property-feature .realpress-features li {
  display: flex;
  align-items: center;
  width: calc(var(--thim-features-width-item, 50%) - var(--thim-features-minus-item, 15px));
}
.elementor-widget-property-feature .realpress-features i {
  font-size: var(--thim-feature-icon-size);
  margin-right: var(--thim-prt-features-icon-spacing);
  margin-left: 0;
  color: var(--thim-prt-features-color-icon);
  transition: 0.3s;
}
.elementor-widget-property-feature .realpress-features svg {
  width: var(--thim-feature-icon-size);
  height: var(--thim-feature-icon-size);
  margin-right: var(--thim-prt-features-icon-spacing);
  margin-left: 0;
}
.elementor-widget-property-feature .realpress-features svg path {
  transition: 0.3s;
  fill: var(--thim-prt-features-color-icon);
}
.elementor-widget-property-feature .realpress-features a {
  color: var(--thim-prt-features-color);
}
.elementor-widget-property-feature .realpress-features a:hover {
  color: var(--thim-prt-features-color-hover);
}
.elementor-widget-property-feature .realpress-features li:hover i {
  color: var(--thim-prt-features-color-icon-hover);
}
.elementor-widget-property-feature .realpress-features li:hover svg path {
  fill: var(--thim-prt-features-color-icon-hover);
}

.elementor-widget-property-floor-plan .realpress-floor-plan-inner {
  border: 0;
}
.elementor-widget-property-floor-plan .realpress-floor-plan-inner:hover .realpress-floor-heading > ul li i, .elementor-widget-property-floor-plan .realpress-floor-plan-inner.active .realpress-floor-heading > ul li i {
  color: var(--thim-prt-plan-icon-hover, white);
}
.elementor-widget-property-floor-plan .realpress-floor-plan-inner:hover .realpress-floor-heading > ul li i.rp-bath::before, .elementor-widget-property-floor-plan .realpress-floor-plan-inner:hover .realpress-floor-heading > ul li i.rp-bed::before, .elementor-widget-property-floor-plan .realpress-floor-plan-inner.active .realpress-floor-heading > ul li i.rp-bath::before, .elementor-widget-property-floor-plan .realpress-floor-plan-inner.active .realpress-floor-heading > ul li i.rp-bed::before {
  color: var(--thim-prt-plan-icon-hover, white);
}
.elementor-widget-property-floor-plan .realpress-floor-plan-inner:hover .realpress-floor-heading > ul li span, .elementor-widget-property-floor-plan .realpress-floor-plan-inner.active .realpress-floor-heading > ul li span {
  color: var(--thim-prt-plan-color-hover, white);
}
.elementor-widget-property-floor-plan .realpress-floor-plan-inner:hover .realpress-floor-heading::after, .elementor-widget-property-floor-plan .realpress-floor-plan-inner.active .realpress-floor-heading::after {
  display: none;
}
.elementor-widget-property-floor-plan .realpress-floor-plan-inner:hover .realpress-floor-dropdown, .elementor-widget-property-floor-plan .realpress-floor-plan-inner.active .realpress-floor-dropdown {
  border: 1px solid;
  border-top: 0;
  border-color: var(--thim-plan-border-color-head-hover);
}
.elementor-widget-property-floor-plan .realpress-floor-plan-inner li span.text {
  margin-right: var(--thim-plan-title-spacing, 0);
  margin-left: 0;
}
.elementor-widget-property-floor-plan .realpress-floor-plan-inner .realpress-floor-heading {
  flex-wrap: nowrap;
}
.elementor-widget-property-floor-plan .realpress-floor-plan-inner .icon-active i, .elementor-widget-property-floor-plan .realpress-floor-plan-inner .icon-show i {
  font-size: var(--thim-plan-ich-size);
  color: var(--thim-prt-plan-color-ich);
  transition: 0.3s;
  margin-right: var(--thim-plan-ich-space);
  margin-left: 0;
}
.elementor-widget-property-floor-plan .realpress-floor-plan-inner .icon-active svg, .elementor-widget-property-floor-plan .realpress-floor-plan-inner .icon-show svg {
  width: var(--thim-plan-ich-size);
  height: var(--thim-plan-ich-size);
  transition: 0.3s;
  margin-right: var(--thim-plan-ich-space);
  margin-left: 0;
}
.elementor-widget-property-floor-plan .realpress-floor-plan-inner .icon-active svg path, .elementor-widget-property-floor-plan .realpress-floor-plan-inner .icon-show svg path {
  fill: var(--thim-prt-plan-color-ich);
}
.elementor-widget-property-floor-plan .realpress-floor-plan-inner .icon-active {
  display: none;
}
.elementor-widget-property-floor-plan .realpress-floor-plan-inner .icon-show {
  display: inline-flex;
}
.elementor-widget-property-floor-plan .realpress-floor-plan-inner.active .icon-active {
  display: block;
  font-size: var(--thim-plan-ich-size);
}
.elementor-widget-property-floor-plan .realpress-floor-plan-inner.active .icon-show {
  display: none;
}
.elementor-widget-property-floor-plan .realpress-floor-heading > ul {
  width: 100%;
}
.elementor-widget-property-floor-plan .realpress-floor-heading > ul.flex-start {
  justify-content: flex-start;
}
.elementor-widget-property-floor-plan .realpress-floor-heading > ul.flex-end {
  justify-content: flex-end;
}
.elementor-widget-property-floor-plan .realpress-floor-heading > ul.space-around {
  justify-content: space-around;
}
.elementor-widget-property-floor-plan .realpress-floor-heading > ul.space-between {
  justify-content: space-between;
}
.elementor-widget-property-floor-plan .realpress-floor-heading > ul.start_left > li:first-child {
  margin-right: auto;
  margin-left: 0;
}
.elementor-widget-property-floor-plan .realpress-floor-heading > ul.start_right > li:last-child {
  margin-left: auto;
  margin-right: 0;
}
@media (min-width: 768px) and (max-width: 991px) {
  .elementor-widget-property-floor-plan .realpress-floor-plan-inner .realpress-floor-heading > ul {
    flex-wrap: wrap;
  }
}

.elementor-widget-property-over-view {
  position: relative;
}
.elementor-widget-property-over-view .realpress-property-id {
  position: absolute;
  right: 0;
  left: auto;
  bottom: calc(100% - var(--thim-prt-ovv-id-spacing, 20px) * -1);
}

.elementor-widget-property-review-comment #realpress-property-review-form, .elementor-widget-property-review-comment .realpress-property-review-wrap {
  background-color: var(--thim-review-comment-bg, #fff);
  margin-top: var(--thim-review-comment-spacing, 30px);
}

.elementor-widget-property-wishlist .realpress-property-wishlist {
  font-size: 0;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--thim-prtwl-color);
  background-color: var(--thim-prtwl-bg-color);
  border-color: var(--thim-prtwl-border-color);
  cursor: pointer;
}
.elementor-widget-property-wishlist .realpress-property-wishlist > i {
  font-size: var(--thim-prtwl-font-size, 16px);
}
.elementor-widget-property-wishlist .realpress-property-wishlist.active, .elementor-widget-property-wishlist .realpress-property-wishlist:hover {
  color: var(--thim-prtwl-color-hover);
  background-color: var(--thim-prtwl-bg-color-hover);
  border-color: var(--thim-prtwl-border-hover);
}

.elementor-widget-property-compare .realpress-property-compare {
  font-size: 0;
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.elementor-widget-property-compare .realpress-property-compare > i {
  font-size: var(--thim-prtcp-font-size, 16px);
}
.elementor-widget-property-compare .realpress-property-compare svg {
  width: var(--thim-prtcp-font-size, 16px);
  height: var(--thim-prtcp-font-size, 16px);
}

.elementor-widget-property-thumb .single-default.layout-v3 {
  padding-top: 0;
}
.elementor-widget-property-thumb .splide {
  visibility: visible;
}

.elementor-widget-property-archive .realpress-control-group > * + * {
  margin-right: 0;
  margin-left: auto !important;
}
.elementor-widget-property-archive .realpress-control-group > * + .realpress-item-switch-view {
  margin-right: 0;
  margin-left: 10px !important;
}
.elementor-widget-property-archive li.disable {
  background: unset !important;
  margin: 0 !important;
  align-items: flex-end;
}
.elementor-widget-property-archive li.disable i::before {
  content: "...";
}
.elementor-widget-property-archive .realpress-sort-by {
  margin-left: 0;
}
.elementor-widget-property-archive .realpress-archive-property-content {
  width: 100%;
}

.space_between .realpress-term-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.space_between .realpress-term-list .meta-title + span {
  margin-left: auto;
  margin-right: 0;
}

.elementor-widget-property-detail .realpress-term-list {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--rp-colum-space, 40px);
  row-gap: var(--rp-row-space, 20px);
}
.elementor-widget-property-detail .realpress-term-list > li {
  flex-basis: calc(100% / var(--thim-detail-select-columns, 2) - var(--rp-row-space, 20px));
}
.elementor-widget-property-detail .realpress-term-list .meta-title {
  width: 100%;
}
.elementor-widget-property-detail .realpress-term-list .meta-title.before {
  order: -1;
}
.elementor-widget-property-detail .realpress-term-list .meta-title.inline {
  width: auto;
}
.elementor-widget-property-detail .realpress-term-list .meta-title.after {
  order: 1;
}
.elementor-widget-property-detail .realpress-term-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.elementor-widget-property-detail .realpress-term-item i {
  margin-right: var(--rp-spaceing-icon, 7px);
  margin-left: 0;
  font-size: var(--rp-font-size-icon, 16px);
  min-width: 1em;
}
.elementor-widget-property-detail .float_content .realpress-term-list > li {
  display: inline-flex;
  align-items: center;
  flex-basis: unset;
}

.elementor-widget-property-verified .realpress-property-verified i {
  font-size: var(--thim-vrf-font-size, 20px);
}
.elementor-widget-property-verified .realpress-property-verified svg {
  height: var(--thim-vrf-font-size, 20px);
  width: var(--thim-vrf-font-size, 20px);
}

.elementor-widget-property-status .realpress-property-item-status {
  display: flex;
  flex-wrap: wrap;
}

.elementor-widget-property-map .realpress-map-section {
  position: relative;
}
.elementor-widget-property-map .realpress-map-section .btn_opm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: 0.4s;
  z-index: 99;
  overflow: hidden;
}
.elementor-widget-property-map .realpress-map-section .realpress-map-fields {
  margin-bottom: var(--thim-prt_map-space);
}
.elementor-widget-property-map .realpress-map-section.absolute .btn_opm {
  position: absolute;
}

.realpress-map-section.editor-prt-map #realpress-single-property-map {
  min-height: unset;
}

.elementor-widget-property-review-rating .realpress-group-status-rating .realpress-rating {
  margin-right: var(--thim-prt_rate-spacing, 7px);
  margin-left: 0;
}

@media (min-width: 1200px) {
  .realpress-property-container > .elementor .elementor-widget-property-compare, .realpress-property-container > .elementor .elementor-widget-property-wishlist, #realpress-similar-property > .elementor .elementor-widget-property-compare, #realpress-similar-property > .elementor .elementor-widget-property-wishlist {
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
  }
  .realpress-property-container > .elementor:hover .elementor-widget-property-compare, .realpress-property-container > .elementor:hover .elementor-widget-property-wishlist, #realpress-similar-property > .elementor:hover .elementor-widget-property-compare, #realpress-similar-property > .elementor:hover .elementor-widget-property-wishlist {
    opacity: 1;
    visibility: visible;
  }
}
.elementor-widget-property-archive .is_editor .realpress-sort-by > select {
  display: block;
}
.elementor-widget-property-archive .realpress-archive-property-content {
  width: 100%;
  padding: 0;
}
.elementor-widget-property-archive .realpress-archive-property {
  padding-bottom: 0;
}
.elementor-widget-property-archive .thim-ekits-loop-switchview {
  display: none;
}
.elementor-widget-property-archive .realpress-property-container > .elementor {
  max-width: calc(100% / var(--thim-ekits-prt-columns, 2));
}
.elementor-widget-property-archive .realpress-property-container > div {
  max-width: calc(100% / var(--thim-ekits-prt-columns, 2)) !important;
}
.elementor-widget-property-archive .realpress-property-container > div.layout-v4 {
  max-width: calc(100% / var(--thim-ekits-prt-columns, 2) - 30px) !important;
}
@media (max-width: 1199px) {
  .elementor-widget-property-archive .realpress-property-container > div.layout-v4 {
    max-width: calc(100% / var(--thim-ekits-prt-columns, 2) - 16px) !important;
  }
}
.elementor-widget-property-archive .realpress-property-container > div.realpress-wave-loading {
  max-width: 100% !important;
}
.elementor-widget-property-archive .realpress-property-container[data-grid-col="1"] > div {
  max-width: 100% !important;
}
.elementor-widget-property-archive .realpress-loading-display {
  display: none;
}
.elementor-widget-property-archive .realpress-load-more-btn {
  display: flex;
}

.elementor-widget-property-thumb #gallery_carousel {
  overflow: hidden;
  position: relative;
}
.elementor-widget-property-thumb .rp_slider {
  overflow: hidden;
  max-width: 100%;
  height: 100%;
  display: block;
}
.elementor-widget-property-thumb .rp_slider .realpress_slide_custom {
  transition: 1s;
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  position: relative;
  float: left;
  margin-right: -100%;
  width: 100%;
  max-width: 100%;
  height: 100%;
}
.elementor-widget-property-thumb .rp_slider .realpress_slide_custom img {
  max-height: 600px;
  height: 100%;
  transition: 2s;
  transform: scale(1.1);
}
.elementor-widget-property-thumb .rp_slider .realpress_slide_custom.active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}
.elementor-widget-property-thumb .rp_slider .realpress_slide_custom.active img {
  transform: scale(1);
}
.elementor-widget-property-thumb .rp_btn-slide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: unset;
  position: absolute;
  font-size: 40px;
  color: white;
  z-index: 999;
}
.elementor-widget-property-thumb .rp_btn-slide i {
  display: inline-flex;
}
.elementor-widget-property-thumb #pager {
  list-style: none;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  right: auto;
  z-index: 100;
}
.elementor-widget-property-thumb .bullets #pager span {
  width: 12px;
  height: 12px;
  display: inline-block;
  background-color: #f5f5f5;
  margin: 0 var(--thim-pagination-space, 5px);
  cursor: pointer;
  transition: 0.3s;
}
.elementor-widget-property-thumb .bullets #pager span.active {
  background-color: var(--thim-body_color_seconds, #0cc276);
}
.elementor-widget-property-thumb .bullets #pager span img {
  display: none;
}
.elementor-widget-property-thumb .thumb #pager {
  max-width: var(--thim-pagination-max-width, 630px);
  width: 100%;
  overflow: hidden;
  justify-content: center;
  display: flex;
  margin: auto;
}
.elementor-widget-property-thumb .thumb #pager span {
  border: 3px solid transparent;
  margin: 0 var(--thim-pagination-space, 5px);
  cursor: pointer;
  display: inline-flex;
}
.elementor-widget-property-thumb .thumb #pager span.active {
  border: 3px solid #fff;
}
.elementor-widget-property-thumb .vtc_thumb .realpress-porperty-thumbnails-section {
  display: flex;
  overflow: hidden;
  max-height: 600px;
  position: relative;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .elementor-widget-property-thumb .vtc_thumb .realpress-porperty-thumbnails-section {
    flex-direction: column;
    max-height: unset;
  }
}
.elementor-widget-property-thumb .vtc_thumb .rp_slider {
  width: auto;
  margin: 0;
}
@media (max-width: 767px) {
  .elementor-widget-property-thumb .vtc_thumb .rp_slider {
    width: 100% !important;
  }
}
.elementor-widget-property-thumb .vtc_thumb #pager {
  position: relative;
  flex-direction: column;
  transform: translate(0);
  justify-content: flex-start;
  overflow: hidden;
  gap: 10px;
  left: auto;
  bottom: unset;
  transition: 0.5s;
  width: 100%;
}
.elementor-widget-property-thumb .vtc_thumb #pager .dot {
  width: 100%;
}
@media (max-width: 767px) {
  .elementor-widget-property-thumb .vtc_thumb #pager {
    width: auto;
    flex-direction: unset;
  }
}
.elementor-widget-property-thumb .vtc_thumb #gallery_carousel {
  max-width: calc(var(--thim-vtc-img-max-width, 70%) - 5px);
  width: 100%;
  position: static;
}
@media (max-width: 767px) {
  .elementor-widget-property-thumb .vtc_thumb #gallery_carousel {
    max-width: var(--thim-vtc-img-max-width, 100%);
    margin-bottom: 10px;
  }
}
.elementor-widget-property-thumb .vtc_thumb .pagination {
  max-width: calc(var(--thim-vtc-thumb-max-width, 30%) - 5px);
  width: 100%;
}
@media (max-width: 767px) {
  .elementor-widget-property-thumb .vtc_thumb .pagination {
    max-width: var(--thim-vtc-img-max-width, 100%);
    overflow: hidden;
  }
}
.elementor-widget-property-thumb .vtc_thumb .pagination img {
  width: 100% !important;
  height: 295px;
}
@media (max-width: 767px) {
  .elementor-widget-property-thumb .vtc_thumb .pagination img {
    width: auto !important;
    height: auto;
  }
}
.elementor-widget-property-thumb .vtc_thumb .rp_btn-slide {
  width: 50px;
  height: 100px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  cursor: pointer;
  font-size: 24px;
}
.elementor-widget-property-thumb .vtc_thumb .rp_btn-slide:hover {
  background-color: rgba(0, 0, 0, 0.8);
}
.elementor-widget-property-thumb .vtc_thumb .realpress_slide_custom img {
  transform: scale(1);
}
@media (max-width: 767px) {
  .elementor-widget-property-thumb .vtc_thumb .realpress_slide_custom img {
    width: 100%;
  }
}
.elementor-widget-property-thumb .scale0 {
  transform: scale(0);
}
.elementor-widget-property-thumb .thim-gallery-thumbnails {
  display: flex;
  margin-left: -5px;
  margin-right: -5px;
  flex-wrap: wrap;
}
.elementor-widget-property-thumb .thim-gallery-thumbnails > li {
  padding-left: 5px;
  padding-right: 5px;
  margin-bottom: 10px;
  max-width: 33.33%;
  width: 100%;
}
.elementor-widget-property-thumb #realpress_modal_gallery {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.1) 100%), #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: scale(0.9);
}
.elementor-widget-property-thumb #realpress_modal_gallery .modal-content {
  max-width: 990px;
  padding: 0 15px;
  margin: auto;
}
.elementor-widget-property-thumb #realpress_modal_gallery.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.elementor-widget-property-thumb #realpress_modal_gallery .close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  line-height: 40px;
  background-color: white;
  border-radius: 5px;
  position: absolute;
  top: 50px;
  right: 50px;
  left: auto;
  cursor: pointer;
  font-family: Arial, Baskerville, monospace;
  font-size: 28px;
}
.elementor-widget-property-thumb #realpress_modal_gallery .close:hover {
  background-color: var(--e-global-color-primary);
  color: white;
}
.elementor-widget-property-thumb #realpress_modal_gallery .arrow-slide {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  line-height: 60px;
  background-color: rgba(24, 26, 32, 0.2);
  border-radius: 5px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 0;
}
.elementor-widget-property-thumb #realpress_modal_gallery .arrow-slide::before {
  font-family: thim-ekits !important;
  speak: never;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  font-size: 20px;
  color: white;
}
.elementor-widget-property-thumb #realpress_modal_gallery .arrow-slide.prev {
  left: 50px;
  right: auto;
}
.elementor-widget-property-thumb #realpress_modal_gallery .arrow-slide.prev::before {
  content: "\f104";
}
.elementor-widget-property-thumb #realpress_modal_gallery .arrow-slide.next {
  right: 50px;
  left: auto;
}
.elementor-widget-property-thumb #realpress_modal_gallery .arrow-slide.next::before {
  content: "\f105";
}
.elementor-widget-property-thumb #realpress_modal_gallery .arrow-slide:hover {
  background-color: black;
}
.elementor-widget-property-thumb .realpress-group-button-media {
  position: absolute;
  bottom: 22px;
  left: 18px;
  right: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.elementor-widget-property-thumb .realpress-group-button-media .show-all {
  display: flex;
  padding: 6px 15px;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  color: white;
  background: rgba(24, 26, 32, 0.9);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}
@media (max-width: 767px) {
  .elementor-widget-property-thumb .realpress-group-button-media {
    position: static;
  }
}

.elementor-widget-property-nearby .layout_tabs > span {
  display: inline-block;
  text-align: center;
  font-weight: 500;
  color: #646464;
  line-height: 1.75;
  cursor: pointer;
  margin-right: 25px;
  margin-left: 0;
}
.elementor-widget-property-nearby .layout_tabs > span::after {
  content: "";
  border-bottom: 2px solid transparent;
  display: block;
  margin-bottom: -1px;
  width: 0;
  transition: 0.3s;
  margin-top: 3px;
}
.elementor-widget-property-nearby .layout_tabs .realpress-yelp-nearby-term-content {
  display: none;
  float: left;
  width: 100%;
  border-top: 1px solid #949494;
  padding-top: 20px;
}
.elementor-widget-property-nearby .layout_tabs span.active {
  color: var(--e-global-color-primary);
}
.elementor-widget-property-nearby .layout_tabs span.active:after {
  border-color: var(--e-global-color-primary);
  width: 100%;
}
.elementor-widget-property-nearby .layout_tabs .realpress-yelp-nearby-term-content.show {
  display: block;
}
.elementor-widget-property-nearby .layout_tabs .realpress-yelp-nearby-left {
  color: #181A20;
  font-weight: 500;
  line-height: 1.5;
}
.elementor-widget-property-nearby .layout_tabs .realpress-rating-stars {
  order: 1;
  margin-left: 10px;
  margin-right: 10px;
}
.elementor-widget-property-nearby .layout_tabs .realpress-rating .realpress-rating-label {
  margin: 0;
  background-color: #F3F8FE;
  color: #181A20;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
}
.elementor-widget-property-nearby .layout_tabs .realpress-yelp-nearby-right > span {
  font-size: 14px;
  color: #646464;
}
.elementor-widget-property-nearby .layout_tabs .realpress-yelp-nearby-item {
  margin-bottom: 10px;
}
.elementor-widget-property-nearby .layout_tabs .realpress-yelp-nearby-item:last-child {
  margin-bottom: 0;
}

.elementor-widget-property-share .realpress-property-share {
  position: relative;
}
.elementor-widget-property-share .realpress-button-share {
  font-size: var(--thim-prtshare-font-size);
  color: var(--thim-prtshare-color, white);
  background-color: var(--thim-prtshare-bg-color, var(--e-global-color-primary));
  border-color: var(--thim-prtshare-border-color, var(--e-global-color-primary));
  transition: 0.3s;
}
.elementor-widget-property-share .realpress-button-share:hover, .elementor-widget-property-share .realpress-button-share:focus {
  color: var(--thim-prtshare-color-hover, white);
  background-color: var(--thim-prtshare-bg-color-hover, var(--e-global-color-primary));
  border-color: var(--thim-prtshare-border-hover, var(--e-global-color-primary));
}
.elementor-widget-property-share .realpress-control-group {
  margin-bottom: 20px;
  gap: 30px;
}
.elementor-widget-property-share .realpress-control-group > li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.elementor-widget-property-share .realpress-control-group > li a:after {
  content: attr(title);
  display: block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.75;
  color: #646464;
  transition: 0.3s;
}
.elementor-widget-property-share .realpress-control-group > li a:hover::after {
  color: var(--e-global-color-primary);
}
.elementor-widget-property-share .realpress-control-group > li a:hover i {
  transform: scale(1.1);
}
.elementor-widget-property-share .realpress-control-group > li i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 10px;
  transition: 0.3s;
}
.elementor-widget-property-share .heading-box {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  border-bottom: 1px solid #F3F8FE;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.elementor-widget-property-share .facebook-social i {
  background-color: #3C58A5;
}
.elementor-widget-property-share .twitter-social i {
  background-color: #47ACDF;
}
.elementor-widget-property-share .pinterest-social i {
  background-color: #E60023;
}
.elementor-widget-property-share .realpress-copy-share {
  max-width: 390px;
  min-width: 390px;
  padding: 20px;
  background-color: white;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  margin-top: 5px;
  transition: 0.3s;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99;
}
.elementor-widget-property-share .realpress-copy-share.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
  margin-top: 3px;
}
.elementor-widget-property-share .clipboard {
  position: relative;
  display: flex;
  padding: 5px;
  border-radius: 5px;
  background-color: #F3F8FE;
}
.elementor-widget-property-share .copy-input {
  max-width: 100%;
  width: 100%;
  cursor: default;
  pointer-events: none;
  background-color: #F3F8FE;
  border: none;
  color: #949494;
  border-radius: 5px;
  padding: 10px;
  text-overflow: ellipsis;
  font-size: 16px;
  font-weight: 400;
}
.elementor-widget-property-share .copy-input:focus, .elementor-widget-property-share .copy-btn:focus {
  outline: none;
}
.elementor-widget-property-share .copy-btn {
  background-color: var(--e-global-color-primary);
  font-size: 16px;
  padding: 6px 10px;
  line-height: 28px;
  border-radius: 5px;
  border: none;
  color: #fff;
  font-weight: 500;
  transition: all 0.3s;
  cursor: pointer;
}
.elementor-widget-property-share .copy-btn:hover {
  transform: scale(1.05);
}
.elementor-widget-property-share .copied {
  opacity: 0;
  margin: auto;
  color: #000;
  background-color: #fff;
  border-radius: 5px;
  transition: 0.3s;
}
.elementor-widget-property-share .copied span {
  padding: 5px 15px;
  color: red;
}
.elementor-widget-property-share .close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, Baskerville, monospace;
  padding: 0;
  background-color: white;
  border-radius: 5px;
  line-height: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
  cursor: pointer;
}

.elementor-widget-property-contact-agent .realpress-agent-link {
  display: var(--realpress-display-view-detail, block);
}
.elementor-widget-property-contact-agent .realpress-agent-link a {
  color: var(--realpress-agent-view-detail-color, var(--e-global-color-primary));
}
.elementor-widget-property-contact-agent .realpress-agent-link a:hover {
  color: var(--realpress-agent-view-detail-color-hover);
}
.elementor-widget-property-contact-agent .realpress-contact-form button + a {
  display: none;
}
.elementor-widget-property-contact-agent .realpress-contact-form-section .realpress-agent-image {
  min-width: var(--realpress-agent-avatar-width, 80px);
  max-width: var(--realpress-agent-avatar-width, 80px);
}
.elementor-widget-property-contact-agent .realpress-contact-form-section .realpress-agent-image img {
  border-radius: 10px;
}
.elementor-widget-property-contact-agent .realpress-contact-form-section .realpress-agent-mobile::before {
  display: none;
}
.elementor-widget-property-contact-agent .realpress-contact-form-section .realpress-agent-detail i {
  font-size: 12px;
  margin-top: -4px;
}
.elementor-widget-property-contact-agent .realpress-contact-form-section .realpress-agent-mobile a {
  display: block;
}
.elementor-widget-property-contact-agent .realpress-contact-form-section .realpress-contact-form input, .elementor-widget-property-contact-agent .realpress-contact-form-section .realpress-contact-form textarea {
  display: block;
  border: 0;
  background-color: var(--realpress-agent-form-bg-color, #F3F8FE);
  padding: 8px 15px;
  line-height: 28px;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 10px;
}
.elementor-widget-property-contact-agent .realpress-contact-form-section .realpress-contact-form input::placeholder, .elementor-widget-property-contact-agent .realpress-contact-form-section .realpress-contact-form textarea::placeholder {
  color: var(--realpress-agent-form-color, #646464);
}
.elementor-widget-property-contact-agent .realpress-contact-form-section .realpress-contact-form button {
  color: var(--realpress-send-mail-color, white);
  background-color: var(--realpress-send-mail-bg-color, var(--e-global-color-primary));
  border-color: var(--realpress-send-mail-border-color);
}
.elementor-widget-property-contact-agent .realpress-contact-form-section .realpress-contact-form button:after {
  content: "\f061";
  font-family: thim-ekits !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-left: 10px;
  margin-right: 0;
  transition: 0.3s;
  color: var(--realpress-send-mail-color, white);
}
.elementor-widget-property-contact-agent .realpress-contact-form-section .realpress-contact-form button:hover {
  color: var(--realpress-send-mail-color-hover);
  background-color: var(--realpress-send-mail-bg-color-hover);
  border-color: var(--realpress-send-mail-border-color-hover);
}
.elementor-widget-property-contact-agent .realpress-contact-form-section .realpress-contact-form button:hover:after {
  color: var(--realpress-send-mail-color-hover);
}

.elementor-widget-property-schedule .schedule-field input, .elementor-widget-property-schedule .schedule-field textarea {
  border: 0;
  width: 100%;
  display: block;
  padding: 8px 15px;
  line-height: 28px;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 10px;
  border-color: var(--realpress-schedule-form-border-color, #f3f8fe);
  background-color: var(--realpress-schedule-form-bg-color, #f3f8fe);
  margin: 0;
}
.elementor-widget-property-schedule .schedule-field input::placeholder, .elementor-widget-property-schedule .schedule-field textarea::placeholder {
  color: var(--realpress-schedule-form-color);
}
.elementor-widget-property-schedule .schedule-field select {
  border-color: var(--realpress-schedule-form-border-color);
  background-color: var(--realpress-schedule-form-bg-color, #f3f8fe);
  color: var(--realpress-schedule-form-color);
  border: 0;
  width: 100%;
  display: block;
  padding: 8px 15px;
  line-height: 28px;
  border-radius: 5px;
  font-size: 16px;
  margin-bottom: 10px;
}
.elementor-widget-property-schedule #realpress_st_slide > .realpress-st-date {
  overflow-x: auto;
  max-width: 100%;
}
.elementor-widget-property-schedule .realpress-st-date {
  display: flex;
  flex-wrap: wrap;
  margin-left: -7px;
  margin-right: -7px;
  overflow: hidden;
  margin-bottom: 1px;
}
.elementor-widget-property-schedule .realpress-st-date > li {
  padding-right: 7px;
  padding-left: 7px;
  margin-bottom: 15px;
}
.elementor-widget-property-schedule .realpress-st-date label > span {
  transition: 0.3s;
  padding: 10px;
  border: 1px solid #e7e7e7;
  text-align: center;
  color: #000;
  border-radius: var(--thim-body_border_radius-small);
  background-color: white;
  display: block;
  cursor: pointer;
}
.elementor-widget-property-schedule input[type=radio] {
  height: auto;
  display: none;
}
.elementor-widget-property-schedule .realpress-schedule-tour .schedule-field input {
  width: 100%;
}
.elementor-widget-property-schedule .realpress-schedule-tour .realpress-st-date input:checked + span, .elementor-widget-property-schedule .realpress-schedule-tour .realpress-st-date input + span:hover {
  border-width: 1px;
}
.elementor-widget-property-schedule .widget_realpress-schedule-tour button.realpress-send-message {
  color: var(--realpress-schedule-submit-color, white);
  background-color: var(--realpress-schedule-submit-bg-color, var(--e-global-color-primary));
  border-color: var(--realpress-schedule-submit-border-color);
  width: auto;
}
.elementor-widget-property-schedule .widget_realpress-schedule-tour button.realpress-send-message:after {
  content: "\f061";
  font-family: thim-ekits !important;
  font-style: normal;
  font-weight: 400;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-left: 10px;
  margin-right: 0;
  transition: 0.3s;
  color: var(--realpress-schedule-submit-color, white);
}
.elementor-widget-property-schedule .widget_realpress-schedule-tour button.realpress-send-message:hover {
  color: var(--realpress-schedule-submit-color-hover);
  background-color: var(--realpress-schedule-submit-bg-color-hover);
  border-color: var(--realpress-schedule-submit-border-hover);
}
.elementor-widget-property-schedule .widget_realpress-schedule-tour button.realpress-send-message:hover:after {
  color: var(--realpress-schedule-submit-color-hover);
}
.elementor-widget-property-schedule .widget_realpress-schedule-tour .realpress-schedule-tour .tour-type span, .elementor-widget-property-schedule .widget_realpress-schedule-tour .realpress-schedule-tour .tour-type input + span {
  background-color: var(--realpress-schedule-tourtype-bg-color, white);
  color: var(--realpress-schedule-tourtype-color);
  border-color: var(--realpress-schedule-tourtype-border-color, white);
}
.elementor-widget-property-schedule .widget_realpress-schedule-tour .realpress-schedule-tour .tour-type span:hover, .elementor-widget-property-schedule .widget_realpress-schedule-tour .realpress-schedule-tour .tour-type input:checked + span {
  background-color: var(--realpress-schedule-tourtype-bg-color-hover);
  color: var(--realpress-schedule-tourtype-color-hover);
  border-color: var(--realpress-schedule-tourtype-border-color-hover);
}
.elementor-widget-property-schedule .widget_realpress-schedule-tour .realpress-schedule-tour > label {
  font-size: var(--thim-font_body-font-size);
  line-height: var(--thim-font_body-line-height);
  display: block;
}
.elementor-widget-property-schedule .widget_realpress-schedule-tour .realpress-schedule-tour > label input[type=checkbox] {
  vertical-align: middle;
}
.elementor-widget-property-schedule .widget_realpress-schedule-tour .realpress-schedule-tour .tour-type > div label {
  display: flex;
  align-items: center;
  justify-content: center;
}
.elementor-widget-property-schedule .widget_realpress-schedule-tour .realpress-schedule-tour .schedule-field {
  margin-bottom: 15px;
}
.elementor-widget-property-schedule .widget_realpress-schedule-tour .realpress-schedule-tour .schedule-field.flexslider {
  margin-bottom: 0;
}
.elementor-widget-property-schedule .widget_realpress-schedule-tour .realpress-schedule-tour .tour-type > div + div {
  margin-top: 0;
}
.elementor-widget-property-schedule h2.tour-type-title {
  font-size: var(--thim-font_body-font-size);
  line-height: var(--thim-font_body-line-height);
  margin-bottom: 10px;
}
.elementor-widget-property-schedule .realpress-schedule-tour .tour-type {
  display: flex;
  justify-content: flex-start;
}
.elementor-widget-property-schedule .realpress-schedule-tour .tour-type span {
  padding: 9px 15px;
  line-height: 24px;
  border: 2px solid #e8e8e8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  cursor: pointer;
  border-radius: var(--thim-body_border_radius-small);
  margin-right: 10px;
  margin-left: 0;
}

.elementor-widget-property-mortgage .widget_realpress_mortgage_calculator .realpress_mortgage_calculator_wrapper > label input {
  background-color: var(--realpress-mortgage-form-bg-color);
  border-color: var(--realpress-mortgage-form-border-color);
}
.elementor-widget-property-mortgage .widget_realpress_mortgage_calculator .realpress_mortgage_calculator_wrapper > label input::placeholder {
  color: var(--realpress-mortgage-form-color);
}
.elementor-widget-property-mortgage .widget_realpress_mortgage_calculator button[type=button].realpress-mc-widget-calculate {
  background-color: var(--realpress-button-calc-bg-color);
  border-color: var(--realpress-button-calc-border-color);
  color: var(--realpress-button-calc-color);
}
.elementor-widget-property-mortgage .widget_realpress_mortgage_calculator button[type=button].realpress-mc-widget-calculate:hover {
  background-color: var(--realpress-button-calc-bg-color-hover);
  border-color: var(--realpress-button-calc-border-color-hover);
  color: var(--realpress-button-calc-color-hover);
}
.elementor-widget-property-mortgage .widget_realpress_mortgage_calculator button[type=button].realpress-mc-widget-reset {
  background-color: var(--realpress-button-reset-bg-color);
  border-color: var(--realpress-button-reset-border-color);
  color: var(--realpress-button-reset-color);
}
.elementor-widget-property-mortgage .widget_realpress_mortgage_calculator button[type=button].realpress-mc-widget-reset::before {
  color: var(--realpress-button-reset-color);
}
.elementor-widget-property-mortgage .widget_realpress_mortgage_calculator button[type=button].realpress-mc-widget-reset:hover {
  background-color: var(--realpress-button-reset-bg-color-hover);
  border-color: var(--realpress-button-reset-border-color-hover);
  color: var(--realpress-button-reset-color-hover);
}
.elementor-widget-property-mortgage .widget_realpress_mortgage_calculator button[type=button].realpress-mc-widget-reset:hover::before {
  color: var(--realpress-button-reset-color-hover);
}

.elementor-widget-property-similar .realpress-similar-property > div.elementor {
  width: calc(100% / var(--realpress-property-similar-column-item));
  padding: 0 15px;
  margin-bottom: 30px;
}
.elementor-widget-property-similar .realpress-similar-property .slick-dots {
  display: flex;
  width: 100%;
  justify-content: center;
}
.elementor-widget-property-similar .realpress-similar-property .slick-dots li button {
  width: var(--realpress-similar-prt-number-width, 10px);
  height: var(--realpress-similar-prt-number-height, 10px);
  background-color: var(--realpress-pagination_type-bg-color);
  color: var(--realpress-pagination_type-color);
  border-color: var(--realpress-pagination_type-border-color);
}
.elementor-widget-property-similar .realpress-similar-property .slick-dots li:hover button, .elementor-widget-property-similar .realpress-similar-property .slick-dots li.slick-active button {
  background-color: var(--realpress-pagination_type-bg-color-hover);
  color: var(--realpress-pagination_type-color-hover);
  border-color: var(--realpress-pagination_type-border-color-hover);
}
.elementor-widget-property-similar .realpress-similar-property.slick-initialized .slick-slide {
  padding-left: var(--realpress-similar-prt-spacing, 15px);
  padding-right: var(--realpress-similar-prt-spacing, 15px);
}

.realpress-property-item {
  display: flex;
  flex-wrap: wrap;
}
.realpress-property-item > div {
  display: flex;
}
.realpress-property-item .realpress-property-header {
  position: relative;
  width: 100%;
}
.realpress-property-item .realpress-groups-button-wrapper {
  position: absolute;
  right: var(--property--padding-label-icon, 20px);
  bottom: var(--property--padding-label-icon, 20px);
}
.realpress-property-item .realpress-groups-button-wrapper span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.realpress-property-item .realpress-property-item-post-thumbnail {
  height: 100%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.realpress-property-item .realpress-property-item-post-thumbnail img {
  height: 100%;
  width: 100%;
}
.realpress-property-item .realpress-agent {
  position: absolute;
  left: var(--property--padding-label-icon, 20px);
  right: auto;
  bottom: var(--property--padding-label-icon, 20px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.realpress-property-item .realpress-agent img {
  max-width: 40px;
  border-radius: 50%;
}
.realpress-property-item .realpress-agent .realpress-agent-info a {
  text-transform: capitalize;
  font-weight: 500;
  font-size: 12px;
  line-height: 24px;
  color: white;
}
.realpress-property-item .realpress-property-item-type {
  margin-bottom: var(--realpress-space-item, 15px);
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.realpress-property-item .realpress-property-item-type a {
  color: #8D8D8D;
  display: inline-block;
  font-size: 0.857rem;
  line-height: 1.25;
}
.realpress-property-item .realpress-property-item-type a:after {
  content: ",";
  display: inline-block;
}
.realpress-property-item .realpress-property-item-type a:last-child:after {
  display: none;
}
.realpress-property-item .realpress-property-item-type a:hover, .realpress-property-item .realpress-property-item-type a:focus {
  color: black;
}
.realpress-property-item .realpress-property-item-label, .realpress-property-item .realpress-property-item-status {
  position: absolute;
  z-index: 9;
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 40%;
  justify-content: flex-end;
  top: var(--property--padding-label-icon, 20px);
  left: var(--property--padding-label-icon, 20px);
  right: auto;
}
.realpress-property-item .realpress-property-item-status {
  right: var(--property--padding-label-icon, 20px);
  left: auto;
}
.realpress-property-item .realpress-property-item-status a {
  background-color: black;
  color: white;
}
.realpress-property-item .realpress-property-verified {
  font-size: 1rem;
}
.realpress-property-item .realpress-property-body {
  padding: calc(1.3 * var(--property--padding-horizontal-item, 15px));
  flex-direction: column;
  border: 1px solid #E8E8E8;
  width: 100%;
  line-height: normal;
  position: relative;
  background-color: white;
}
.realpress-property-item .realpress-property-body .realpress-agent, .realpress-property-item .realpress-property-body .realpress-groups-button-wrapper {
  display: none;
}
.realpress-property-item .realpress-property-content {
  position: relative;
}
.realpress-property-item .realpress-property-item-title {
  margin-bottom: var(--realpress-space-item, 15px);
  display: flex;
  align-items: center;
  gap: 10px;
}
.realpress-property-item .realpress-property-item-title a {
  font-size: 1.143rem;
  font-weight: 600;
}
.realpress-property-item .realpress-property-item-title a:hover {
  color: red;
}
.realpress-property-item .realpress-property-item-meta {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  gap: var(--property--padding-horizontal-item, 15px);
}
.realpress-property-item .realpress-property-item-meta li {
  display: inline-flex;
  align-items: center;
  font-size: 0.857rem;
}
.realpress-property-item .realpress-property-item-meta li i {
  font-size: 1rem;
  margin-right: 8px;
}
.realpress-property-item .realpress-address-name {
  font-weight: 400;
  margin-bottom: var(--realpress-space-item, 15px);
  display: block;
}
.realpress-property-item .realpress-address-name i {
  font-size: 0;
  line-height: 0;
}
.realpress-property-item .realpress-address-name i::before {
  width: 0;
  height: 0;
}
.realpress-property-item .realpress-property-item-price {
  font-size: 1.143rem;
  font-weight: 400;
}
.realpress-property-item .realpress-formated-price {
  color: black;
  font-weight: 600;
}
.realpress-property-item .realpress-text-after-price {
  color: #B0B0B0;
}
.realpress-property-item:hover .realpress-groups-button-wrapper {
  opacity: 1;
  visibility: visible;
}

.realpress-property-item-label a, .realpress-property-item-status a {
  padding: 5px 6px;
  background-color: #FF6534;
  color: white;
  display: inline-flex;
  align-items: center;
  margin-right: 4px;
  text-transform: uppercase;
  font-size: 10px;
  line-height: 12px;
  font-weight: 600;
}
.realpress-property-item-label a:last-child, .realpress-property-item-status a:last-child {
  margin-right: 0;
}

[data-grid-col="1"] .realpress-property-header, [data-grid-col="1"] .realpress-property-body {
  max-width: 50%;
}

.realpress-group-price-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}
.realpress-group-price-meta > * {
  margin: 0;
}

.realpress-groups-button-wrapper {
  display: flex;
  align-items: flex-end;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -khtml-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}
.realpress-groups-button-wrapper > div {
  background-color: var(--thim-property-tool-background-color, transparent);
  color: var(--thim-property-group-button-color, white);
  font-size: 20px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  -khtml-transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -ms-transition: all 0.2s ease-in-out 0s;
  -o-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  cursor: pointer;
  width: 34px;
  height: 34px;
}
.realpress-groups-button-wrapper > div.active, .realpress-groups-button-wrapper > div:hover {
  color: var(--thim-property-tool-color-hover, red);
}
@media (max-width: 991px) {
  .realpress-groups-button-wrapper > div:hover {
    color: white;
    background-color: var(--thim-property-tool-background-color-hover, transparent);
  }
  .realpress-groups-button-wrapper > div.active:hover {
    color: var(--thim-property-tool-color-hover, red);
    background-color: var(--thim-property-tool-background-color-hover);
  }
}
.realpress-groups-button-wrapper > div + div {
  margin-left: 5px;
  margin-right: 0;
}

.realpress-property-wishlist.active {
  color: red;
}

.realpress-property-container {
  display: flex;
  flex-wrap: wrap;
}
.realpress-property-container > div {
  flex-direction: column;
  width: 100%;
}
.realpress-property-container[data-grid-col="3"] > div {
  max-width: 33.33%;
}
@media (max-width: 991px) {
  .realpress-property-container[data-grid-col="3"] > div {
    max-width: 50%;
  }
}
@media (max-width: 575px) {
  .realpress-property-container[data-grid-col="3"] > div {
    max-width: 100%;
  }
}
.realpress-property-container[data-grid-col="3"] > div.realpress-wave-loading {
  max-width: 100%;
}
.realpress-property-container[data-grid-col="2"] > div {
  max-width: 50%;
}
.realpress-property-container[data-grid-col="2"] > div.realpress-wave-loading {
  max-width: 100%;
}

[data-grid-col="1"] .realpress-property-item {
  flex-direction: row;
  flex-wrap: nowrap;
}
[data-grid-col="1"] .realpress-property-header {
  max-width: 35%;
}
[data-grid-col="1"] .realpress-property-header .realpress-agent, [data-grid-col="1"] .realpress-property-header .realpress-groups-button-wrapper {
  display: none;
}
[data-grid-col="1"] .realpress-property-body {
  max-width: 65%;
  flex-direction: row;
  padding: 30px;
  border: 0;
}
[data-grid-col="1"] .realpress-property-body .realpress-agent, [data-grid-col="1"] .realpress-property-body .realpress-groups-button-wrapper {
  display: flex;
  bottom: 30px;
}
[data-grid-col="1"] .realpress-property-body .realpress-agent {
  left: 30px;
}
[data-grid-col="1"] .realpress-property-body .realpress-groups-button-wrapper {
  right: 30px;
}
[data-grid-col="1"] .realpress-groups-button-wrapper > div {
  color: black;
}
[data-grid-col="1"] .realpress-group-heading-info {
  max-width: 60%;
  width: 100%;
  padding-right: 25px;
}
[data-grid-col="1"] .realpress-property-item-meta {
  flex-direction: column-reverse;
  justify-content: flex-end;
  max-width: 40%;
  width: 100%;
  padding-left: 25px;
  border-left: 1px solid #E8E8E8;
}

[data-grid-col="2"] .realpress-property-item > div, [data-grid-col="3"] .realpress-property-item > div {
  flex: 1;
  height: 100%;
}

/**
 * tom-select.css (v2.1.0)
 * Copyright (c) contributors
 *
 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this
 * file except in compliance with the License. You may obtain a copy of the License at:
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software distributed under
 * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
 * ANY KIND, either express or implied. See the License for the specific language
 * governing permissions and limitations under the License.
 *
 */
.ts-wrapper.single .ts-control, .ts-wrapper.single .ts-control input {
  cursor: pointer;
}

.ts-wrapper.plugin-drag_drop.multi > .ts-control > div.ui-sortable-placeholder {
  visibility: visible !important;
  background: #f2f2f2 !important;
  background: rgba(0, 0, 0, 0.06) !important;
  border: 0 none !important;
  box-shadow: inset 0 0 12px 4px #fff;
}

.ts-wrapper.plugin-drag_drop .ui-sortable-placeholder::after {
  content: "!";
  visibility: hidden;
}

.ts-wrapper.plugin-drag_drop .ui-sortable-helper {
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.plugin-checkbox_options .option input {
  margin-right: 0.5rem;
}

.plugin-clear_button .clear-button {
  opacity: 0;
  position: absolute;
  top: 8px;
  right: 2px;
  margin-right: 0 !important;
  background: transparent !important;
  transition: opacity 0.5s;
  cursor: pointer;
}

.plugin-clear_button.single .clear-button {
  right: calc(2px + 2rem);
}

.plugin-clear_button.focus.has-items .clear-button, .plugin-clear_button:not(.disabled):hover.has-items .clear-button {
  opacity: 1;
}

.ts-wrapper .dropdown-header {
  position: relative;
  padding: 10px 8px;
  border-bottom: 1px solid #d0d0d0;
  background: #f8f8f8;
  border-radius: 3px 3px 0 0;
}

.ts-wrapper .dropdown-header-close {
  position: absolute;
  right: 8px;
  top: 50%;
  color: #303030;
  opacity: 0.4;
  margin-top: -12px;
  line-height: 20px;
  font-size: 20px !important;
}

.ts-wrapper .dropdown-header-close:hover {
  color: black;
}

.plugin-dropdown_input.focus.dropdown-active .ts-control {
  box-shadow: none;
  border: 1px solid #d0d0d0;
}

.plugin-dropdown_input .dropdown-input {
  border: 1px solid #d0d0d0;
  border-width: 0 0 1px 0;
  display: block;
  padding: 8px 8px;
  box-shadow: none;
  width: 100%;
  background: transparent;
}

.plugin-dropdown_input .items-placeholder {
  border: 0 none !important;
  box-shadow: none !important;
  width: 100%;
}

.plugin-dropdown_input.has-items .items-placeholder, .plugin-dropdown_input.dropdown-active .items-placeholder {
  display: none !important;
}

.ts-wrapper.plugin-input_autogrow.has-items .ts-control > input {
  min-width: 0;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input {
  flex: none;
  min-width: 4px;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-webkit-input-placeholder {
  color: transparent;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::-ms-input-placeholder {
  color: transparent;
}

.ts-wrapper.plugin-input_autogrow.has-items.focus .ts-control > input::placeholder {
  color: transparent;
}

.ts-dropdown.plugin-optgroup_columns .ts-dropdown-content {
  display: flex;
}

.ts-dropdown.plugin-optgroup_columns .optgroup {
  border-right: 1px solid #f2f2f2;
  border-top: 0 none;
  flex-grow: 1;
  flex-basis: 0;
  min-width: 0;
}

.ts-dropdown.plugin-optgroup_columns .optgroup:last-child {
  border-right: 0 none;
}

.ts-dropdown.plugin-optgroup_columns .optgroup:before {
  display: none;
}

.ts-dropdown.plugin-optgroup_columns .optgroup-header {
  border-top: 0 none;
}

.ts-wrapper.plugin-remove_button .item {
  display: inline-flex;
  align-items: center;
  padding-right: 0 !important;
}

.ts-wrapper.plugin-remove_button .item .remove {
  color: inherit;
  text-decoration: none;
  vertical-align: middle;
  display: inline-block;
  padding: 0 6px;
  border-left: 1px solid #d0d0d0;
  border-radius: 0 2px 2px 0;
  box-sizing: border-box;
  margin-left: 6px;
}

.ts-wrapper.plugin-remove_button .item .remove:hover {
  background: rgba(0, 0, 0, 0.05);
}

.ts-wrapper.plugin-remove_button .item.active .remove {
  border-left-color: #cacaca;
}

.ts-wrapper.plugin-remove_button.disabled .item .remove:hover {
  background: none;
}

.ts-wrapper.plugin-remove_button.disabled .item .remove {
  border-left-color: white;
}

.ts-wrapper.plugin-remove_button .remove-single {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 23px;
}

.ts-wrapper {
  position: relative;
}

.ts-dropdown,
.ts-control,
.ts-control input {
  color: #303030;
  font-family: inherit;
  font-size: 13px;
  line-height: 18px;
  font-smoothing: inherit;
}

.ts-control,
.ts-wrapper.single.input-active .ts-control {
  background: #fff;
  cursor: text;
}

.ts-control {
  border: 1px solid #d0d0d0;
  padding: 8px 8px;
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  box-shadow: none;
  border-radius: 3px;
  display: flex;
  flex-wrap: wrap;
}

.ts-wrapper.multi.has-items .ts-control {
  padding: 6px 8px 3px;
}

.full .ts-control {
  background-color: #fff;
}

.disabled .ts-control, .disabled .ts-control * {
  cursor: default !important;
}

.focus .ts-control {
  box-shadow: none;
}

.ts-control > * {
  vertical-align: baseline;
  display: inline-block;
}

.ts-wrapper.multi .ts-control > div {
  cursor: pointer;
  margin: 0 3px 3px 0;
  padding: 2px 6px;
  background: #f2f2f2;
  color: #303030;
  border: 0px solid #d0d0d0;
}

.ts-wrapper.multi .ts-control > div.active {
  background: #e8e8e8;
  color: #303030;
  border: 0px solid #cacaca;
}

.ts-wrapper.multi.disabled .ts-control > div, .ts-wrapper.multi.disabled .ts-control > div.active {
  color: #7d7d7d;
  background: white;
  border: 0px solid white;
}

.ts-control > input {
  flex: 1 1 auto;
  min-width: 7rem;
  display: inline-block !important;
  padding: 0 !important;
  min-height: 0 !important;
  max-height: none !important;
  max-width: 100% !important;
  margin: 0 !important;
  text-indent: 0 !important;
  border: 0 none !important;
  background: none !important;
  line-height: inherit !important;
  -webkit-user-select: auto !important;
  -moz-user-select: auto !important;
  -ms-user-select: auto !important;
  user-select: auto !important;
  box-shadow: none !important;
}

.ts-control > input::-ms-clear {
  display: none;
}

.ts-control > input:focus {
  outline: none !important;
}

.has-items .ts-control > input {
  margin: 0px 4px !important;
}

.ts-control.rtl {
  text-align: right;
}

.ts-control.rtl.single .ts-control:after {
  left: 15px;
  right: auto;
}

.ts-control.rtl .ts-control > input {
  margin: 0px 4px 0px -2px !important;
}

.disabled .ts-control {
  opacity: 0.5;
  background-color: #fafafa;
}

.input-hidden .ts-control > input {
  opacity: 0;
  position: absolute;
  left: -10000px;
}

.ts-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  z-index: 10;
  border: 1px solid #d0d0d0;
  background: #fff;
  margin: 0.25rem 0 0 0;
  border-top: 0 none;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 3px 3px;
}

.ts-dropdown [data-selectable] {
  cursor: pointer;
  overflow: hidden;
}

.ts-dropdown [data-selectable] .highlight {
  background: rgba(125, 168, 208, 0.2);
  border-radius: 1px;
}

.ts-dropdown .option,
.ts-dropdown .optgroup-header,
.ts-dropdown .no-results,
.ts-dropdown .create {
  padding: 5px 8px;
}

.ts-dropdown .option, .ts-dropdown [data-disabled], .ts-dropdown [data-disabled] [data-selectable].option {
  cursor: inherit;
  opacity: 0.5;
}

.ts-dropdown [data-selectable].option {
  opacity: 1;
  cursor: pointer;
}

.ts-dropdown .optgroup:first-child .optgroup-header {
  border-top: 0 none;
}

.ts-dropdown .optgroup-header {
  color: #303030;
  background: #fff;
  cursor: default;
}

.ts-dropdown .active {
  background-color: #f5fafd;
  color: #495c68;
}

.ts-dropdown .active.create {
  color: #495c68;
}

.ts-dropdown .create {
  color: rgba(48, 48, 48, 0.5);
}

.ts-dropdown .spinner {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: 5px 8px;
}

.ts-dropdown .spinner:after {
  content: " ";
  display: block;
  width: 24px;
  height: 24px;
  margin: 3px;
  border-radius: 50%;
  border: 5px solid #d0d0d0;
  border-color: #d0d0d0 transparent #d0d0d0 transparent;
  animation: lds-dual-ring 1.2s linear infinite;
}

@keyframes lds-dual-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ts-dropdown-content {
  overflow-y: auto;
  overflow-x: hidden;
  max-height: 200px;
  overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.ts-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

/*# sourceMappingURL=tom-select.css.map */
.widget_realpress_mortgage_calculator .realpress_mortgage_calculator_wrapper .realpress-mc-widget-result {
  display: none;
  margin-top: 10px;
  padding-bottom: 3px;
}
.widget_realpress_mortgage_calculator .realpress_mortgage_calculator_wrapper .realpress-mc-widget-result li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  line-height: 24px;
  padding-bottom: 10px;
}
.widget_realpress_mortgage_calculator .realpress_mortgage_calculator_wrapper .realpress-mc-widget-result li:last-child {
  margin-bottom: 0;
}
.widget_realpress_mortgage_calculator .realpress_mortgage_calculator_wrapper .realpress-mc-widget-result li strong {
  font-weight: 600;
}

.widget_realpress_mortgage_calculator .realpress_mortgage_calculator_wrapper > label {
  font-size: 14px;
  line-height: 28px;
  font-weight: 600;
  display: block;
  margin-top: 0;
  margin-bottom: 20px;
}
.widget_realpress_mortgage_calculator .realpress_mortgage_calculator_wrapper > label input {
  width: 100%;
  margin: 0;
  margin-top: 6px;
  border: 2px solid black;
}
.widget_realpress_mortgage_calculator .realpress_mortgage_calculator_wrapper > div {
  margin: 0;
  padding-top: 10px;
  display: flex;
  column-gap: 30px;
}
.widget_realpress_mortgage_calculator button {
  padding: 0 15px;
  height: 40px;
  font-size: 14px;
  font-weight: 400;
  color: white;
  background-color: black;
  border: 0;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.widget_realpress_mortgage_calculator button:hover {
  color: white;
  background-color: black;
}

.realpress-agent-custom-fields > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.realpress-agent-custom-fields > li + li {
  margin-top: 15px;
}

.widget_realpress_property_list .widget-title {
  margin-bottom: 20px;
}
.widget_realpress_property_list .realpress-property-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  margin-bottom: 35px;
}
.widget_realpress_property_list .realpress-property-item:last-child {
  margin-bottom: 0;
}
.widget_realpress_property_list .realpress-property-item-title {
  margin-bottom: 6px;
}
.widget_realpress_property_list .realpress-property-item-title a {
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  font-weight: 600;
  color: black;
  display: block;
}
.widget_realpress_property_list .realpress-property-item-post-thumbnail img {
  width: 100%;
}
.widget_realpress_property_list .realpress-property-content {
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
}
.widget_realpress_property_list .realpress-property-item-price {
  line-height: 1;
  margin-bottom: 5px;
  color: black;
  position: static;
}
.widget_realpress_property_list .realpress-property-item-price span {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}
.widget_realpress_property_list .realpress-property-item-type {
  line-height: 1;
}
.widget_realpress_property_list .realpress-property-item-type a {
  font-size: 12px;
  line-height: 24px;
}

@media (max-width: 767px) {
  .widget_realpress_property_list .realpress-property-content {
    padding-top: 15px;
  }
  .widget_realpress_property_list .realpress-property-item {
    margin-bottom: 30px;
  }
}
.widget_realpress-term ul.realpress-term-widget li, .elementor-widget-wp-widget-realpress-term ul.realpress-term-widget li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: var(--thim-font_body-font-size, 14px);
  line-height: 24px;
  padding: 0 0 10px;
  color: black;
}
.widget_realpress-term ul.realpress-term-widget li a, .elementor-widget-wp-widget-realpress-term ul.realpress-term-widget li a {
  text-decoration: none;
}

@media (max-width: 767px) {
  .widget.widget_realpress-term .widget-title {
    margin-bottom: 20px;
  }
}
.widget {
  margin-bottom: 40px;
}
.widget:last-child {
  margin-bottom: 0;
}
.widget .widget-title {
  font-size: 18px;
  line-height: 30px;
  font-weight: 600;
  margin-bottom: 30px;
  color: black;
}
@media (max-width: 767px) {
  .widget .widget-title {
    margin-bottom: 15px;
  }
}

.realpress-agent-search input, .realpress-agent-search button {
  width: 100%;
  margin: 0 0 15px;
  height: 44px;
  font-size: 14px;
  padding: 0 15px;
  border: 0;
}
.realpress-agent-search button {
  margin: 0;
  background-color: black;
  text-transform: uppercase;
  color: white;
}