/**
 * EPL Custom Templates CSS
 *
 * @package     EPL-CUSTOM-TEMPLATES
 * @since       3.0.0
 * @subpackage  css
 * @copyright   Copyright (c) 2022, Merv Barrett
 * @license     http://opensource.org/licenses/gpl-2.0.php GNU Public License
 */
:root {
  --epl-color-white-opacity-75: rgba(255, 255, 255, 0.75);
  --epl-color-white-opacity-50: rgba(255, 255, 255, 0.5);
  --epl-color-white-opacity-25: rgba(255, 255, 255, 0.25);
  --epl-color-white-opacity-10: rgba(255, 255, 255, 0.1);
  --epl-color-grey-df: #dfdfdf;
  --epl-color-grey-e1: #e1e1e1;
  --epl-color-grey-e2: #e2e2e2;
  --epl-color-grey-e5: #e5e5e5;
  --epl-color-grey-e7: #e7e7e7;
  --epl-color-grey-e9: #e9e9e9;
  --epl-color-grey-ef: #efefef;
  --epl-color-grey-f0: #f0f0f0;
  --epl-color-grey-f5: #f5f5f5;
  --epl-color-grey-f6: #f6f6f6;
  --epl-color-grey-f7: #f7f7f7;
  --epl-color-grey-f8: #f8f8f8;
  --epl-color-grey-f9: #f9f9f9;
  --epl-color-grey-fa: #fafafa;
  --epl-color-grey-fb: #fbfbfb;
  --epl-color-grey-fc: #fcfcfc;
  --epl-color-grey-fd: #fdfdfd;
  --epl-color-grey-fe: #fefefe;
  --epl-color-grey-ff: #ffffff;
  --epl-color-grey-ab: #ababab;
  --epl-color-grey-b1: #b1b1b1;
  --epl-color-grey-91: #919294;
  --epl-color-grey-89: #898989;
  --epl-color-grey-7f: #7f7f7f;
  --epl-color-silver: #c0c0c0;
  --epl-color-black: #000000;
  --epl-color-white: #ffffff;
  --epl-color-grey: #002461;
  --epl-color-page: #f7f7f7;
  --epl-color-primary: #222222;
  --epl-color-primary-light: #222222;
  --epl-color-primary-opacity: #222222;
  --epl-color-secondary: #001e42;
  --epl-color-secondary-light: #001e42;
  --epl-color-secondary-opacity: #001e42;
  --epl-color-tertiary: #d85330;
  --epl-color-tertiary-light: #d85330;
  --epl-color-tertiary-opacity: #d85330;
  --epl-color-accent: #091e34;
  --epl-color-accent-light: #091e34;
  --epl-color-accent-opacity: #091e34;
  --epl-color-alternate: #091e34;
  --epl-color-alternate-light: #091e34;
  --epl-color-alternate-opacity: #091e34;
  --epl-color-tint: #f7f6f3;
  --epl-color-grey: #f7f6f3;
  --epl-color-grey-dark: #303030;
  --epl-color-primary-100: rgba(13, 13, 13, 1);
  --epl-color-primary-70: rgba(13, 13, 13, 0.7);
  --epl-color-primary-50: rgba(13, 13, 13, 0.5);
  --epl-color-primary-30: rgba(13, 13, 13, 0.3);
  --epl-color-primary-10: rgba(13, 13, 13, 0.3);
  --epl-color-secondary-100: rgba(37, 46, 100, 1);
  --epl-color-secondary-70: rgba(37, 46, 100, 0.7);
  --epl-color-secondary-50: rgba(37, 46, 100, 0.5);
  --epl-color-secondary-30: rgba(37, 46, 100, 0.3);
  --epl-color-secondary-10: rgba(37, 46, 100, 0.3);
  --epl-color-accent-100: rgba(102, 109, 147, 1);
  --epl-color-accent-70: rgba(102, 109, 147, 0.7);
  --epl-color-accent-50: rgba(102, 109, 147, 0.5);
  --epl-color-accent-30: rgba(102, 109, 147, 0.3);
  --epl-color-accent-10: rgba(102, 109, 147, 0.3);
  --epl-font-family-primary: 'Montserrat', Helvetica, Arial, Lucida, sans-serif;
  --epl-font-family-secondary: 'Tenor Sans', Sans-serif;
  --epl-font-family-tertiary: var(--epl-font-family-primary), sans-serif;
}

.epl-element__flex,
.epl-element__flex--align-center,
.epl-element__flex--space-between,
.epl-element__flex--flex-start,
.epl-element__flex--flex-end,
.epl-element__flex--direction-row-reverse .epl-element__flex--direction-column-reverse {
  display: flex;
}

.epl-element__flex--align-center {
  align-items: center;
}

.epl-element__flex--space-between {
  justify-content: space-between;
}
.epl-element__flex--space-between.epl-rec-icons {
  justify-content: space-between;
}

.epl-element__flex--flex-start {
  justify-content: flex-start;
}

.epl-element__flex--flex-end {
  justify-content: flex-end;
}

.epl-element__flex--direction-row-reverse {
  flex-direction: row-reverse;
}

.epl-element__flex--direction-column-reverse {
  column-direction: row-reverse;
}

.epl-element__flex--wrap {
  flex-wrap: wrap;
}

.epl-element__flex--gap {
  gap: 0.5em;
}

.epl-element__flex--gap-1 {
  gap: 1em;
}

.epl-element__flex--gap-2 {
  gap: 2em;
}

.epl-element__flex--gap-3 {
  gap: 3em;
}

.epl-element__flex--gap-4 {
  gap: 4em;
}

.epl-element__flex--gap-5 {
  gap: 5em;
}

@media screen and (min-width: 1030px) {
  .epl-hide-desktop {
    display: none;
  }
}
@media screen and (max-width: 1030px) {
  .epl-hide-tablet-landscape {
    display: none;
  }
}
@media screen and (max-width: 770px) {
  .epl-hide-tablet {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .epl-hide-mobile {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  .epl-hide-above-mobile {
    display: none;
  }
}
.epl-hide-custom-width {
  display: none;
}
@media screen and (min-width: 650px) {
  .epl-hide-custom-width {
    display: block;
  }
}

.epl-show-custom-width {
  display: none;
}
@media screen and (max-width: 650px) {
  .epl-show-custom-width {
    display: block;
  }
}

.epl-hide-list {
  display: none !important;
}

.epl-listing-grid-view .epl-hide-list,
.epl-listing-grid-view-forced .epl-hide-list {
  display: block !important;
}

.epl-listing-grid-view .epl-hide-grid,
.epl-listing-grid-view-forced .epl-hide-grid {
  display: none !important;
}

/*****************************
Helpers
****************************/
.epl-section-outer-wrapper {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

/*********************************************
Wrapper styling
*********************************************/
.rec-module-outer-wrapper {
  clear: both;
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

.rec-block-outer-wrapper {
  margin-left: 0;
  margin-right: 0;
  min-height: 1px;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 100%) {
  .rec-module-outer-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.epl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3em;
}

/*********************************************
EPL Core Reset CSS Classes
*********************************************/
.epl-section-wrap--tint {
  background: var(--epl-color-tint);
}

.epl-section-wrap--dark {
  background: var(--epl-color-primary);
}

.epl-section-wrap--wide .epl-section {
  max-width: 1920px;
}

.epl-section-wrap--narrow .epl-section {
  max-width: 1160px;
}

.epl-section-wrap--info-bar .epl-section {
  padding-block: 1.2rem;
}

.epl-section-wrap--image .epl-section {
  padding-block: 0;
}

.epl-section-wrap--info-bar--icons .epl-section {
  padding-block: 2em;
}

.epl-section-wrap--tight .epl-section {
  margin-block: 0;
  padding-block: 0;
}

.epl-section-wrap--agents .epl-section {
  display: block;
  justify-content: center;
  gap: 2em;
  flex-wrap: nowrap;
}

.epl-section-wrap--modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
}

.epl-section-wrap--last {
  margin-bottom: 6em;
  padding-block: 0;
}
.epl-section-wrap--last .epl-section {
  padding-bottom: 0;
  margin-bottom: 0;
}

.epl-section-wrap--full-width {
  width: 100%;
  max-width: 100%;
}
.epl-section-wrap--full-width .epl-section {
  width: 100%;
  max-width: 100%;
  padding-inline: 0;
}

.epl-section {
  box-sizing: border-box;
  width: 100%;
  max-width: 1310px;
  overflow: visible;
  margin: 0 auto;
  padding: 4rem 1em;
}
@media screen and (max-width: 1310px) {
  .epl-section {
    padding: 2em 1em;
  }
}
@media screen and (max-width: 1030px) {
  .epl-section {
    padding: 1.5em 1em;
  }
}
@media screen and (max-width: 600px) {
  .epl-section {
    padding: 1em;
  }
}

.epl-section--full-width {
  max-width: 100%;
}
.epl-section--full-width .epl-section {
  max-width: 100%;
  padding: 0;
}

.epl-section-wrap .epl-section--default {
  max-width: 1310px;
  margin-inline: auto;
}
.epl-section-wrap .epl-section--wide {
  max-width: 1920px;
  margin-inline: auto;
}
.epl-section-wrap .epl-section--narrow {
  max-width: 1160px !important;
  margin-inline: auto;
}

.epl-section--flex {
  display: flex;
}

.epl-section--grid {
  display: grid;
}

.epl-section--modal {
  display: grid;
  place-content: center;
  height: 100vh;
}

.epl-section__flex__item {
  display: flex;
}

.epl-section--sidebar {
  width: 100%;
  display: grid;
  grid-template-areas: "main sidebar";
  grid-template-columns: 1fr 400px;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .epl-section--sidebar {
    grid-template-areas: "main" "sidebar";
    grid-template-columns: 1fr;
  }
}

.epl-section--sidebar-right {
  grid-template-areas: "main sidebar";
  grid-template-columns: 1fr 400px;
}
@media screen and (max-width: 1030px) {
  .epl-section--sidebar-right {
    grid-template-areas: "main" "sidebar";
    grid-template-columns: 1fr;
  }
}

.epl-section--sidebar-left {
  grid-template-areas: "sidebar main";
  grid-template-columns: 390px 1fr;
}
@media screen and (max-width: 770px) {
  .epl-section--sidebar-left {
    grid-template-areas: "sidebar" "main";
    grid-template-columns: 1fr;
  }
}

@media screen and (min-width: 1030px) {
  .epl-section--sidebar-75-25 {
    grid-template-columns: 0.75fr 0.25fr;
  }
}

@media screen and (min-width: 1030px) {
  .epl-section--sidebar-50,
  .epl-section--sidebar-50-50 {
    grid-template-columns: 1fr 1fr;
  }
}

@media screen and (min-width: 1030px) {
  .epl-section--sidebar-25-75 {
    grid-template-columns: 0.25fr 0.75fr;
  }
}

@media screen and (min-width: 600px) and (max-width: 1030px) {
  .epl-section {
    padding-inline: 1em;
  }
}
@media screen and (min-width: 1030px) and (max-width: 100%) {
  .epl-section {
    padding-inline: 1em;
  }
}
@media screen and (min-width: 100%) {
  .epl-section {
    padding-inline: 1em;
  }
}
.epl-section iframe {
  display: block;
  border: none;
}

.epl-section__item {
  margin: 0;
}

.epl-section__title {
  margin: 1em 0 2em !important;
  padding: 0;
  color: var(--epl-color-white);
  font-family: var(--epl-font-family-secondary);
  font-size: 1.8em;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
  letter-spacing: 0;
  text-transform: uppercase;
  border-bottom: 1px none var(--epl-color-grey-e1);
}

.epl-section__title--center {
  text-align: center;
}

.epl-section__title--right {
  text-align: right;
}

.epl-section__title--left {
  text-align: left;
}

.epl-section__description {
  margin: 0 0 1em;
  padding: 0;
  font-size: 1em;
  font-weight: 300;
  text-align: left;
}

.epl-section-inner__panel {
  margin: 0;
  padding: 0;
  border: 1px solid var(--epl-color-tint);
  border-style: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}
.epl-section-inner__panel .epl-tab-title {
  display: none;
}
.epl-section-inner__panel--featured-image {
  max-width: 917px;
}

.epl-section-inner--main {
  grid-area: main;
  min-width: 0;
  overflow: visible;
}

.epl-section-inner--sidebar {
  grid-area: sidebar;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 2px solid var(--epl-color-secondary);
  border-style: none;
  box-shadow: none;
  border-radius: 0;
}
@media screen and (max-width: 770px) {
  .epl-section-inner--sidebar {
    padding: 0;
    border-style: none;
  }
}

.epl-section-inner__title {
  margin: 2rem 0 1em;
  padding: 0;
  color: var(--epl-color-white);
  font-family: var(--epl-font-family-secondary);
  font-size: 1.2em;
  font-weight: 800;
  line-height: 1.3;
  text-align: left;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  border-bottom: none;
}
.epl-section-inner__title:first-child {
  margin-top: 0;
}

.epl-block-widget {
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--epl-color-primary);
  border: 1px solid var(--epl-color-secondary);
  border-style: none;
  box-shadow: none;
  border-radius: 0;
  text-align: left;
  font-size: 1em;
  font-family: var(--epl-font-family-primary);
  line-height: 2;
}
.epl-block-widget:first-child {
  margin-top: 0;
  padding-top: 0;
}
.epl-block-widget:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

.epl-block-title {
  margin: 0 0 0.5em;
  padding: 0 0 0.5em;
  background: transparent;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-secondary);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  text-transform: none;
  text-shadow: none;
  text-align: left;
  letter-spacing: -0.02em;
  border: 1px solid var(--epl-color-secondary);
  border-style: none;
}

.epl-block-widget--hidden {
  display: none;
}

.epl-row-wrap {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 1px none var(--epl-color-primary);
  border-style: none;
}

.epl-row {
  position: relative;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 1px none var(--epl-color-primary);
  border-style: none;
  min-width: 0;
}

.epl-row--gap-01 {
  gap: 0.1em;
}

.epl-row--gap-02 {
  gap: 0.2em;
}

.epl-row--gap-03 {
  gap: 0.3em;
}

.epl-row--gap-04 {
  gap: 0.4em;
}

.epl-row--gap-05 {
  gap: 0.5em;
}

.epl-row--gap-1 {
  gap: 1em;
}

.epl-row--gap-2 {
  gap: 2em;
}

.epl-row--gap-3 {
  gap: 3em;
}

.epl-row--gap-4 {
  gap: 4em;
}

.epl-row--gap-5 {
  gap: 5em;
}

.epl-row--flex-1 {
  flex: 1;
}

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

.epl-row--space-between,
.epl-row--justify-space-between,
.epl-row--justify-content-space-between {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .epl-row--space-between,
  .epl-row--justify-space-between,
  .epl-row--justify-content-space-between {
    flex-wrap: wrap;
  }
}

.epl-row--column {
  display: flex;
  flex-direction: column;
}

.epl-row--column-reverse {
  display: flex;
  flex-direction: column-reverse;
}

.epl-row--justify-content-center {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 600px) {
  .epl-row--justify-content-center {
    flex-wrap: wrap;
  }
}

.epl-row--flex-start {
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width: 600px) {
  .epl-row--flex-start {
    flex-wrap: wrap;
  }
}

.epl-row--flex-end {
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 600px) {
  .epl-row--flex-end {
    flex-wrap: wrap;
  }
}

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

.epl-row--align-center {
  display: flex;
  align-items: center;
}

.epl-row--align-baseline {
  display: flex;
  align-items: baseline;
}

.epl-row--list-item {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 1px solid var(--epl-color-grey-e9);
  border-style: none;
  list-style: none;
  font-family: var(--epl-font-family-primary);
  font-size: 1em;
  font-weight: 400;
}
.epl-row--list-item .epl-value {
  font-weight: 400;
}
.epl-row--list-item .epl-value div {
  display: inline-block;
}
.epl-row--list-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.epl-row--margin-bottom-05 {
  margin-bottom: 0.5em;
}

.epl-row--margin-bottom-1 {
  margin-bottom: 1em;
}

.epl-row--margin-bottom-2 {
  margin-bottom: 2em;
}

.epl-row--margin-bottom-3 {
  margin-bottom: 3em;
}

.epl-row--margin-bottom-4 {
  margin-bottom: 4em;
}

.epl-row--margin-bottom-5 {
  margin-bottom: 5em;
}

.epl-row--content .epl-rec-meta {
  margin-block: 0.5em;
}

.epl-row--last .epl-rec-meta {
  margin-bottom: 0;
}

.epl-row__link {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  background: transparent;
  color: transparent;
  font-family: var(--epl-font-family-primary);
  font-size: 0;
  text-transform: uppercase;
  text-indent: 0;
  text-align: center;
  letter-spacing: 0;
  transition: all 0.5s ease-in-out;
  z-index: 5;
  cursor: pointer;
}
.epl-row__link:hover {
  background: transparent;
  color: transparent;
  opacity: 1;
  font-size: 0;
}

.epl-row-inner {
  width: 100%;
}

.epl-hide__address-suburb .entry-title-sub {
  display: none !important;
}

.epl-rec-meta__flex,
.epl-rec-meta__flex--align-center,
.epl-rec-meta__flex--space-between {
  display: flex;
  gap: 0.5em;
}

.epl-rec-meta__flex--align-center {
  align-items: center;
}

.epl-rec-meta__flex--space-between {
  justify-content: space-between;
}

.mont-floor-plan-widget-features .epl-tab-title-property-features {
  display: none;
}
.mont-floor-plan-widget-features .epl-property-features {
  list-style-position: initial;
  padding-left: 1.1em;
}

.epl-animate,
.status-sticker {
  animation-duration: 0.3s;
  animation-name: epl-animate-fade;
  animation-delay: 0.3s;
  animation-fill-mode: backwards;
}

.epl-animate-bar-height {
  animation-duration: 0.3s;
  animation-name: epl-animate-height;
  animation-delay: 0.3s;
  animation-fill-mode: backwards;
}

@keyframes epl-animate-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes epl-animate-height {
  0% {
    height: 0px;
  }
  100% {
    height: 40px;
  }
}
@keyframes epl-animate-slide-in-left {
  0% {
    transform: translateX(-140px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes epl-animate-slide-in-up {
  0% {
    transform: translateY(40px);
  }
  100% {
    transform: translateY(0);
  }
}
/**********************************
	Easy Property Listings Custom CSS
***********************************/
:root {
  --mont-page: #ecedf1;
  --mont-blue-old: #141a2a;
  --mont-blue: #001e42;
  --mont-tint: #ecedf1;
  --mont-tint-dark: #d0d1d6;
  --mont-orange: #d85330;
  --mont-grey: #55565b;
  --mont-white: #ffffff;
  --mont-light-grey: #555;
  --mont-pink: #a0609d;
  --mont-green: #71a84f;
  --mont-emerge: #6b8266;
  --mont-advantage: #c3c9d1;
  --mont-border: #aaa;
  --mont-blue-alt: #001e42;
  --mont-site-width: 1300px;
  --mont-font-family: 'Helvetica', Verdana, Arial, sans-serif;
  --mont-font-family-display: 'Nicky Laatz', 'Helvetica', Verdana, Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
}

/**********************************
	Icons
***********************************/
/** Overall Fill **/
.epl-icon-fill g {
  /* fill: orange; */
}

/** Frame Fill **/
.epl-icon-fill #epl-icon-shape-frame {
  fill: red;
}

.epl-icon-fill .epl-icon-color-base {
  fill: var(--mont-white);
}

.epl-icon-fill .epl-icon-color-frame {
  fill: var(--mont-grey);
}

.epl-icon-fill .epl-icon-color-green {
  fill: green;
}

.epl-icon-fill-white .epl-icon-color-frame,
.epl-icon-fill-white .epl-icon-color-base {
  fill: var(--mont-white);
}

.property-feature-icons {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.property-feature-icons .epl-icon-svg-container {
  display: flex;
  flex-direction: column;
  vertical-align: middle;
  margin-right: 0;
  justify-content: center;
}

.property-feature-icons .property-more-link {
  margin-top: 1em;
  padding: 0 !important;
  display: block;
  flex-basis: 100%;
  text-align: left;
}

.property-feature-icons .epl-icon {
  width: 2.3em;
  height: 2.3em;
  margin: 0 auto;
}

.property-feature-icons .epl-icon.epl-icon-svg-home-design {
  width: auto;
}

.property-feature-icons .icon-value {
  margin: 0.3em 0 0;
  line-height: 1;
  font-family: var(--epl-font-family-primary) !important;
}

.property-feature-icons .epl-label {
  font-size: 0.9em;
  font-weight: bold;
  line-height: 1.4;
}

#epl-icon-svg-mont .epl-icon-color-frame {
  fill: var(--mont-blue);
}

#epl-icon-svg-3d-dark .epl-icon-color-base,
#epl-icon-svg-vr-dark .epl-icon-color-base,
#epl-icon-svg-vr-concept .epl-icon-color-base {
  fill: var(--mont-blue);
}

#epl-icon-svg-vr-dark .epl-icon-color-alternate {
  fill: var(--mont-orange);
}

#epl-icon-svg-pen-dark .epl-icon-color-base {
  fill: var(--mont-blue);
}

#epl-icon-svg-brochure-dark .epl-icon-color-base,
#epl-icon-svg-enquire-dark .epl-icon-color-base {
  fill: var(--mont-blue);
}

#epl-icon-svg-slope-white .epl-icon-color-frame {
  fill: var(--mont-white);
}

#epl-icon-svg-arrow .epl-icon-color-frame {
  fill: var(--mont-blue);
}

#epl-icon-svg-arrow-white .epl-icon-color-frame {
  fill: var(--mont-white);
}

.mont-icon {
  float: right;
}

.mont-icon > * {
  width: 0.8em;
}

.mont-icon-flash {
  float: none;
}

.mont-icon-flash > * {
  width: 1.2em;
}

/**********************************
	Stickers / Flash
***********************************/
.epl-stickers-wrapper {
  display: grid;
  z-index: 2;
}

.epl-stickers-wrapper {
  position: absolute;
  top: 1em;
  left: 1em;
  bottom: initial;
  width: calc(100% - 2em);
}

.epl-stickers-wrapper-bottom {
  position: absolute;
  top: initial;
  left: 1em;
  bottom: 1em;
  width: calc(100% - 2em);
}

.epl-stickers-wrapper .mont-top-row-stickers {
  position: absolute;
  top: 0;
}

.epl-stickers-wrapper .mont-bottom-row-stickers {
  position: absolute;
  bottom: 0;
}

.epl-flash-svg-container {
  vertical-align: middle;
  display: inline-block;
  line-height: 2.5;
  background: #ffffff;
  padding: 0 0.8em;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1em;
  color: var(--mont-blue);
}

.epl-icon-container-dual-living {
  background: #a6c0d0;
}
.epl-icon-container-dual-living .epl-flash-label {
  color: var(--mont-white);
}

.mont-image-icons .epl-label {
  display: none;
}

.epl-icon-granny-flat-flash {
  background: var(--mont-pink);
  color: var(--white);
}

.epl-icon-home-starter-flash {
  background: var(--mont-green);
  color: var(--white);
}

/* Stickers */
.epl-property-single .status-sticker,
.epl-property-blog .status-sticker {
  background: var(--mont-orange);
  color: #fff;
  text-transform: uppercase;
  vertical-align: middle;
  display: inline-block;
  line-height: 2.5;
  background: #ffffff;
  padding: 0 1.5em;
  text-transform: uppercase;
  font-weight: bold;
  margin-right: 1em;
}

.epl-property-single .status-sticker.under-offer,
.epl-property-blog .status-sticker.under-offer {
  background: #ffa500;
}

.epl-property-single .status-sticker.open,
.epl-property-blog .status-sticker.open {
  background: #7faf1b;
}

.epl-property-single .status-sticker.new,
.epl-property-blog .status-sticker.new {
  background: #a98555;
}

.epl-property-single .status-sticker.site-type,
.epl-property-blog .status-sticker.site-type {
  background: var(--mont-blue);
}

.epl-property-single .status-sticker.site-type.site-type-level,
.epl-property-blog .status-sticker.site-type.site-type-level {
  background: var(--mont-orange);
}

.epl-property-single .status-sticker.site-type.site-type-affordable,
.epl-property-blog .status-sticker.site-type.site-type-affordable {
  background: var(--mont-green);
}

.epl-property-single .status-sticker.site-type.site-type-advantage,
.epl-property-blog .status-sticker.site-type.site-type-advantage {
  background: var(--mont-advantage);
}

.epl-property-single .status-sticker.site-type.site-type-emerge,
.epl-property-blog .status-sticker.site-type.site-type-emerge {
  background: var(--mont-emerge) url("images/Emerge_Collection_Text_With_Icon_WHITE.svg") no-repeat;
}

.epl-property-single .status-sticker.site-type.site-type-emerge .sticker-label,
.epl-property-blog .status-sticker.site-type.site-type-emerge .sticker-label {
  color: transparent;
}

.epl-icon-container-vr .epl-icon-svg {
  width: 40px;
  height: 30px;
}

.epl-icon-container-vr .epl-icon-svg svg {
  margin-top: 3px;
}

/*********************************
	Pagination
*********************************/
/*********************************
	Tools
*********************************/
/*********************************************
	Default EPLBT Module Styling
*********************************************/
.eplbt-module-outer-wrapper {
  max-width: 1370px;
  width: 100%;
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 1245px) {
  .eplbt-module {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 720px) {
  .eplbt-module {
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .eplbt-module {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
.eplbt-module-block-background-wrapper {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.eplbt-module-block-outer-wrapper {
  margin-left: 0;
  margin-right: 0;
  min-height: 1px;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

/*********************************
	Common Containers
*********************************/
.mont-section-outer-wrapper {
  width: 100%;
  max-width: var(--mont-site-width);
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
}

@media screen and (max-width: 1300px) {
  .mont-section-outer-wrapper {
    padding-left: 2em;
    padding-right: 2em;
  }
}
@media screen and (max-width: 500px) {
  .mont-section-outer-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.epl-item-mobile-show {
  display: none;
}

@media screen and (max-width: 980px) {
  .epl-item-tablet-show {
    display: block !important;
  }
  .epl-item-tablet-hide {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .epl-item-mobile-show {
    display: inline !important;
  }
  .epl-item-mobile-hide {
    display: none;
  }
}
/*********************************
	Tabs
*********************************/
/********************************
	Search
********************************/
/*********************************
	Tools
*********************************/
.epl-infinite-loading-wrapper {
  margin: 2em 0;
}

/*********************************
	Archive Elements Containers
*********************************/
.epl-post-type-archive .fl-page-content {
  background: var(--mont-page);
}

@media screen and (min-width: 1100px) {
  body .epl-fl-archive.container {
    width: 1300px;
  }
}
/*********************************
	Archive Containers
*********************************/
/** Overall container width **/
@media screen and (min-width: 1100px) {
  body .epl-fl-archive.container.epl-listings-container {
    width: 1920px;
    max-width: 100%;
    padding-left: 2em;
    padding-right: 2em;
  }
}
.epl-template-blog-estate,
.epl-template-blog,
.epl-template-3d-tour,
.epl-fav-content {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  grid-gap: 3em;
}

/** Grid **/
@media screen and (min-width: 1500px) {
  .epl-template-blog-estate,
  .epl-template-blog,
  .epl-template-3d-tour,
  .epl-fav-content {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }
}
/** Prevent grid in carousel **/
.slick-slider {
  display: block;
  max-width: 1300px;
}

/*********************************
	Tools
*********************************/
.epl-loop-tools-wrap {
  grid-column: 1/-1;
  border-bottom: 2px solid var(--mont-blue);
  padding: 0 0 0.8em;
  display: flex;
  align-items: center;
}

.epl-tools-sub-title h5 {
  font-family: var(--mont-font-family);
  font-size: 1.85em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--mont-blue);
}

.epl-loop-tool {
  margin-left: 1.5em;
}

.epl-loop-tool select {
  -webkit-appearance: none;
  border: 2px solid var(--mont-blue);
  background: transparent;
  background: transparent url(images/arrow-down.svg) no-repeat calc(100% - 1em) center;
  background-size: 15px;
  padding-left: 1em;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-right: 3em;
  font-weight: bold;
  color: var(--mont-blue);
}

@media screen and (max-width: 500px) {
  .epl-tools-sub-title h5 {
    font-size: 1.25em;
  }
}
/*********************************
	Archive - Home Design - Property - Common
*********************************/
.epl-property-blog-mont.hentry {
  position: relative;
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  background: var(--mont-white);
  margin: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.epl-listing__cover-link {
  position: absolute;
  inset: 0;
  font-size: 0;
  z-index: 2;
}

.epl-property-blog-mont .property-content {
  flex-basis: auto;
  flex-grow: 1;
}

.epl-property-blog-mont .entry-header {
  margin: 1em 1.1em 1.1em;
  display: flex;
  justify-content: space-between;
}

.epl-home-design-blog .entry-header {
  margin: 1em 1em 0;
}

.epl-property-blog-mont .entry-title {
  font-family: var(--mont-font-family);
  color: var(--mont-blue);
  margin: 0;
  font-size: 1.6em;
  line-height: 1.1;
  display: inline-block;
}

.epl-property-blog-mont .entry-address {
  font-size: 1.2em;
}

.epl-property-blog-mont .entry-title a {
  color: var(--mont-blue);
  font-weight: bold;
}

.epl-property-blog-mont .item-state,
.epl-property-blog-mont .item-pcode {
  display: none;
}

.epl-property-blog-mont .price {
  font-family: var(--mont-font-family);
  font-weight: bold;
  margin: 0;
  font-size: 1.9em;
  line-height: 1.1;
  color: var(--mont-blue);
}

.epl-price-view-long .price {
  font-size: clamp(14px, 2vw, 18px);
  display: block;
  text-align: right;
}

.epl-property-blog-mont .entry-content {
  margin: 0;
}

.epl-property-blog-mont .entry-content > * {
  margin-left: 1em;
  margin-right: 1em;
}

.epl-property-blog-mont .property-feature-icons {
  margin: 0;
  font-size: 1em;
  padding-left: 0;
  padding-right: 0;
}

.epl-property-blog-mont .property-feature-icons > * {
  padding: 0 1em 1em;
}

.epl-property-blog-mont .property-feature-icons .epl-icon-container-bed .epl-label,
.epl-property-blog-mont .property-feature-icons .epl-icon-container-bath .epl-label,
.epl-property-blog-mont .property-feature-icons .epl-icon-container-car .epl-label,
.epl-property-blog-mont .property-feature-icons .epl-icon-container-wide .epl-label,
.epl-property-blog-mont .property-feature-icons .epl-icon-container-deep .epl-label {
  display: none;
}

.epl-property-blog-mont .epl-read-more {
  background: var(--mont-blue);
  color: var(--mont-white);
  display: block;
  max-width: 190px;
  max-width: 100%;
  padding: 0.9em 1.5em;
  font-size: 1.15em;
  text-decoration: none;
}

.epl-property-blog-mont .epl-read-more:hover {
  background: var(--mont-orange);
  color: var(--mont-white);
  text-decoration: none;
}

.epl-property-blog-mont .entry-footer {
  margin: 0 0 0;
  display: flex;
  flex-direction: column;
}

.epl-property-blog-mont .epl-icon-container-wide,
.epl-property-blog-mont .epl-icon-container-deep {
  display: none;
}

.mont-land-type-granny-flat .epl-icon-container-wide,
.mont-land-type-granny-flat .epl-icon-container-deep {
  display: flex;
}

@media screen and (max-width: 768px) {
  .epl-property-blog-mont .property-more-link {
    margin-top: 1em;
  }
}
@media screen and (max-width: 500px) {
  .epl-property-blog,
  .epl-property-blog.hentry {
    max-width: 100%;
  }
}
/*********************************
	Archive - House and Land
*********************************/
.epl-house-land-package-blog .entry-title-sub {
  display: block;
}

/*********************************
	Archive - Home Design
*********************************/
.epl-home-design-blog .epl-icon-container-land {
  display: none;
}

/*********************************
	Archive - Display Home
*********************************/
.epl-display-home-blog .epl-label-house.size {
  display: none;
}

.epl-display-home-blog .entry-footer {
  margin: 0 0 0;
  display: flex;
  flex-direction: column;
}

/*********************************
	Archive - Display Home - 3D Tour
*********************************/
.epl-display-home-blog-3d-tour .property-more-link,
.epl-display-home-blog-vr-tour .property-more-link {
  flex: 0 1 100%;
  margin-top: 1em;
}

.epl-display-home-blog-3d-tour .property-more-link > *,
.epl-display-home-blog-vr-tour .property-more-link > * {
  float: left;
}

/*********************************
	Archive - Display Home
*********************************/
.epl-display-home-blog .entry-content {
  margin-bottom: 0;
}

.epl-display-home-blog .mont-display-home-location {
  border-top: 1px solid var(--mont-blue);
}

.mont-display-home-location.mont-hide-home-location {
  display: none;
}

.epl-display-home-blog img {
  width: 100%;
}

.epl-display-home-blog .epl-read-more {
  max-width: 100%;
  padding: 1em;
  font-size: 1em;
  text-decoration: none;
}

.epl-display-home-blog .epl-read-more .mont-icon {
  margin-left: 20px;
}

.mont-display-home-location {
  margin-top: 0;
  padding-top: 0.8em;
}

.mont-display-home-location .epl-label,
.mont-display-home-location .epl-value {
  color: var(--mont-blue-alt);
  display: block;
  font-weight: bold;
  font-size: 2em;
  line-height: 1.45;
}

.mont-display-home-location .epl-label {
  font-size: 1.2em;
}

.mont-display-home-location .epl-value {
  font-size: 1.8em;
  /* text-transform: uppercase; */
}

.mont-display-home-location-time {
  font-size: 1.1em;
  display: block;
  align-items: center;
  margin-bottom: 0;
}

.mont-display-home-location-time > * {
  width: 100%;
  /* background: #e4e5ebaa; */
  display: block;
  float: left;
  padding: 0.5em;
}

.mont-display-home-location-time > *:nth-child(odd) {
  /* background: #e4e5ebee; */
}

body .epl-inspection-times ul.home-open-wrapper {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.mont-display-home-address {
  /* width: 40%; */
  display: flex;
  align-items: center;
}

.mont-display-home-opening-times {
  /* width: 60%; */
  display: flex;
  align-items: center;
}

.mont-display-home-price {
  text-align: right;
}

.mont-display-home-price .price {
  color: var(--mont-orange);
}

.mont-display-home-location-time .mont-icon {
  float: left;
  display: block;
  min-width: 50px;
  /* background: pink; */
}

.mont-display-home-location-time .times {
  margin-left: 0;
}

.mont-display-home-location-time .epl-inspection-times .epl-inspection-times-label {
  margin: 0;
  font-weight: bold;
}

.mont-display-home-location-time .mont-icon > * {
  width: 2.1em;
}

.mont-display-location-wrap .mont-meta {
  display: flex;
  align-items: center;
  width: 100%;
}

.mont-display-home-location-time .epl-value {
  margin-left: 0;
  display: block;
  line-height: 1.3;
  font-size: 0.9em;
}

.epl-display-home-blog .entry-title-sub {
  display: inline-block;
}

.epl-display-home-blog .item-state {
  display: inline-block;
}

.epl-house-land-package-blog .mont-display-home-opening-times {
  width: 100%;
  display: flex;
  align-items: center;
}

/*********************************
	Single Listing Container
*********************************/
.epl-single-listing .fl-page-content {
  /* background: var(--mont-page); */
}

@media screen and (min-width: 1100px) {
  body .epl-fl-single.container {
    width: 100%;
    max-width: 100%;
  }
}
.epl-fl-single.container .fl-content {
  margin-bottom: 0;
}

.epl-entry-box-tint {
  background: var(--mont-page);
}

.epl-entry-box-tint-dark {
  background: var(--mont-tint-dark);
}

.epl-entry-box-width .epl-entry-box-container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  overflow: hidden;
}

.epl-entry-box-full-width .epl-entry-box-container {
  margin: 0 auto;
  overflow: hidden;
  max-width: 1300px;
}

.epl-entry-box-full-width-bb .epl-entry-box-container {
  padding-left: 0;
  padding-right: 0;
}

.entry-vr-tour {
  text-align: center;
}

.entry-vr-tour .mont-module {
  margin: 2em 0 2em;
}

.entry-vr-tour .mont-vr-tour-icon {
  margin-bottom: 1em;
}

.entry-vr-tour .mont-module .mont-module-title {
  margin-bottom: 0.5em;
}

.entry-vr-tour .mont-virtual-tour-module p {
  max-width: 640px;
  margin: 0 auto;
}

@media screen and (max-width: 1300px) {
  .epl-entry-box-container {
    padding-left: 2em;
    padding-right: 2em;
  }
}
@media screen and (max-width: 500px) {
  .epl-entry-box-container {
    padding-left: 1.5em;
    padding-right: 1.5em;
  }
}
/*********************************
	Single Read More
*********************************/
.mont-read-more .mont-icon {
  float: unset;
}

.mont-read-more .mont-icon > * {
  width: 1em;
}

.mont-read-more,
.mont-read-more:hover,
.mont-read-more:focus,
.mont-read-more:active {
  color: var(--mont-grey);
  font-weight: bold;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 0.97em;
}

.mont-read-more .mont-icon-text {
  padding: 0 0.5em 0 0;
}

.mont-read-more .mont-icon-rotated {
  transform: rotate(90deg);
}

/*********************************
	Single Hero Image
*********************************/
.site-page-hero-background-wrapper {
  position: relative;
  text-align: center;
  color: white;
  /* height: 700px; */
  overflow: hidden;
}

.site-page-hero-outer-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  max-width: 100%;
}

.site-page-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.site-page-hero-image {
  position: relative;
  width: 100%;
}

.site-page-hero-image img {
  display: block;
  object-fit: cover;
  margin: 0 auto;
  height: 600px !important;
  width: 100%;
}

.mont-hero-image-outer-wrapper {
  top: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
}

.site-page-hero-block-details {
  position: absolute;
  left: -9px;
  right: 0;
  top: 24%;
}

.site-page-hero-block-details h1 {
  color: var(--mont-white);
  font-family: var(--mont-font-family-display);
  font-size: 7.1em;
  margin-bottom: 0px;
}

.site-page-hero-block-details h2 {
  font-family: var(--mont-font-family);
  color: var(--mont-white);
  font-size: 1.52em;
  max-width: 500px;
  letter-spacing: 0.02em;
  margin: 0 auto;
}

.epl-hero-image-property .site-page-hero-block-details h2 {
  color: var(--mont-white);
  font-family: var(--mont-font-family-display);
  font-size: 7.1em;
  margin-bottom: 0px;
  max-width: 100%;
}

.epl-hero-image-property .site-page-hero-block-details h1 {
  font-family: var(--mont-font-family);
  color: var(--mont-white);
  font-size: 1.52em;
  letter-spacing: 0.02em;
  margin: 0 auto;
}

.site-page-hero-block-details .item-state,
.site-page-hero-block-details .item-pcode {
  display: none;
}

.mont-image-tools-background-wrapper {
  position: absolute;
  bottom: 0;
}

.mont-image-tools {
  display: flex;
  justify-content: center;
  align-content: center;
  margin-left: -10px;
}

.mont-image-tools > * {
  background: rgba(255, 255, 255, 0);
  border-right: 1px solid var(--mont-white);
}

.mont-image-tools > *:first-child {
  border-left: 1px solid var(--mont-white);
}

.mont-image-tools a {
  display: flex;
  justify-content: space-between;
  color: var(--mont-white);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.03em;
  line-height: 1.1;
  width: 251px;
  height: 120px;
  align-items: center;
  padding-left: 24px;
  padding-right: 24px;
}

.mont-image-tools a:hover,
.mont-image-tools a:focus {
  text-decoration: none;
  color: var(--mont-white);
  background: rgba(255, 255, 255, 0.25);
}

.mont-image-widget .mont-icon {
  margin-left: 3em;
  text-align: right;
}

.mont-image-widget .mont-icon > * {
  width: 35px;
}

.mont-image-widget .mont-icon-text {
  /* display: flex; */
  text-align: left;
}

/*********************************
    Single Listing  - Home Design - Common
*********************************/
.epl-property-single .entry-title-sub {
  font-weight: inherit;
}

.epl-fl-single.fl-single.container {
  padding-left: 0;
  padding-right: 0;
}

@media screen and (min-width: 769px) {
  .epl-property-single-mont .epl-element-outer-wrapper {
    width: 60%;
    float: left !important;
    margin-left: 0;
    margin-right: -100%;
  }
  .epl-property-single-mont .epl-sidebar-outer-wrapper {
    width: 40%;
    margin-left: 60%;
    float: left !important;
    margin-right: -100%;
  }
}
@media screen and (min-width: 700px) and (max-width: 768px) {
  .epl-property-single-mont .epl-element-outer-wrapper {
    width: 70%;
    float: left !important;
    margin-left: 0;
    margin-right: -100%;
  }
  .epl-left .epl-element {
    margin-right: 3em;
  }
  .epl-property-single-mont .epl-sidebar-outer-wrapper {
    width: 30%;
    margin-left: 70%;
    margin-right: -100% !important;
    float: left !important;
    margin-right: -100%;
  }
}
.epl-property-single-mont .epl-sidebar {
  border-left: 1px solid var(--mont-blue);
  padding-left: 2em;
  margin-bottom: 2em;
}
@media screen and (max-width: 700px) {
  .epl-property-single-mont .epl-sidebar {
    border-left: none;
    padding-left: 0;
  }
}

.mont-design-container {
  border-bottom: 1px solid var(--mont-blue);
  margin-bottom: 1em;
  overflow: hidden;
}

.mont-design {
  float: left;
  display: flex;
  margin-left: 4px;
}

.mont-design .mont-widget-icon {
  background: var(--mont-blue);
  padding: 0.8em;
  width: 4em;
}

.mont-design .mont-widget-icon.mont-site-type-emerge {
  background: var(--mont-emerge);
  padding: 0.1em;
  width: 4em;
  height: 4em;
  border-radius: 10em;
}

.mont-label.mont-site-type-emerge {
  color: var(--mont-emerge);
}

.mont-design-slope .mont-icon > * {
  width: 2.45em;
}

.mont-design .mont-intro {
  padding: 0.8em 0.8em 0.8em 0;
  color: var(--mont-blue);
}

.epl-home-design-single .mont-design .mont-intro {
  padding-left: 0.8em;
}

.mont-design .mont-intro .item-state,
.mont-design .mont-intro .item-pcode {
  display: none;
}

.mont-design .mont-intro-text {
  font-size: 1.2em;
  line-height: 1.1;
}

.mont-design .mont-design-value {
  font-size: 1.2em;
  text-transform: uppercase;
  font-weight: bold;
  line-height: 1.3;
}

.mont-site-type-level {
  color: var(--mont-orange);
}

.mont-site-type-affordable {
  color: var(--mont-green);
}

.mont-site-type-advantage {
  color: var(--mont-advantage);
}

.mont-site-type.mont-site-type-level {
  background: var(--mont-orange);
}

.mont-site-type.mont-site-type-affordable {
  background: var(--mont-green);
}

.mont-site-type.mont-site-type-advantage {
  background: var(--mont-advantage);
}

.epl-property-single-mont .entry-title-wrapper {
  margin-top: 2.1em;
  margin-bottom: 2em;
}

.epl-property-single-mont .entry-title {
  font-family: var(--mont-font-family);
  font-size: 1.8em;
  /* text-transform: uppercase; */
  font-weight: bold;
  color: var(--mont-blue);
  margin-top: 0;
  flex-basis: 50%;
}

.epl-property-single-mont .property-feature-icons {
  text-align: center;
  display: flex;
  justify-content: initial;
  margin: 0.5em 0 0;
}

.epl-property-single-mont .property-feature-icons > * {
  margin-right: 2.8em;
}

.epl-entry-content-heading .entry-title,
.epl-entry-content h2 {
  font-family: var(--mont-font-family);
  font-weight: bold;
  font-size: 1.2em;
  color: var(--mont-blue);
  margin-bottom: 1.7em;
  text-transform: none;
}

.epl-entry-content p {
  line-height: 1.8;
  margin-top: 1.7em;
  margin-bottom: 1.7em;
}

.mont-display-info {
  margin-top: 3em;
}

.mont-display-info-title {
  font-size: 1.2em;
  font-weight: bold;
  color: var(--mont-blue);
  margin-bottom: 0.3em;
}

.mont-display-location {
  background: var(--mont-orange);
  color: var(--mont-white);
  padding: 0.5em 2.3em;
  font-weight: normal;
  text-transform: uppercase;
  line-height: 2;
  margin-right: 0.3em;
  font-size: 0.9em;
  white-space: nowrap;
}

.mont-display-location:hover {
  background: var(--mont-blue);
  color: var(--mont-white);
  text-decoration: none;
}

/** Responsive **/
@media screen and (max-width: 500px) {
  .epl-property-single-mont .entry-header {
    font-size: 0.65em;
  }
  .epl-home-design-single .mont-design-enquire {
    font-size: 1.2em;
    font-weight: bold;
  }
  .epl-property-single-mont .entry-content {
    font-size: 0.7em;
  }
  .epl-property-single-mont .entry-title-wrapper {
    margin-top: 1em;
    margin-bottom: 2.6em;
  }
  .epl-property-single-mont .entry-title-wrapper .entry-tools {
    order: 6;
  }
  .epl-property-single-mont .entry-title {
    margin-bottom: 0;
  }
  .epl-property-single-mont .property-feature-icons {
    flex-wrap: nowrap;
    justify-content: space-between;
    flex-basis: 100%;
    margin-bottom: 2em;
  }
  .epl-property-single-mont .property-feature-icons > * {
    margin-right: 0;
  }
}
/*********************************
    Single Display Home
*********************************/
.mont-facade-type {
  font-weight: bold;
  color: var(--mont-blue);
  font-size: 1.3em;
  margin-top: -0.5em;
  margin-bottom: 0.6em;
}

.epl-display-home-single .price {
  font-family: var(--mont-font-family);
  font-weight: bold;
  margin: 0;
  font-size: 1.9em;
  line-height: 1.1;
  color: var(--mont-orange);
}

@media screen and (min-width: 501px) {
  .epl-display-home-single .entry-title-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
  }
}
@media screen and (max-width: 500px) {
  .epl-display-home-single .mont-display-home-price {
    text-align: left;
    margin-top: 1em;
  }
}
/*********************************
    Single House and Land (Property)
*********************************/
.epl-house-land-package-single .mont-design-value {
  font-size: 1.8em;
  text-transform: none;
  margin-bottom: 0.53em;
}

.epl-house-land-package-single .page-price {
  font-size: 1em;
  font-family: var(--mont-font-family);
  font-weight: bold;
  color: var(--mont-orange);
}

.epl-house-land-package-single .entry-title-wrapper {
  margin-top: 1.8em;
}

.epl-house-land-package-single .property-feature-icons {
  margin: 1.2em 0 1.4em;
}

.epl-house-land-package-single .entry-title {
  font-size: 1.2em;
  text-transform: none;
}

/*********************************
	Single Widgets
*********************************/
.mont-single-widget .epl-block-widget-container {
  border-bottom: 1px solid var(--mont-blue);
  padding: 2em 0.7em;
}

.mont-single-widget {
  color: var(--mont-blue);
}

.mont-single-widget .mont-widget-icon {
  margin-bottom: 0.5em;
}

.mont-single-widget .mont-line {
  display: block;
  font-size: 1em;
  line-height: 1.5;
}

.mont-single-widget .mont-button {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.15em;
  color: var(--mont-blue);
  line-height: 1;
}

.entry-vr-tour .mont-button {
  display: inline-block;
  font-size: 14px;
  line-height: 1.1;
  text-transform: none;
  background: var(--mont-blue);
  padding: 10px 15px;
  padding-left: 15px !important;
  color: var(--mont-white);
  margin: 2em 0;
}

.entry-vr-tour .mont-icon {
  margin-left: 1em;
}

.entry-vr-tour .mont-button i {
  font-size: 1.3em;
  height: auto;
  margin-left: 8px;
  margin-right: 0;
  vertical-align: middle;
  width: auto;
}

.entry-vr-tour .mont-button:hover,
.mont-single-widget .mont-button:hover {
  text-decoration: none;
}

.mont-widget-icon {
  /* width: 1em; */
}

.mont-widget-icon .mont-icon {
  float: none;
}

.mont-widget-icon .mont-icon > * {
  width: 2.3em;
}

.mont-widget-icon .mont-icon .epl-icon-svg-vr-concept {
  width: 4em;
}

.mont-widget-icon.mont-site-type-emerge .mont-icon > * {
  width: 4em;
}

.mont-widget-icon .mont-icon .epl-icon-svg-vr-dark {
  width: 3.3em;
}

@media screen and (max-width: 500px) {
  /* Widgets */
  .epl-property-single-mont .epl-sidebar {
    border-top: 1px solid var(--mont-blue);
    border-bottom: 1px solid var(--mont-blue);
    border-left: none;
    padding-left: 0;
    margin-bottom: 2em;
    display: grid;
    grid-template-columns: 1fr;
  }
  .mont-single-widget {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .mont-single-widget:nth-child(1),
  .mont-single-widget:nth-child(2) {
    border-bottom: 1px solid var(--mont-blue);
  }
  .mont-single-widget .epl-block-widget-container {
    border-bottom: none;
    padding: 2em 0.7em;
    margin: 1em 0;
    font-size: 1.4em;
    text-align: center;
  }
  .mont-single-widget:nth-child(2) .epl-block-widget-container,
  .mont-single-widget:nth-child(4) .epl-block-widget-container {
    border-right: none;
  }
  .mont-single-widget .mont-line.mont-button {
    font-size: 1em;
  }
  .mont-single-widget .mont-line.mont-button .mont-icon {
    display: none;
  }
  .mont-widget-icon .mont-icon > * {
    width: 2.5em;
  }
}
/*********************************
	Single Widgets - Agent Details
*********************************/
.epl-author-box-container {
  margin: 0;
}

.epl-author-box-outer-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1em;
  background: transparent;
  padding: 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--mont-blue);
  padding: 2em 0.7em;
  color: var(--mont-blue);
}
@media screen and (max-width: 500px) {
  .epl-author-box-outer-wrapper {
    justify-content: center;
  }
}

.epl-author-box.epl-author-image,
.epl-author-box.epl-author-details {
  padding-right: 0;
  width: auto;
  line-height: 1.25;
}

.epl-author-box.epl-author-image {
  max-width: 100px;
}

.epl-author-position {
  margin: 0 0 0.7em;
  font-size: 0.9em;
  font-family: var(--mont-font-family);
  text-align: left;
  font-weight: bold;
  color: var(--mont-blue);
}

.epl-author-box-flat .mont-module-title {
  text-align: left;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.mont-sd-position {
  margin: 0 0 0.7em;
  font-size: 0.9em;
  font-family: var(--mont-font-family);
  text-align: left;
  font-weight: bold;
  color: var(--mont-blue);
}

.epl-author-box .epl-author-title {
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1.25;
  font-size: 1.7em;
  font-family: var(--mont-font-family);
  text-align: center;
  font-weight: bold;
  color: var(--mont-blue);
  margin-bottom: 3em;
}

.epl-author-box .epl-author-contact .epl-button {
  display: inline-block;
  margin-bottom: 0;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  background: transparent;
  color: var(--mont-blue);
  border: none;
  text-decoration: none;
  white-space: nowrap;
  padding: 0;
  font-size: 1.2em;
  line-height: 1.25;
  border-radius: 0;
  font-weight: 400;
}
.epl-author-box .epl-button--get-in-touch {
  margin-top: 1em;
}

@media screen and (max-width: 500px) {
  .epl-author-box-outer-wrapper {
    border-bottom: none !important;
    padding: 2em 0.7em;
    margin: 1em 0;
    font-size: 1.4em;
    text-align: center;
  }
  .mont-sd-position {
    text-align: center;
  }
}
/*********************************
       Module Common
*********************************/
.mont-module-title {
  font-size: 1.7em;
  font-family: var(--mont-font-family);
  text-align: center;
  font-weight: bold;
  color: var(--mont-blue);
  margin-bottom: 3em;
}

.mont-module {
  margin: 9em 0 2em;
}

.mont-module .entry-title {
  font-family: var(--mont-font-family);
  font-weight: bold;
}

@media screen and (max-width: 500px) {
  .mont-module {
    margin: 2em 0 1em;
  }
  .mont-module-title {
    font-size: 1.3em;
  }
}
/*********************************
	Attractions Module
*********************************/
.entry-attractions .mont-module {
  margin-top: 5em;
  margin-bottom: 5em;
}

/*********************************
	Similar Module
*********************************/
.entry-similar-designs .epl-entry-box-container {
  padding-left: 2em;
  padding-right: 2em;
}

.mont-similar-wrap {
  margin-top: 6em;
}

.mont-similar-wrap .mont-module-title {
  margin-bottom: 1.4em;
}

.similar-designs-listings-wrap h3 {
  font-family: var(--mont-font-family);
  font-size: 1em;
  text-align: center;
}

.entry-similar-designs .mont-module-title {
  text-transform: uppercase;
}

/*********************************
	Carousel Icons
*********************************/
.epl-slick-carousel .slick-prev,
.epl-slick-carousel .slick-next {
  width: 38px !important;
  height: 38px !important;
  top: auto !important;
  bottom: 5px !important;
  background: url("images/circle-arrow-white.svg") no-repeat !important;
  transform: rotate(90deg) !important;
}

.epl-slick-carousel .slick-next {
  right: 20px !important;
}

.epl-slick-carousel .slick-prev {
  left: auto !important;
  right: 65px !important;
  transform: rotate(-90deg) !important;
}

/*********************************
	Gallery Module
*********************************/
.mont-gallery-module {
  margin-bottom: 8em;
}

.mont-module-title {
  margin-bottom: 1.5em;
}

.mont-gallery-module .mont-gallery-style-default {
  margin: 0;
  padding: 0;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-auto-flow: dense;
}

.mont-gallery-module .mont-gallery-style-portrait {
  margin: 0;
  padding: 0;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 600px;
  grid-template-rows: 300px 300px;
  grid-auto-flow: dense;
}

.mont-gallery-module .mont-gallery-style-listing {
  margin: 0;
  padding: 0;
  display: grid;
  grid-gap: 30px;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: dense;
}

.mont-gallery-item {
  overflow: hidden;
}

.mont-gallery-item-portrait {
  grid-column: span 1;
  grid-row: span 2;
  overflow: hidden;
}

.mont-gallery-item-portrait img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.mont-gallery-slide-image-thumb {
  max-width: 100% !important;
}

.mont-gallery-style-portrait .epl-slick-carousel .slick-prev,
.mont-gallery-style-portrait .epl-slick-carousel .slick-next {
  top: 240px !important;
  bottom: auto !important;
}

.mont-gallery-style-default .epl-slick-carousel .slick-prev,
.mont-gallery-style-default .epl-slick-carousel .slick-next {
  top: auto !important;
  bottom: 10px !important;
  height: 38px;
}

@media screen and (max-width: 960px) {
  .mont-gallery-module .mont-gallery-style-portrait {
    grid-template-columns: 1fr 300px;
    grid-template-rows: 150px 150px;
  }
  .mont-gallery-style-portrait .epl-slick-carousel .slick-prev,
  .mont-gallery-style-portrait .epl-slick-carousel .slick-next {
    top: 90px !important;
  }
}
@media screen and (max-width: 650px) {
  .mont-gallery-module .mont-gallery-style-default {
    display: block;
  }
  .mont-gallery-style-default .mont-gallery-item-portrait,
  .mont-gallery-style-default .mont-gallery-item-default {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  .mont-gallery-module {
    margin-bottom: 2em;
  }
  .mont-gallery-module .mont-gallery {
    display: block;
  }
  .mont-gallery-style-default .mont-gallery-item-portrait,
  .mont-gallery-style-default .mont-gallery-item-default,
  .mont-gallery-style-portrait .mont-gallery-item-portrait,
  .mont-gallery-style-portrait .mont-gallery-item-default {
    display: none;
  }
  .mont-gallery-module .epl-slick-carousel .slick-prev,
  .mont-gallery-module .epl-slick-carousel .slick-next {
    top: 10px !important;
    bottom: auto !important;
  }
  .mont-gallery-style-listing .mont-gallery-item-portrait,
  .mont-gallery-style-listing .mont-gallery-item-default {
    display: none;
  }
  .mont-gallery-style-listing .epl-slick-carousel .slick-prev,
  .mont-gallery-style-listing .epl-slick-carousel .slick-next {
    top: 200px !important;
    bottom: auto !important;
  }
}
/*********************************
	Floor Plan Module - moved
*********************************/
/*********************************
    Facades
*********************************/
.mont-facades-wrap {
  margin-top: 5em;
}

.mont-facades-wrap .entry-title {
  font-size: 1.7em;
  padding-left: 0.2em;
}

.mont-facades-list {
  display: flex;
  flex-wrap: wrap;
}

.mont-facades-item-label {
  display: flex;
  justify-content: center;
  padding: 1em 0;
  font-weight: bold;
  text-transform: capitalize;
  color: var(--mont-blue);
  font-size: 1.2em;
}

.mont-facades-item {
  padding: 0.3em;
  float: left;
}

/** Facade Static **/
.mont-facades-static-wrap {
  margin-bottom: 5em;
}

.mont-facades-static-wrap .entry-title {
  text-align: center;
}

.mont-facades-static-wrap .entry-sub-title {
  font-family: var(--mont-font-family);
  font-weight: bold;
  color: var(--mont-blue);
  margin-top: 0;
  margin-bottom: 2em;
  text-align: center;
}

.mont-facades-static-wrap img {
  margin: 0 auto;
  display: block;
  max-width: 800px;
}

.mont-facades-static-wrap img {
  width: 100%;
}

.mont-facades-list .slick-prev,
.mont-facades-list .slick-next {
  width: 38px !important;
  height: 38px;
  top: -50px !important;
  /* bottom: 3% !important; */
  background: url("images/circle-arrow-blue.svg") no-repeat !important;
  transform: rotate(90deg) !important;
  /* z-index: 200000; */
}

.mont-facades-list .slick-next {
  right: 5px !important;
}

.mont-facades-list .slick-prev {
  left: auto !important;
  right: 40px !important;
  transform: rotate(-90deg) !important;
}

@media screen and (max-width: 500px) {
  .mont-facades-wrap .entry-title {
    font-size: 1.3em;
    text-transform: none;
  }
}
/*********************************
    Compare / Fav
*********************************/
.epl-no-favourite-listings,
.epl-favourite-listings-label {
  max-width: 800px;
  margin: 0 auto;
}

.epl-no-favourite-listings,
.epl-favourite-listings-label h4 {
  font-family: var(--mont-font-family);
  font-size: 1.85em;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--mont-blue);
  margin-bottom: 1em;
  text-align: center;
}

.epl-compare-button,
.epl-fav-button,
.epl-suitable-for-button {
  border: 1px solid var(--mont-blue);
  color: var(--mont-blue);
  padding: 5px;
  text-transform: uppercase;
}

.epl-compare-tool .epl-compare-button-wrap {
  display: inline-block;
  padding: 0.5em 0;
}

.epl-compare-button:hover,
.epl-fav-button:hover,
.epl-compare-button:active,
.epl-fav-button:active,
.epl-compare-button:focus,
.epl-fav-button:focus {
  text-decoration: none;
  color: var(--mont-blue);
}

.epl-compare-icon {
  display: none !important;
}

.epl-fav-button-wrap .fa,
.epl-fav-button-wrap-active .fa {
  font-size: 15px !important;
  padding: 0 7px;
}

.epl-shortcode .saved-fav-btn-text,
.epl-template-blog .saved-fav-btn-text {
  display: none;
}

.epl-shortcode .epl-fav-button,
.epl-shortcode .epl-compare-button,
.epl-template-blog .epl-fav-button,
.epl-template-blog .epl-compare-button {
  border: unset;
}

.epl-shortcode .epl-fav-button-wrap .fa,
.epl-template-blog .epl-fav-button-wrap .fa {
  color: var(--mont-orange);
}

body .epl-compare-grid-wrap .epl-compare-toggle-label {
  background-color: var(--mont-orange);
}

.epl-compare-row-property_facade_1_label {
  background: rgba(0, 0, 0, 0.05) !important;
}

.compare-facade-label {
  display: block;
  padding: 0.5em 0;
  text-align: center;
}

a.epl-compare-button.epl-cmp-btn-active {
  color: var(--mont-orange);
  font-weight: bold;
}

@media screen and (min-width: 500px) and (max-width: 768px) {
  .epl-compare-grid {
    overflow: scroll !important;
    max-height: 100%;
  }
}
.epl-cmp-remove {
  right: 10px !important;
  bottom: 10px !important;
}

/** Hidden **/
/*********************************
	Display Location Module
*********************************/
.mont-display-location-wrap {
  float: left;
  background: var(--mont-page);
  width: 100%;
  padding: 1.6em;
  margin: 3em 0;
}

@media screen and (min-width: 769px) {
  .mont-display-location-wrap .epl-element-outer-wrapper {
    width: 25%;
    float: left !important;
    margin-left: 0;
    margin-right: -100%;
  }
  .mont-display-location-wrap .epl-sidebar-outer-wrapper {
    width: 75%;
    margin-left: 25%;
    float: left !important;
    margin-right: -100%;
  }
}
@media screen and (min-width: 500px) and (max-width: 768px) {
  .mont-display-location-wrap .epl-element-outer-wrapper {
    width: 50%;
    float: left !important;
    margin-left: 0;
    margin-right: -100%;
  }
  .mont-display-location-wrap .epl-sidebar-outer-wrapper {
    width: 50%;
    margin-left: 50%;
    float: left !important;
    margin-right: -100%;
  }
}
.mont-display-location-wrap .epl-element {
  padding: 1.5em;
  margin-bottom: 0 !important;
  margin-right: 0;
}

.mont-display-location-wrap .epl-sidebar {
  border-left: none;
  padding-left: 0;
  margin-bottom: 0;
}

.mont-display-location-wrap .mont-display-home-location h3.epl-label {
  font-size: 1.2em;
  font-family: var(--mont-font-family);
}

.mont-display-location-wrap .mont-display-home-location .epl-value {
  font-size: 1.7em;
}

.mont-display-location-wrap .mont-display-home-location-time {
  font-size: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 1.2em;
}

.mont-display-location-wrap .epl-am-map-wrapper #eplAmsinglePropertyMap {
  height: 330px !important;
}

.mont-display-location-wrap .mont-icon > * {
  width: 2em;
}

/*********************************
	Half Map Template
*********************************/
body #epl-advanced-map {
  height: 600px;
  width: 100%;
}

body .epl-am-map-template-split {
  max-height: 600px;
}

body .epl-am-half-map-right-wrap {
  float: left;
}

body .epl-am-half-map-left-wrap {
  float: right;
}

body .epl-am-map-template-split .epl-template-blog {
  grid-gap: 1.5em;
}

@media (min-width: 1201px) {
  body .epl-am-half-map-left-wrap {
    width: calc(100% - 470px);
  }
  body .epl-am-half-map-right-wrap {
    width: 450px;
    max-height: 600px;
  }
}
@media (max-width: 1200px) {
  body .epl-am-half-map-left-wrap {
    width: calc(100% - 470px);
  }
  body .epl-am-half-map-right-wrap {
    width: 450px;
  }
}
@media (max-width: 991px) {
  body .epl-am-half-map-left-wrap {
    width: calc(100% - 470px);
  }
  body .epl-am-half-map-right-wrap {
    width: 450px;
  }
  body .epl-am-half-map-right-wrap .grid-view .item-listing-wrap {
    width: 100%;
  }
}
@media (max-width: 768px) {
  body .epl-am-half-map-left-wrap {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    position: relative !important;
    float: none !important;
  }
}
@media screen and (min-width: 500px) {
  .epl-am-map-template-split .gm-style-iw.gm-style-iw-c {
    display: none;
  }
}
@media screen and (max-width: 500px) {
  body .epl-am-half-map-right-wrap {
    display: none;
  }
  body .epl-am-map-template-split {
    max-height: 550px;
  }
}
/*********************************
	Virtual Tour Module
*********************************/
.mont-virtual-tour-module .mont-module-title {
  margin-bottom: 1em;
}

@media screen and (max-width: 500px) {
  .epl-mp-3d-view iframe {
    height: 250px;
  }
}
/***********************************************
    Search - MS (Multi Select) Options - Needs to stay before search
***********************************************/
.ms-options-wrap,
.ms-options-wrap * {
  box-sizing: border-box;
}

.ms-options-wrap {
  margin-right: 20px;
}

.ms-options-wrap > button:focus,
.ms-options-wrap > button {
  position: relative;
  text-align: right;
  border: unset;
  background-color: transparent;
  padding: 0;
  line-height: 2.2;
  margin-top: 0;
  font-size: 13px !important;
  color: #aaa;
  outline-offset: -2px;
  white-space: nowrap;
  display: flex;
  box-sizing: border-box;
  z-index: 1;
}

.ms-options-wrap > button > span {
  display: inline-block;
  text-align: right;
  /* line-height: 3.15em; */
  position: relative;
  z-index: 4;
}

.ms-options-wrap > button[disabled] {
  background-color: #e5e9ed;
  color: #808080;
  opacity: 0.6;
}

.ms-options-wrap > button {
  position: relative;
}

.ms-options-wrap > button:after {
  content: "";
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  top: 50%;
  right: -20px;
  background: transparent url(images/arrow-down.svg) no-repeat right;
  background-size: 12px;
  z-index: 4;
}

.ms-options-wrap.ms-active > button:after {
  transform: rotate(180deg);
}

.ms-options-wrap.ms-has-selections > button {
  color: #333;
}

.ms-options-wrap > .ms-options {
  position: absolute;
  left: -2px;
  width: calc(100% + 4px);
  margin-top: 1px;
  margin-bottom: 20px;
  background: white;
  z-index: 3;
  border: 2px solid var(--mont-border);
  overflow: auto;
  visibility: hidden;
  border-top: unset;
  padding: 10px;
}

.ms-options-wrap.ms-active > .ms-options {
  visibility: visible;
}

.ms-options-wrap > .ms-options > .ms-search input {
  width: 100%;
  padding: 4px 5px;
  border: none;
  border-bottom: 1px groove;
  outline: none;
}

.ms-options-wrap > .ms-options .ms-selectall {
  display: inline-block;
  font-size: 0.9em;
  text-transform: lowercase;
  text-decoration: none;
}

.ms-options-wrap > .ms-options .ms-selectall:hover {
  text-decoration: underline;
}

.ms-options-wrap > .ms-options > .ms-selectall.global {
  margin: 4px 5px;
}

.ms-options-wrap > .ms-options > ul,
.ms-options-wrap > .ms-options > ul > li.optgroup ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.ms-options-wrap > .ms-options > ul li.ms-hidden {
  display: none;
}

.ms-options-wrap > .ms-options > ul > li.optgroup {
  padding: 5px;
}

.ms-options-wrap > .ms-options > ul > li.optgroup + li.optgroup {
  border-top: 1px solid #aaa;
}

.ms-options-wrap > .ms-options > ul > li.optgroup .label {
  display: block;
  padding: 5px 0 0 0;
  font-weight: bold;
}

.ms-options-wrap > .ms-options > ul label {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 4px 4px 4px 20px;
  margin: 1px 0;
  border: 1px dotted transparent;
}

.ms-options-wrap > .ms-options.checkbox-autofit > ul label,
.ms-options-wrap > .ms-options.hide-checkbox > ul label {
  padding: 4px;
}

.ms-options-wrap > .ms-options > ul label.focused,
.ms-options-wrap > .ms-options > ul label:hover {
  background-color: #efefef;
  border-color: #999;
}

.ms-options-wrap > .ms-options > ul li.selected label {
  background-color: #efefef;
  border-color: transparent;
}

.ms-options-wrap > .ms-options > ul input[type=checkbox] {
  margin: 0 5px 0 0;
  position: absolute;
  left: 0px;
  top: 7px;
}

.ms-options-wrap > .ms-options.hide-checkbox > ul input[type=checkbox] {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
}

.ms-options-wrap > button:hover {
  background-color: transparent;
  color: #333;
  border: unset;
}

.ms-options-wrap > button::after {
  border: unset;
}

.ms-options ul {
  border-top: 2px solid var(--mont-border);
}

/* Hide any */
.ms-options ul li:nth-child(1) {
  display: none;
}

/***********************************************
    END Search - MS (Multi Select) Options
***********************************************/
/*********************************
	Search
*********************************/
.mont-search-section-background-wrapper {
  background: var(--mont-white);
}

.mont-search-section-outer-wrapper {
  overflow: visible;
}

.mont-home-search-wrap .epl-search-forms-wrapper {
  overflow: visible;
  margin-top: 0;
}

.mont-home-search-wrap {
  background: transparent;
  padding: 0;
  margin: 0;
}

.mont-home-search-wrap .epl-search-form.epl-sb-current {
  overflow: visible;
}

.mont-home-search-wrap .epl-search-fields-main-wrapper > div {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}

.mont-home-search-wrap .epl-search-slim .epl-search-row {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  width: auto;
  float: unset;
  flex-wrap: nowrap;
  padding: 0 0.8em 0 0.3em;
  margin: 15px 0;
}

.mont-home-search-wrap .epl-search-row-select .in-field {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: unset;
}

.mont-home-search-wrap .epl-search-form .epl-search-label {
  position: relative;
  font-size: 1em;
  color: var(--mont-light-grey);
  padding: 0 6px;
  width: 100%;
  white-space: nowrap;
  margin-top: 0 !important;
  margin: 0;
  line-height: 2.2;
  z-index: 1;
  cursor: pointer;
}

.mont-home-search-wrap .epl-search-row {
  border-left: 2px solid var(--mont-border);
}

.mont-home-search-wrap .epl-search-submit-row {
  display: none;
}

.mont-home-search-wrap .epl-property_site_lot_width {
  /* border-right: 2px solid var(--mont-border); */
}

.mont-home-search-wrap .display-home-form .epl-property_site_house_size {
  border-right: 2px solid var(--mont-border);
}

.epl-search-clear-filters-mobile {
  display: none;
}

.epl-search-clear-filters-mobile,
.epl-search-toggle-filters-mobile {
  display: none;
}

.page-id-96996 .epl-search-toggle-filters {
  display: none;
}

/* Responsive */
@media screen and (max-width: 500px) {
  .mont-home-search-wrap .home-design-form .epl-search-fields-main-wrapper > div {
    display: grid !important;
  }
  .mont-home-search-wrap .epl-search-row {
    border-left: none;
    border-right: none;
    border-bottom: 1px solid var(--mont-border);
  }
  .mont-home-search-wrap .epl-search-slim .epl-search-row {
    margin: 0;
    flex-direction: column;
  }
  .ms-options-wrap > button:focus,
  .ms-options-wrap > button {
    float: right;
    margin-top: -2.2em;
  }
  .ms-options-wrap.ms-active {
    position: relative;
    z-index: 99999;
  }
  /* Second Level */
  .ms-options ul {
    border-top: none;
  }
  .ms-options-wrap.ms-active > .ms-options {
    margin-top: 3.1em;
    position: relative;
    left: -2px;
    width: calc(100% + 4px);
    margin-top: 1px;
    margin-bottom: 0px;
    background: white;
    z-index: 2;
    border: none;
    overflow: hidden;
    overflow-y: scroll;
    min-height: unset !important;
    max-height: auto !important;
  }
  /** Toggle & CLear filter **/
  .epl-search-primary-fields .epl-search-toggle-filters {
    display: none;
  }
  .epl-search-primary-fields .epl-search-clear-filters {
    display: none;
  }
  .epl-search-clear-filters-mobile,
  .epl-search-toggle-filters-mobile {
    display: block;
  }
}
/* Clear and More Filters */
.epl-search-clear-filters,
.epl-search-toggle-filters {
  display: flex;
  align-items: center;
  padding: 0 0.8em;
  line-height: 2.2;
}

.epl-search-toggle-filters-mobile {
  padding: 0.5em 1em;
  margin: unset;
  border-bottom: 1px solid var(--mont-border);
}

.epl-search-toggle-filters,
.epl-search-toggle-filters-mobile {
  /* margin-left: auto; */
  font-weight: bold;
}

.epl-search-clear-filters {
  margin-left: auto;
}

.epl-toggle-filter-content {
  border-bottom: 1px solid var(--mont-blue);
}

.epl-search-toggle-filters-mobile .epl-toggle-filter-content {
  border: unset;
}

.epl-search-toggle-filters .mont-icon,
.epl-search-toggle-filters-mobile .mont-icon {
  margin-left: 2.9em;
}

.epl-search-toggle-filters .mont-icon > *,
.epl-search-toggle-filters-mobile > * {
  width: 1.1em;
}

.epl-search-clear-filters span,
.epl-search-toggle-filters span,
.epl-search-toggle-filters-mobile span {
  cursor: pointer;
}

.mont-search-title {
  font-family: var(--mont-font-family);
  text-transform: uppercase;
  text-align: right;
  font-weight: bold;
  color: var(--mont-blue-alt);
  position: absolute;
  right: 0;
  top: 30px;
  margin: 0;
}

.mont-search-title .mont-icon {
  float: left;
  margin-right: 10px;
}

.mont-tab-section-container {
  margin-top: -92px;
  position: relative;
}

.mont-tab-section-container .epl_ui_tab_content {
  background: transparent;
  margin: 0;
  padding: 0;
}

.element-is-sticky .mont-home-search-wrap .epl-search-slim .epl-search-row {
  margin: 10px 0 0;
}

.element-is-sticky .epl-search-clear-filters {
  margin: 10px 0 0;
}

.element-is-sticky .epl-search-toggle-filters {
  margin-top: 10px;
}

.element-is-sticky .epl-toggle-filter-content {
  border-bottom: none;
}

/********************************************

    Archive Background

********************************************/
.mont-hero-archive-background-wrapper {
  background: url(images/home-design.jpg);
  height: 650px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.mont-hero-archive-background-wrapper .eplbt-module-outer-wrapper {
  max-width: 100%;
}

.mont-hero-archive-background-wrapper .site-page-hero-block-details h2 {
  max-width: 100%;
}

.mont-hero-archive-background-wrapper .mont-image-tools a {
  max-width: unset;
}

.mont-home-design-tab-section-wrapper {
  background: var(--mont-white);
  width: 100%;
  padding-top: 2em;
  display: block;
  margin: 0;
}

.mont-section-divider {
  border-bottom: 1px solid var(--mont-blue-alt);
  padding-top: 7em;
  position: relative;
  top: -35px;
  margin: 0;
  border-top: none;
}

#mont-level-sites,
#mont-sloping-sites {
  margin: 2em 0 0;
}

.mont-home-design-tabs {
  float: left;
}

.mont-home-design-tabs .epl_ui_tab_menu .mont-tab-designs {
  display: block;
  font-size: 15px;
}

.mont-home-design-tabs .epl_ui_tab_menu .mont-tab-sites {
  text-transform: uppercase;
  display: block;
  font-weight: bold;
  font-size: 17px;
}

.mont-home-design-tabs ul.epl_ui_tab_menu_wrapper {
  overflow: hidden;
}

.mont-home-design-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu {
  margin: 0;
  float: left;
  position: relative;
  width: 265px;
  padding: 5px 12px 2px;
  border: 1px solid var(--mont-blue-alt);
  border-right: none;
  border-bottom: none;
}

.mont-home-design-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu_current {
  border: 1px solid var(--mont-blue-alt);
  border-bottom: 1px solid #ffffff;
  border-right: none;
  border-bottom: none;
}

.mont-home-design-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu.mont-tab-all-sites {
  background: var(--mont-white);
  color: var(--mont-blue-alt);
}

.mont-home-design-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu.mont-tab-all-sites a {
  color: var(--mont-blue-alt);
}

.mont-home-design-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu.mont-tab-level-sites {
  background: var(--mont-orange);
  color: var(--mont-white);
}

.mont-home-design-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu.mont-tab-level-sites a {
  color: var(--mont-white);
}

.mont-home-design-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu.mont-tab-sloping-sites {
  background: var(--mont-blue-alt);
  color: var(--mont-white);
}

.mont-home-design-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu.mont-tab-sloping-sites a {
  color: var(--mont-white);
}

.mont-home-design-tabs .epl_ui_tab_menu > a:hover {
  color: inherit;
  text-decoration: none;
  font-weight: normal;
}

.mont-home-design-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu a:focus,
.mont-home-design-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu a:hover {
  text-decoration: none;
}

.mont-home-design-tabs .mont-icon {
  font-size: 35px;
  margin-top: -1px;
}

.mont-home-design-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu a {
  display: flex;
  justify-content: space-between;
}

.mont-tab-title {
  margin: 4px 0 0 16px;
  padding: 0;
  line-height: 1.2;
}

.mont-icon-left {
  display: flex;
}

.mont-icon-wrapper {
  overflow: hidden;
}

.mont-icon-right {
  display: flex;
  align-items: center;
}

.mont-icon-right .mont-icon {
  margin-top: 15px;
  font-size: 15px;
  top: 20px;
}

.mont-level-list {
  list-style: none;
  display: flex;
  padding: 0;
  margin: 0;
}

.mont-level-list > li:first-child {
  margin-left: 0;
}

.mont-level-list > li:last-child {
  margin-right: 0;
}

.mont-level-item {
  flex: 1;
  width: 100%;
  margin: 0 10px;
}

.mont-level-list a,
.mont-level-list a:focus,
.mont-level-list a:active,
.mont-level-list a:hover {
  color: var(--mont-white);
  background: var(--mont-orange);
  padding: 15px;
  font-weight: bold;
  text-decoration: none;
  width: 100%;
  display: block;
  height: 100%;
}

.mont-level-item .mont-icon {
  font-size: 20px;
  margin-top: -3px;
}

.mont-level-list.mont-sloping-list a,
.mont-level-list.mont-sloping-list a:focus,
.mont-level-list.mont-sloping-list a:active,
.mont-level-list.mont-sloping-list a:hover {
  background: var(--mont-blue-alt);
}

/*********************************
	Featured Home Template
*********************************/
.mont-featured-listing-section-outer-wrapper {
  /* padding-top: 4em; */
  /* padding-bottom: 4em; */
}

.mont-featured-section-title {
  color: var(--mont-white);
  font-family: var(--mont-font-family-display);
  font-size: 6.2em;
  padding-bottom: 60px;
  text-align: center;
  margin: 0;
}

.epl-property-blog-mont-featured .epl-stickers-wrapper {
  display: none;
}

.epl-property-blog-mont-featured {
  background: transparent !important;
}

.epl-property-blog-mont-featured .epl-property-blog-entry-wrapper {
  display: grid;
  grid-template-columns: 390px 1fr;
  grid-gap: 2em;
  background: transparent;
  box-shadow: none;
}

.epl-property-blog-mont-featured .epl-icon-container-land {
  display: none;
}

.epl-property-blog-mont-featured .entry-title {
  margin-top: 1em;
  text-transform: uppercase;
}

.epl-property-blog-mont-featured .mont-excerpt-title {
  margin: 1.4em 0;
  font-size: 1.33em;
  font-weight: bold;
  color: var(--mont-blue-alt);
}

.epl-property-blog-mont-featured .mont-excerpt {
  margin-bottom: 2.6em;
  color: var(--mont-light-grey);
  font-size: 1.05em;
  line-height: 1.7;
  text-align: left;
}

.epl-property-blog-mont-featured .property-box {
  width: 100%;
}

.epl-property-blog-mont-featured .property-box-content {
  grid-row: 1;
}

.epl-property-blog-mont-featured .property-box-image {
  margin: 0;
  padding: 0;
  display: grid;
  grid-gap: 12px;
  grid-template-columns: 1fr 1fr 294px;
  grid-template-rows: 194px 194px;
  /* grid-template-rows: 146px 146px; tried */
  grid-auto-flow: dense;
}

.epl-property-blog-mont-featured .mont-featured-slide-image-main {
  grid-column: span 2;
  grid-row: span 2;
  overflow: hidden;
}

.epl-property-blog-mont-featured .mont-featured-slide-image-main img,
.epl-property-blog-mont-featured .mont-featured-slide-image-second img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.epl-property-blog-mont-featured .mont-featured-slide-image-second {
  overflow: hidden;
}

.epl-property-blog-mont-featured .mont-featured-slide-image-gallery-carousel,
.epl-property-blog-mont-featured .mont-featured-slide-image-gallery {
  width: auto;
  height: auto;
  max-width: 294px;
  max-height: 194px;
  overflow: hidden;
}

.epl-property-blog-mont-featured .epl-archive-entry-image,
.epl-property-blog-mont-featured .epl-archive-entry-image .epl-blog-image,
.epl-property-blog-mont-featured .epl-archive-entry-image a,
.epl-property-blog-mont-featured .epl-archive-entry-image img {
  height: 100%;
}

.epl-blog-image__link {
  position: absolute;
  inset: 0;
}

.epl-property-blog-mont-featured .epl-slick-carousel .slick-prev,
.epl-property-blog-mont-featured .epl-slick-carousel .slick-next {
  top: auto !important;
  bottom: 0 !important;
}

.epl-property-blog-mont-featured .epl-slick-carousel .slick-next {
  right: 20px !important;
}

.epl-property-blog-mont-featured .epl-slick-carousel .slick-prev {
  left: auto !important;
  right: 65px !important;
  transform: rotate(-90deg) !important;
}

/* Responsive */
@media screen and (max-width: 1160px) {
  .epl-property-blog-mont-featured .epl-property-blog-entry-wrapper {
    grid-template-columns: 1fr 600px;
  }
  .epl-property-blog-mont-featured .property-box-image {
    display: block;
  }
  .epl-property-blog-mont-featured .mont-featured-slide-image-second {
    display: none;
  }
  .epl-property-blog-mont-featured .mont-featured-slide-image-gallery-carousel,
  .epl-property-blog-mont-featured .mont-featured-slide-image-gallery {
    width: 600px;
    max-width: 100%;
    max-height: 100%;
  }
  .epl-property-blog-mont-featured .epl-slick-carousel .slick-prev,
  .epl-property-blog-mont-featured .epl-slick-carousel .slick-next {
    top: 260px !important;
  }
}
@media screen and (max-width: 980px) {
  .epl-property-blog-mont-featured .epl-property-blog-entry-wrapper {
    grid-template-columns: auto;
    display: block;
  }
  .epl-property-blog-mont-featured .mont-featured-slide-image-main {
    margin-bottom: 2em;
  }
}
@media screen and (max-width: 700px) {
  .epl-property-blog-mont-featured .epl-slick-carousel .slick-prev,
  .epl-property-blog-mont-featured .epl-slick-carousel .slick-next {
    top: calc(300px - 15%) !important;
  }
}
@media screen and (max-width: 570px) {
  .epl-property-blog-mont-featured .epl-slick-carousel .slick-prev,
  .epl-property-blog-mont-featured .epl-slick-carousel .slick-next {
    top: auto !important;
    bottom: 12vw !important;
  }
}
/*********************************
	END - Featured Home Template
*********************************/
.epl-slick-featured-item .slick-prev.slick-arrow {
  top: unset;
  bottom: 15%;
  right: 4%;
  left: unset !important;
}

.epl-slick-featured-item .slick-next.slick-arrow {
  bottom: 20%;
  top: unset;
  transform: unset;
}

.property-feature-icons .epl-fav-button-wrap {
  display: none;
}

.property-feature-icons .epl-fav-button-wrap-active {
  display: none;
}

.epl-entry-box-container-house-land {
  padding: 50px 0;
  text-align: center;
}

.house-land-section-heading {
  margin-bottom: 1em;
  color: var(--mont-blue-alt);
  text-align: center;
}

.mont-module-title.house-land-section-heading a {
  text-decoration: underline;
}

.house-land-section-btn {
  background: var(--mont-blue-alt);
  padding: 1em 1.6em;
  color: var(--mont-white);
  display: inline-block;
  font-weight: bold;
  text-align: center;
}

.house-land-section-btn:hover {
  text-decoration: none;
  color: var(--mont-white);
  background: var(--mont-orange);
}

.house-land-section-btn .mont-icon {
  margin-left: 3em;
}

/*********************************
    Home Carousel
*********************************/
.epl-mont-carousel-tabs .epl_ui_tab_content {
  overflow: hidden;
  margin-bottom: 0;
  padding: 0;
  margin-left: -0.5em;
  margin-right: -0.5em;
}

.epl-mont-carousel-tabs .epl-listing-post {
  margin: 10px;
}

.epl-mont-carousel-tabs .epl_ui_tab_menu .mont-tab-designs {
  display: block;
  font-size: 15px;
}

.epl-mont-carousel-tabs .epl_ui_tab_menu .mont-tab-sites {
  text-transform: uppercase;
  display: block;
  font-weight: bold;
  font-size: 17px;
}

.epl-mont-carousel-tabs ul.epl_ui_tab_menu_wrapper {
  overflow: hidden;
}

.epl-mont-carousel-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu {
  margin: 0;
  float: left;
  position: relative;
  padding: 10px 20px;
  border: 1px solid var(--mont-blue-alt);
  border-right: none;
  border-bottom: none;
}

.epl-mont-carousel-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu:last-child {
  border-right: 1px solid var(--mont-blue-alt);
}

.epl-mont-carousel-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu_current {
  border: 1px solid var(--mont-blue-alt);
  border-bottom: 1px solid #ffffff;
  border-right: none;
  border-bottom: none;
}

.epl-mont-carousel-tabs ul.epl_ui_tab_menu_wrapper {
  max-width: unset !important;
  border-bottom: 1px solid;
  padding-left: 30px;
}

.epl-mont-carousel-tabs .epl_ui_tab_menu > a:hover {
  color: inherit;
  text-decoration: none;
  font-weight: normal;
}

.epl-mont-carousel-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu a:focus,
.epl-mont-carousel-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu a:hover {
  text-decoration: none;
}

.epl-mont-carousel-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu a {
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  color: var(--mont-blue-alt);
  font-weight: bold;
}

#epl-tabs-shortcode-wrapper-epl-mont-carousel-tabs .epl-template-blog {
  padding: 0 0 3em !important;
}

#epl-tabs-shortcode-wrapper-epl-mont-carousel-tabs .epl-slick-carousel .slick-prev,
#epl-tabs-shortcode-wrapper-epl-mont-carousel-tabs .epl-slick-carousel .slick-next {
  width: 38px !important;
  height: 38px;
  top: auto !important;
  bottom: 0 !important;
  background: url("images/circle-arrow-blue.svg") no-repeat !important;
}

#epl-tabs-shortcode-wrapper-epl-mont-carousel-tabs .epl-slick-carousel .slick-next {
  right: 20px !important;
  left: 50%;
}

#epl-tabs-shortcode-wrapper-epl-mont-carousel-tabs .epl-slick-carousel .slick-prev {
  left: auto !important;
  right: 50% !important;
  transform: rotate(-90deg) !important;
}

@media screen and (max-width: 500px) {
  #epl-tabs-shortcode-wrapper-epl-mont-carousel-tabs .epl-property-blog {
    width: auto;
    max-width: unset;
    margin: 1em auto 3em;
    float: left;
    clear: unset;
  }
  .epl-mont-carousel-tabs ul.epl_ui_tab_menu_wrapper {
    padding-left: 0;
    font-size: 0.7em;
  }
}
/*********************************
    Other
*********************************/
.mont-label-minus-icon {
  display: none;
}

.epl-search-toggle-filters-mobile .mont-label-minus-icon {
  display: inherit;
}

.epl-search-toggle-filters-mobile .mont-label-plus-icon {
  display: none;
}

.dev-usage {
  background: #ccc;
  border: 3px solid #aaa;
  border-radius: 6px;
  padding: 1em;
  margin: 1em;
  display: inline-block;
  /** Hidden for now **/
  display: none;
}

.dev-usage a {
  color: red;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
  max-width: 800px;
  margin: 2em auto;
  border: 3px solid orange;
  padding: 2em;
  background: #fff2db;
}

button.epl-map-btn.epl-am-street-view {
  display: none;
}

.pswp_alt_bg {
  background: #fff !important;
}

.eplzoom-wrapper-fullscreen {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
}

.compare-carousel-image,
.compare-carousel-floorplan,
.compare-carousel-display-home {
  margin: 10px 0;
}

.compare-carousel-display-home a {
  display: block;
  text-align: center;
  margin: 10px 0;
}

@media screen and (max-width: 500px) {
  .epl-compare-table-view {
    display: none;
  }
  .ms-options-wrap > .ms-options > ul input[type=checkbox] {
    left: 0px;
  }
}
@media screen and (min-width: 500px) {
  .epl-compare-carousel-view {
    display: none;
  }
}
.epl-compare-carousel-view .epl-slick-carousel .slick-prev,
.epl-compare-carousel-view .epl-slick-carousel .slick-next {
  transform: unset !important;
}

.epl-compare-carousel-view .epl-slick-carousel .slick-prev {
  left: 40% !important;
}

.epl-compare-carousel-view .epl-slick-carousel .slick-next {
  right: 40% !important;
}

/** Optional switch **/
.mont-optional-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
}

/* Hide default HTML checkbox */
.mont-optional-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.mont-optional-switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 34px;
}

.mont-optional-switch-slider:before {
  position: absolute;
  content: "";
  height: 13px;
  width: 13px;
  left: 2px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 50%;
}

.mont-optional-switch input:checked + .mont-optional-switch-slider {
  background-color: #001e42;
}

.mont-optional-switch input:focus + .mont-optional-switch-slider {
  box-shadow: 0 0 1px #2196f3;
}

.mont-optional-switch input:checked + .mont-optional-switch-slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  left: -2px;
}

.epl-display-home-blog .epl-slick-carousel {
  padding: 0px !important;
}

.epl-display-home-blog .epl-slick-carousel .slick-prev::before,
.epl-display-home-blog .epl-slick-carousel .slick-next::before {
  font-size: 0px !important;
}

@media screen and (min-width: 990px) {
  #facades,
  #floor-plans,
  #more,
  #book {
    scroll-margin-top: 200px;
  }
}
.epl-search-not-found {
  grid-column: 1/-1;
}

/*** END EPL Mont Styles ***/
/** Developer Styles **/
.epl-search-form.epl-sb-current {
  display: none;
}

.mont-listing-search-tabs ul li:last-child,
.mont-listing-view-tabs ul li:last-child {
  border-right: 1px solid !important;
}

.mont-listing-search-tabs .mont-icon-right .mont-icon,
.mont-listing-view-tabs .mont-icon-right .mont-icon {
  margin-top: 0px;
}

.mont-listing-search-tabs .mont-tab-title,
.mont-listing-view-tabs .mont-tab-title {
  margin: 15px;
}

.mont-listing-search-tabs > div {
  margin: 2em 0 !important;
}

.mont-search-tabs.mont-listing-search-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu.mont-tab-all-sites {
  background: var(--mont-tint);
}

.mont-search-tabs.mont-listing-search-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu_current {
  background: var(--mont-white) !important;
}

.mont-search-tabs.mont-listing-view-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu.mont-tab-all-sites {
  background: var(--mont-tint-dark);
  border-bottom: 2px solid var(--mont-blue);
}

.mont-listing-view-tabs .epl_ui_tab_content {
  background: transparent;
}

.mont-search-tabs.mont-listing-view-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu_current {
  background: transparent !important;
  border-bottom: 2px solid var(--mont-tint) !important;
}

.mont-listing-view-tabs > ul {
  display: flex;
  justify-content: flex-end;
  margin-top: -68px;
  margin-right: 10%;
}

.mont-listing-view-tabs > div {
  margin: 60px 0 0 0;
  padding: 0;
}

.mont-listing-view-tabs .epl-am-half-map-right-wrap {
  float: left;
}

.epl-am-half-map-right-wrap .epl-loop-tools-wrap {
  display: none;
}

.mont-listing-view-tabs .epl-am-half-map-left-wrap {
  float: right;
}

@media (min-width: 1201px) {
  .mont-listing-view-tabs .epl-am-half-map-left-wrap {
    width: calc(100% - 500px);
  }
  .mont-listing-view-tabs .epl-am-half-map-right-wrap {
    width: 500px;
  }
}
.mont-listing-view-tabs .epl-am-map-wrapper,
.mont-listing-view-tabs #epl-advanced-map {
  height: 100%;
}

.mont-list-bordered a,
.mont-list-bordered a:focus,
.mont-list-bordered a:active,
.mont-list-bordered a:hover {
  color: var(--mont-light-grey);
  border: 2px solid var(--mont-light-grey);
  padding: 15px;
  font-weight: bold;
  text-decoration: none;
  width: 100%;
  display: block;
  height: 100%;
  background: unset;
  text-align: center;
  text-transform: uppercase;
  min-width: 200px;
}

.mont-list-bordered.mont-level-list {
  flex-wrap: wrap;
}

.mont-list-bordered .mont-list-item {
  flex: 0;
}

.mont-featured-slide-right {
  width: 70.5%;
}

.mont-featured-slide-image-main .epl-stickers-wrapper {
  display: none;
}

/**
* need to override this in style.css
**/
.mont-featured-slide-image-thumb {
  flex: 0 0 33% !important;
  flex-wrap: wrap;
  max-width: 33%;
  flex-direction: row;
}

.mont-gallery-slide-image-thumb-item > img {
  width: 100%;
}

.mont-gallery-slide-image-thumb {
  max-width: 50%;
}

button.pswp__button--arrow--right:active,
button.pswp__button--arrow--left:active,
button.pswp__button--arrow--right:focus,
button.pswp__button--arrow--left:focus {
  top: 50% !important;
  position: absolute;
}

.rec-loader {
  background-image: url("./images/loader.gif");
  background-repeat: no-repeat;
  background-position: 70% 50%;
  background-size: 30px;
}

.mont-design-container.mont-lr-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.mont-right-container-item {
  flex: 0 0 auto;
}

@media screen and (max-width: 600px) {
  .mont-design.mont-design-enquire.epl-hide-above-mobile {
    margin: 1em 0 0em !important;
  }
  .mont-right-container-item .entry-tools {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 10px;
  }
  .mont-right-container-item .epl-fav-button-wrap {
    display: flex;
    padding: 0 0px;
  }
}
body .epl-map-btn,
body button.epl-map-btn {
  background-color: rgba(0, 30, 66, 0.75);
}
body .epl-map-btn:hover,
body button.epl-map-btn:hover {
  background-color: rgba(216, 83, 48, 0.75);
}

.epl-button {
  display: inline-block;
  margin: 0;
  padding: 1em 1.6em;
  box-shadow: none;
  background: var(--epl-color-secondary);
  color: var(--epl-color-white);
  font-family: var(--epl-font-family-secondary);
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.255;
  text-decoration: none;
  text-transform: none;
  text-align: left;
  border: 1px solid var(--epl-color-secondary);
  border-style: solid;
  border-radius: 0;
}
.epl-button:hover {
  background: var(--epl-color-tertiary);
  color: var(--epl-color-white);
  box-shadow: none;
  text-transform: none;
  text-decoration: none;
  border: 1px solid var(--epl-color-tertiary);
  border-style: solid;
  border-radius: 0;
}
.epl-button:focus {
  background: transparent;
  color: var(--epl-color-white);
  box-shadow: none;
  text-transform: none;
  text-decoration: none;
  border: 1px solid var(--epl-color-grey-e7);
  border-style: solid;
  border-radius: 0;
}
.epl-button--outline {
  background: transparent;
  color: var(--epl-color-secondary);
  border-color: var(--epl-color-secondary);
}
.epl-button--outline:hover {
  background: transparent;
  color: var(--epl-color-tertiary);
  border-color: var(--epl-color-tertiary);
}
.epl-button--outline:focus {
  background: transparent;
  color: var(--epl-color-tertiary);
  border-color: var(--epl-color-tertiary);
}
.epl-button--alternate {
  background: var(--epl-color-accent);
  color: var(--epl-color-secondary);
  border-color: var(--epl-color-primary);
}
.epl-button--alternate:hover {
  background: var(--epl-color-white);
  color: var(--epl-color-primary);
  border-color: var(--epl-color-primary);
}
.epl-button--alternate:focus {
  background: var(--epl-color-grey-e7);
  color: var(--epl-color-grey-e7);
  border-color: var(--epl-color-primary);
}

/*********************************
	Archive - Estate
*********************************/
.estate-grid.grid-4-col {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

/** Overall container width **/
@media screen and (min-width: 1100px) {
  body .epl-fl-archive.container.epl-template-fl-archive-estate {
    width: 1440px;
    padding-left: 2em;
    padding-right: 2em;
  }
}
.epl-template-estate {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  grid-gap: 1.2em;
}

/** Grid **/
@media screen and (min-width: 1500px) {
  .epl-template-estate {
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  }
}
.epl-estate-blog.hentry {
  background: #ffffff;
  cursor: pointer;
  padding: 0.5em 1.5em 1.5em;
}

.epl-estate-blog .property-featured-image-wrapper {
  text-align: center;
  height: 200px;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}

.epl-estate-blog .property-content {
  margin-top: 0;
  display: flex;
  flex-direction: column;
}

.epl-estate-blog .entry-title {
  margin-bottom: 1em;
}

.epl-estate-blog .entry-content {
  margin: 0.4em 0 1em;
  font-size: 1.5em;
  color: var(--mont-blue);
}
.epl-estate-blog .entry-content p {
  margin: 0;
  font-size: 0.8em;
}

.epl-estate-blog .property-address {
  font-size: 1.1em;
  margin: auto 0 0;
}

/*********************************
    Single Estate
*********************************/
.single-estate .mont-design-enquire {
  justify-content: center;
}

.epl-grid--single-estate {
  align-items: center;
  grid-template-columns: 1fr 2fr;
}
@media screen and (max-width: 786px) {
  .epl-grid--single-estate {
    grid-template-columns: 1fr;
  }
}

.epl-estate-single .epl-estate-entry-content {
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
}

.epl-estate-single .epl-estate-entry-content h3 {
  font-family: var(--mont-font-family);
}

.epl-estate-single .epl-estate-entry-content .epl-entry-content h3 {
  font-family: var(--mont-font-family);
  font-weight: bold;
  text-transform: uppercase;
  color: var(--mont-blue);
}

.epl-estate-single .epl-estate-entry-content .epl-featured-image {
  margin: 7em 0 4em;
}

.mont-design-enquire {
  width: 100%;
  margin: 1em 0 2em;
  display: flex;
  justify-content: flex-start;
}

.mont-design-enquire a {
  background: var(--mont-blue);
  padding: 1em 1.6em;
  color: var(--mont-white);
  margin: 0;
}

.mont-design-enquire a:hover {
  text-decoration: none;
  color: var(--mont-white);
  background: var(--mont-orange);
}

.mont-design-enquire .mont-icon {
  margin-left: 3em;
}

.mont-estate-details {
  margin-bottom: 1em;
}

.mont-estate-details .epl-author-box-outer-wrapper {
  justify-content: center;
  border-bottom: none;
  padding: 0;
}

.mont-estate-details .mont-module-title {
  margin-top: 0;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}

.mont-estate-details .mont-estate-agent-details {
  display: flex;
  justify-content: center;
}

.mont-estate-details .mont-estate-agent-phone {
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid var(--mont-blue);
}

/*********************************
	Attractions Module
*********************************/
.epl-estate-attractions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  color: var(--mont-blue);
  font-weight: bold;
  font-size: 1.3em;
}

.epl-estate-attractions .epl-tax-feature::before,
.epl-estate-attractions .epl-tax-tax_attraction::before {
  content: "";
  width: 100px;
  height: 100px;
  display: block;
  margin: 0 auto;
  margin-bottom: 1em;
  background: transparent url(images/attractions-bike.svg) no-repeat;
}

.epl-tax-feature.hospitals::before,
.epl-tax-tax_attraction.hospitals::before {
  background: transparent url(images/attractions-hospital.svg) no-repeat;
}

.epl-tax-feature.lakes-beaches::before,
.epl-tax-tax_attraction.lakes-beaches::before {
  background: transparent url(images/attractions-beach.svg) no-repeat;
}

.epl-tax-feature.parks::before,
.epl-tax-tax_attraction.parks::before {
  background: transparent url(images/attractions-parks.svg) no-repeat;
}

.epl-tax-feature.schools::before,
.epl-tax-tax_attraction.schools::before {
  background: transparent url(images/attractions-schools.svg) no-repeat;
}

.epl-tax-feature.shops::before,
.epl-tax-tax_attraction.shops::before {
  background: transparent url(images/attractions-shops.svg) no-repeat;
}

.epl-tax-feature.trains::before,
.epl-tax-tax_attraction.trains::before {
  background: transparent url(images/attractions-transport.svg) no-repeat;
}

.mont-gallery-module-estate {
  margin-top: 2em;
}

.mont-gallery-module .mont-gallery .epl-slick-carousel {
  padding: 0 !important;
  max-width: 1020px;
  margin: 0 auto;
}

.entry-estate-contact .mont-module {
  margin: 2em 0;
}

.epl-listing-single .entry-content .epl-element-outer-wrapper {
  position: relative;
  overflow: visible;
}
.epl-listing-single .entry-content .epl-entry-box-container {
  overflow: visible;
}

.epl-element--inclusions {
  position: absolute;
  top: -15px;
  right: 0;
}
@media screen and (max-width: 500px) {
  .epl-element--inclusions {
    top: -10px;
  }
}
.epl-element--inclusions span {
  display: none;
}
.epl-element--inclusions img {
  max-width: 100px;
}
@media screen and (max-width: 1027px) {
  .epl-element--inclusions img {
    max-width: 100px;
  }
}
@media screen and (max-width: 500px) {
  .epl-element--inclusions img {
    max-width: 60px;
  }
}

#epl-icon-svg-floor-flip .epl-icon-color-frame {
  fill: var(--mont-orange);
}

.mont-floor-plan-module .epl_ui_tab_wrapper {
  overflow: hidden;
}

.mont-floor-plan {
  padding: 0;
  margin: 0;
}

.mont-floor-plan .eplzoom-controls-bottom .epl-label {
  display: none;
}

/** Content with Sidebar **/
@media screen and (min-width: 880px) {
  .mont-floor-plan .epl-element-outer-wrapper.epl-right {
    width: 77%;
    margin-left: 23%;
    background: var(--mont-white);
    float: left !important;
    margin-right: -100%;
  }
  /** Sidebar **/
  .mont-floor-plan .epl-sidebar-outer-wrapper.epl-left {
    width: 23%;
    margin-left: 0;
    float: left !important;
    margin-right: -100%;
  }
}
@media screen and (min-width: 601px) and (max-width: 879px) {
  .mont-floor-plan .epl-element-outer-wrapper.epl-right {
    width: 65%;
    margin-left: 35%;
    float: left !important;
    margin-right: -100%;
  }
  /** Sidebar **/
  .mont-floor-plan .epl-sidebar-outer-wrapper.epl-left {
    width: 35%;
    margin-left: 0;
    float: left !important;
    margin-right: -100%;
  }
}
@media screen and (min-width: 500px) and (max-width: 600px) {
  .mont-floor-plan .epl-element-outer-wrapper.epl-right {
    width: 100%;
    margin-left: 0%;
    float: none !important;
    margin-right: -100%;
  }
  /** Sidebar **/
  .mont-floor-plan .epl-sidebar-outer-wrapper.epl-left {
    width: 100%;
    margin-left: 0;
    float: none !important;
    margin-right: -100%;
  }
  .mont-floor-plan .mont-floor-plan-module {
    display: flex;
    flex-direction: column-reverse;
  }
}
.mont-floor-plan-entry-header {
  /* border-bottom: 1px solid var(--mont-blue); */
  margin-bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

.mont-floor-plan-main-title,
.mont-floor-plan-title {
  font-family: var(--mont-font-family);
  color: var(--mont-blue);
  font-size: 1.2em;
  font-weight: bold;
}

.mont-floor-plan-main-title {
  font-family: var(--mont-font-family);
  font-size: 2.5em;
  padding-left: 0;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  line-height: 1.8;
}

h5.mont-floor-plan-title {
  font-size: 1.8em;
  margin-top: 0;
}

.mont-floor-plan .property-feature-icons {
  margin: 0.5em 0 1em;
}

.mont-floor-plan-sizes-title {
  font-family: var(--mont-font-family);
  font-size: 1.7em;
  color: var(--mont-blue);
  font-weight: bold;
  margin-bottom: 0.3em;
}

@media screen and (max-width: 1023px) {
  .mont-floor-plan-main-title,
  .mont-floor-plan-tabs {
    width: 100%;
    /* background: pink; */
  }
}
.mont-floor-plan .mont-floor-plan-module {
  border: 1px solid var(--mont-blue);
  overflow: hidden;
  background: var(--mont-tint);
}

.mont-floor-plan-module-sidebar-outer-wrapper {
  background: var(--mont-tint);
}

.mont-floor-plan-module-sidebar {
  padding: 1.7em 1em 1em;
}

.mont-floor-plan-widget {
  border-bottom: 1px solid var(--mont-blue);
  padding: 1em 0;
  line-height: 1.6;
}

.mont-floor-plan-widget-plan-section {
  padding: 1.7em 1em 1em !important;
  background: var(--mont-tint);
  border-bottom: none;
}

.mont-floor-plan-hide-desktop {
  display: none;
}

.mont-floor-plan-show-desktop {
  display: block;
}

@media screen and (max-width: 500px) {
  .mont-floor-plan-hide-mobile {
    display: none;
  }
  .mont-floor-plan-show-mobile {
    display: block;
  }
}
.mont-floor-plan-widget:first-child {
  padding-top: 0;
}

.mont-floor-plan-widget:last-child,
.mont-floor-plan-widget .mont-single-widget {
  border-bottom: none;
}

.mont-floor-plan-widget .mont-single-widget .epl-block-widget-container {
  border-right: none;
}

.mont-floor-plan-widget ul {
  margin-bottom: 0;
}

.mont-floor-plan-widget .mont-value {
  float: right;
}

.mont-floor-plan-widget-specifics ul {
  padding-left: 0;
}

.mont-floor-plan-widget-specifics li {
  list-style: none;
}

.mont-floor-plan-widget-features ul {
  padding-left: 1.1em;
}

.mont-floor-plan-widget .epl-icon-container-wide,
.mont-floor-plan-widget .epl-icon-container-deep,
.mont-floor-plan-widget .epl-icon-container-land,
.mont-floor-plan-widget .epl-icon-container-lot {
  display: none;
}

.mont-floor-plan-type-granny-flat {
  display: none;
}

/****** Floor Plan Tabs *******/
.mont-floor-plan-tabs {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}

.mont-floor-plan-tabs ul {
  margin-bottom: 0;
  margin-right: 4px;
  margin-left: 2em;
  border-top: 1px solid var(--mont-blue);
}

.mont-floor-plan-tabs ul li {
  background: var(--mont-tint);
  padding: 0.6em 1em;
  list-style: none;
  display: inline-block;
  margin-right: -4px;
  border-top: 1px solid var(--mont-blue);
  border-left: 1px solid var(--mont-blue);
}

.mont-floor-plan-tabs ul li:last-child {
  border-right: 1px solid var(--mont-blue);
}

.mont-floor-plan-tabs .mont-icon {
  margin-left: 2.5em;
}

.mont-floor-plan-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu {
  background: var(--mont-tint);
  padding: 0.6em 1.2em;
  font-size: 1.2em;
  list-style: none;
  display: inline-block;
  margin-right: -4px;
  border-top: 1px solid var(--mont-blue);
  border-left: 1px solid var(--mont-blue);
}

.mont-floor-plan-tabs .epl_ui_tab_menu > a,
.epl_ui_tab_menu > a:hover {
  color: var(--mont-blue);
  text-decoration: none;
  font-weight: bold;
}

.mont-floor-plan-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu {
  border-bottom: 6px solid var(--mont-tint);
  border-top: 0;
  margin: 0;
  float: left;
}

.mont-floor-plan-tabs ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu_current {
  border-bottom: 6px solid var(--mont-orange);
  background: var(--mont-white);
}

.mont-floor-plan-entry-header {
  padding: 0px;
}

.epl_ui_tab_content {
  background: transparent;
  /*float: left;*/
}

.mont-floor-plan-extra .mont-optional-switch-wrap {
  display: flex;
  justify-content: space-between;
}

/** Responsive **/
@media screen and (max-width: 768px) {
  .mont-floor-plan-tabs {
    font-size: 0.7em;
  }
  h4.mont-floor-plan-title {
    line-height: 1.2;
  }
  .mont-floor-plan .mont-floor-plan-module {
    background: var(--mont-white);
  }
}
@media screen and (max-width: 500px) {
  .mont-floor-plan-entry-header {
    display: block;
  }
  .mont-floor-plan-tabs {
    font-size: 0.6em;
  }
  h4.mont-floor-plan-title {
    line-height: 1.2;
    font-size: 1.2em;
    margin-bottom: 1em;
    padding-left: 0;
  }
  .mont-floor-plan-tabs ul {
    margin-left: 0;
  }
  .mont-floor-plan-tabs .mont-icon {
    margin-left: 1.5em;
  }
  .eplzoom-container {
    margin: 5em 0;
  }
  .mont-floor-plan .mont-floor-plan-module {
    background: var(--mont-white);
    display: flex;
    flex-direction: column-reverse;
  }
  .mont-floor-plan-module-content .eplzoom-controls [data-control],
  .mont-floor-plan-module-content .eplzoom-controls-bottom [data-control] {
    font-size: 2.5em;
  }
  .mont-floor-plan-main-title {
    display: none;
  }
}
/** Ask more **/
.mont-ask-more-button-wrap {
  position: fixed;
  bottom: 65px;
  right: 15px;
  z-index: 9999;
  width: 44px;
}

.mont-ask-more-button a,
.mont-ask-more-button a:hover,
.mont-ask-more-button a:focus {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 0.5em;
  background-color: #d85330;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 20px 10px;
  border-radius: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-transform: uppercase;
}

.mont-ask-more-button a img {
  margin-bottom: 0;
  max-width: 24px;
}

@media screen and (max-width: 600px) {
  .mont-ask-more-button-wrap {
    left: 50%;
    right: initial;
    bottom: 15px;
    transform: translate(-50%, 0);
    min-width: 190px;
    width: auto;
  }
  .mont-ask-more-button a,
  .mont-ask-more-button a:hover,
  .mont-ask-more-button a:focus {
    padding: 10px 20px;
    writing-mode: initial;
  }
}
@media screen and (max-width: 340px) {
  .mont-ask-more-button-wrap {
    left: 20px;
    right: initial;
    transform: unset;
  }
  .mont-ask-more-button a,
  .mont-ask-more-button a:hover,
  .mont-ask-more-button a:focus {
    padding: 10px;
    writing-mode: initial;
  }
}

/*# sourceMappingURL=style-versioned.css.map */
