@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Tenor+Sans&display=swap");
/**
 * EPL Custom Templates CSS
 *
 * @package     EPL-CUSTOM-TEMPLATES
 * @since       2.9.7
 * @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: #091e34;
  --epl-color-primary-light: #091e34;
  --epl-color-primary-opacity: #091e34;
  --epl-color-secondary: #c59734;
  --epl-color-secondary-light: #c59734;
  --epl-color-secondary-opacity: #c59734;
  --epl-color-tertiary: #091e34;
  --epl-color-tertiary-light: #091e34;
  --epl-color-tertiary-opacity: #091e34;
  --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-property-blog .property-box {
  width: initial;
}

@media screen and (max-width: 500px) {
  .epl-property-blog,
  .epl-property-blog.hentry {
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
    float: none;
    clear: both;
  }
}
.epl-single-listing .grid-container.container {
  width: 100%;
  max-width: 100%;
}
.epl-single-listing .site-content,
.epl-single-listing .content {
  display: block;
  width: 100%;
  overflow: hidden;
  margin: 0 auto;
  z-index: initial;
}
/*****************************
	Archive Reset
****************************/
.epl-property-blog-rec,
.epl-property-blog-rec.hentry,
.epl-property-blog-rec.epl-listing-grid-view,
.epl-property-blog-rec.epl-listing-grid-view-forced,
.builder-module-content .epl-listing-grid-view-forced.hentry,
.builder-module-content .epl-listing-grid-view.hentry,
.epl-listing-grid-view,
.epl-listing-grid-view-forced,
.epl-listing-grid-view-forced.hentry,
.epl-listing-grid-view.hentry,
.epl-property-blog.epl-listing-grid-view,
.epl-property-blog.epl-listing-grid-view-forced {
  display: flex;
  float: initial;
  box-sizing: border-box;
  width: initial;
  height: initial;
  max-width: 100%;
  background: initial;
  background: var(--epl-color-white);
  box-shadow: none;
  border: none;
  overflow: hidden;
  font-size: initial;
  vertical-align: initial;
  transition: none;
}

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

.epl-author-box-container {
  margin: 0;
}

.epl-author-box-outer-wrapper {
  margin: 0;
  padding: 0;
  background: initial;
}

.epl-listing-status {
  float: none;
  padding-left: 0;
  text-transform: none;
}

.epl-featured-image a,
.epl-featured-image img {
  display: block;
}

.epl-tab-section {
  margin-top: 0;
}

.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 0 2em;
  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;
}

.epl-property-features li::marker,
.epl-row-wrap--list li::marker {
  content: "";
  color: #78aedf;
  font-size: 0.7em;
}

.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);
  }
}
.epl_search_builder_wrapper {
  width: 100%;
  margin: 0 auto;
  padding: 0 0;
  grid-column: 1/-1;
  position: relative;
  z-index: 2;
}

.epl-search-forms-wrapper {
  overflow: visible;
}

ul.epl-search-tabs {
  margin: 0;
  padding: 0;
}
ul.epl-search-tabs li {
  margin: 0;
  padding: 0.8em 2em;
  background: var(--epl-color-grey-f9);
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--epl-color-primary);
  border-right: none;
  border-bottom: none;
}
ul.epl-search-tabs li.epl-sb-current {
  background: var(--epl-color-black);
  color: var(--epl-color-white);
  border-bottom: none;
  margin-bottom: 0;
}
ul.epl-search-tabs li:last-child {
  border-right: 1px solid var(--epl-color-secondary);
}

.epl-search-form {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  overflow: visible;
  font-family: var(--epl-font-family-primary);
}
.epl-search-form .epl-search-builder-wrapper .epl-search-forms-wrapper,
.epl-search-form .epl-search-builder-wrapper .epl-search-form {
  overflow: visible;
}
.epl-search-form .epl-search-builder__section {
  margin: 0;
  padding: 0;
  background: initial;
  color: var(--epl-color-primary);
  border: 1px solid var(--epl-color-grey-e1);
  border-style: none;
  border-radius: 0;
}
.epl-search-form .epl-search-builder__section:last-child {
  margin-bottom: 0;
}
.epl-search-form .epl-search-builder__section--more-options {
  margin: 0.5em 0 0;
  padding: 0;
  background: transparent;
  color: initial;
  border: 2px solid var(--epl-color-grey-f7);
  border-style: none;
  border-radius: 0;
}
.epl-search-form .epl-search-builder__section--more-options > :nth-last-child(2) {
  margin-bottom: 0;
}
.epl-search-form .epl-search-builder__section--main {
  width: 100%;
}
.epl-search-form .epl-search-builder__row {
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1em;
  width: 100%;
  border: 1px solid var(--epl-color-grey-e1);
  border-style: none;
  border-radius: 0;
  background: transparent;
}
.epl-search-form .epl-search-builder__row__items {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  flex: 0 1 auto;
}
@media screen and (max-width: 600px) {
  .epl-search-form .epl-search-builder__row__items {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.epl-search-form .epl-search-builder__item {
  margin: 0;
  padding: 0;
  flex: 0 1 auto;
  display: flex;
  width: auto;
  min-width: auto;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: initial;
  gap: 0.3rem;
}
.epl-search-form .epl-search-builder__row__closer {
  position: relative;
  color: transparent;
  width: 30px;
  display: inline-block;
}
.epl-search-form .field,
.epl-search-form .epl-search-builder__item--toggle,
.epl-search-form .epl-search-builder__row__title {
  margin: 0;
  padding: 0;
  position: relative;
  transition: all 0.15s;
}
.epl-search-form .field select::after,
.epl-search-form .field .nice-select::after,
.epl-search-form .field .epl-search-builder__button--toggle::after,
.epl-search-form .field .epl-search-builder__row__closer::after,
.epl-search-form .epl-search-builder__item--toggle select::after,
.epl-search-form .epl-search-builder__item--toggle .nice-select::after,
.epl-search-form .epl-search-builder__item--toggle .epl-search-builder__button--toggle::after,
.epl-search-form .epl-search-builder__item--toggle .epl-search-builder__row__closer::after,
.epl-search-form .epl-search-builder__row__title select::after,
.epl-search-form .epl-search-builder__row__title .nice-select::after,
.epl-search-form .epl-search-builder__row__title .epl-search-builder__button--toggle::after,
.epl-search-form .epl-search-builder__row__title .epl-search-builder__row__closer::after {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  top: 55%;
  right: 1em;
  margin-top: -7px;
  border-top: initial;
  border-bottom: 2px solid var(--epl-color-primary);
  border-right: 2px solid var(--epl-color-primary);
  border-left: initial;
  height: 8px;
  width: 8px;
  /**
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;

  **/
  transform: rotate(45);
  transition: all 0.15s;
}
.epl-search-form .field .epl-search-builder__row__closer::after,
.epl-search-form .epl-search-builder__item--toggle .epl-search-builder__row__closer::after,
.epl-search-form .epl-search-builder__row__title .epl-search-builder__row__closer::after {
  right: 5px;
  transform: rotate(45deg);
}
.epl-search-form .field .epl-search-builder__row__closer--open::after,
.epl-search-form .epl-search-builder__item--toggle .epl-search-builder__row__closer--open::after,
.epl-search-form .epl-search-builder__row__title .epl-search-builder__row__closer--open::after {
  top: 20px;
  transform: rotate(225deg);
}
.epl-search-form .field .nice-select.open:after,
.epl-search-form .epl-search-builder__item--toggle .nice-select.open:after,
.epl-search-form .epl-search-builder__row__title .nice-select.open:after {
  top: 47%;
  right: 1em;
  transform: rotate(-135deg);
}
.epl-search-form .field .epl-search-builder__button--toggle::after,
.epl-search-form .epl-search-builder__item--toggle .epl-search-builder__button--toggle::after,
.epl-search-form .epl-search-builder__row__title .epl-search-builder__button--toggle::after {
  top: 18px;
  transform: rotate(45deg);
  transition: all 0.15s ease-in-out;
}
.epl-search-form .field .epl-search-builder__button--toggle-active::after,
.epl-search-form .epl-search-builder__item--toggle .epl-search-builder__button--toggle-active::after,
.epl-search-form .epl-search-builder__row__title .epl-search-builder__button--toggle-active::after {
  top: 21px;
  transform: rotate(-135deg);
}
.epl-search-form .epl-search-row-text .field {
  width: 100%;
}
.epl-search-form .nice-select .list {
  padding: 0 !important;
  max-height: 300px;
  overflow: scroll;
}
.epl-search-form .epl-search-row-select .field,
.epl-search-form .field-width,
.epl-search-form .epl-search-btn {
  width: 100%;
  min-width: auto;
}
.epl-search-form .epl-search-row-options {
  margin-left: auto;
  flex: 0 0 auto;
}
.epl-search-form .epl-search-row-options > * {
  flex: 1 1 auto;
}
.epl-search-form .epl-search-row-options-section {
  flex: 1 0 100%;
}
.epl-search-form .epl-search-label {
  display: block;
  margin: 0;
  margin-top: 0 !important;
  padding: 0;
  min-width: auto;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-primary);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
}
.epl-search-form .epl-search-builder__item--submit .epl-search-label {
  display: none;
}
.epl-search-form .epl-search-builder__section--main .epl-search-label {
  display: none;
  width: auto;
}
.epl-search-form .epl-search-builder__button--toggle-wrap a:hover, .epl-search-form .epl-search-builder__button--toggle-wrap a:focus {
  text-decoration: none;
}
.epl-search-form .in-field {
  display: block;
  margin: 0;
  padding: 0 2em 0 1em;
  background: var(--epl-color-grey);
  color: var(--epl-color-primary);
  min-height: initial;
  height: 40px;
  line-height: 40px;
  outline: none;
  border: 1px solid var(--epl-color-grey);
  border-style: solid;
  border-radius: 3px;
  font-family: var(--epl-font-family-primary);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: none;
}
.epl-search-form .in-field.open {
  border-color: var(--epl-color-secondary);
}
.epl-search-form .epl-search-other {
  display: flex;
  margin: 1em 0 0;
  padding: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.5em;
}
.epl-search-form .epl-search-row-checkbox {
  display: flex;
  align-items: center;
  flex: 0 1 auto;
  gap: 0.5em;
}
.epl-search-form .epl-sb-counter-field {
  background: var(--epl-color-white);
  padding: 0;
  border-radius: 3px;
  display: grid;
  place-items: center;
  border-radius: 0.3em;
  position: relative;
}
.epl-search-form .epl-sb-counter-field > * {
  align-items: center;
}
.epl-search-form .epl-sb-counter-field .x img {
  grid-area: 1/1/4/2;
}
.epl-search-form .epl-sb-counter-field .x .red {
  grid-area: 1/1/2/2;
}
.epl-search-form .epl-sb-counter-field .x .blue {
  grid-area: 3/1/4/2;
}
.epl-search-form .epl-sb-counter-field .in-field {
  padding: 0;
  width: 50px;
  text-align: center;
  height: 1em;
  line-height: 35px;
  grid-area: 1/1/4/2;
}
.epl-search-form .epl-sb-counter-field .epl-sb-counter-controls {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  width: 100px;
  grid-area: 1/1/4/2;
  position: relative;
  z-index: 1;
}
.epl-search-form .epl-sb-counter-field .epl-sb-counter-controls > * {
  -webkit-user-select: none;
  -webkit-touch-callout: none;
  -moz-user-select: none;
  user-select: none;
  transition: background 0.2s ease-in-out;
}
.epl-search-form .epl-sb-counter-field .epl-sb-counter-controls > *:hover {
  background: var(--epl-color-secondary);
}
.epl-search-form .epl-sb-minus,
.epl-search-form .epl-sb-plus {
  background: #f2f2f2;
  border: 1px solid #ddd;
  height: 2em;
  width: 2em;
  background: #f2f2f2;
  border-radius: 0.3em;
  border: 1px solid #ddd;
  font-size: 1em;
  font-weight: bold;
}
.epl-search-form input[type=checkbox] {
  -webkit-appearance: none;
}
.epl-search-form input[type=checkbox]:checked.in-field {
  position: relative;
}
.epl-search-form input[type=checkbox]:checked.in-field::before {
  position: absolute;
  content: "\f00c";
  top: 0;
  left: 0;
  color: var(--epl-color-secondary);
  text-align: center;
  width: 100%;
  font-family: fontawesome;
}
.epl-search-form .epl-search-btn {
  -webkit-appearance: none;
  pointer-events: auto;
  cursor: pointer;
  position: relative;
  margin: 0;
  padding: 0 4em;
  min-height: 0;
  height: 40px;
  line-height: 40px;
  background: var(--epl-color-secondary);
  background-color: var(--epl-color-secondary);
  background-size: 0.6em;
  background-position: 25% center;
  color: var(--epl-color-white);
  border: 1px solid var(--epl-color-secondary);
  border-style: solid;
  border-radius: 3px !important;
  text-transform: none;
  font-family: var(--epl-font-family-secondary);
  font-size: 1.2em;
  font-weight: 400;
  transition: all 0.2s ease-in-out;
}
.epl-search-form .epl-search-btn:hover {
  background: var(--epl-color-secondary);
  background-color: var(--epl-color-alternate);
  background-size: 0.6em;
  background-position: 25% center;
  color: var(--epl-color-white);
  border-color: var(--epl-color-alternate);
  text-decoration: none;
}
.epl-search-form .epl-search-btn:focus {
  background: var(--epl-color-secondary);
  background-color: var(--epl-color-primary);
  background-size: 0.6em;
  background-position: 25% center;
  color: var(--epl-color-white);
  border-color: var(--epl-color-primary);
  text-decoration: none;
}
.epl-search-form .epl-search-builder__button--toggle {
  position: relative;
  -webkit-appearance: none;
  pointer-events: auto;
  cursor: pointer;
  margin: 0 auto 0;
  padding: 0 2.3rem 0 1rem;
  flex-direction: row-reverse;
  justify-content: center;
  min-height: 0;
  height: 40px;
  line-height: 36px;
  text-align: center;
  background-color: var(--epl-color-grey);
  color: var(--epl-color-primary);
  border: 1px solid var(--epl-color-white);
  border-style: solid;
  border-radius: 3px;
  text-transform: uppercase;
  font-family: var(--epl-font-family-primary);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}
.epl-search-form .epl-search-builder__button--toggle:hover {
  background-color: var(--epl-color-grey);
  color: var(--epl-color-primary);
  border-color: var(--epl-color-grey);
}
.epl-search-form ::-moz-placeholder {
  color: var(--epl-color-primary);
  font-weight: 400;
  font-size: 1em;
  opacity: 1;
}
.epl-search-form ::placeholder {
  color: var(--epl-color-primary);
  font-weight: 400;
  font-size: 1em;
  opacity: 1;
}
.epl-search-form :-ms-input-placeholder {
  color: var(--epl-color-primary);
  font-weight: 400;
  font-size: 1em;
  opacity: 1;
}
.epl-search-form ::-ms-input-placeholder {
  color: var(--epl-color-primary);
  font-weight: 400;
  font-size: 1em;
  opacity: 1;
}

.epl-search-builder-arrow-right {
  margin-top: 0;
}

.epl-search-not-found-title {
  max-width: 100% !important;
}

.epl-search-not-found-message {
  margin-top: 3em;
}
.epl-search-not-found-message p {
  text-align: center;
}

.epl-search-builder__button__icon--magnify-plus,
.epl-search-builder__button__icon--magnify-minus {
  border: none;
  border-width: 0;
  display: inline-block;
  padding: 0;
  margin-left: 0;
}
.epl-search-builder__button__icon--magnify-plus::after,
.epl-search-builder__button__icon--magnify-minus::after {
  content: "";
  width: 20px;
  display: block;
  height: 20px;
  font-size: 2em;
  font-style: normal;
  background: url("images/icons/magnify.svg");
}

.epl-search-builder__button__icon--magnify-minus::after {
  background: url("images/icons/fa/magnifying-glass-minus-regular-white.svg");
}

.epl-search-not-found-title {
  margin: 10em 0 0;
  max-width: 100% !important;
}
.epl-search-not-found-title .entry-title {
  text-align: center;
  font-size: 2.6em;
  font-family: var(--epl-font-family-secondary);
  color: var(--epl-color-white);
}

.epl-search-not-found-message {
  margin: 0 0 14em;
}
.epl-search-not-found-message p {
  text-align: center;
  font-size: 1em;
  font-family: var(--epl-font-family-secondary);
  color: var(--epl-color-white);
}
.epl-search-not-found-message p a {
  color: var(--epl-color-accent);
  text-decoration: underline;
}
.epl-search-not-found-message p a:hover {
  color: var(--epl-color-white);
  text-decoration: none;
}

.epl-loop-tool .nice-select {
  margin: 0;
  padding: 0 2em 0 1em;
  background-color: var(--epl-color-grey);
  border-radius: 3px;
  border: 1px solid var(--epl-color-grey);
  border-style: solid;
  font-family: var(--epl-font-family-primary);
  font-size: 1rem;
  font-weight: 400;
  height: 40px;
  line-height: 40px;
  text-transform: uppercase;
}
.epl-loop-tool .nice-select span {
  padding-left: 20px;
}
.epl-loop-tool .nice-select::after {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  top: 55%;
  right: 1em;
  margin-top: -7px;
  border-top: initial;
  border-bottom: 2px solid var(--epl-color-primary);
  border-right: 2px solid var(--epl-color-primary);
  border-left: initial;
  height: 8px;
  width: 8px;
  /**
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;

  **/
  transform: rotate(45);
  transition: all 0.15s;
}
.epl-loop-tool .nice-select.open::after {
  top: 47%;
  right: 1em;
  transform: rotate(-135deg);
}
.epl-loop-tool .nice-select .list {
  padding: 0 !important;
  max-height: 260px;
  overflow: scroll;
}
.epl-search-form .nice-select .list {
  padding: 0 !important;
  max-height: 290px;
  overflow: scroll;
}
.epl-search-form .nice-select .list,
.epl-loop-tool .nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
}
.epl-search-form .nice-select .list:hover .option:not(:hover),
.epl-loop-tool .nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.epl-search-form .nice-select .option,
.epl-loop-tool .nice-select .option {
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  padding-left: 18px;
  padding-right: 29px;
  transition: all 0.2s;
  color: var(--epl-color-secondary);
}
.epl-search-form .nice-select .option.focus,
.epl-loop-tool .nice-select .option.focus {
  background-color: var(--epl-color-secondary);
  color: var(--epl-color-white);
}
.epl-search-form .nice-select .option:hover,
.epl-loop-tool .nice-select .option:hover {
  background-color: var(--epl-color-secondary);
  color: var(--epl-color-white);
}
.epl-search-form .nice-select .option.selected.focus,
.epl-loop-tool .nice-select .option.selected.focus {
  background-color: var(--epl-color-grey-e1);
  color: var(--epl-color-primary);
}
.epl-search-form .nice-select .option.focus:hover,
.epl-loop-tool .nice-select .option.focus:hover {
  background-color: var(--epl-color-secondary);
  color: var(--epl-color-white);
}
.epl-search-form .nice-select .option.selected,
.epl-loop-tool .nice-select .option.selected {
  font-weight: 700;
}
.epl-search-form .nice-select .option.disabled,
.epl-loop-tool .nice-select .option.disabled {
  background-color: transparent;
  color: var(--epl-color-primary);
  cursor: default;
}

@media screen and (max-width: 660px) {
  .epl-tool-switch__label {
    display: none !important;
  }
}
/*********************************************
	Search - Range Slider
*********************************************/
.epl-lf-range-slider {
  display: flex !important;
  margin: 1em 0 0;
  padding: 0;
  flex-direction: column-reverse;
  gap: 0.5em;
  width: auto;
  flex-grow: 1;
}
.epl-lf-range-slider .epl-search-label {
  display: block !important;
  margin: 0;
  padding: 0;
  visibility: hidden;
  min-width: 200px;
}
.epl-lf-range-slider .epl-search-label .epl-lf-label-txt {
  visibility: visible;
  display: block;
  color: var(--epl-color-primary);
  text-align: center;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
}
.epl-lf-range-slider .field {
  margin: 0em 0 0;
  padding: 0 15px;
  position: relative;
  order: -2;
}
.epl-lf-range-slider .ui-slider {
  margin: 0;
  padding: 8px;
  background: #777;
  color: var(--epl-color-secondary);
  box-shadow: -12px 0 0 0 #777, 15px 0 0 0 #777;
  border-radius: 3em;
  border: none;
}
.epl-lf-range-slider .ui-slider-range {
  background: var(--epl-color-accent);
  height: 16px;
}
.epl-lf-range-slider .ui-slider-handle {
  width: 26px;
  height: 26px;
  margin-left: -0.7em;
  top: -3px;
  border: 0.07em solid var(--epl-color-primary);
  background: var(--epl-color-white) !important;
  border-radius: 3em;
  -webkit-clip-path: initial;
          clip-path: initial;
}
.epl-lf-range-slider .ui-slider-handle:last-child {
  transform: initial;
  margin-left: -0.3em;
}

/*********************************************
	Buttons
*********************************************/
.epl-button-wrapper {
  display: flex;
  margin: 1rem 0;
  padding: 0;
  justify-content: flex-start;
  align-items: initial;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 0;
}

.epl-button-wrapper.epl-clearfix::after {
  display: none;
}

.epl-button-wrapper form {
  display: block !important;
}

a.epl-button,
.epl-button,
.epl-map-btn,
button.epl-button,
body input[type=submit].epl-button,
body input[type=button].epl-button {
  display: inline-block;
  margin: 0;
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.2);
  --webkit-border-radius: $epl-button--border-radius;
  border-radius: 0.3rem;
  border: 1px solid var(--epl-color-primary);
  border-color: var(--epl-color-primary);
  border-style: solid;
  box-shadow: none;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-secondary);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  text-decoration: none;
  text-align: left;
  line-height: 1.255;
  white-space: initial;
  transition: all 0.3s;
}
a.epl-button:hover,
.epl-button:hover,
.epl-map-btn:hover,
button.epl-button:hover,
body input[type=submit].epl-button:hover,
body input[type=button].epl-button:hover {
  background: transparent;
  color: var(--epl-color-primary);
  border: 1px solid var(--epl-color-primary);
  border-style: solid;
  border-radius: 0.3rem;
  box-shadow: none;
  text-transform: uppercase;
  text-decoration: none;
}
a.epl-button:focus,
.epl-button:focus,
.epl-map-btn:focus,
button.epl-button:focus,
body input[type=submit].epl-button:focus,
body input[type=button].epl-button:focus {
  background: transparent;
  color: var(--epl-color-white);
  border: 1px solid var(--epl-color-grey-e7);
  border-style: solid;
  border-radius: 0.3rem;
  box-shadow: none;
  text-transform: uppercase;
  text-decoration: none;
  outline: none !important;
}
a.epl-button.epl-button--on-dark,
.epl-button.epl-button--on-dark,
.epl-map-btn.epl-button--on-dark,
button.epl-button.epl-button--on-dark,
body input[type=submit].epl-button.epl-button--on-dark,
body input[type=button].epl-button.epl-button--on-dark {
  background: var(--epl-color-white);
  color: var(--epl-color-primary);
  border-color: var(--epl-color-white);
}
a.epl-button.epl-button--on-dark:hover,
.epl-button.epl-button--on-dark:hover,
.epl-map-btn.epl-button--on-dark:hover,
button.epl-button.epl-button--on-dark:hover,
body input[type=submit].epl-button.epl-button--on-dark:hover,
body input[type=button].epl-button.epl-button--on-dark:hover {
  background: var(--epl-color-secondary);
  color: var(--epl-color-white);
  border-color: var(--epl-color-secondary);
}
a.epl-button.epl-button--on-dark:focus,
.epl-button.epl-button--on-dark:focus,
.epl-map-btn.epl-button--on-dark:focus,
button.epl-button.epl-button--on-dark:focus,
body input[type=submit].epl-button.epl-button--on-dark:focus,
body input[type=button].epl-button.epl-button--on-dark:focus {
  background: var(--epl-color-grey-e7);
  color: var(--epl-color-primary);
  border-color: var(--epl-color-grey-e7);
}

.epl-property-single-rec .epl-fav-button-wrap {
  vertical-align: top;
}

.epl-map-btn {
  font-size: 1rem;
  margin: 0;
  padding: 0.3rem 0.4rem;
}

a.epl-button--outline,
.epl-button--outline,
button.epl-button--outline,
body input[type=submit].epl-button--outline,
body input[type=button].epl-button--outline {
  background: transparent;
  color: var(--epl-color-primary);
  border-color: var(--epl-color-primary);
}
a.epl-button--outline:hover,
.epl-button--outline:hover,
button.epl-button--outline:hover,
body input[type=submit].epl-button--outline:hover,
body input[type=button].epl-button--outline:hover {
  background: var(--epl-color-secondary-opacity);
  color: var(--epl-color-secondary);
  border: 1px solid var(--epl-color-primary);
  border-color: var(--epl-color-secondary);
}
a.epl-button--outline:focus,
.epl-button--outline:focus,
button.epl-button--outline:focus,
body input[type=submit].epl-button--outline:focus,
body input[type=button].epl-button--outline:focus {
  background: var(--epl-color-grey-e7);
  color: var(--epl-color-primary);
  border-color: var(--epl-color-grey-e7);
}
a.epl-button--alternate,
.epl-button--alternate,
button.epl-button--alternate,
body input[type=submit].epl-button--alternate,
body input[type=button].epl-button--alternate {
  background: var(--epl-color-accent);
  color: var(--epl-color-secondary);
  border-color: var(--epl-color-primary);
}
a.epl-button--alternate:hover,
.epl-button--alternate:hover,
button.epl-button--alternate:hover,
body input[type=submit].epl-button--alternate:hover,
body input[type=button].epl-button--alternate:hover {
  background: var(--epl-color-white);
  color: var(--epl-color-primary);
  border-color: var(--epl-color-primary);
}
a.epl-button--alternate:focus,
.epl-button--alternate:focus,
button.epl-button--alternate:focus,
body input[type=submit].epl-button--alternate:focus,
body input[type=button].epl-button--alternate:focus {
  background: var(--epl-color-grey-e7);
  border-color: var(--epl-color-grey-e7);
  color: var(--epl-color-primary);
}

.epl-button--wide,
button.epl-button--wide,
body input[type=submit].epl-button-wide,
body input[type=button].epl-button-wide {
  padding-left: 2em;
  padding-right: 2em;
}

/*********************************************
	Buttons Icons
*********************************************/
.epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.button-br, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-floor-plan, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--floor-plan, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button-street-view, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-comparable-button, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-custom-button-property_floorplan, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-custom-button-property_video_url, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--icon, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--enquiry, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-external-link, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button-matterport {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.3em;
  background: var(--epl-color-white);
  border-style: solid none;
  border-color: var(--epl-color-grey-f0);
  border-radius: 0;
  padding: 0.8rem 1rem;
  color: var(--epl-color-primary);
  pointer-events: all;
  cursor: pointer;
  text-transform: none;
}
.epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.button-br:hover, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.button-br:focus, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-floor-plan:hover, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-floor-plan:focus, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--floor-plan:hover, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--floor-plan:focus, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button-street-view:hover, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button-street-view:focus, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-comparable-button:hover, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-comparable-button:focus, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-custom-button-property_floorplan:hover, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-custom-button-property_floorplan:focus, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-custom-button-property_video_url:hover, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-custom-button-property_video_url:focus, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--icon:hover, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--icon:focus, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--enquiry:hover, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--enquiry:focus, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-external-link:hover, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-external-link:focus, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button-matterport:hover, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button-matterport:focus {
  color: var(--epl-color-secondary);
  background: var(--epl-color-white);
  border-style: solid;
  border-radius: 0;
}
.epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.button-br::before, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-floor-plan::before, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--floor-plan::before, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button-street-view::before, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-comparable-button::before, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-custom-button-property_floorplan::before, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-custom-button-property_video_url::before, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--icon::before, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--enquiry::before, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-external-link::before, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button-matterport::before {
  text-align: center;
  content: "";
  width: 30px;
  height: 30px;
  padding: 0;
  margin-right: 0;
  box-sizing: border-box;
  background-image: url("images/icons/plan.svg");
  background-repeat: no-repeat;
  background-size: 30px 30px;
  background-position: center;
  display: block;
  line-height: 30px;
  background-color: var(--epl-color-white);
  border-radius: 10em;
}
.epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-floor-plan::before, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--floor-plan::before {
  background-image: url("images/icons/plan.svg");
}
.epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-floor-plan:hover::before, .epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--floor-plan:hover::before {
  background-image: url("images/icons/plan.svg");
}
.epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-external-link::before {
  background-image: url("images/icons/fa/vr-cardboard-solid.svg");
}
.epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--enquiry::before {
  background-image: url("images/icons/fa/vr-cardboard-solid.svg");
}
.epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button-matterport::before {
  background-image: url("images/icons/fa/vr-cardboard-solid.svg");
}
.epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.button-br::before {
  background-image: url("images/icons/print.svg");
}
.epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--map::before {
  background-image: url("images/icons/pin.svg");
}
.epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--video::before {
  background-image: url("images/icons/play.svg");
}
.epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--street-view::before {
  background-image: url("images/icons/fa/street-view-solid.svg");
}
.epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-button--gallery::before {
  background-image: url("images/icons/gallery.svg");
}
.epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-comparable-button::before {
  background-image: url("images/icons/fa/file-solid.svg");
}
.epl-button-wrapper:not(.epl-button-wrapper--alternate) .epl-button.epl-custom-button-property_video_url::before {
  background-image: url("images/icons/play.svg");
}

/*********************************************
	Tools
*********************************************/
.epl-loop-tools {
  display: flex;
  margin: 0;
  padding: 1em;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1em;
  border: 1px solid var(--epl-color-grey);
  border-style: solid;
  border-radius: 0;
  box-shadow: none;
}

.epl-loop-tool {
  font-family: var(--epl-font-family-primary);
}

/*********************************************
	Counter
*********************************************/
.epl-tool-results-counter .epl-tool-results-count__total {
  font-size: 1em;
  font-weight: normal;
}

.epl-tool-results-counter {
  text-transform: uppercase;
}

.epl-tool-results__from,
.epl-tool-results__to,
.epl-tool-results__total-count {
  font-weight: 600;
}

.epl-tool-switch li.epl-tool-switch__item {
  padding: 0 1em 0;
  border: 1px solid var(--epl-color-grey-e1);
  border-radius: 3px;
  background: var(--epl-color-white);
  background-image: none;
  height: 40px;
  float: left;
  list-style: none !important;
  opacity: 1;
}
.epl-tool-switch .epl-tool-switch__item {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.epl-tool-switch .epl-tool-switch__item .epl-tool-switch__icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-attachment: scroll;
  background-clip: border-box;
  background-image: url("images/switch.svg");
  background-origin: padding-box;
  background-repeat: no-repeat;
  background-size: 33px 31px;
  top: -1px;
  position: relative;
  opacity: 0.5;
}
.epl-tool-switch li.view-list {
  margin-left: 1em;
}
.epl-tool-switch li.view-list .epl-tool-switch__icon {
  background-position: -15px -14px;
}
.epl-tool-switch li.view-grid {
  margin-left: 1em;
}
.epl-tool-switch li.view-grid .epl-tool-switch__icon {
  background-position: 2px -14px;
}
.epl-tool-switch .epl-tool-switch__label {
  line-height: 1;
}
.epl-tool-switch .epl-current-view .epl-tool-switch__label {
  display: inline-block;
  color: var(--epl-color-secondary);
}
.epl-tool-switch .epl-current-view .epl-tool-switch__icon {
  opacity: 1;
}

.epl-tool-map ul {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 0.3em;
  list-style: none;
}
.epl-tool-map .epl-tool-switch__item {
  list-style: none;
}
.epl-tool-map .epl-tool-switch__item a {
  list-style: none;
  padding: 0 3em;
  border: 2px solid var(--epl-color-primary);
  border-radius: 0;
  font-size: 0.9em;
  letter-spacing: 0.1em;
  height: 40px;
  line-height: 40px;
  background: var(--epl-color-primary);
  color: var(--epl-color-white);
  background-image: none;
  text-transform: uppercase;
}
.epl-tool-map .epl-tool-switch__item__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.2em;
  color: var(--epl-color-primary);
  font-weight: 500;
}
.epl-tool-map .epl-tool-switch__label {
  padding: 0 0;
}
.epl-tool-map .epl-icon {
  width: 36px;
  height: 36px;
  background-size: 36px 36px;
}

/*********************************************
	Sorter
*********************************************/
.epl-tool-sorting {
  margin: 0;
  padding: 0;
}
.epl-tool-sorting select {
  -webkit-appearance: none;
  margin: 0;
  padding: 0 1em;
  background: white url(images/select-arrow.svg) no-repeat right;
  background-size: 3.5em;
  box-shadow: none;
  border: 1px solid var(--epl-color-primary);
  border-style: solid;
  border-radius: 3px;
  height: 40px;
  line-height: 40px;
  font-family: var(--epl-font-family-primary);
  font-size: 1em;
  text-transform: none;
}
.epl-tool-sorting .nice-select {
  border-style: solid;
}
.epl-tool-sorting .nice-select span {
  text-transform: none;
}
.epl-tool-sorting .nice-select .list {
  right: 0;
  left: initial;
}

/*********************************************
	Favs
*********************************************/
.epl-property-blog .property-content-inner .epl-fav-button-wrap {
  top: 0;
}

.epl-property-blog .epl-fav-button-wrap {
  right: 0;
  top: initial !important;
  bottom: 0;
}

.epl-property-blog-rec .epl-button-icon--favs {
  position: absolute;
  top: initial;
  right: 0;
  bottom: 0;
  padding: 0.5em 0.8em;
  border: none;
  z-index: 10;
}
.epl-property-blog-rec .epl-button-icon--favs:hover {
  border: none;
}

.rec-documents-wrapper .rec-documents {
  margin: 0;
  padding: 0;
  list-style: none;
}
.rec-documents-wrapper .rec-document a {
  color: var(--epl-color-primary);
}
.rec-documents-wrapper .rec-document a:hover {
  color: var(--epl-color-secondary);
  font-weight: 500;
}

/*********************************************
	Similar
*********************************************/
.rec-similar-listings {
  max-width: 100%;
  margin: 0 auto;
}
.rec-similar-listings .entry-title {
  text-align: center;
  margin-bottom: 1em;
}
/*****************************
        Gravity Forms
****************************/
.gform_wrapper.gravity-theme form .gform_fields {
  grid-column-gap: 3.5%;
  grid-row-gap: 1.2em;
}
.gform_wrapper.gravity-theme form .gsection {
  border: none;
  padding: 2em 0 0;
}
.gform_wrapper.gravity-theme form .gsection_title {
  margin: 0;
  font-size: 1em;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  line-height: 1.3;
}
.gform_wrapper.gravity-theme form .gfield_label {
  margin-bottom: 1em;
  padding: 0;
  font-family: var(--epl-font-family-primary);
  font-size: 1em;
  font-weight: 800;
  color: var(--epl-color-primary);
  border-bottom: none;
}
.gform_wrapper.gravity-theme form .gfield_required .gfield_required_text {
  color: var(--epl-color-tertiary);
  font-style: normal;
  font-size: 1em;
}
.gform_wrapper.gravity-theme form input[type=color],
.gform_wrapper.gravity-theme form input[type=date],
.gform_wrapper.gravity-theme form input[type=datetime-local],
.gform_wrapper.gravity-theme form input[type=datetime],
.gform_wrapper.gravity-theme form input[type=email],
.gform_wrapper.gravity-theme form input[type=month],
.gform_wrapper.gravity-theme form input[type=number],
.gform_wrapper.gravity-theme form input[type=password],
.gform_wrapper.gravity-theme form input[type=search],
.gform_wrapper.gravity-theme form input[type=tel],
.gform_wrapper.gravity-theme form input[type=text],
.gform_wrapper.gravity-theme form input[type=time],
.gform_wrapper.gravity-theme form input[type=url],
.gform_wrapper.gravity-theme form input[type=week],
.gform_wrapper.gravity-theme form select,
.gform_wrapper.gravity-theme form textarea {
  height: auto;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0.8em 0.8em;
  border: 1px solid var(--epl-color-grey-e9);
  border-radius: 0;
  color: var(--epl-color-primary);
  background: var(--epl-color-white);
  font-size: 1em;
}
.gform_wrapper.gravity-theme form input[type=color]:focus,
.gform_wrapper.gravity-theme form input[type=date]:focus,
.gform_wrapper.gravity-theme form input[type=datetime-local]:focus,
.gform_wrapper.gravity-theme form input[type=datetime]:focus,
.gform_wrapper.gravity-theme form input[type=email]:focus,
.gform_wrapper.gravity-theme form input[type=month]:focus,
.gform_wrapper.gravity-theme form input[type=number]:focus,
.gform_wrapper.gravity-theme form input[type=password]:focus,
.gform_wrapper.gravity-theme form input[type=search]:focus,
.gform_wrapper.gravity-theme form input[type=tel]:focus,
.gform_wrapper.gravity-theme form input[type=text]:focus,
.gform_wrapper.gravity-theme form input[type=time]:focus,
.gform_wrapper.gravity-theme form input[type=url]:focus,
.gform_wrapper.gravity-theme form input[type=week]:focus,
.gform_wrapper.gravity-theme form select:focus,
.gform_wrapper.gravity-theme form textarea:focus {
  border: 1px solid var(--epl-color-secondary);
}
.gform_wrapper.gravity-theme form .gfield textarea.medium {
  height: 155px;
}
.gform_wrapper.gravity-theme form .gchoice label {
  font-weight: 400;
}
.gform_wrapper.gravity-theme form .gform_footer {
  margin: 1em 0 0;
  padding: 16px 0;
}
.gform_wrapper.gravity-theme form input[type=submit] {
  display: block;
  padding: 1em 1.2em;
  background: var(--epl-color-primary);
  color: var(--epl-color-white);
  font-size: 1em;
  font-weight: 300;
  border: none;
  border-radius: 0 !important;
  text-transform: uppercase !important;
}
.gform_wrapper.gravity-theme form input[type=submit]:hover {
  background: var(--epl-color-secondary);
  color: var(--epl-color-white);
}
@media screen and (min-width: 641px) {
  .gform_wrapper.gravity-theme form .ginput_complex:not(.ginput_container_address) fieldset:not([style*="display:none"]):not(.ginput_full),
  .gform_wrapper.gravity-theme form .ginput_complex:not(.ginput_container_address) span:not([style*="display:none"]):not(.ginput_full) {
    padding-right: 2.5%;
  }
}
.gform_wrapper.gravity-theme .rec-form-radio-buttons {
  margin: 2em 0;
}
.gform_wrapper.gravity-theme .rec-form-radio-buttons .gfield_label {
  margin: 0 0 0.5em;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1.6em;
}
.gform_wrapper.gravity-theme .rec-form-radio-buttons .gfield_radio {
  margin: 0 0 0 0;
  padding: 0;
  font-weight: 700 !important;
}
.gform_wrapper.gravity-theme .rec-form-radio-buttons .gfield_radio .gchoice {
  float: left;
  margin: 0 5px 5px 0;
  width: 245px;
  height: 40px;
  line-height: 29px;
  position: relative;
  text-align: center;
}
.gform_wrapper.gravity-theme .rec-form-radio-buttons .gfield_radio label,
.gform_wrapper.gravity-theme .rec-form-radio-buttons .gfield_radio input {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--epl-color-white);
  color: var(--epl-color-tertiary);
  text-transform: uppercase;
  font-weight: 700 !important;
  max-width: 100% !important;
}
.gform_wrapper.gravity-theme .rec-form-radio-buttons .gfield_radio input[type=radio] {
  opacity: 0.01;
  z-index: 100;
  font-weight: 700 !important;
}
.gform_wrapper.gravity-theme .rec-form-radio-buttons .gfield_radio input[type=radio]:checked + label,
.gform_wrapper.gravity-theme .rec-form-radio-buttons .gfield_radio .Checked + label {
  background: var(--epl-color-white);
  color: var(--epl-color-primary);
  font-weight: 700 !important;
}
.gform_wrapper.gravity-theme .rec-form-radio-buttons .gfield_radio label {
  padding: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
  z-index: 90;
  font-weight: 700 !important;
}
.gform_wrapper.gravity-theme .rec-form-radio-buttons .gfield_radio label:hover {
  background: #ddd;
}

/*********************************************
	Photoswipe
*********************************************/
/*********************************************
	WordPress Gallery
*********************************************/
.epl-gallery .gallery {
  display: grid;
  gap: 2em;
  grid-template-columns: 1fr 1fr;
}
.epl-gallery .gallery-caption,
.epl-gallery .gallery-item a {
  width: 100%;
}
.epl-gallery.gallery-columns-4 > * {
  flex-basis: 25%;
  margin: 0;
  padding: 0;
}
.epl-gallery .gallery-item img,
.epl-gallery .gallery-item a {
  display: block;
}
.epl-gallery .gallery-item img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.epl-gallery #gallery-1 .gallery-item {
  margin: 0 0 30px;
  padding: 0;
  float: left;
  width: calc(33.333% - 50px);
}
@media screen and (max-width: 700px) {
  .epl-gallery #gallery-1 .gallery-item {
    width: calc(100% - 10px);
  }
}
.epl-gallery #gallery-1 img {
  display: block;
  padding: 0;
  border: none !important;
  border-radius: 0;
}
.epl-gallery dt {
  margin-bottom: 0;
}
.epl-gallery br {
  display: none;
}

/** EPL Gallery CSS **/
@media screen and (min-width: 500px) {
  .epl-gallery-entry .gallery-columns-1 {
    grid-template-columns: 1fr;
  }
  .epl-gallery-entry .gallery-columns-2 {
    grid-template-columns: 1fr 1fr;
  }
  .epl-gallery-entry .gallery-columns-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .epl-gallery-entry .gallery-columns-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .epl-gallery-entry .gallery-columns-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.rec-accordion-faq {
  width: 100%;
  margin: 2% auto;
}
.rec-accordion-faq .epl_ui_accordion_menu {
  position: relative;
  background: var(--epl-color-tint);
  margin: 0;
  padding: 1.5rem 0;
  font-family: var(--epl-font-family-primary);
  font-size: 1.4em;
  border-bottom: 1px solid var(--epl-color-grey-b1);
}
.rec-accordion-faq .epl_ui_accordion_menu::before {
  content: "";
  color: var(--epl-color-secondary);
  position: absolute;
  top: 0%;
  right: 0;
  width: 50px;
  height: 50px;
  background: url("images/select-arrow.svg") no-repeat;
  background-size: 150%;
  background-position: -5px 0;
}
.rec-accordion-faq .epl_ui_accordion_menu_current {
  background: var(--epl-color-tint);
  border-bottom: none;
  color: inherit;
  margin-bottom: 0;
}
.rec-accordion-faq .epl_ui_accordion_menu_current::before {
  transform: rotate(180deg);
  background-position: -20px 20px;
}
.rec-accordion-faq .epl_ui_accordion_content {
  padding: 1rem 0 0;
  border-bottom: 1px solid var(--epl-color-grey-b1);
}

/*********************************************
	Gallery Shortcode
*********************************************/
@media screen and (max-width: 1200px) {
  .epl-section-wrap--gallery .epl-section {
    padding-block: 1.5em;
  }
}
@media screen and (max-width: 600px) {
  .epl-section-wrap--gallery .epl-section {
    padding-inline: 0;
  }
}

.epl-section-wrap--gallery-large img {
  width: 100%;
}

.epl-section-wrap--gallery-small .rec-gallery {
  display: flex;
  gap: 6em;
}
@media screen and (max-width: 1200px) {
  .epl-section-wrap--gallery-small .rec-gallery {
    gap: 3em;
  }
}
@media screen and (max-width: 770px) {
  .epl-section-wrap--gallery-small .rec-gallery {
    flex-wrap: wrap;
  }
}

.epl-section-wrap--gallery-small-reverse .rec-gallery {
  flex-direction: row-reverse;
}

ul.epl-property-features {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-position: outside;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-primary);
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.8;
}
ul.epl-property-features li {
  margin: 0;
  padding: 0;
}
ul.epl-property-features li::before {
  content: "";
  display: inline;
  position: relative;
  top: 2px;
  margin-right: 10px;
  width: 15px;
  height: 15px;
  background: none;
  background-position: 0 0;
}
ul.epl-property-features li::marker {
  display: initial;
  font-size: 1.2em;
  color: var(--epl-color-accent);
}

/*********************************************
	Alert
*********************************************/
.epl-shortcode .epl-alert {
  margin: 0;
  padding: 0;
  color: var(--epl-color-primary);
  text-align: left;
  font-family: var(--epl-font-family-primary);
  font-size: 2em;
  font-weight: 400;
}

/*********************************************
	Modal
*********************************************/
.epl-modal {
  overflow: scroll;
  box-sizing: border-box;
  max-width: 870px;
  max-height: 80vh;
  width: 100%;
  margin: 0;
  padding: 0;
  background: var(--epl-color-white);
  color: var(--epl-color-primary);
  border-style: none;
  border-radius: 0;
  box-shadow: none;
}
@media screen and (min-width: 600px) {
  .epl-modal {
    padding: 0;
  }
}

.epl-modal__heading {
  display: flex;
  margin: 0;
  padding: 2.5em 0 1.3em;
  justify-content: center;
  align-items: center;
  gap: 1em;
}

.epl-modal__title {
  display: initial;
  margin: 0;
  padding: 0;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-secondary);
  font-size: 2rem;
  font-weight: 400;
  line-height: 1.255;
  letter-spacing: -0.015em;
  text-transform: none;
  text-align: center;
}
.epl-modal__title .item-state,
.epl-modal__title .item-pcode {
  display: none;
}

.epl-modal__address {
  color: var(--epl-color-secondary);
}
.epl-modal__address .item-street::after {
  content: ",";
}
.epl-modal__address .entry-title-sub {
  font-weight: inherit !important;
}

.epl-modal__close {
  display: flex;
  margin: 0 0 1em;
  padding: 0;
  justify-content: flex-end;
}

.epl-modal__close__button {
  display: block;
  margin: 0;
  padding: 0;
  color: var(--epl-color-white);
  text-align: center;
  font-family: var(--epl-font-family-primary);
  font-weight: 600;
  font-size: 1rem;
  line-height: 20px;
}
.epl-modal__close__button .epl-label {
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.epl-modal__close__button .epl-icon {
  margin: 0 0 0 0.5em;
  width: 20px;
  height: 20px;
  background: transparent url("images/icons/fa/xmark-solid.svg") no-repeat;
  background-position: center;
  border-radius: 0;
  vertical-align: middle;
}
.epl-modal__close__button:hover {
  background-color: transparent;
  color: var(--epl-color-white);
}

.epl-modal__featured-image {
  margin: 0;
  padding: 0;
}
.epl-modal__featured-image img {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 400px;
}

.epl-modal__content {
  margin: 0;
  padding: 2.7em 3.7em;
}
.epl-modal__content .gform_heading {
  margin-bottom: 1em;
  line-height: 1.45;
}
.epl-modal__content .gform_description {
  font-size: 0.85em;
  letter-spacing: 0.05em;
}

/*********************************************
	Slider
*********************************************/
.epl-slider-single-wrapper .epl-slider-thumb-container .c {
  background: rgba(255, 255, 255, 0.5);
}
.epl-slider-single-wrapper .epl-slider-thumb-container .pav .c {
  background: rgba(255, 255, 255, 0);
}
.epl-slider-single-wrapper .epl-slider-thumb-container .p.pdn .c {
  border: none;
}

.epl-read-more-content-wrap:not(.epl-read-more-content-wrap--expanded)::before {
  content: "";
  position: absolute;
  display: block;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 70%, rgb(255, 255, 255) 90%, rgb(255, 255, 255) 100%);
}

.epl-read-more-link-wrap .epl-read-more-link {
  text-decoration: underline;
  color: var(--epl-color-primary);
  letter-spacing: 0.15em;
}
.epl-read-more-link-wrap .epl-read-more-link:hover {
  box-shadow: none;
  color: var(--epl-color-alternate);
}
/*********************************************
	Sharer
*********************************************/
.epl-icon-social .epl-icon-shape-base {
  fill: transparent; /* Outer rounded box */
}

.epl-icon-social .epl-icon-color-hollow {
  fill: var(--epl-color-primary); /* The icon items */
}

.epl-social-share {
  display: flex !important;
  flex-direction: row;
  align-items: flex-start;
  margin: 4px 0 0;
  padding: 0;
  justify-content: flex-start;
  gap: 1rem;
}
.epl-social-share .epl-social-share__link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 1em;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--epl-color-secondary);
  border-radius: 0;
  min-width: auto;
  width: auto;
  height: auto;
  font-size: 1rem;
}
.epl-social-share .epl-social-share__link i {
  margin: 0;
  width: 1.8rem;
  height: 1.8rem;
}
.epl-social-share .epl-social-share__link:hover {
  color: var(--epl-color-alternate);
  text-decoration: none;
}
.epl-social-share .epl-social-share__link--share {
  background: transparent;
}
.epl-social-share .fa {
  font-weight: 400;
  font-size: 1rem;
}
.epl-social-share .fab {
  font-family: "Font Awesome 5 Brands";
  font-weight: 400;
  font-size: 1rem;
}
.epl-social-share svg {
  margin: 0;
  padding: 0.2em;
  width: 2em;
  height: 2em;
  background: var(--epl-color-primary);
  border-radius: 3em;
  border: none;
}
.epl-social-share svg:hover {
  background: var(--epl-color-secondary);
  color: var(--epl-color-secondary);
  border-color: var(--epl-color-secondary);
}
.epl-social-share .epl-social-share__label {
  display: none;
}

.epl-social-share__link .rec-social-icon {
  width: 1.8rem;
  height: 1.8rem;
  background: url(images/icons/fa-social/share-regular.svg) no-repeat no-repeat;
  background-size: 1.8rem 1.8rem !important;
  display: inline-block;
  opacity: 1;
  font-size: 1em;
}
.epl-social-share__link .rec-social-icon--share {
  background: url(images/icons/fa-social/share-regular.svg) no-repeat no-repeat;
}
.epl-social-share__link .rec-social-icon--facebook {
  background: url(images/icons/fa-social/facebook.svg) no-repeat no-repeat;
}
.epl-social-share__link .rec-social-icon--twitter {
  background: url(images/icons/fa-social/x-twitter.svg) no-repeat no-repeat;
}
.epl-social-share__link .rec-social-icon--linkedin {
  background: url(images/icons/fa-social/linkedin.svg) no-repeat no-repeat;
}
.epl-social-share__link .rec-social-icon--pinterest {
  background: url(images/icons/fa-social/pinterest.svg) no-repeat no-repeat;
}
.epl-social-share__link .rec-social-icon--instagram {
  background: url(images/icons/fa-social/instagram.svg) no-repeat no-repeat;
}
.epl-social-share__link .rec-social-icon--email {
  background: url(images/icons/fa-social/email.svg) no-repeat no-repeat;
}
.epl-social-share__link:hover .rec-social-icon--share {
  background: url(images/icons/fa-social/share-regular.svg) no-repeat no-repeat;
}
.epl-social-share__link:hover .rec-social-icon--facebook {
  background: url(images/icons/fa-social/facebook.svg) no-repeat no-repeat;
}
.epl-social-share__link:hover .rec-social-icon--twitter {
  background: url(images/icons/fa-social/x-twitter.svg) no-repeat no-repeat;
}
.epl-social-share__link:hover .rec-social-icon--linkedin {
  background: url(images/icons/fa-social/linkedin.svg) no-repeat no-repeat;
}
.epl-social-share__link:hover .rec-social-icon--pinterest {
  background: url(images/icons/fa-social/pinterest.svg) no-repeat no-repeat;
}
.epl-social-share__link:hover .rec-social-icon--instagram {
  background: url(images/icons/fa-social/instagram.svg) no-repeat no-repeat;
}
.epl-social-share__link:hover .rec-social-icon--email {
  background: url(images/icons/fa-social/email.svg) no-repeat no-repeat;
}

/*****************************
	Shortcode: Listing Information
****************************/
.epl-shortcode--listing-information {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 1px solid var(--epl-color-primary);
  border-style: none;
}

.epl-row--list-item {
  display: flex;
  margin: 0;
  padding: 0.5em 0;
  list-style: none;
  border: 1px solid var(--epl-color-tint);
  border-style: none none solid;
  justify-content: space-between;
  align-items: center;
  line-height: inherit;
}
.epl-row--list-item .epl-label {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-weight: 400;
  color: var(--epl-color-primary);
}
.epl-row--list-item .epl-value {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 1em;
  font-weight: 400;
  color: var(--epl-color-primary);
}

.epl-menu {
  display: flex;
  justify-content: stretch;
  margin: 0;
  padding: 0;
  gap: 0;
  list-style: none;
}
.epl-menu .nav-item,
.epl-menu .menu-item {
  display: block;
}
.epl-menu .nav-item a,
.epl-menu .menu-item a {
  display: block;
  margin: 0;
  padding: 1em 2em;
  background: var(--epl-color-secondary);
}
.epl-menu .nav-item a:hover,
.epl-menu .menu-item a:hover {
  background: var(--epl-color-primary);
  color: var(--epl-color-white);
}
.epl-menu .current-menu-item a {
  background: var(--epl-color-primary);
  color: var(--epl-color-white);
}
.epl-menu .current-menu-item a:hover {
  background: var(--epl-color-primary);
  color: var(--epl-color-white);
}

.epl-image-cover {
  position: absolute;
  inset: 0;
  background: hsla(149, 100%, 29%, 0.5);
  isolation: isolate;
  display: grid;
  place-items: center;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
}
.epl-image-cover a {
  display: block;
  transform: translate(0, 150%);
  padding: 1em 2em;
  color: var(--epl-color-white);
  border: 1px solid var(--epl-color-white);
  border-radius: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
  font-weight: 600;
  text-transform: uppercase;
  opacity: 0;
}
.epl-image-cover a:hover {
  background: var(--epl-color-white);
  color: var(--epl-color-secondary);
}
.epl-image-cover:hover {
  opacity: 1;
}
.epl-image-cover:hover a {
  opacity: 1;
  transform: translate(0, 0);
}

/*********************************************
	Carousel
*********************************************/
.epl-slick-item-image {
  overflow: hidden;
}

.rec-carousel-swiper {
  display: block !important;
  grid-template-columns: none !important;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 600px) {
  .rec-carousel-swiper {
    padding-inline: 0 !important;
  }
  .rec-carousel-swiper.epl-slick-carousel .slick-prev {
    left: 0;
  }
  .rec-carousel-swiper.epl-slick-carousel .slick-next {
    right: 0;
  }
}
.rec-carousel-swiper .epl-property-blog-rec.epl-listing-grid-view-forced {
  display: block;
  float: left;
  max-width: 30%;
  transition: none;
  clear: unset;
}
.rec-carousel-swiper .epl-property-blog-rec.slick-slide {
  overflow: hidden;
  padding: 0 !important;
  margin: 1em !important;
}
@media screen and (max-width: 600px) {
  .rec-carousel-swiper .epl-property-blog-rec {
    font-size: 0.9em !important;
  }
  .rec-carousel-swiper .epl-property-blog-rec .epl-rec-icons > :nth-child(n+4) {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  .rec-carousel-swiper .epl-property-blog-rec .epl-rec-icons {
    gap: 0.5em;
  }
}
@media screen and (min-width: 600px) and (max-width: 979px) {
  .rec-carousel-swiper .epl-property-blog-rec .epl-row--details {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 980px) and (max-width: 1120px) {
  .rec-carousel-swiper .epl-property-blog-rec .epl-rec-icons > :nth-child(n+3) {
    display: none;
  }
}
@media screen and (min-width: 1121px) and (max-width: 1280px) {
  .rec-carousel-swiper .epl-property-blog-rec .epl-rec-icons > :nth-child(n+4) {
    display: none;
  }
}
@media screen and (min-width: 1400px) and (max-width: 1600px) {
  .rec-carousel-swiper .epl-property-blog-rec .epl-rec-icons > :nth-child(n+3) {
    display: none;
  }
}
@media screen and (min-width: 1601px) and (max-width: 1850px) {
  .rec-carousel-swiper .epl-property-blog-rec .epl-rec-icons > :nth-child(n+4) {
    display: none;
  }
}

/*********************************************
	Inspections
*********************************************/
.epl-inspection-times {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: initial;
  gap: 0.7em;
}
.epl-inspection-times .epl-inspection-times-label {
  display: none;
  margin: 0.2em 0;
  padding: 0;
  background: initial;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-primary);
  font-size: 1.2em;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
  border: 1px solid var(--epl-color-primary);
  border-style: none;
}

.home-open-wrapper {
  display: initial;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 0.7em;
  line-height: 1.2;
}
.home-open-wrapper .home-open-date {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-basis: 100%;
  line-height: 1.2;
}

.epl-inspection-times ul.home-open-wrapper li {
  line-height: 1.2;
  margin-left: 0;
}

.epl_inspection_calendar {
  display: block;
  margin: 0;
  padding: 0;
  border: 1px solid var(--epl-color-grey-ab);
  border-style: solid;
}
.home-open-wrapper :last-child .epl_inspection_calendar {
  border-style: solid;
}

.epl-inspection__card {
  display: block;
  margin: 0;
  padding: 0;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  background: initial;
  color: var(--epl-color-primary);
  font-size: 1rem;
  font-family: var(--epl-font-family-primary);
  font-weight: 400;
  line-height: 1.355;
  border: 1px solid var(--epl-color-primary);
  border-style: none;
  border-radius: 0;
  box-shadow: none;
}
.epl-inspection__card:hover {
  background: initial;
  color: var(--epl-color-primary);
  border-color: var(--epl-color-secondary);
  font-weight: 500;
}

.epl-inspection__card--title-icon-day-time {
  display: block;
}
.epl-inspection__card--title-icon-day-time .epl-inspection__item__title {
  text-transform: uppercase;
}
.epl-inspection__card--title-icon-day-time .epl-inspection__item__date,
.epl-inspection__card--title-icon-day-time .epl-inspection__item__time {
  display: block;
}
.epl-inspection__card--date-time-icon {
  background: var(--epl-color-white);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.epl-inspection__card--date-time-icon .epl-inspection__item__date,
.epl-inspection__card--date-time-icon .epl-inspection__item__time {
  display: block;
}
.epl-inspection__card--date-time-icon .epl-inspection__item__icon {
  display: flex;
  align-items: center;
  gap: 0.5em;
  color: var(--epl-color-secondary);
}
.epl-inspection__card--date-time-icon .epl-label {
  text-transform: uppercase;
  font-size: 0.75em;
  font-weight: 600;
}

.epl-inspection__item__date----xxxxx::before {
  content: "";
  display: inline-block;
  margin-right: 1em;
  width: 0.9em;
  height: 0.9em;
  background-image: url("images/icons/fa/arrow-right-light.svg");
  background-repeat: no-repeat;
  background-position: 0 1px;
}

.epl-inspection__item__icon i {
  font-size: 1.4em;
}

/*****************************
	Advanced Map - Info Box Slim
****************************/
.gm-style-iw-d {
  overflow: clip !important;
}

.epl-infobox-flat #epl-infobox-container .epl-propertybox-featured {
  position: relative;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.epl-infobox-flat #epl-infobox-container .epl-propertybox-featured .epl-info-inner-container {
  background: var(--epl-color-white);
  border-bottom: 3px solid var(--epl-color-primary);
  overflow: hidden;
  transition: all 0.5s ease 0s;
  width: 100%;
  max-width: 100%;
  flex-wrap: wrap;
  display: flex;
}

.epl-infobox-flat #epl-infobox-container .epl-propertybox-featured .epl-main-info .epl-am-desc {
  height: 60px;
  margin: 5px 0;
}

.epl-infobox-flat .epl-propertybox-featured .epl-main-info {
  background: var(--epl-color-white);
  padding: 20px 30px;
  font-weight: 500;
}

.epl-infobox-flat .epl-propertybox-featured .epl-main-info .epl-am-title {
  color: var(--epl-color-primary);
  font-size: 1.7em;
  line-height: 1.5em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-decoration: none;
}

.epl-infobox-flat .epl-propertybox-featured .epl-main-info .epl-am-location {
  margin: 5px 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.epl-infobox-flat .epl-propertybox-featured .epl-main-info .epl-am-desc {
  color: #aeaeae;
  height: 80px;
  line-height: 20px;
  margin: 15px 0;
  overflow: hidden;
}

.epl-infobox-flat .epl-propertybox-featured .epl-main-info .epl-am-bottom-sec .epl-am-extra-info {
  color: #aeaeae;
  float: left;
}

.epl-infobox-flat .epl-propertybox-featured .epl-main-info .epl-am-bottom-sec .epl-am-extra-info .epl-am-value {
  color: var(--epl-color-primary);
  display: inline-block;
  font-size: 2em;
  margin-right: 5px;
}

.epl-infobox-flat .epl-am-more-link {
  background: var(--epl-color-primary) none repeat scroll 0 0;
  border: 0 none;
  border-radius: 0;
  color: #ffffff !important;
  float: right;
  font-size: 1.2em;
  font-weight: bold;
  line-height: 2.5em;
  margin-top: 15px;
  outline: medium none !important;
  padding: 0 15px;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease 0s;
}

.epl-am-more-link::after {
  background: var(--epl-color-primary) none repeat scroll 0 0;
  bottom: -2px;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  transition: all 0.3s ease 0s;
  width: 100%;
}

.epl-adv-popup-price {
  background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
  bottom: 0;
  color: var(--epl-color-white);
  font-size: 1.7em;
  left: 0;
  line-height: 2em;
  position: absolute;
  text-align: center;
  transition: all 0.7s ease 0s;
  width: 100%;
  z-index: 1;
}
.epl-adv-popup-price .sold-status,
.epl-adv-popup-price .page-price.sold {
  color: var(--epl-color-white);
  font-weight: 500;
}

/** effect */
.epl-propertybox-featured:hover .epl-am-img-container::before {
  transform: scale(1);
}

.epl-propertybox-featured:hover .epl-am-img-container::before,
.propertybox-featured:hover .img-container::after {
  opacity: 1;
}

.epl-propertybox-featured .epl-am-img-container::before {
  background: rgba(255, 255, 255, 0.6) none repeat scroll 0 0;
  bottom: 0;
  content: "";
  height: 100%;
  left: 0;
  transform: scale(0.6);
  width: 100%;
}

.epl-propertybox-featured .epl-am-img-container::before,
.propertybox-featured .epl-am-img-container::after {
  display: block;
  opacity: 0;
  position: absolute;
  transition: all 0.7s ease 0s;
  z-index: 1;
}

.epl-propertybox-featured:hover .epl-adv-popup-price {
  bottom: -50px;
  transition: all 0.3s ease 0s;
}

.epl-infobox-flat .epl-am-value {
  color: var(--epl-color-primary);
  display: inline-block;
  font-size: 2em;
  margin-right: 5px;
}

/*****************************
	Advanced Map - Info Box Slim
****************************/
.gm-style-iw.gm-style-iw-c {
  padding: 0;
  margin: 0;
}

.epl-am-map-wrapper .gm-style-iw-d {
  overflow: scroll;
}

.gm-ui-hover-effect {
  opacity: 0.8;
  top: -6px !important;
  right: 8px !important;
  width: 40px !important;
  height: 40px !important;
}
.gm-ui-hover-effect > span {
  background-color: var(--epl-color-secondary);
  width: 40px !important;
  height: 40px !important;
}

.epl-infobox-flat .epl-infobox-flat-container {
  width: 480px;
  overflow: hidden;
  max-width: 100%;
}
.epl-infobox-flat .epl-advanced-map-title-link {
  color: var(--epl-color-secondary);
}
.epl-infobox-flat .epl-infobox-flat-content {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  align-items: center;
}
@media screen and (max-width: 500px) {
  .epl-infobox-flat .epl-infobox-flat-content {
    grid-template-columns: 1fr !important;
  }
}
.epl-infobox-flat img {
  max-width: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}
.epl-infobox-flat .epl-infobox-flat-image-element {
  position: relative;
}
.epl-infobox-flat .epl-infobox-flat-image-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  font-size: 1.2em;
  padding: 0.5em;
  font-weight: bold;
}
.epl-infobox-flat .epl-infobox-flat-image-content .page-price {
  color: #ffffff;
}
.epl-infobox-flat .epl-infobox-flat-image-link {
  display: block;
  position: absolute;
  inset: 0;
  text-indent: -9999px;
}
.epl-infobox-flat .epl-infobox-flat-details-element {
  padding: 1em;
}
@media screen and (min-width: 500px) {
  .epl-infobox-flat .epl-infobox-flat-details-element {
    padding: 1em !important;
  }
}
.epl-infobox-flat .epl-infobox-flat-entry-title {
  font-weight: bold;
  font-size: 1.1em;
  line-height: 1.1;
}
.epl-infobox-flat .epl-infobox-flat-location {
  margin: 1em 0;
}
.epl-infobox-flat .epl-infobox-flat-meta {
  margin: 1em 0;
}
.epl-infobox-flat .epl-rec-icons {
  justify-content: flex-start;
}
.epl-infobox-flat .epl-am-value {
  font-weight: bold;
  font-size: 1.2em;
}
.epl-infobox-flat .epl-infobox-flat-button {
  margin-top: 1em;
}
@media screen and (min-width: 500px) {
  .epl-am-map-wrapper .gm-style-iw-d {
    overflow: clip !important;
  }
  .epl-infobox-flat .epl-infobox-flat-content {
    grid-template-columns: 1fr 1fr;
  }
  .epl-infobox-flat .epl-infobox-flat-details-element {
    padding: 0;
  }
}
/*****************************
	Advanced Map - Split
****************************/
.epl-am-map-template-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}

.epl-am-template-map {
  float: none;
  width: 100%;
  height: 100% !important;
}
.epl-am-template-listings {
  float: none;
  width: 100%;
  padding-right: 1em;
}
.epl-am-template-listings .epl-shortcode .epl-loop-tools-wrap {
  display: none;
}
.epl-am-template-listings .epl-shortcode .epl-template-blog {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.epl-infobox-flat .epl-am-img-container img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*****************************
	Icons - External SVG
****************************/
.epl-rec-icons .epl-rec-icon.air,
.epl-rec-icons .epl-rec-icon.pool {
  /* display: none; */
}

.epl-rec-icons {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  margin: 0;
  padding: 0;
}
.epl-rec-icons .epl-rec-icon {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.7em;
  max-width: initial;
  margin: 0;
  padding: 0;
  border: 1px solid var(--epl-color-primary);
  border-style: none;
  border-radius: 0;
  text-align: left;
  line-height: 1;
}
.epl-rec-icons .epl-rec-icon:first-child {
  margin-left: 0;
  padding-left: 0;
}
.epl-rec-icons .epl-rec-icon:last-child {
  border-right: none;
}
.epl-rec-icons .rec-icon-value,
.epl-rec-icons .rec-icon-label,
.epl-rec-icons .rec-icon-unit {
  display: inline-block;
}
.epl-rec-icons .rec-icon-label {
  display: initial;
  flex-basis: auto;
  color: var(--epl-color-primary);
  font-size: 1.3rem;
  font-weight: 400;
  font-family: inherit;
  text-transform: none;
  font-family: inherit;
  letter-spacing: 0;
}
.epl-rec-icons .rec-icon-value {
  display: block;
  margin: 0;
  color: var(--epl-color-primary);
  font-size: 1.3rem;
  font-family: var(--epl-font-family-primary);
  font-weight: 500;
}
.epl-rec-icons .rec-icon-unit {
  display: inline-block;
  font-size: 1em;
  text-transform: none;
}
.epl-rec-icons .rec-icon {
  display: flex;
  place-content: center;
  align-items: center;
  background: transparent;
  border-radius: 0;
  height: 25px;
  width: 25px;
  border: 7px solid var(--epl-color-primary);
  border-style: none;
}
.epl-rec-icons .rec-icon i {
  width: 25px;
  height: 25px;
  background: url("images/icons/bed.svg") no-repeat;
  background-size: 25px 25px !important;
  display: inline-block;
  opacity: 1;
  font-size: 1em;
}
.epl-rec-icons .rec-icon i span {
  display: none;
}
.epl-rec-icons .bedroom .rec-icon i {
  background: url("images/icons/bed.svg") no-repeat;
}
.epl-rec-icons .bathroom .rec-icon i {
  background: url("images/icons/bath.svg") no-repeat;
}
.epl-rec-icons .toilet .rec-icon i {
  background: url("images/icons/toilet.svg") no-repeat;
}
.epl-rec-icons .parking .rec-icon i {
  background: url("images/icons/car.svg") no-repeat;
}
.epl-rec-icons .pool .rec-icon i {
  background: url("images/icons/fa/water-ladder-solid.svg") no-repeat;
  margin-right: 0;
}
.epl-rec-icons .land .rec-icon i {
  background: url("images/icons/land.svg") no-repeat;
}
.epl-rec-icons .frontage .rec-icon i {
  background: url("images/icons/fa/ruler-horizontal-solid.svg") no-repeat;
}
.epl-rec-icons .frontage .rec-icon-value {
  margin-left: 0.2em;
}
.epl-rec-icons .building .rec-icon i {
  background: url("images/icons/fa/building-solid.svg") no-repeat;
}
.epl-rec-icons .category .rec-icon i {
  background: none;
  width: 10px;
  margin-right: 0;
}
.epl-rec-icons--card {
  margin-top: auto;
}
.epl-rec-icons--single {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
  padding: 0 0.3em;
  gap: 1em;
}
@media screen and (max-width: 767px) {
  .epl-rec-icons--single {
    padding: 0;
    gap: 1.5em;
  }
}
.epl-rec-icons--single .epl-rec-icon {
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.8em;
  margin: 0;
  padding: 0;
  border: 1px solid var(--epl-color-primary);
  border-style: none;
  border-radius: 0;
  text-align: left;
  line-height: 1;
}
.epl-rec-icons--single .epl-rec-icon:first-child {
  border-right: none;
}
.epl-rec-icons--single .epl-rec-icon:last-child {
  border-right: none;
}
.epl-rec-icons--single .epl-rec-icon .rec-icon {
  width: 40px;
  height: 40px;
  display: grid;
  align-items: center;
  place-content: center;
  border: 2px solid var(--epl-color-secondary);
  border-style: none;
  border-radius: 100px;
}
.epl-rec-icons--single .epl-rec-icon .rec-icon i {
  margin: 0;
}
.epl-rec-icons--single .epl-rec-icon .rec-icon-value {
  display: block;
  margin: 0;
  color: var(--epl-color-white);
  font-size: 1.6em;
  font-family: var(--epl-font-family-primary);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .epl-rec-icons--single .epl-rec-icon .rec-icon-value {
    font-size: 1.2em;
  }
}
.epl-rec-icons--single .epl-rec-icon .rec-icon-label {
  display: initial;
  flex-basis: auto;
  color: var(--epl-color-white);
  font-size: 1.6em;
  font-weight: 400;
  font-family: inherit;
  text-transform: uppercase;
  font-family: inherit;
  letter-spacing: 0;
}
.epl-rec-icons--single .rec-icon i {
  width: 30px;
  height: 30px;
  background-size: 30px 30px !important;
}
@media screen and (max-width: 767px) {
  .epl-rec-icons--single .rec-icon i {
    width: 20px;
    height: 20px;
    background-size: 20px 20px !important;
  }
}
.epl-rec-icons--single .bedroom .rec-icon i {
  background: url("images/icons/bed-white.svg") no-repeat;
}
.epl-rec-icons--single .bathroom .rec-icon i {
  background: url("images/icons/bath-white.svg") no-repeat;
}
.epl-rec-icons--single .toilet .rec-icon i {
  background: url("images/icons/toilet.svg") no-repeat;
}
.epl-rec-icons--single .parking .rec-icon i {
  background: url("images/icons/car-white.svg") no-repeat;
}
.epl-rec-icons--single .pool .rec-icon i {
  background: url("images/icons/fa/water-ladder-solid.svg") no-repeat;
  margin-right: 0;
}
.epl-rec-icons--single .land .rec-icon i {
  background: url("images/icons/land.svg") no-repeat;
}
.epl-rec-icons--single .frontage .rec-icon i {
  background: url("images/icons/fa/ruler-horizontal-solid.svg") no-repeat;
}
.epl-rec-icons--single .frontage .rec-icon-value {
  margin-left: 0.2em;
}
.epl-rec-icons--single .building .rec-icon i {
  background: url("images/icons/fa/building-solid.svg") no-repeat;
}
.epl-rec-icons--single .category .rec-icon i {
  background: none;
  width: 10px;
  margin-right: 0;
}

/*****************************
	Icons
****************************/
.epl-icon {
  width: 20px;
  height: 20px;
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  vertical-align: middle;
}

.epl-icon--phone {
  background-image: url("images/icons/soames/phone.svg");
}

.epl-icon--address {
  background-image: url("images/icons/soames/address.svg");
}

.epl-icon--map-view {
  background-image: url("images/icons/fa/location-dot-light.svg");
}

.epl-icon--close {
  background-image: url("images/icons/soames/close.svg");
}

.epl-icon--grid-view {
  background-image: url("images/icons/soames/close-red.svg");
}

body .epl-pagination {
  clear: both;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  margin: 2em 0 1em;
  text-align: center;
  font-size: 1.2em;
  font-family: var(--epl-font-family-primary);
  letter-spacing: 0;
}

body .epl-pagination a,
body .epl-pagination span {
  position: relative;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  border: 1px solid var(--epl-color-primary);
  border-style: none;
  margin: 0;
  padding: 0;
  background: var(--epl-color-primary);
  box-shadow: none;
  color: var(--epl-color-white);
  line-height: 30px;
  width: 30px;
  height: 30px;
  border-radius: 40em;
  font-weight: 400;
}

body .epl-pagination a.first,
body .epl-pagination a.last {
  width: 30px;
}

body .epl-pagination a.previouspostslink,
body .epl-pagination a.nextpostslink {
  width: 50px;
  padding-inline: 1em;
}

body .epl-pagination .pages {
  width: auto;
  display: none;
  padding: 0.2em 1em;
}

body .epl-pagination .first {
  display: inline-block;
  background: #eee;
  border-color: transparent;
}
body .epl-pagination .first:hover {
  background: #eee;
}

body .epl-pagination .last {
  display: inline-block;
  background: var(--epl-color-primary);
  width: 50px;
  border-right: 1px solid var(--epl-color-primary);
  border-left: 1px solid var(--epl-color-primary);
}

body .epl-pagination .first::before {
  border: 6px solid transparent;
  border-right-color: var(--epl-color-primary);
  content: "";
  display: inline-block;
  height: 0;
  margin-right: 6px;
  width: 0;
}
body .epl-pagination .first::before:hover {
  border-right-color: var(--epl-color-white);
}

body .epl-pagination .last::before {
  border: 6px solid transparent;
  border-left-color: #fff;
  content: "";
  display: inline-block;
  height: 0;
  margin-left: 10px;
  width: 0;
}
body .epl-pagination .last:hover::before {
  border-left-color: var(--epl-color-primary);
}

body .epl-pagination a:hover,
body .epl-pagination span.current {
  display: inline-block;
}

body .epl-pagination span.current {
  background: var(--epl-color-primary);
  border-color: var(--epl-color-primary);
  color: var(--epl-color-white);
  font-weight: 800;
}

body .epl-pagination a:hover {
  background: var(--epl-color-white);
  border-color: var(--epl-color-secondary);
  color: var(--epl-color-primary);
}

body .epl-pagination ul li:hover a:after,
body .epl-pagination ul li.active a:after {
  background: var(--epl-color-grey);
}

@media screen and (min-width: 600px) {
  body .epl-pagination {
    text-align: center;
  }
}
.epl-stickers-wrapper {
  display: block;
  position: absolute;
  top: 1rem;
  bottom: initial;
  left: 1rem;
  right: initial;
  text-align: left;
  z-index: 1;
}

.epl-stickers-wrapper .status-sticker {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0.7em 1em 0.7em 1em;
  border: none;
  border-radius: 0;
  box-shadow: none;
  font-family: var(--epl-font-family-primary);
  font-size: 1.2em;
  background: var(--epl-color-primary);
  color: var(--epl-color-white);
  text-align: left;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0;
  /* Adjust based on your theme fonts. */
  /* transform: rotate(-20deg); */
}
.epl-stickers-wrapper .status-sticker.new {
  display: none;
  background: var(--epl-color-primary);
}
.epl-stickers-wrapper .status-sticker.new::after {
  border-right-color: var(--epl-color-primary);
  border-left-color: var(--epl-color-primary);
}
.epl-stickers-wrapper .status-sticker.current {
  display: inline-block;
  background: var(--epl-color-secondary-opacity);
}
.epl-stickers-wrapper .status-sticker.current::after {
  border-right-color: var(--epl-color-secondary-opacity);
  border-left-color: var(--epl-color-secondary-opacity);
}
.epl-stickers-wrapper .status-sticker.open {
  display: none;
  background: var(--epl-color-secondary);
}
.epl-stickers-wrapper .status-sticker.open::after {
  border-right-color: var(--epl-color-secondary);
  border-left-color: var(--epl-color-secondary);
}
.epl-stickers-wrapper .status-sticker.under-offer {
  display: inline-block;
  background: var(--epl-color-secondary);
}
.epl-stickers-wrapper .status-sticker.under-offer::after {
  border-right-color: var(--epl-color-secondary);
  border-left-color: var(--epl-color-secondary);
}
.epl-stickers-wrapper .status-sticker.sold {
  display: inline-block;
  background: var(--epl-color-secondary);
}
.epl-stickers-wrapper .status-sticker.sold::after {
  border-right-color: var(--epl-color-secondary);
  border-left-color: var(--epl-color-secondary);
}
.epl-stickers-wrapper .status-sticker.leased {
  display: inline-block;
  background: var(--epl-color-secondary);
}
.epl-stickers-wrapper .status-sticker.leased::after {
  border-right-color: var(--epl-color-secondary);
  border-left-color: var(--epl-color-secondary);
}
.epl-stickers-wrapper .status-sticker--alternate {
  display: flex;
  justify-content: space-between;
}

.epl-status-sold .epl-stickers-wrapper .status-sticker--sold {
  padding: 0.2em 1em 0.3em;
  background: var(--epl-color-secondary);
  display: inline-block;
  border-radius: 0.3rem;
  font-family: var(--epl-font-family-secondary);
  font-size: 1.5em;
  font-weight: 400;
  letter-spacing: -0.02em;
  transform: rotate(-6deg);
}

/*********************************************
	Listing Single Info Panel
*********************************************/
.epl-section-wrap--info-panel .epl-section {
  max-width: 100%;
  padding: 0;
}

.container-wrap__carousel {
  margin-top: 0;
}

.rec-epl-listing-info-panel-outer-wrapper {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.rec-epl-listing-info-panel {
  display: flex;
  position: relative;
  margin: 0 auto;
  max-width: 100%;
}
.rec-epl-listing-info-panel .epl_inspection_calendar {
  display: inline-block;
}
.rec-epl-listing-info-panel .epl-inspection__item--icon-time {
  margin-top: 0.3em;
  font-size: 1.2em;
}
.rec-epl-listing-info-panel .home-open-wrapper li:first-child {
  display: inline-block;
}

.rec-panel-block-listing-details {
  flex: 0 0 30em;
  background: var(--epl-color-accent);
  z-index: 3;
}
.rec-panel-block-listing-details .rec-contents {
  padding: 2em;
  display: flex;
  flex-basis: 100%;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  text-align: center;
}
.rec-panel-block-listing-details .epl-rec-widget-title {
  margin-bottom: 1em;
}
.rec-panel-block-listing-details .epl-rec-category {
  text-transform: uppercase;
  font-weight: 300;
  font-size: 1em;
  letter-spacing: 0.15em;
}
.rec-panel-block-listing-details .epl-rec-address {
  margin: 0 0 0.5em;
  line-height: 1.1;
  font-size: clamp(1em, 10vw - 1em, 3em);
}
.rec-panel-block-listing-details .epl-rec-icons {
  margin: 0 auto;
  font-size: 1.1em;
  margin-bottom: 0.2em;
}
.rec-panel-block-listing-details .epl-rec-icons .epl-rec-icon {
  margin: 0 0.8em 0 0;
  padding: 0 1.4em 0 0;
}
.rec-panel-block-listing-details .epl-rec-icons .rec-icon-value {
  font-size: 1.2em;
}
.rec-panel-block-listing-details .price {
  margin: 0.3em 0 1.4em;
  padding: 0.5em 0;
  font-size: 1em;
  border-top: 1px solid var(--epl-color-primary);
  border-bottom: 1px solid var(--epl-color-primary);
}
.rec-panel-block-listing-details .epl-inspection-times {
  margin: 0;
}
.rec-panel-block-listing-details .epl-button-wrapper {
  margin: 1em 0 0.3em;
  display: flex;
  gap: 0.5em;
  flex-wrap: wrap;
}
.rec-panel-block-listing-details .epl-button-wrapper > * {
  margin: 0;
  flex: 1 1 40%;
}
.rec-panel-block-listing-details .epl-button-wrapper :first-child {
  margin-left: 0;
}
.rec-panel-block-listing-details .epl-button-wrapper :last-child {
  margin-right: 0;
}
.rec-panel-block-listing-details .epl-button-wrapper::after {
  display: none;
}
.rec-panel-block-listing-details .epl-custom-button-wrapper > * {
  flex: 1 1 100%;
}
.rec-panel-block-listing-details .epl-inspection-times {
  margin: 0.5em 0;
}
.rec-panel-block-listing-details .epl-inspection-times ul.home-open-wrapper {
  margin: 0;
  padding: 0;
}

.epl-section-map::before {
  display: none !important;
}

.rec-panel-block-listing-featured-image {
  min-height: 1px;
  min-width: 1px;
  z-index: 2;
}
.rec-panel-block-listing-featured-image img {
  display: block;
}

@media screen and (max-width: 1280px) {
  .rec-panel-block-listing-details {
    flex: 0 0 auto;
  }
}
@media screen and (max-width: 1030px) {
  .rec-panel-block-listing-details {
    position: absolute;
    top: 2em;
    left: 2%;
    bottom: 2em;
    box-shadow: none;
  }
}
@media screen and (max-width: 1030px) and (min-width: 981px) {
  .rec-panel-block-listing-details {
    left: 10%;
  }
}
@media screen and (max-width: 1030px) {
  .rec-contents {
    font-size: 0.8em;
  }
}
@media screen and (max-width: 770px) {
  .rec-epl-listing-info-panel {
    display: flex;
    flex-direction: column-reverse;
  }
  .rec-panel-block-listing-details {
    position: relative;
    top: auto;
    left: auto;
    bottom: auto;
    box-shadow: none;
  }
  .rec-contents {
    font-size: 1em;
  }
}
@media screen and (max-width: 600px) {
  .rec-contents {
    font-size: 0.8em;
  }
}
.epl-section-wrap--info-bar {
  margin: 0;
  padding: 0;
  background: var(--epl-color-primary);
  border: none;
  border-top: none;
  border-bottom: none;
  box-shadow: none;
}

.epl-info-bar--flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
}

@media screen and (max-width: 600px) {
  .epl-info-bar__row--heading {
    display: block;
    margin-bottom: 0.5em;
  }
}

.epl-info-bar__row--flex {
  display: flex;
}

.epl-info-bar__row--justify-content {
  display: flex;
}

.epl-info-bar__row--space-between {
  display: flex;
  justify-content: space-between;
}

.epl-info-bar__row--align-center,
.epl-info-bar__row--align-items-center {
  display: flex;
  align-items: center;
}

.epl-info-bar__section--flex {
  display: flex;
}

.epl-info-bar__wrap .epl-info-bar {
  margin: 0 auto;
  padding-block: 3rem;
  color: var(--epl-color-primary);
  text-align: left;
  align-items: initial;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-address {
  margin: 0;
  padding: 0;
  color: var(--epl-color-white);
  font-family: var(--epl-font-family-secondary);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  text-align: left;
  text-transform: none;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-address .entry-title-sub {
  display: block;
  margin: 0;
  font-family: var(--epl-font-family-secondary);
  font-size: inherit;
  font-weight: 800;
  letter-spacing: 0;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-address .item-street {
  display: initial;
  font-size: 2rem;
  font-weight: 800;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-address .item-state {
  display: none;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-address .item-pcode {
  display: none;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-suburb {
  margin: 0 0 1.2em;
  padding: 0;
  color: var(--epl-color-primary);
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-suburb .entry-title-sub {
  font-family: var(--epl-font-family-primary);
  font-size: 1em;
  font-weight: 600;
  line-height: 1.2;
  text-transform: none;
  letter-spacing: -0.02em;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-heading {
  margin: 0;
  padding: 0;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-primary);
  font-size: 1.6em;
  font-weight: 800;
  line-height: 1.2;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-status {
  display: inline-block;
  margin: 1.5rem 0 1rem;
  padding: 0.3em 0.5em;
  background: var(--epl-color-primary);
  border: none;
  border-radius: 0;
  color: var(--epl-color-primary);
  font-size: 1em;
  font-weight: 400;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-price {
  margin: 0;
  padding: 0;
  font-family: var(--epl-font-family-primary);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-price .page-price,
.epl-info-bar__wrap .epl-info-bar .epl-rec-price .rent-period,
.epl-info-bar__wrap .epl-info-bar .epl-rec-price .bond {
  color: var(--epl-color-secondary);
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-price .bond {
  font-size: 0.5em;
  margin-left: 0.5em;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-icons {
  display: flex;
  margin: 1em 0 0;
  padding: 0;
  background: transparent;
  justify-content: center;
  gap: 0;
  font-size: 1em;
  letter-spacing: 0;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-icons .epl-rec-icon {
  margin: 0 0.5em 0 0;
  padding: 0 0.5em 0 0;
  border: 1px var(--epl-color-primary) solid;
  border-style: none;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-icons .epl-rec-icon:first-child {
  border-left: none;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-icons .epl-rec-icon:last-child {
  border-right: none;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-icons .rec-icon-label,
.epl-info-bar__wrap .epl-info-bar .epl-rec-icons .rec-icon-value,
.epl-info-bar__wrap .epl-info-bar .epl-rec-icons .rec-icon-unit {
  color: var(--epl-color-primary);
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-icons .rec-icon-label {
  font-size: 1em;
  font-weight: 400;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-icons .rec-icon-value {
  font-size: 1em;
  font-weight: 400;
}
.epl-info-bar__wrap .epl-info-bar .epl-rec-buttons .epl-button-wrapper {
  justify-content: center;
}

.epl-section-wrap--info-bar--icons {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 3px solid var(--epl-color-primary);
  border-style: none;
  box-shadow: none;
}

.epl-section-wrap--info-bar--icons .epl-rec-item {
  display: flex;
  padding: 1em 0.2em;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  gap: 0.3em;
  flex: 1 1 auto;
  border: 1px solid var(--epl-color-tint);
  border-style: none solid none none;
  border-radius: 0;
}
.epl-section-wrap--info-bar--icons .epl-rec-item .epl-label {
  flex-basis: 100%;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-primary);
  font-size: 1.2em;
  font-weight: 400;
}
.epl-section-wrap--info-bar--icons .epl-rec-item .epl-value {
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-primary);
  font-size: 1.2em;
  font-weight: 600;
}

/*********************************************
	Status Bar
*********************************************/
.rec-epl-listing-status-bar {
  padding: 1em;
  background: var(--epl-color-secondary);
}
.rec-epl-listing-status-bar h4.epl-rec-meta {
  color: var(--epl-color-white);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}
/*********************************************
	Listing Module Enquiry
*********************************************/
.epl-property-single-rec .epl-section-enquiry {
  background: var(--epl-color-secondary);
  color: var(--epl-color-white);
}
.epl-property-single-rec .epl-section-enquiry h4,
.epl-property-single-rec .epl-section-enquiry h5,
.epl-property-single-rec .epl-section-enquiry h6 {
  color: var(--epl-color-white);
  font-family: var(--epl-font-family-primary);
}
.epl-property-single-rec .epl-section-enquiry .rec-entry-title-wrapper .rec-entry-title {
  color: var(--epl-color-white);
  border-color: var(--epl-color-white);
}
.epl-property-single-rec .epl-section-enquiry .epl-rec-inner-container {
  max-width: 100%;
  margin: 0 auto;
}
.epl-property-single-rec .epl-section-enquiry .rec-contents {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2em;
}
.epl-property-single-rec .epl-section-enquiry .epl-rec-heading {
  font-size: 1.4em;
  font-weight: 600;
  color: var(--epl-color-white);
}
.epl-property-single-rec .epl-section-enquiry .epl-rec-address {
  font-size: 1.2em;
  color: var(--epl-color-white);
}
.epl-property-single-rec .epl-section-enquiry .property-feature-icons {
  margin: 0.2em 0 0;
  font-size: 1.2em;
  gap: 1em;
}
.epl-property-single-rec .epl-section-enquiry .property-feature-icons .epl-rec-icon {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.epl-property-single-rec .epl-section-enquiry .property-feature-icons .rec-icon-value {
  font-size: 0.8em;
}
.epl-property-single-rec .epl-section-enquiry .property-feature-icons .bedroom .rec-icon-label {
  background: url("images/icons/bed-white.svg") no-repeat;
}
.epl-property-single-rec .epl-section-enquiry .property-feature-icons .bathroom .rec-icon-label {
  background: url("images/icons/bath-white.svg") no-repeat;
}
.epl-property-single-rec .epl-section-enquiry .property-feature-icons .parking .rec-icon-label {
  background: url("images/icons/car-white.svg") no-repeat;
}

@media screen and (max-width: 100%) {
  .epl-property-single-rec .epl-section-enquiry .epl-rec-inner-container {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (min-width: 600px) {
  .epl-property-single-rec .epl-section-enquiry .rec-contents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2em;
  }
}
.epl-author-box-wrapper {
  margin: 0;
  padding: 0;
  display: block;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: flex-start;
  gap: 3em;
  width: 100%;
}
.epl-author-box-wrapper > * {
  flex: 1;
}

.epl-author-box-card {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--epl-color-primary);
  width: 100%;
  max-width: 100%;
  border: 1px solid var(--epl-color-grey-e1);
  border-style: none;
  border-radius: 0;
  box-shadow: none;
  text-decoration: none;
}
.epl-author-box-card > * {
  box-sizing: border-box;
}
.epl-author-box-card:first-child {
  margin-top: 0;
}
.epl-author-box-card:nth-child(2) {
  border-top: 0;
}
.epl-author-box-card a:not(.epl-button, .epl-social-share__link--share, .epl-social-share__link, .epl-row--button) {
  color: var(--epl-color-secondary);
}
.epl-author-box-card a:not(.epl-button, .epl-social-share__link--share, .epl-social-share__link, .epl-row--button):hover {
  color: var(--epl-color-primary);
  text-decoration: none;
}
.epl-author-box-card img {
  display: block;
}
.epl-author-box-card .epl-author-box-card__inner {
  margin: 0;
  padding: 0 0 2em;
  display: flex;
  grid-template-columns: initial;
  flex-direction: row;
  justify-content: flex-start;
  place-items: initial;
  align-items: center;
  gap: 1em;
  background: transparent;
  text-align: left;
  border: 1px solid var(--epl-color-secondary-opacity);
  border-style: none;
}
.epl-author-box-card .epl-author-box-card__inner > * {
  min-width: 0;
  width: 100%;
  flex: initial;
}
@media screen and (max-width: 400px) {
  .epl-author-box-card .epl-author-box-card__inner {
    flex-wrap: wrap;
  }
}
.epl-author-box-card .epl-author-box-card__row--header {
  margin: 0;
  padding: 0;
  flex: 0 1 auto;
  max-width: initial;
  text-align: left;
  border: 1px solid var(--epl-color-grey-e5);
  border-style: none;
}
.epl-author-box-card .epl-author-box-card__row--header img {
  display: block;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 0;
  border: 1px solid var(--epl-color-primary);
  border-style: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.epl-author-box-card .epl-author-box-card__row--content {
  margin: 0;
  padding: 1em 0;
  background: transparent;
  text-align: left;
  border: 4px solid var(--epl-color-white);
  border-style: none;
  overflow: hidden;
}
.epl-author-box-card .epl-author-title {
  margin: 0 0 0.5em;
  padding: 0;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  font-family: var(--epl-font-family-primary);
}
.epl-author-box-card .epl-author-title a {
  color: var(--epl-color-primary);
}
.epl-author-box-card .epl-author-position {
  margin: 0.5em 0 0;
  padding: 0 0 1em;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-primary);
  font-size: 1.4em;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1555;
  text-transform: none;
  border: 1px solid var(--epl-color-primary);
  border-style: none;
}
.epl-author-box-card .epl-author-slogan {
  margin: 0 0 0.5em;
  padding: 0;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-primary);
  font-size: 1.4em;
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  border: 1px solid var(--epl-color-primary);
  border-style: none;
}
.epl-author-box-card .epl-author-contact {
  margin: 0;
  padding: 0;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-primary);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.555;
}
.epl-author-box-card .epl-author-contact a {
  box-sizing: border-box;
  display: block;
  margin: 0;
  padding: 0;
  color: var(--epl-color-white);
  text-decoration: none;
  text-align: inherit;
  line-height: 1.2;
  letter-spacing: 0;
  border: 1px solid var(--epl-color-grey-e1);
  border-style: none;
  border-radius: 0;
}
.epl-author-box-card .epl-author-contact a:hover {
  color: var(--epl-color-white);
  border-color: var(--epl-color-secondary);
  text-decoration: none;
}
.epl-author-box-card .epl-author-contact i {
  color: var(--epl-color-secondary);
  margin-right: 0.3em;
}
.epl-author-box-card .epl-bio-more {
  display: block;
  overflow: visible;
}
.epl-author-box-card .epl-sd-author-social-buttons {
  display: flex;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
.epl-author-box-card .epl-author-icon-svg {
  display: block;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
  align-items: center;
  gap: 1em;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border: none;
  border-radius: 30px;
  transition: border 500ms ease-out;
}
.epl-author-box-card .epl-author-icon-svg:hover {
  border-color: var(--epl-color-primary);
}
.epl-author-box-card .epl-button.disabled {
  display: block;
  margin: 1em 0 0;
  padding: 1.25em 1em;
  background: var(--epl-color-white);
  color: var(--epl-color-primary);
  border: 1px solid var(--epl-color-primary);
  border-style: solid;
  border-radius: 0;
  box-shadow: none;
  font-family: var(--epl-font-family-primary);
  font-size: 1em;
  font-weight: 400;
  text-transform: none;
  text-align: center;
}
.epl-author-box-card .epl-button.disabled:hover {
  background: var(--epl-color-white);
  color: var(--epl-color-secondary);
  border-color: var(--epl-color-secondary);
  box-shadow: none;
}

/*********************************************
	Tabs - Solid
*********************************************/
ul.epl_ui_tab_menu_wrapper {
  display: flex;
  justify-content: flex-start;
  flex-wrap: nowrap;
  margin-bottom: 0;
  gap: 1px;
}
ul.epl_ui_tab_menu_wrapper > :first-child {
  overflow: hidden;
  border-top-left-radius: 0.5em;
}
ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu {
  background: transparent;
  color: var(--epl-color-black);
  cursor: pointer;
  display: block;
  margin: 0;
  padding: 0;
}
ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu a {
  box-sizing: border-box;
  width: 100%;
  display: block;
  text-align: center;
  margin: 0;
  padding: 0.5em 2em;
  font-size: 1em;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--epl-color-secondary);
  color: var(--epl-color-white);
  border: none;
  border-radius: 0;
}
ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu_current {
  background: transparent;
  border: none;
  margin-bottom: 0;
}
ul.epl_ui_tab_menu_wrapper li.epl_ui_tab_menu_current a {
  background: var(--epl-color-white);
  color: var(--epl-color-primary);
  border: none;
}

.epl_ui_tab_content {
  background: var(--epl-color-white);
  margin-bottom: 0;
  padding: 0.3em;
  border-top-right-radius: 0.9em;
  border-bottom-right-radius: 0.9em;
}

.epl_ui_tab_menu_wrapper_vertical {
  display: inline;
  float: left;
  width: 20%;
}
.epl_ui_tab_menu_wrapper_vertical li {
  width: 100%;
}
.epl_ui_tab_menu_wrapper_vertical .epl_ui_tab_content {
  margin-left: 25%;
}

/* Tooltip container */
.epl-tooltip {
  position: relative;
  border-bottom: 1px dotted var(--epl-color-primary); /* If you want dots under the hoverable text */
}
.epl-tooltip .epl-tooltip__text {
  display: none;
  position: absolute;
  z-index: 1;
  visibility: hidden;
  width: 120px;
  background-color: var(--epl-color-primary);
  color: var(--epl-color-white);
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  bottom: 100%;
  left: 50%;
  margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
}
.epl-tooltip:hover .epl-tooltip__text {
  visibility: visible;
}

.epl-video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}
.epl-video-container iframe {
  margin: 1em 0 0;
}

/*********************************************
	Archive: Slim
*********************************************/
.epl-row--agents {
  position: absolute;
  inset: -30px 20px auto auto;
  z-index: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 0;
}
.epl-row--agents > :nth-child(2) {
  margin-top: 0;
}
.epl-row--agents .epl-rec-agent {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 0.5em;
  line-height: 0;
}
.epl-row--agents .epl-rec-agent__row__image a {
  display: block;
}
.epl-row--agents .epl-rec-agent__row__image img {
  max-width: 40px;
  border: 1px solid var(--epl-color-primary);
  border-style: solid;
  border-radius: 0;
  aspect-ratio: 1/1;
}
.epl-row--agents .epl-entry-title {
  font-weight: 400;
  font-size: 1em;
  color: #aaa;
}

/*********************************************
Staff Hero
*********************************************/
.rec-staff-hero-bg-outer-wrapper {
  max-width: 100%;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}
.rec-staff-hero-bg-outer-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 400px;
}

.rec-staff-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.rec-staff-hero-bg .rec-text-container--- {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
/* DEMO-SPECIFIC STYLES */
.rec-typewriter {
  display: flex;
  justify-content: center;
}

.rec-typewriter .title-heading-center {
  display: block;
  color: #fff;
  font-family: monospace;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid orange; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: 0.15em; /* Adjust as needed */
  animation: typing 3.5s steps(30, end), blink-caret 0.5s step-end infinite;
}

/* The typing effect */
@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}
/* The typewriter cursor effect */
@keyframes blink-caret {
  from, to {
    border-color: transparent;
  }
  50% {
    border-color: var(--epl-color-primary);
  }
}
.epl-section-wrap--info-bar--listing-overlay {
  position: fixed;
  width: 100%;
  bottom: -200px;
  z-index: 10;
  background: var(--epl-color-white);
  transition: bottom 0.3s ease-in-out;
  padding: 1em 0;
  border-top: 1px solid var(--epl-color-primary);
  border-bottom: 1px solid var(--epl-color-primary);
}
.epl-section-wrap--info-bar--listing-overlay .epl-section {
  padding: 0;
}
.epl-section-wrap--info-bar--listing-overlay .epl-button--outline {
  margin-left: 2em;
  background: var(--epl-color-secondary);
  color: var(--epl-color-white);
  border-color: var(--epl-color-secondary);
}
.epl-section-wrap--info-bar--listing-overlay .epl-button--outline:hover {
  background: var(--epl-color-white);
  color: var(--epl-color-primary);
  border-color: var(--epl-color-primary);
}
.epl-section-wrap--info-bar--listing-overlay .epl-button--outline:focus {
  background: var(--epl-color-grey-e7);
  color: var(--epl-color-primary);
  border-color: var(--epl-color-grey-e7);
}

@media screen and (min-width: 600px) {
  .epl-section-wrap--info-bar--listing-overlay--visible {
    bottom: 0;
  }
}

.epl-info-bar--listing-overlay {
  margin: 0;
  padding: 2em 0;
}
.epl-info-bar--listing-overlay .epl-info-bar__row--address {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.7em;
}
.epl-info-bar--listing-overlay .epl-info-bar__row--address .epl-rec-address {
  padding: 0.6em 2rem;
  border-left: 1px solid #dedede;
}
.epl-info-bar--listing-overlay .epl-info-bar__row--address .epl-rec-address .entry-title-sub {
  margin: 0;
}
.epl-info-bar--listing-overlay .epl-info-bar__row--agent > :nth-child(2) {
  display: none;
}
.epl-info-bar--listing-overlay .epl-author-box-card.hentry {
  margin: 0;
  max-width: 100%;
  box-shadow: none;
}
.epl-info-bar--listing-overlay .epl-author-box-card.hentry .epl-author-box-card__inner {
  display: flex;
  align-items: center;
}
.epl-info-bar--listing-overlay .epl-author-box-card.hentry .epl-author-box-card__row--header {
  max-width: 96px;
}
.epl-info-bar--listing-overlay .epl-author-box-card.hentry .epl-author-box-card__row--header img {
  border-radius: 30em;
  border-color: #dedede;
}
.epl-info-bar--listing-overlay .epl-author-box-card.hentry .epl-author-title {
  margin: 0;
  font-weight: 500;
  text-transform: uppercase;
}
.epl-info-bar--listing-overlay .epl-author-box-card.hentry .epl-author-position {
  margin: 0;
}
.epl-info-bar--listing-overlay .epl-author-box-card.hentry .epl-author-slogan {
  display: none;
}
.epl-info-bar--listing-overlay .epl-author-box-card.hentry .epl-author-contact {
  margin: 0;
}
.epl-info-bar--listing-overlay .epl-author-box-card.hentry .epl-sd-author-email.disabled {
  margin-left: 4em;
  background: var(--epl-color-secondary);
  padding: 1em 2.8em 0.9em;
  border-color: var(--epl-color-secondary);
}
.epl-info-bar--listing-overlay .epl-author-box-card.hentry .epl-sd-author-email.disabled a.disabled {
  color: var(--epl-color-white);
}

/*****************************
	Project Icons
****************************/
/*****************************
	Archive - Helpers
****************************/
.epl-archive-default {
  width: 100%;
  position: relative;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  box-sizing: border-box;
  overflow: visible !important;
  z-index: 1;
}

.epl-loop-content {
  margin: 0;
  padding: 0;
}

.epl-shortcode .loop-content:not(.epl-widget),
.epl-template-builder:not(.epl-widget),
.epl-template-blog:not(.epl-widget),
.epl-template-default:not(.epl-widget),
.epl-template-grid:not(.epl-widget),
.epl-template-featured:not(.epl-widget),
.epl-template-trending:not(.epl-widget),
.epl-template-card:not(.epl-widget),
.epl-shortcode-listing-category:not(.epl-widget),
.epl-sd-listings-inner:not(.epl-widget),
.epl-sd-shortcode-content:not(.epl-widget),
.epl-of-listings:not(.epl-widget),
.epl-office-team:not(.epl-widget) {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0;
  row-gap: 1em;
  -moz-column-gap: 1em;
       column-gap: 1em;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  flex: 1;
  min-width: 0;
  min-height: 0;
  outline: none;
}
@media screen and (max-width: 600px) {
  .epl-shortcode .loop-content:not(.epl-widget),
  .epl-template-builder:not(.epl-widget),
  .epl-template-blog:not(.epl-widget),
  .epl-template-default:not(.epl-widget),
  .epl-template-grid:not(.epl-widget),
  .epl-template-featured:not(.epl-widget),
  .epl-template-trending:not(.epl-widget),
  .epl-template-card:not(.epl-widget),
  .epl-shortcode-listing-category:not(.epl-widget),
  .epl-sd-listings-inner:not(.epl-widget),
  .epl-sd-shortcode-content:not(.epl-widget),
  .epl-of-listings:not(.epl-widget),
  .epl-office-team:not(.epl-widget) {
    row-gap: 1em;
    -moz-column-gap: 1em;
         column-gap: 1em;
  }
}
@media screen and (min-width: 600px) and (max-width: 770px) {
  .epl-shortcode .loop-content:not(.epl-widget),
  .epl-template-builder:not(.epl-widget),
  .epl-template-blog:not(.epl-widget),
  .epl-template-default:not(.epl-widget),
  .epl-template-grid:not(.epl-widget),
  .epl-template-featured:not(.epl-widget),
  .epl-template-trending:not(.epl-widget),
  .epl-template-card:not(.epl-widget),
  .epl-shortcode-listing-category:not(.epl-widget),
  .epl-sd-listings-inner:not(.epl-widget),
  .epl-sd-shortcode-content:not(.epl-widget),
  .epl-of-listings:not(.epl-widget),
  .epl-office-team:not(.epl-widget) {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    outline: none;
  }
}
@media screen and (min-width: 770px) and (max-width: 1030px) {
  .epl-shortcode .loop-content:not(.epl-widget),
  .epl-template-builder:not(.epl-widget),
  .epl-template-blog:not(.epl-widget),
  .epl-template-default:not(.epl-widget),
  .epl-template-grid:not(.epl-widget),
  .epl-template-featured:not(.epl-widget),
  .epl-template-trending:not(.epl-widget),
  .epl-template-card:not(.epl-widget),
  .epl-shortcode-listing-category:not(.epl-widget),
  .epl-sd-listings-inner:not(.epl-widget),
  .epl-sd-shortcode-content:not(.epl-widget),
  .epl-of-listings:not(.epl-widget),
  .epl-office-team:not(.epl-widget) {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    outline: none;
  }
}
@media screen and (min-width: 1030px) and (max-width: 1440px) {
  .epl-shortcode .loop-content:not(.epl-widget),
  .epl-template-builder:not(.epl-widget),
  .epl-template-blog:not(.epl-widget),
  .epl-template-default:not(.epl-widget),
  .epl-template-grid:not(.epl-widget),
  .epl-template-featured:not(.epl-widget),
  .epl-template-trending:not(.epl-widget),
  .epl-template-card:not(.epl-widget),
  .epl-shortcode-listing-category:not(.epl-widget),
  .epl-sd-listings-inner:not(.epl-widget),
  .epl-sd-shortcode-content:not(.epl-widget),
  .epl-of-listings:not(.epl-widget),
  .epl-office-team:not(.epl-widget) {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    outline: none;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1540px) {
  .epl-shortcode .loop-content:not(.epl-widget),
  .epl-template-builder:not(.epl-widget),
  .epl-template-blog:not(.epl-widget),
  .epl-template-default:not(.epl-widget),
  .epl-template-grid:not(.epl-widget),
  .epl-template-featured:not(.epl-widget),
  .epl-template-trending:not(.epl-widget),
  .epl-template-card:not(.epl-widget),
  .epl-shortcode-listing-category:not(.epl-widget),
  .epl-sd-listings-inner:not(.epl-widget),
  .epl-sd-shortcode-content:not(.epl-widget),
  .epl-of-listings:not(.epl-widget),
  .epl-office-team:not(.epl-widget) {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    outline: none;
  }
}
@media screen and (min-width: 1540px) {
  .epl-shortcode .loop-content:not(.epl-widget),
  .epl-template-builder:not(.epl-widget),
  .epl-template-blog:not(.epl-widget),
  .epl-template-default:not(.epl-widget),
  .epl-template-grid:not(.epl-widget),
  .epl-template-featured:not(.epl-widget),
  .epl-template-trending:not(.epl-widget),
  .epl-template-card:not(.epl-widget),
  .epl-shortcode-listing-category:not(.epl-widget),
  .epl-sd-listings-inner:not(.epl-widget),
  .epl-sd-shortcode-content:not(.epl-widget),
  .epl-of-listings:not(.epl-widget),
  .epl-office-team:not(.epl-widget) {
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    outline: none;
  }
}

.epl-shortcode-listing {
  overflow: visible;
}

.epl-template-featured,
.epl-template-trending {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  -moz-column-gap: 1em;
       column-gap: 1em;
  row-gap: 1em;
}
.epl-template-featured .epl-stickers-wrapper,
.epl-template-trending .epl-stickers-wrapper {
  display: none !important;
}

.epl-template-card {
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  -moz-column-gap: 1em;
       column-gap: 1em;
  row-gap: 1em;
}

.epl-template-trending {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.epl-loop-tools-wrap,
.loop-footer,
.epl-of-epl-section__title {
  grid-column: 1/-1;
  margin: 0;
}

.epl-search-not-found-title,
.epl-search-not-found-message {
  grid-column: 1/-1;
}

/*****************************
	Archive - Container
****************************/
.epl-listing-grid-view,
.epl-listing-grid-view-forced,
.epl-property-blog.epl-listing-grid-view,
.epl-property-blog.epl-listing-grid-view-forced {
  max-width: 100%;
}
.epl-property-blog-rec,
.epl-property-blog-rec.hentry {
  position: relative;
  isolation: isolate;
  display: grid;
  margin: 0;
  padding: 0;
  overflow: hidden;
  grid-template-columns: 380px 1fr;
  grid-template-rows: initial;
  -moz-column-gap: 0;
       column-gap: 0;
  row-gap: 0;
  flex-direction: row;
  grid-column: 1/-1;
  background: var(--epl-color-white);
  border: 1px solid var(--epl-color-grey);
  border-style: none;
  border-radius: 0;
  box-shadow: none;
  max-width: 100%;
  transition: background 0.5s;
  min-width: 0;
}
.epl-property-blog-rec a:not(.epl-button, .epl-row__link, .epl-image-cover a),
.epl-property-blog-rec.hentry a:not(.epl-button, .epl-row__link, .epl-image-cover a) {
  color: var(--epl-color-primary);
}
.epl-property-blog-rec:hover,
.epl-property-blog-rec.hentry:hover {
  background-color: var(--epl-color-white);
  border-color: var(--epl-color-grey);
  box-shadow: none;
  transform: none;
}
.epl-property-blog-rec:hover .epl-blog-image img,
.epl-property-blog-rec.hentry:hover .epl-blog-image img {
  transform: scale(1.05);
  filter: none;
}
.epl-property-blog-rec .epl-row-wrap--header,
.epl-property-blog-rec.hentry .epl-row-wrap--header {
  position: relative;
  box-sizing: border-box;
  display: block;
  margin: 0;
  padding: 0;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  gap: 0.3em;
  overflow: visible;
  border-radius: 0;
  min-width: 0;
}
.epl-property-blog-rec .epl-row-wrap--header .epl-blog-image img,
.epl-property-blog-rec.hentry .epl-row-wrap--header .epl-blog-image img {
  display: block;
  transition: all 0.5s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-width: 100%;
}
.epl-property-blog-rec .epl-row-wrap--header .epl-archive-entry-image,
.epl-property-blog-rec.hentry .epl-row-wrap--header .epl-archive-entry-image {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}
.epl-property-blog-rec .epl-blog-image,
.epl-property-blog-rec.hentry .epl-blog-image {
  position: relative;
}
.epl-property-blog-rec .epl-blog-image::before,
.epl-property-blog-rec.hentry .epl-blog-image::before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  z-index: 1;
  transition: opacity 0.3s;
  opacity: 0.4;
}
.epl-property-blog-rec:hover .epl-blog-image::before,
.epl-property-blog-rec.hentry:hover .epl-blog-image::before {
  opacity: 0.6;
}
.epl-property-blog-rec .epl-row-wrap--content,
.epl-property-blog-rec.hentry .epl-row-wrap--content {
  flex-basis: auto;
  flex-grow: 1;
  box-sizing: border-box;
  position: relative;
  inset: initial;
  z-index: 1;
  display: flex;
  margin: 0;
  padding: 1em 0;
  text-align: center;
  background: transparent;
  grid-template-columns: 1fr;
  flex-direction: column;
  justify-content: space-between;
  align-items: initial;
  gap: 0.5em;
  min-width: 0;
}
.epl-property-blog-rec .epl-row-wrap--footer,
.epl-property-blog-rec.hentry .epl-row-wrap--footer {
  background: transparent;
  padding: 1em;
  border-top: 1px solid #ddd;
}
.epl-property-blog-rec .epl-row--content > *,
.epl-property-blog-rec.hentry .epl-row--content > * {
  flex: 0 1 auto;
}
.epl-property-blog-rec .epl-rec-address,
.epl-property-blog-rec.hentry .epl-rec-address {
  margin: 0;
  padding: 0;
  font-family: var(--epl-font-family-primary);
  font-weight: 400;
  font-size: 1em;
  text-transform: none;
  text-align: left;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--epl-color-primary);
}
.epl-property-blog-rec .epl-rec-address a,
.epl-property-blog-rec.hentry .epl-rec-address a {
  display: inline-block;
  flex-direction: initial;
  color: var(--epl-color-primary);
}
.epl-property-blog-rec .epl-rec-address .item-street,
.epl-property-blog-rec .epl-rec-address .entry-title-sub,
.epl-property-blog-rec.hentry .epl-rec-address .item-street,
.epl-property-blog-rec.hentry .epl-rec-address .entry-title-sub {
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.epl-property-blog-rec .epl-rec-address .item-street,
.epl-property-blog-rec.hentry .epl-rec-address .item-street {
  display: inline-block;
  font-size: inherit;
  font-weight: 400;
}
.epl-property-blog-rec .epl-rec-address .entry-title-sub,
.epl-property-blog-rec.hentry .epl-rec-address .entry-title-sub {
  display: inline-block;
  margin: 0;
  color: inherit;
  font-weight: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
.epl-property-blog-rec .epl-rec-address .item-suburb,
.epl-property-blog-rec.hentry .epl-rec-address .item-suburb {
  display: none;
}
.epl-property-blog-rec .epl-rec-address .item-state,
.epl-property-blog-rec.hentry .epl-rec-address .item-state {
  display: none;
}
.epl-property-blog-rec .epl-rec-address .item-pcode,
.epl-property-blog-rec.hentry .epl-rec-address .item-pcode {
  display: none;
}
.epl-property-blog-rec .epl-rec-address .item-country,
.epl-property-blog-rec.hentry .epl-rec-address .item-country {
  display: none;
}
.epl-property-blog-rec .epl-rec-heading,
.epl-property-blog-rec.hentry .epl-rec-heading {
  margin: 0;
  padding: 0;
  font-family: var(--epl-font-family-primary);
  font-weight: 700;
  font-size: 1.2em;
  text-transform: none;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--epl-color-primary);
  min-width: 0;
  flex: initial;
}
.epl-property-blog-rec .epl-rec-heading a,
.epl-property-blog-rec.hentry .epl-rec-heading a {
  color: var(--epl-color-primary);
}
.epl-property-blog-rec .epl-rec-heading p,
.epl-property-blog-rec.hentry .epl-rec-heading p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.epl-property-blog-rec .epl-rec-suburb,
.epl-property-blog-rec.hentry .epl-rec-suburb {
  margin: 0;
  padding: 0;
  font-family: var(--epl-font-family-secondary);
  font-weight: 600;
  font-size: 1.2em;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 0;
  color: var(--epl-color-primary);
}
.epl-property-blog-rec .epl-rec-suburb a,
.epl-property-blog-rec.hentry .epl-rec-suburb a {
  color: var(--epl-color-primary);
}
.epl-property-blog-rec .epl-rec-category,
.epl-property-blog-rec.hentry .epl-rec-category {
  margin: 0;
  padding: 0;
  font-family: var(--epl-font-family-primary);
  font-weight: 400;
  font-size: 1em;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--epl-color-primary);
}
.epl-property-blog-rec .epl-rec-category a,
.epl-property-blog-rec.hentry .epl-rec-category a {
  color: var(--epl-color-primary);
}
.epl-property-blog-rec .epl-rec-status,
.epl-property-blog-rec.hentry .epl-rec-status {
  margin: 0;
  padding: 0;
  font-family: var(--epl-font-family-primary);
  font-weight: 400;
  font-size: 1em;
  text-transform: none;
  letter-spacing: -0.02em;
  color: var(--epl-color-tint);
}
.epl-property-blog-rec .epl-rec-status a,
.epl-property-blog-rec.hentry .epl-rec-status a {
  color: var(--epl-color-primary);
}
.epl-property-blog-rec .epl-rec-price,
.epl-property-blog-rec.hentry .epl-rec-price {
  margin: 0;
  padding: 0;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-primary);
  font-size: 0.9em;
  font-style: normal;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.epl-property-blog-rec .epl-rec-excerpt,
.epl-property-blog-rec.hentry .epl-rec-excerpt {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin: 0;
  padding: 0;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-secondary);
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  text-transform: none;
  letter-spacing: -0.02em;
}
.epl-property-blog-rec .epl-excerpt-content,
.epl-property-blog-rec.hentry .epl-excerpt-content {
  margin: 0;
}

.epl-status-current .epl-rec-meta .page-price {
  color: var(--epl-color-secondary);
}

.epl-status-under-offer .epl-rec-meta .page-price {
  color: var(--epl-color-secondary);
}

.epl-status-sold .epl-rec-meta .page-price {
  color: var(--epl-color-secondary);
}

.epl-status-leased .epl-rec-meta .page-price {
  color: var(--epl-color-secondary);
}

.epl-rec-meta .rent-period {
  color: var(--epl-color-secondary);
  font-size: 0.6em;
}

.page-price.sold,
.sold-status {
  text-transform: uppercase;
}

.epl-listing-grid-view,
.epl-listing-grid-view.hentry,
.epl-listing-grid-view-forced,
.epl-listing-grid-view-forced.hentry {
  display: flex;
  grid-column: initial;
  flex-direction: column;
  grid-template-rows: initial;
  justify-content: space-between;
}
.epl-listing-grid-view .epl-row-wrap--content,
.epl-listing-grid-view.hentry .epl-row-wrap--content,
.epl-listing-grid-view-forced .epl-row-wrap--content,
.epl-listing-grid-view-forced.hentry .epl-row-wrap--content {
  display: flex;
}
.epl-listing-grid-view .epl-blog-image img,
.epl-listing-grid-view.hentry .epl-blog-image img,
.epl-listing-grid-view-forced .epl-blog-image img,
.epl-listing-grid-view-forced.hentry .epl-blog-image img {
  max-width: 100%;
}

.epl-property-blog-rec.epl-listing-grid-view,
.epl-property-blog-rec.epl-listing-grid-view-forced {
  margin: 0;
  padding: 0;
}

@media screen and (min-width: 600px) {
  /** Global **/
}
@media screen and (min-width: 770px) {
  /** Global **/
}
@media screen and (min-width: 900px) {
  /** Global **/
}
.epl-listing-grid-view,
.epl-listing-grid-view-forced,
.epl-property-blog.epl-listing-grid-view,
.epl-property-blog.epl-listing-grid-view-forced {
  grid-template-columns: 1fr;
}
.epl-listing-grid-view.hentry,
.epl-listing-grid-view-forced.hentry,
.epl-property-blog.epl-listing-grid-view.hentry,
.epl-property-blog.epl-listing-grid-view-forced.hentry {
  grid-template-columns: 1fr;
}
.epl-inspections-list .epl-inspections-menu-item {
  margin-left: 0.5em;
}
.epl-inspections-list .epl-inspections-menu-item a {
  display: inline-block;
  font-size: 0.85em;
  padding: 1.3em 1.5em 1.4em;
  border: 1px solid var(--epl-color-primary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}
.epl-inspections-list .epl-inspection-times-section {
  margin-top: 3em;
  margin-bottom: 3em;
  padding: 0;
}
.epl-inspections-list .epl-inspection-times-heading {
  background: var(--epl-color-white);
  margin-bottom: 4px;
}
.epl-inspections-list .epl-inspection-block {
  padding: 1.2em 0 1em;
}
.epl-inspections-list .epl-inspection-block-date {
  font-family: var(--epl-font-family-secondary);
  font-size: 2em;
  font-weight: 400;
}
.epl-inspections-list .epl-property-blog-rec--inspections,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry {
  max-width: 100%;
  margin: 0 0 4px;
  padding: 2em 0;
  border-top: 1px solid var(--epl-color-grey-ef);
  border-bottom: 1px solid var(--epl-color-grey-ef);
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
.epl-inspections-list .epl-property-blog-rec--inspections .epl-row-wrap--content > :first-child,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-row-wrap--content > :first-child {
  padding-left: 0;
  border-left: none;
}
.epl-inspections-list .epl-property-blog-rec--inspections .epl-column,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-column {
  border-left: 1px solid var(--epl-color-grey-ef);
  padding-left: 3em;
}
.epl-inspections-list .epl-property-blog-rec--inspections .epl-blog-image img,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-blog-image img {
  margin: 0;
  width: 100% !important;
}
.epl-inspections-list .epl-property-blog-rec--inspections .epl-row-wrap--content,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-row-wrap--content {
  display: grid;
  padding: 1em;
  justify-content: flex-start;
  align-items: center;
  text-align: left;
  gap: 0.5em;
  grid-template-columns: 1fr;
}
.epl-inspections-list .epl-property-blog-rec--inspections .epl-rec-suburb,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-rec-suburb {
  font-size: 0.7em;
  color: var(--epl-color-primary);
}
.epl-inspections-list .epl-property-blog-rec--inspections h3.epl-rec-address,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry h3.epl-rec-address {
  margin: 0.2em 0 0.7em !important;
  font-size: 1em !important;
  font-family: var(--epl-font-family-secondary) !important;
  line-height: 0.9 !important;
}
.epl-inspections-list .epl-property-blog-rec--inspections .item-state,
.epl-inspections-list .epl-property-blog-rec--inspections .item-pcode,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .item-state,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .item-pcode {
  display: none;
}
.epl-inspections-list .epl-property-blog-rec--inspections .epl-rec-icons,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-rec-icons {
  justify-content: flex-start;
}
.epl-inspections-list .epl-property-blog-rec--inspections .epl-rec-meta a,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-rec-meta a {
  text-decoration: none;
}
.epl-inspections-list .epl-property-blog-rec--inspections .epl-meta-label,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-meta-label {
  font-size: 0.8em;
  font-weight: 600;
}
.epl-inspections-list .epl-property-blog-rec--inspections .epl-meta-value,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-meta-value {
  margin: 0.3em 0 0;
}
.epl-inspections-list .epl-property-blog-rec--inspections .epl-meta-value--next-inspection,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-meta-value--next-inspection {
  margin: 0 0 1em;
  font-weight: 600;
  text-transform: uppercase;
}
.epl-inspections-list .epl-property-blog-rec--inspections .epl-meta-value--next-inspection i,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-meta-value--next-inspection i {
  top: 5x;
  font-size: 1.4em;
  margin-right: 0.5em;
}
.epl-inspections-list .epl-property-blog-rec--inspections .epl-row-wrap--content,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-row-wrap--content {
  background: var(--epl-color-white);
}
.epl-inspections-list .epl-property-blog-rec--inspections .epl-meta-value--add-to-calendar,
.epl-inspections-list .epl-property-blog-rec--inspections .epl-meta-value--email,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-meta-value--add-to-calendar,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-meta-value--email {
  text-align: left;
  margin: 1em 0 0;
}
.epl-inspections-list .epl-property-blog-rec--inspections .epl-meta-value--add-to-calendar a,
.epl-inspections-list .epl-property-blog-rec--inspections .epl-meta-value--email a,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-meta-value--add-to-calendar a,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-meta-value--email a {
  display: inline-block;
  font-size: 0.85em;
  padding: 1rem 2rem;
  border: 2px solid var(--epl-color-primary);
  background: var(--epl-color-primary);
  color: var(--epl-color-white) !important;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.16em;
  border-radius: 0.3rem;
}
.epl-inspections-list .epl-property-blog-rec--inspections .epl-meta-value--email a,
.epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-meta-value--email a {
  background: transparent;
  color: var(--epl-color-primary) !important;
}
@media screen and (min-width: 480px) and (max-width: 690px) {
  .epl-inspections-list .epl-property-blog-rec--inspections,
  .epl-inspections-list .epl-property-blog-rec--inspections.hentry {
    grid-template-columns: 160px 1fr;
  }
}
@media screen and (min-width: 691px) {
  .epl-inspections-list .epl-property-blog-rec--inspections,
  .epl-inspections-list .epl-property-blog-rec--inspections.hentry {
    grid-template-columns: 246px 1fr;
  }
  .epl-inspections-list .epl-property-blog-rec--inspections .epl-row-wrap--content,
  .epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-row-wrap--content {
    padding: 1em 2em;
  }
}
@media screen and (min-width: 820px) {
  .epl-inspections-list .epl-property-blog-rec--inspections,
  .epl-inspections-list .epl-property-blog-rec--inspections.hentry {
    grid-template-columns: 246px 1fr;
  }
}
@media screen and (min-width: 999px) {
  .epl-inspections-list .epl-property-blog-rec--inspections .epl-row-wrap--content,
  .epl-inspections-list .epl-property-blog-rec--inspections.hentry .epl-row-wrap--content {
    padding: 1em 2em;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.epl-inspection-times-checkbox {
  width: 100%;
  margin: 0;
  position: absolute;
  display: block;
  z-index: 2;
  top: 3px;
}
.epl-inspection-times-checkbox input[type=checkbox] {
  width: 30px;
  height: 30px;
  opacity: 0.00000001;
  position: absolute;
  left: 0;
  z-index: 2;
}
.epl-inspection-times-checkbox label {
  position: relative;
}
.epl-inspection-times-checkbox label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  margin: 4px;
  width: 22px;
  height: 22px;
  transition: transform 0.28s ease;
  border-radius: 0;
  border: 1px solid var(--epl-color-accent);
  background: var(--epl-color-white);
}
.epl-inspection-times-checkbox label:after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-bottom: 2px solid var(--epl-color-accent);
  border-left: 2px solid var(--epl-color-accent);
  transform: rotate(-45deg) scale(0);
  transition: transform ease 0.25s;
  will-change: transform;
  position: absolute;
  top: 12px;
  left: 10px;
  border-color: var(--epl-color-accent) !important;
}
.epl-inspection-times-checkbox input[type=checkbox]:checked ~ label::before {
  color: var(--epl-color-accent);
}
.epl-inspection-times-checkbox input[type=checkbox]:checked ~ label::after {
  transform: rotate(-45deg) scale(1);
}
.epl-inspection-times-checkbox label {
  min-height: 34px;
  display: block;
  padding-left: 40px;
  margin-bottom: 0;
  font-weight: normal;
  cursor: pointer;
  vertical-align: sub;
}
.epl-inspection-times-checkbox label span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
.epl-inspection-times-checkbox input[type=checkbox]:focus + label::before {
  outline: 0;
}

.epl-location-profile-blog,
.epl-location-profile-blog.hentry {
  position: relative;
}
.epl-location-profile-blog .epl-row-wrap--content,
.epl-location-profile-blog.hentry .epl-row-wrap--content {
  padding: 0 1.5em 1.5em;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
}
.epl-location-profile-blog .epl-rec-address,
.epl-location-profile-blog.hentry .epl-rec-address {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.epl-location-profile-blog .epl-rec-address a,
.epl-location-profile-blog.hentry .epl-rec-address a {
  color: var(--epl-color-white) !important;
}
.epl-location-profile-blog .epl-rec-heading,
.epl-location-profile-blog.hentry .epl-rec-heading {
  margin: 0.5em 0 0;
  color: var(--epl-color-white);
}
.epl-location-profile-blog .epl-image-cover,
.epl-location-profile-blog.hentry .epl-image-cover {
  opacity: 1;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
}
.epl-location-profile-blog .epl-row__link,
.epl-location-profile-blog.hentry .epl-row__link {
  font-size: 1em;
  align-content: stretch;
  justify-items: end;
  align-items: end;
}
.epl-location-profile-blog .epl-row__link .epl-button,
.epl-location-profile-blog.hentry .epl-row__link .epl-button {
  margin: 1.5em;
}
@media screen and (max-width: 820px) {
  .epl-location-profile-blog .epl-row__link .epl-button,
  .epl-location-profile-blog.hentry .epl-row__link .epl-button {
    font-size: 0.8em;
  }
}

.epl-gallery-remaining__counter {
  font-size: 1.5em;
  font-weight: 200;
}

/*********************************************
	Swiper
*********************************************/
.epl-search-form--swiper-tabs {
  margin: 0 0 2em;
}
.epl-search-form--swiper-tabs .field {
  text-align: right;
}
.epl-search-form--swiper-tabs .epl-field-row {
  margin-right: 0.1em;
}
.epl-search-form--swiper-tabs .epl-search-row-button .field label {
  padding: 0.4em 1.5em;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85em;
}
.epl-search-form--swiper-tabs .epl-search-row-button .field input[type=radio]:checked + label {
  background: transparent;
  color: var(--epl-color-secondary);
  border: 1px solid var(--epl-color-secondary);
}

.epl-listing-swiper {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 88%;
  grid-template-columns: initial !important;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding-bottom: 3em !important;
  scrollbar-width: thin;
}
.epl-listing-swiper.epl-clearfix::after {
  display: none;
}
.epl-listing-swiper .loop-footer {
  display: none;
}

.epl-listing-swiper {
  scroll-snap-type: inline mandatory;
}
.epl-listing-swiper > * {
  scroll-snap-align: start;
}

.epl-listing-swiper::-webkit-scrollbar {
  border-radius: 100vw;
  height: 0.1em;
}

.epl-listing-swiper::-webkit-scrollbar-track {
  background: var(--epl-color-grey-e2);
}

.epl-listing-swiper::-webkit-scrollbar-thumb {
  background: var(--epl-color-secondary);
  border-radius: 100vw;
}

.epl-listing-swiper::-webkit-scrollbar-thumb:hover {
  background: var(--epl-color-primary);
}

@media screen and (min-width: 600px) {
  .epl-listing-swiper {
    grid-auto-columns: 88%;
  }
}
@media screen and (min-width: 600px) {
  .epl-listing-swiper {
    grid-auto-columns: 88%;
  }
}
@media screen and (min-width: 770px) {
  .epl-listing-swiper {
    grid-auto-columns: 44%;
  }
}
@media screen and (min-width: 1030px) {
  .epl-listing-swiper {
    grid-auto-columns: 30%;
  }
}
.epl-single-default {
  width: 100%;
  max-width: 100%;
}

.elementor-shortcode .epl-rec-heading,
.epl-property-single-rec .epl-rec-heading {
  margin: 0;
  padding: 0;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-secondary);
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.355;
  letter-spacing: 0;
  text-transform: none;
}
.elementor-shortcode .epl-rec-heading--secondary,
.epl-property-single-rec .epl-rec-heading--secondary {
  margin: 0 0 1em;
  padding: 0;
  color: var(--epl-color-primary);
  font-family: inherit;
  font-size: 1em;
  font-weight: 300;
  line-height: 1.355;
  letter-spacing: -0.02em;
  text-transform: none;
}
.elementor-shortcode .epl-rec-address,
.epl-property-single-rec .epl-rec-address {
  margin: 0;
  padding: 0;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-primary);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.355;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
}
.elementor-shortcode .entry-title-sub,
.epl-property-single-rec .entry-title-sub {
  display: inline-block;
  font-size: inherit;
  font-weight: inherit;
}
.elementor-shortcode .item-street,
.epl-property-single-rec .item-street {
  display: inline-block;
  font-size: inherit;
  font-weight: 700;
}
.elementor-shortcode .item-suburb,
.epl-property-single-rec .item-suburb {
  display: inline-block;
}
.elementor-shortcode .item-state,
.epl-property-single-rec .item-state {
  display: inline-block;
}
.elementor-shortcode .item-pcode,
.epl-property-single-rec .item-pcode {
  display: inline-block;
}
.elementor-shortcode .epl-rec-suburb,
.epl-property-single-rec .epl-rec-suburb {
  margin: 0;
  padding: 0;
  color: var(--epl-color-secondary);
  font-family: var(--epl-font-family-primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.355;
  letter-spacing: -0.02em;
  text-transform: none;
}
.elementor-shortcode .epl-rec-status,
.epl-property-single-rec .epl-rec-status {
  margin: 0;
  padding: 0;
  color: var(--epl-color-primary);
  font-family: inherit;
  font-size: 1.6em;
  font-weight: 500;
  line-height: 1.355;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: left;
}
.elementor-shortcode .epl-rec-category,
.epl-property-single-rec .epl-rec-category {
  margin: 0 0 0;
  padding: 1em 0.2em;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-primary);
  font-size: 1em;
  font-weight: 400;
  line-height: inherit;
  letter-spacing: -0.02em;
  text-transform: none;
}
.elementor-shortcode .epl-rec-price,
.epl-property-single-rec .epl-rec-price {
  margin: 0 0 0.5rem;
  padding: 0;
  color: var(--epl-color-primary);
  font-family: var(--epl-font-family-primary);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.333;
  letter-spacing: -0.02em;
  text-transform: none;
  text-align: left;
}
.elementor-shortcode .epl-rec-price .bond,
.elementor-shortcode .epl-rec-price .rent-period,
.epl-property-single-rec .epl-rec-price .bond,
.epl-property-single-rec .epl-rec-price .rent-period {
  display: inline-block;
  margin: 0;
  padding: 0;
  font-family: var(--epl-font-family-primary);
  font-size: inherit;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
}
.elementor-shortcode .epl-rec-content,
.epl-property-single-rec .epl-rec-content {
  margin: 1em 0 0;
  padding: 0;
  max-width: 100%;
  color: var(--epl-color-primary);
  font-size: 1rem;
  font-family: var(--epl-font-family-primary);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: left;
}
.elementor-shortcode .epl-rec-features,
.epl-property-single-rec .epl-rec-features {
  margin: 0 0 2em;
  padding: 0;
  border: 1px solid var(--epl-color-primary);
  border-style: none;
}
.elementor-shortcode .epl-rec-features .epl-tab-title,
.epl-property-single-rec .epl-rec-features .epl-tab-title {
  display: none;
  margin: 1em 0 0.5em;
  padding: 0;
  color: var(--epl-color-accent);
  font-family: var(--epl-font-family-secondary);
  font-size: 1.2em;
  font-weight: 600;
  font-style: normal;
  line-height: 1.355;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  border: 1px solid var(--epl-color-primary);
  border-style: none;
}
.elementor-shortcode .epl-section-map,
.epl-property-single-rec .epl-section-map {
  margin-top: 0;
  color: var(--epl-color-primary);
}

/*****************************
        Single - Staff
****************************/
.epl-single-directory .site-content .ast-container {
  max-width: 100%;
  padding: 0;
}

@media screen and (max-width: 100%) {
  .epl-single-directory .ast-container .container-wrap-outer-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.epl-sd-load-more {
  display: none;
}

.epl-sd-single {
  margin: 0;
}
.epl-sd-single .epl-section-wrap--author--featured-image .epl-section {
  margin-top: 0;
  padding: 0;
  display: grid;
}
@media screen and (min-width: 700px) {
  .epl-sd-single .epl-section-wrap--author--featured-image .epl-section {
    grid-template-columns: 1fr 1.5fr;
    gap: 4em;
  }
}
.epl-sd-single .epl-sd-entry-image--hero {
  overflow: hidden;
}
.epl-sd-single .epl-sd-entry-image--hero img {
  max-height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.epl-sd-single .epl-sd-entry-image--featured {
  height: 100%;
}
.epl-sd-single .epl-sd-entry-image--featured img {
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}
.epl-sd-single .epl-row--entry-content {
  padding-block: 4em;
}
.epl-sd-single .epl-entry-content .container-wrap-outer-wrapper {
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: 2em;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-columns: 1fr;
  gap: 2em;
}
.epl-sd-single .epl-sd-entry-image img {
  margin: 0;
  padding: 0;
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
}
.epl-sd-single .epl-section__item--details {
  display: flex;
  -moz-column-gap: 5em;
       column-gap: 5em;
  row-gap: 1em;
  flex-wrap: wrap;
}
.epl-sd-single .epl-author-title {
  display: inline-block;
  margin-bottom: 0;
  font-size: clamp(1.4em, 10vw - 1em, 3em);
  font-weight: 300;
  color: var(--epl-color-secondary);
  font-family: var(--epl-font-family-primary);
}
.epl-sd-single .epl-author-position {
  display: inline-block;
  margin: 0;
  font-size: 1.8em;
  color: var(--epl-color-secondary);
  font-family: var(--epl-font-family-primary);
  font-weight: 300;
  line-height: 1.4;
  text-transform: none;
  letter-spacing: -0.02em;
}
.epl-sd-single .epl-author-slogan {
  margin-bottom: 1em;
  font-size: 1.8em;
  font-weight: 700;
  color: var(--epl-color-alternate);
}
.epl-sd-single .epl-author-contact {
  margin: 1em 0;
  line-height: 1.4;
  color: var(--epl-color-secondary);
  font-size: 1.4em;
  font-family: var(--epl-font-family-primary);
}
.epl-sd-single .epl-author-contact .epl-label {
  display: none;
  font-weight: 700;
}
.epl-sd-single .epl-button--staff-email {
  font-size: 1.2em;
  margin-top: 1em;
  padding: 1em 5em;
}
.epl-sd-single .epl-contact-details--social .epl-icon-container-email {
  display: none;
}
.epl-sd-single .epl-contact-details--buttons {
  display: flex;
  gap: 1em;
  justify-content: flex-start;
}
.epl-sd-single .rec-author-buttons {
  margin: 1em 0;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
}
.epl-sd-single .rec-author-buttons > * {
  flex: 1 1 40%;
}
.epl-sd-single .rec-author-buttons .rec-author-appraisal-button {
  flex: 1 1 100%;
}
.epl-sd-single .rec-author-buttons .rec-author-appraisal-button .epl-button {
  background: var(--epl-color-primary);
  color: var(--epl-color-white);
  border: 1px solid var(--epl-color-primary);
}
.epl-sd-single .rec-author-buttons .epl-button {
  width: 100%;
  margin: 0;
  background: var(--epl-color-white);
  color: var(--epl-color-grey);
  border: 1px solid var(--epl-color-primary);
}
.epl-sd-single .rec-author-buttons .epl-button:hover {
  background: var(--epl-color-black);
  border-color: var(--epl-color-black);
  color: var(--epl-color-white);
}
.epl-sd-single .epl-entry-footer {
  margin-top: 2em;
}
.epl-sd-single .epl-section__row--button {
  text-align: center;
  margin: 3em 0;
}
.epl-sd-single .epl-contact-details--social {
  flex-basis: 100%;
}
.epl-sd-single .epl-author-icon.email-icon-24 {
  display: none;
}
.epl-sd-single .epl-author-icon {
  width: 40px;
  height: 40px;
}
.epl-sd-single .epl-section__item--agent-details {
  display: flex;
  gap: 2em;
}
.epl-sd-single .epl-section__item--agent-details .epl-sd-entry-image img {
  border: none;
}
.epl-sd-single .epl-section__item--agent-details .epl-author-title {
  color: var(--epl-color-primary);
  text-shadow: none;
}
.epl-sd-single .epl-section__item--agent-details .epl-author-position {
  color: var(--epl-color-primary);
  text-shadow: none;
}
.epl-sd-single .epl-section-wrap--author--listings {
  text-align: center;
}
.epl-sd-single .epl-section__title {
  position: relative;
  display: inline-block;
  margin-bottom: 1em;
  padding-bottom: 0;
}
.epl-sd-single .epl-button--outline {
  border-color: var(--epl-color-secondary);
  color: var(--epl-color-secondary);
}

.epl-author-icon.email-icon-24 {
  display: none;
}

.facebook-icon-24 {
  background: url(images/icons/fa-social/facebook.svg) no-repeat;
}

.instagram-icon-24 {
  background: url(images/icons/fa-social/instagram.svg) no-repeat;
}

.twitter-icon-24 {
  background: url(images/icons/fa-social/twitter.svg) no-repeat;
}

.linkedin-icon-24 {
  background: url(images/icons/fa-social/linkedin.svg) no-repeat;
}

.youtube-icon-24 {
  background: url(images/icons/fa-social/youtube.svg) no-repeat;
}

.epl-author-title.office-title {
  position: relative;
  font-size: 1.4em;
  font-weight: 400;
}
.epl-author-title.office-title::before {
  position: relative;
  margin-right: 8px;
  top: 10px;
  content: "";
  display: inline-block;
  width: 120px;
  height: 35px;
  background: transparent url("images/logo-harcourts.svg") center/100% no-repeat;
}
@media screen and (min-width: 770px) {
  .epl-sd-hero-left .epl-entry-content .container-wrap-outer-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.epl-staff-shortcode-carousel .epl-author-section-header {
  display: none !important;
}

/*****************************
	Staff Directory CSS
****************************/
.epl-sd-filter-wrap {
  grid-column: 1/-1;
}

.epl-sd-filter {
  margin-top: 0;
}

.epl-sd-filter__label {
  display: none;
}

.epl-sd-filter__button {
  padding: 0 0.5em;
  border: none;
  border-right: 1px solid var(--epl-color-primary);
  text-transform: uppercase;
  font-size: 1.4em;
  font-weight: 400;
}
.epl-sd-filter__button:last-child {
  border-right: none;
}
.epl-sd-filter__active {
  background: transparent;
  color: var(--epl-color-primary);
  font-weight: 700;
}

.epl-sd-shortcode-content .epl-loop-tools-wrap {
  display: none;
}

.epl-shortcode .epl-directory-shortcode-listing {
  gap: 3em;
}

.epl-author-section-header {
  grid-column: 1/-1;
}
.epl-author-section-header .entry-title {
  font-size: 2.5em;
  margin: 2em 0 0;
  text-align: left;
  font-family: var(--epl-font-family-primary);
}

/* Author Styling */
.epl-author-archive:not(.epl-author-section-header) {
  overflow: visible;
  margin: 0;
  padding: 0;
  font-size: 1em;
  background: #fdfcfc;
  display: flex;
  flex-direction: column;
  text-align: left;
  box-shadow: none;
}
.epl-author-archive:not(.epl-author-section-header) img {
  width: 100%;
}
.epl-author-archive:not(.epl-author-section-header) a {
  color: var(--epl-color-primary);
}
.epl-author-archive:not(.epl-author-section-header) .epl-author-contact-title {
  position: relative;
}
.epl-author-archive:not(.epl-author-section-header) .epl-author-box.epl-author-details {
  width: auto;
  padding: 1em;
}
.epl-author-archive:not(.epl-author-section-header) .epl-author-info,
.epl-author-archive:not(.epl-author-section-header) .epl-author-title {
  border: none;
  margin: 0;
  padding: 0;
}
.epl-author-archive:not(.epl-author-section-header) .epl-author-title {
  text-transform: none;
  color: var(--epl-color-white);
  margin: 0;
  font-size: 2em;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  letter-spacing: -0.02em;
}
.epl-author-archive:not(.epl-author-section-header) .epl-author-position {
  margin: 0.5em 0 0.5em;
  color: var(--epl-color-primary);
  font-size: 1.5em;
  font-weight: 300;
  text-transform: none;
}
.epl-author-archive:not(.epl-author-section-header) .epl-author-contact-info i {
  margin-right: 0.6em;
}
.epl-author-box {
  width: 70%;
  box-sizing: border-box;
  float: left;
}
.epl-author-box.epl-author-details {
  width: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0;
}
.epl-author-box.epl-author-footer {
  padding: 1em;
  margin-top: auto;
}
.epl-author-box.epl-author-image {
  position: relative;
  min-width: 100%;
  padding-right: 0;
  width: auto;
}
.epl-author-box.epl-author-image a,
.epl-author-box.epl-author-image img {
  display: block;
}
.epl-author-box.epl-author-image img {
  border-radius: 0;
  overflow: hidden;
}
.epl-author-box .epl-author-profile-button {
  text-align: center;
}
.epl-author-box.epl-author-details, .epl-author-box.epl-author-footer {
  min-width: 100%;
  padding-right: 0;
  width: auto;
}
.epl-author-box .epl-author-contact-title {
  flex: 1 1 auto;
}
.epl-author-box .epl-sd-author-social-buttons {
  margin: 1em 0;
}
.epl-author-box .epl-button {
  background: var(--epl-color-secondary);
}
.epl-author-box .epl-button span {
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--epl-color-white) !important;
  text-transform: none;
  font-weight: 700;
  font-size: 1.2em;
}
.epl-author-box .epl-button span:hover {
  border-color: var(--epl-color-white);
}

#tab-1.epl-author-details {
  padding-top: 0.5em;
}

.epl-author-image img {
  margin: 0;
  padding: 0;
  height: auto;
}
.epl-author-image img.avatar {
  width: auto;
}

.epl-author-box-zoom .epl-author-box.epl-author-image img {
  margin: 0;
  padding: 0;
  width: 100%;
  transition: filter 0.2s ease-in-out 0.2s, opacity 0.2s ease-in-out 0.2s;
  filter: saturate(0);
}
.epl-author-box-zoom .epl-author-box .darker {
  min-height: 100px;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 20%, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#000000",GradientType=1);
  bottom: 0;
  left: 0;
  opacity: 1;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 500ms ease 0s;
}
.epl-author-box-zoom .epl-author-box .epl-staff-office-logo-overlay {
  position: absolute;
  right: 1em;
  bottom: 1em;
  width: 100px;
}
.epl-author-box-zoom .epl-author-box .epl-staff-office-logo-overlay img {
  opacity: 0;
}
.epl-author-box-zoom .epl-author-box-contact-details {
  padding: 0;
}
.epl-author-box-zoom .epl-author-details.epl-author-box {
  min-height: 0;
}
.epl-author-box-zoom:hover .epl-author-box.epl-author-image img {
  transform: scale(1);
  filter: saturate(1);
}
.epl-author-box-zoom:hover .epl-staff-office-logo-overlay img {
  opacity: 1;
}

/*****************************
Single Office
****************************/
.epl-single-epl_office .site-content .ast-container {
  max-width: 100%;
  padding: 0;
}

@media screen and (max-width: 100%) {
  .epl-single-epl_office .ast-container .container-wrap-outer-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}
.epl-office-single.epl-property-single-rec {
  margin: 0 0 3em;
}
.epl-office-single.epl-property-single-rec.ast-article-single {
  padding: 0;
}
.epl-office-single.epl-property-single-rec .epl-entry-content {
  position: relative;
  background: var(--epl-color-page);
  color: var(--epl-color-white);
  overflow: hidden;
}
.epl-office-single.epl-property-single-rec .epl-entry-content .container-wrap-outer-wrapper {
  position: relative;
  margin: 0 auto;
  padding-top: 2em;
  padding-bottom: 2em;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: center;
  z-index: 1;
}
.epl-office-single.epl-property-single-rec .epl-office-entry-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.epl-office-single.epl-property-single-rec .epl-office-entry-image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.epl-office-single.epl-property-single-rec .epl-office-entry-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--epl-color-black);
  opacity: 0.5;
}
.epl-office-single.epl-property-single-rec .epl-grid-sidebar-outer-wrapper {
  border-left: none;
}
.epl-office-single.epl-property-single-rec .epl-grid-sidebar-outer-wrapper .epl-grid-block {
  margin-left: 0;
}
.epl-office-single.epl-property-single-rec h1.entry-title {
  margin: 0.5em 0;
  font-size: 1.8em;
  color: var(--epl-color-white);
  text-transform: none;
  font-weight: 600;
  position: relative;
  font-size: 1.4em;
  font-weight: 400;
}
.epl-office-single.epl-property-single-rec h1.entry-title::before {
  position: relative;
  margin-right: 8px;
  top: 12px;
  content: "";
  display: inline-block;
  width: 120px;
  height: 35px;
  background: transparent url("images/logo-harcourts-white.svg") center/100% no-repeat;
}
.epl-office-single.epl-property-single-rec .epl-office-info {
  font-size: 1.4em;
  font-weight: 600;
}
.epl-office-single.epl-property-single-rec .epl-office-info p {
  margin: 0;
}
.epl-office-single.epl-property-single-rec .epl-office-license {
  font-size: 1em;
  margin-bottom: 1em;
}
.epl-office-single.epl-property-single-rec .epl-contact-details .epl-label {
  width: 100px;
  display: inline-block;
}
.epl-office-single.epl-property-single-rec .epl-entry-footer {
  position: relative;
  margin-top: -2.8em;
  z-index: 3;
}

@media screen and (min-width: 770px) {
  .epl-office-single.epl-property-single-rec .epl-entry-content .container-wrap-outer-wrapper {
    grid-template-columns: 2fr 3fr;
  }
  .epl-office-single.epl-property-single-rec .epl-grid-sidebar-outer-wrapper {
    border-left: 2px solid var(--epl-color-white);
  }
  .epl-office-single.epl-property-single-rec .epl-grid-sidebar-outer-wrapper .epl-grid-block {
    margin-left: 5em;
  }
}
/*****************************
	Listing Widget
****************************/
.epl-listing-widget.property-widget-image {
  margin-bottom: 0;
  display: grid;
  grid-template-columns: 60px 1fr;
  /* width: 50%; */
}

.epl-listing-widget.property-widget-image .entry-content {
  padding: 0 0 0 1em;
}

.epl-listing-widget .property-address {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.epl-listing-widget .suburb-name {
  font-weight: bold;
  color: var(--epl-color-primary);
}

.epl-listing-widget .street-name {
  font-size: 0.9em;
}

.epl-listing-widget .price {
  font-size: 0.9em;
  color: var(--epl-color-alternate);
}

.epl-property-widget-image-wrapper {
  overflow: hidden;
}

@media screen and (min-width: 991px) and (max-width: 1199px) {
  .epl-listing-widget.property-widget-image {
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr;
    /* width: 50%; */
  }
  .epl-listing-widget.property-widget-image .entry-content {
    padding: 0.5em 0 1em 0;
  }
}
@media screen and (min-width: 1920px) {
  .epl-section {
    padding-inline: 0;
  }
}
.epl-post-type-archive-directory .epl-template-default {
  max-width: 1020px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.epl-listing-grid-view .epl-blog-image,
.epl-listing-grid-view-forced .epl-blog-image,
.epl-property-blog.epl-listing-grid-view .epl-blog-image,
.epl-property-blog.epl-listing-grid-view-forced .epl-blog-image {
  display: grid;
  justify-content: center;
}
.epl-listing-grid-view .epl-blog-image img,
.epl-listing-grid-view-forced .epl-blog-image img,
.epl-property-blog.epl-listing-grid-view .epl-blog-image img,
.epl-property-blog.epl-listing-grid-view-forced .epl-blog-image img {
  width: auto;
}
.epl-listing-grid-view .epl-inspection-times-label,
.epl-listing-grid-view .epl-rec-meta__title,
.epl-listing-grid-view-forced .epl-inspection-times-label,
.epl-listing-grid-view-forced .epl-rec-meta__title,
.epl-property-blog.epl-listing-grid-view .epl-inspection-times-label,
.epl-property-blog.epl-listing-grid-view .epl-rec-meta__title,
.epl-property-blog.epl-listing-grid-view-forced .epl-inspection-times-label,
.epl-property-blog.epl-listing-grid-view-forced .epl-rec-meta__title {
  display: block;
  color: var(--epl-color-white);
}
.epl-listing-grid-view .epl-inspection-times,
.epl-listing-grid-view-forced .epl-inspection-times,
.epl-property-blog.epl-listing-grid-view .epl-inspection-times,
.epl-property-blog.epl-listing-grid-view-forced .epl-inspection-times {
  display: flex;
  color: var(--epl-color-white);
}
.epl-listing-grid-view .epl-inspection__card,
.epl-listing-grid-view .page-auction,
.epl-listing-grid-view-forced .epl-inspection__card,
.epl-listing-grid-view-forced .page-auction,
.epl-property-blog.epl-listing-grid-view .epl-inspection__card,
.epl-property-blog.epl-listing-grid-view .page-auction,
.epl-property-blog.epl-listing-grid-view-forced .epl-inspection__card,
.epl-property-blog.epl-listing-grid-view-forced .page-auction {
  font-weight: 600;
  color: var(--epl-color-white);
  margin: 0;
  text-transform: uppercase;
}
.epl-listing-grid-view .home-open-date,
.epl-listing-grid-view-forced .home-open-date,
.epl-property-blog.epl-listing-grid-view .home-open-date,
.epl-property-blog.epl-listing-grid-view-forced .home-open-date {
  display: none;
}
.epl-listing-grid-view .home-open-date:nth-child(1),
.epl-listing-grid-view-forced .home-open-date:nth-child(1),
.epl-property-blog.epl-listing-grid-view .home-open-date:nth-child(1),
.epl-property-blog.epl-listing-grid-view-forced .home-open-date:nth-child(1) {
  display: block;
}
.epl-listing-grid-view .epl-rec-auction,
.epl-listing-grid-view-forced .epl-rec-auction,
.epl-property-blog.epl-listing-grid-view .epl-rec-auction,
.epl-property-blog.epl-listing-grid-view-forced .epl-rec-auction {
  margin-bottom: 2em;
}
.epl-listing-grid-view .epl-rec-view,
.epl-listing-grid-view-forced .epl-rec-view,
.epl-property-blog.epl-listing-grid-view .epl-rec-view,
.epl-property-blog.epl-listing-grid-view-forced .epl-rec-view {
  display: inline-block;
  padding: 1.3em 2.5em;
  border: 1px solid var(--epl-color-white);
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.85em;
  font-weight: 600;
}
.epl-listing-grid-view .epl-row--inspections,
.epl-listing-grid-view-forced .epl-row--inspections,
.epl-property-blog.epl-listing-grid-view .epl-row--inspections,
.epl-property-blog.epl-listing-grid-view-forced .epl-row--inspections {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  align-items: center;
  color: var(--epl-color-white);
  background: rgba(9, 30, 52, 0.6);
  transition: opacity ease 200ms 0s;
  opacity: 0;
}
.epl-listing-grid-view .epl-row--inspections .epl-rec-inspections,
.epl-listing-grid-view-forced .epl-row--inspections .epl-rec-inspections,
.epl-property-blog.epl-listing-grid-view .epl-row--inspections .epl-rec-inspections,
.epl-property-blog.epl-listing-grid-view-forced .epl-row--inspections .epl-rec-inspections {
  margin-bottom: 2em;
}
.epl-listing-grid-view .epl-row--inspections .epl-inspection-times-label,
.epl-listing-grid-view .epl-row--inspections .epl-rec-meta__title,
.epl-listing-grid-view-forced .epl-row--inspections .epl-inspection-times-label,
.epl-listing-grid-view-forced .epl-row--inspections .epl-rec-meta__title,
.epl-property-blog.epl-listing-grid-view .epl-row--inspections .epl-inspection-times-label,
.epl-property-blog.epl-listing-grid-view .epl-row--inspections .epl-rec-meta__title,
.epl-property-blog.epl-listing-grid-view-forced .epl-row--inspections .epl-inspection-times-label,
.epl-property-blog.epl-listing-grid-view-forced .epl-row--inspections .epl-rec-meta__title {
  margin: 0;
  font-size: 0.8em;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 400;
}
.epl-listing-grid-view .epl-row--inspections .epl-inspection__card,
.epl-listing-grid-view .epl-row--inspections .page-auction,
.epl-listing-grid-view-forced .epl-row--inspections .epl-inspection__card,
.epl-listing-grid-view-forced .epl-row--inspections .page-auction,
.epl-property-blog.epl-listing-grid-view .epl-row--inspections .epl-inspection__card,
.epl-property-blog.epl-listing-grid-view .epl-row--inspections .page-auction,
.epl-property-blog.epl-listing-grid-view-forced .epl-row--inspections .epl-inspection__card,
.epl-property-blog.epl-listing-grid-view-forced .epl-row--inspections .page-auction {
  font-size: 0.95em;
  letter-spacing: 0.11em;
}
.epl-listing-grid-view h4,
.epl-listing-grid-view-forced h4,
.epl-property-blog.epl-listing-grid-view h4,
.epl-property-blog.epl-listing-grid-view-forced h4 {
  color: var(--epl-color-white);
}
.epl-listing-grid-view .epl-row-inner--inspections,
.epl-listing-grid-view-forced .epl-row-inner--inspections,
.epl-property-blog.epl-listing-grid-view .epl-row-inner--inspections,
.epl-property-blog.epl-listing-grid-view-forced .epl-row-inner--inspections {
  padding: 0;
  text-align: center;
}
.epl-listing-grid-view .home-open-wrapper .epl_inspection_calendar,
.epl-listing-grid-view-forced .home-open-wrapper .epl_inspection_calendar,
.epl-property-blog.epl-listing-grid-view .home-open-wrapper .epl_inspection_calendar,
.epl-property-blog.epl-listing-grid-view-forced .home-open-wrapper .epl_inspection_calendar {
  padding: 0;
  border-style: none;
}
.epl-listing-grid-view .epl-row--inspections-summary,
.epl-listing-grid-view-forced .epl-row--inspections-summary,
.epl-property-blog.epl-listing-grid-view .epl-row--inspections-summary,
.epl-property-blog.epl-listing-grid-view-forced .epl-row--inspections-summary {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.epl-listing-grid-view .epl-row--inspections-summary .epl-rec-inspections,
.epl-listing-grid-view-forced .epl-row--inspections-summary .epl-rec-inspections,
.epl-property-blog.epl-listing-grid-view .epl-row--inspections-summary .epl-rec-inspections,
.epl-property-blog.epl-listing-grid-view-forced .epl-row--inspections-summary .epl-rec-inspections {
  padding: 0.7em 0.8em;
  background: rgba(9, 30, 52, 0.6);
  opacity: 1;
  transition: opacity ease 200ms 0s;
}
.epl-listing-grid-view .epl-row--inspections-summary .epl-inspection-times-label,
.epl-listing-grid-view-forced .epl-row--inspections-summary .epl-inspection-times-label,
.epl-property-blog.epl-listing-grid-view .epl-row--inspections-summary .epl-inspection-times-label,
.epl-property-blog.epl-listing-grid-view-forced .epl-row--inspections-summary .epl-inspection-times-label {
  font-size: 0.75em;
}
.epl-listing-grid-view .epl-row--inspections-summary .epl-inspection-times,
.epl-listing-grid-view-forced .epl-row--inspections-summary .epl-inspection-times,
.epl-property-blog.epl-listing-grid-view .epl-row--inspections-summary .epl-inspection-times,
.epl-property-blog.epl-listing-grid-view-forced .epl-row--inspections-summary .epl-inspection-times {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: baseline;
}
.epl-listing-grid-view .epl-row--inspections-summary .epl-inspection__card,
.epl-listing-grid-view-forced .epl-row--inspections-summary .epl-inspection__card,
.epl-property-blog.epl-listing-grid-view .epl-row--inspections-summary .epl-inspection__card,
.epl-property-blog.epl-listing-grid-view-forced .epl-row--inspections-summary .epl-inspection__card {
  font-size: 0.8em;
}
.epl-listing-grid-view:hover .epl-row--inspections,
.epl-listing-grid-view-forced:hover .epl-row--inspections,
.epl-property-blog.epl-listing-grid-view:hover .epl-row--inspections,
.epl-property-blog.epl-listing-grid-view-forced:hover .epl-row--inspections {
  opacity: 1;
}
.epl-listing-grid-view:hover .epl-row--inspections-summary .epl-rec-inspections,
.epl-listing-grid-view-forced:hover .epl-row--inspections-summary .epl-rec-inspections,
.epl-property-blog.epl-listing-grid-view:hover .epl-row--inspections-summary .epl-rec-inspections,
.epl-property-blog.epl-listing-grid-view-forced:hover .epl-row--inspections-summary .epl-rec-inspections {
  opacity: 0;
}
.epl-listing-grid-view .epl-row__link,
.epl-listing-grid-view-forced .epl-row__link,
.epl-property-blog.epl-listing-grid-view .epl-row__link,
.epl-property-blog.epl-listing-grid-view-forced .epl-row__link {
  z-index: 3;
}

.epl-loop-tools-wrap.epl-archive-utility-wrapper {
  display: none;
}

.epl-single-listing .elementor-location-header {
  background: var(--epl-color-primary);
}

.epl-section-wrap--image .epl-section {
  position: relative;
  padding: 0;
}
.epl-section-wrap--image .entry-image a,
.epl-section-wrap--image .entry-image img {
  display: block;
}
.epl-section-wrap--image .epl-rec-suburb,
.epl-section-wrap--image .epl-rec-address,
.epl-section-wrap--image .epl-rec-price,
.epl-section-wrap--image .rec-icon-value {
  color: var(--epl-color-white);
}
.epl-section-wrap--image .epl-rec-suburb {
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.epl-section-wrap--image .epl-rec-address {
  margin: 0 0 2rem;
  font-family: var(--epl-font-family-secondary);
  font-size: clamp(1.4rem, 10vw - 1rem, 3.2rem);
  line-height: 1.1;
}
.epl-section-wrap--image .epl-rec-address .entry-title-sub {
  display: none;
}
.epl-section-wrap--image .epl-rec-icons .bedroom .rec-icon i {
  background: url("images/icons/bed-white.svg") no-repeat;
}
.epl-section-wrap--image .epl-rec-icons .bathroom .rec-icon i {
  background: url("images/icons/bath-white.svg") no-repeat;
}
.epl-section-wrap--image .epl-rec-icons .parking .rec-icon i {
  background: url("images/icons/car-white.svg") no-repeat;
}
.epl-section-wrap--image .epl-rec-price {
  margin-top: 1.8em;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}
.epl-section-wrap--image .epl-rec-buttons {
  margin-top: 2rem;
}
.epl-section-wrap--image .epl-rec-buttons .epl-button-wrapper {
  justify-content: center;
  gap: 0;
  border-radius: 10px;
}
.epl-section-wrap--image .epl-rec-buttons .epl-button {
  position: relative;
  padding: 1.1em 1em;
  font-size: 1.1rem;
  border-radius: 0 !important;
}
.epl-section-wrap--image .epl-rec-buttons .epl-button:first-child {
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
  border-right-color: transparent;
}
.epl-section-wrap--image .epl-rec-buttons .epl-button:last-child {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  border-left-color: transparent;
}
.epl-section-wrap--image .epl-rec-buttons .epl-button::after {
  content: "";
  width: 1px;
  height: 30px;
  right: 0;
  position: absolute;
  background: var(--epl-color-grey-91);
}
.epl-section-wrap--image .epl-rec-buttons .epl-button:last-child::after {
  width: 0;
}
.epl-section-wrap--image .epl-slick-item > a {
  position: relative;
}
.epl-section-wrap--image .epl-slick-item > a::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, var(--e-global-color-primary) 0%, rgba(9, 30, 52, 0) 100%);
  z-index: 1;
}
.epl-section-wrap--image .epl-slick-carousel-single-listing .epl-carousel-slide-content {
  background: transparent !important;
}
.epl-section-wrap--image .epl-slick-carousel-single-listing .epl-slider-content-box {
  background: transparent;
  position: absolute;
  top: 40%;
  left: 0;
  right: 0;
  z-index: 9;
}
@media screen and (max-width: 700px) {
  .epl-section-wrap--image .epl-slick-carousel-single-listing .epl-slider-content-box {
    top: 20%;
  }
}
@media screen and (max-width: 500px) {
  .epl-section-wrap--image .epl-slick-carousel-single-listing .epl-slider-content-box {
    top: 10%;
  }
}
@media screen and (max-width: 410px) {
  .epl-section-wrap--image .epl-slick-carousel-single-listing .epl-slider-content-box {
    top: 0%;
  }
}
.epl-section-wrap--image .epl-slick-carousel-single-listing .address {
  text-transform: none;
}
.epl-section-wrap--image .epl-slick-carousel-single-listing .suburb {
  text-align: center;
}

.rec-icon-calendar {
  content: "";
  display: inline-block;
  background-image: url(images/icons/fall/calendar.svg);
  background-repeat: no-repeat;
  background-position: 0 1px;
  width: 20px;
  height: 20px;
}

.epl-block-widget--buttons .epl-block-widget__inner .epl-button,
.epl-block-widget--buttons .epl-block-widget__inner .epl-map-btn,
.epl-block-widget--buttons .epl-block-widget__inner button.epl-button,
.epl-block-widget--buttons .epl-block-widget__inner input[type=submit].epl-button,
.epl-block-widget--buttons .epl-block-widget__inner input[type=button].epl-button,
.epl-block-widget--buttons .epl-block-widget__inner .epl-property-single-rec .epl-fav-button {
  border-radius: 0 !important;
  -webkit-border-radius: 0 !important;
}

.epl-block-widget--agents .epl-author-box-card__row--content .epl-button-wrapper {
  display: block;
}
.epl-block-widget--agents .epl-author-box-card__row--content .epl-button--make-offer {
  background: var(--epl-color-secondary);
  border-color: var(--epl-color-secondary);
  color: var(--epl-color-white);
}

.epl-section-wrap--modal--enquiry .epl-modal__heading {
  display: flex;
  margin: 0;
  padding: 2.5em 3.7em 1em;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
}
.epl-section-wrap--modal--enquiry .epl-modal__heading .epl-modal__title {
  text-align: left;
}
.epl-section-wrap--modal--enquiry .epl-modal__heading .epl-modal__address {
  display: inline;
  color: var(--epl-color-primary);
}
.epl-section-wrap--modal--enquiry .epl-modal__heading .epl-modal__address .item-street::after {
  content: "";
}
.epl-section-wrap--modal--enquiry .epl-modal__heading .epl-modal__address .entry-title-sub {
  display: none;
}
.epl-section-wrap--modal--enquiry .epl-modal__agents {
  padding: 0 3.7em;
  display: flex;
  justify-content: space-between;
}
.epl-section-wrap--modal--enquiry .epl-author-box-card__row--header {
  margin: 0;
  padding: 0;
  border-style: none;
}
.epl-section-wrap--modal--enquiry .epl-author-box-card__row--content {
  display: none;
}

.epl-button-wrapper--alternate {
  gap: 1rem;
}
.epl-button-wrapper--alternate .epl-button-wrapper {
  display: block;
}
.epl-button-wrapper--alternate .epl-button {
  padding: 1.25rem 2rem;
  text-transform: uppercase;
  font-family: var(--epl-font-family-primary);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0;
  background: transparent;
  color: var(--epl-color-white);
  border-color: var(--epl-color-white);
}
.epl-button-wrapper--alternate .epl-button:hover {
  color: var(--epl-color-secondary);
  border-color: var(--epl-color-secondary);
}
.epl-button-wrapper--alternate .epl-button--make-offer {
  background: var(--epl-color-white);
  border-color: var(--epl-color-white);
  color: var(--epl-color-primary);
}
.epl-button-wrapper--alternate .epl-button--make-offer:hover {
  background: var(--epl-color-secondary);
  color: var(--epl-color-white);
  border-color: var(--epl-color-secondary);
}

.epl-block-widget--inspections .epl_inspection_calendar {
  margin-bottom: 1rem;
  padding: 1rem;
}
.epl-block-widget--inspections .epl-inspection__card {
  font-size: 0.9rem;
}

.epl-block-widget--buttons .epl-rec-buttons .epl-button-wrapper {
  justify-content: flex-start;
  gap: 0;
  border-radius: 10px;
}
.epl-block-widget--buttons .epl-rec-buttons .epl-button {
  position: relative;
  padding: 0.4rem 0.5rem !important;
  font-size: 0.9rem;
  border-radius: 0 !important;
  border-style: none;
  border-right: none;
}
.epl-block-widget--buttons .epl-rec-buttons .epl-button:first-child {
  border-top-left-radius: 5px !important;
  border-bottom-left-radius: 5px !important;
  border-left-style: solid;
}
.epl-block-widget--buttons .epl-rec-buttons .epl-button:last-child {
  border-top-right-radius: 5px !important;
  border-bottom-right-radius: 5px !important;
  border-right-style: solid;
}
.epl-block-widget--buttons .epl-rec-buttons .epl-button::after {
  content: "";
  width: 1px;
  height: 30px;
  right: 0;
  position: absolute;
  background: var(--epl-color-grey-f0);
}
.epl-block-widget--buttons .epl-rec-buttons .epl-button:last-child::after {
  width: 0;
}

.epl-inspection__card--date-week-time-card-add-to .epl-inspection__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.epl-inspection__card--date-week-time-card-add-to .epl-inspection__item__add {
  text-transform: uppercase;
  color: var(--epl-color-secondary);
  font-size: 0.8rem;
  font-weight: 500;
}

.epl-search-builder__wrapper {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.epl-search-form {
  position: relative;
}
.epl-search-form #property_address.in-field {
  background: var(--epl-color-white);
  border: 1px solid var(--epl-color-grey-ab);
}
.epl-search-form .epl-search-builder__section--main {
  display: flex;
  margin: 0;
  padding: 0;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.3rem;
  flex: 0 1 auto;
}
.epl-search-form #epl-search-address-surrounding {
  flex: 1 1 auto;
  border: 1px solid var(--epl-color-grey-ab);
  border-style: solid;
  border-radius: 0;
  height: 55px;
  line-height: 52px;
}
.epl-search-form #epl-search-address-surrounding #property_address.in-field {
  padding: 0 0 0 1.6rem;
  border-style: none;
  height: 52px;
  line-height: 50px;
}
.epl-search-form #epl-search-address-surrounding .epl-search-row--surrounding {
  padding: 0 1em 0 1.6rem;
  height: 52px;
  line-height: 50px;
}
@media screen and (max-width: 767px) {
  .epl-search-form #epl-search-address-surrounding .epl-search-row--surrounding {
    display: none;
  }
}
.epl-search-form #epl-search-address-surrounding .epl-search-row--surrounding .check-label {
  font-size: 1rem;
  padding-top: 0;
  padding-left: 3px;
  font-weight: 300 !important;
}
.epl-search-form #epl-search-address-surrounding .epl_surrounding_search {
  height: auto;
}
@media screen and (max-width: 1340px) {
  .epl-search-form .epl-search-builder__row--remaining {
    width: 100%;
  }
  .epl-search-form .epl-search-builder__row--remaining .epl-search-row {
    flex-grow: 1;
  }
}
.epl-search-form .epl-search-row-text {
  flex: 1 1 auto;
}
@media screen and (max-width: 770px) {
  .epl-search-form .epl-search-builder__item--toggle--options {
    width: 100%;
  }
}
.epl-search-form .epl-search-builder__section--price-options {
  width: 540px;
  position: absolute;
  z-index: 4;
  right: 300px;
  background: var(--epl-color-white);
  padding: 2rem 2rem;
}
.epl-search-form .epl-search-builder__section--more-options {
  position: absolute;
  right: 0;
  z-index: 4;
  background: var(--epl-color-white);
  padding: 2rem 2rem;
}
@media screen and (max-width: 767px) {
  .epl-search-form .epl-search-builder__section--more-options {
    padding: 0;
    position: relative;
  }
}
.epl-search-form .epl-search-builder__section--more-options .epl-search-builder__row__items {
  flex-direction: column;
  justify-content: flex-start;
  align-items: initial;
}
.epl-search-form .epl-search-builder__section--more-options .epl-search-row-button .field label {
  margin-left: 0.4rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--epl-color-grey-ab);
  cursor: pointer;
  text-align: center;
}
.epl-search-form .epl-search-builder__section--more-options .epl-search-row-button .field input[type=radio]:checked + label {
  background: var(--epl-color-grey-f0);
  color: var(--epl-color-secondary);
  border-color: var(--epl-color-secondary);
}
.epl-search-form .epl-search-row--advanced .epl-search-label {
  padding-left: 0.4rem;
}
.epl-search-form .epl-property_bedrooms {
  min-width: 131px;
}
.epl-search-form .epl-property_category,
.epl-search-form .epl-property_rural_category,
.epl-search-form .epl-property_land_category,
.epl-search-form .epl-property_commercial_category,
.epl-search-form .epl-property_tax_business_listing {
  min-width: 212px;
  max-width: 212px;
}
@media screen and (max-width: 767px) {
  .epl-search-form .epl-property_category,
  .epl-search-form .epl-property_rural_category,
  .epl-search-form .epl-property_land_category,
  .epl-search-form .epl-property_commercial_category,
  .epl-search-form .epl-property_tax_business_listing {
    flex-grow: 0;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .epl-search-form .epl-search-builder__item--toggle--price {
    flex-grow: 1;
  }
}

.epl-search-row-button .epl-search-radio-label {
  font-size: 1rem;
}

.epl-am-section--listings {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  float: right;
  position: relative;
}

.epl-section-wrap--tools {
  background: #eee;
}
.epl-section-wrap--tools .epl-section {
  padding: 0;
}

.epl-section-inner--map-results .epl-section {
  max-width: 100%;
  padding: 0;
}
.epl-section-inner--map-results .epl-am-section--listings {
  overflow: scroll;
}
.epl-section-inner--map-results .epl-loop-content {
  padding: 1em;
  overflow-y: scroll;
}
.epl-section-inner--map-results .epl-section-wrap--tools .epl-section {
  padding: 1em;
}
.epl-section-inner--map-results .epl-am-template--full {
  display: block;
}

.epl-section-inner--map-results:has(.epl-am-section--full-width) .epl-section {
  padding: 1em 0;
  max-width: 1310px;
}
.epl-section-inner--map-results:has(.epl-am-section--full-width) .epl-loop-content {
  padding: 0 1em;
  overflow-y: initial;
}
.epl-section-inner--map-results:has(.epl-am-section--full-width) .epl-section-wrap--tools .epl-section {
  padding: 1em;
}
.epl-section-inner--map-results:has(.epl-am-section--full-width) .epl-am-template--full {
  display: none;
}

.epl-button--map-tools {
  line-height: 60px;
  height: 60px;
}
.epl-button--map-tools i {
  display: none;
}

.epl-am-section--tools {
  display: flex;
}
.epl-am-section--tools .epl-am-tool--buttons {
  margin-left: auto;
}
.epl-am-section--tools .epl-button {
  border-radius: 0 !important;
}

.epl-button.epl-button--map-tool-toggle-close {
  display: none;
}
.epl-button.epl-button--map-tool-toggle-full-map, .epl-button.epl-button--map-tool-toggle-list {
  display: none !important;
}

.epl-am-toggle--full-screen,
.epl-am-toggle--full-screen #epl-advanced-map {
  position: fixed !important;
  inset: 0;
  top: 100px;
  height: 100vh !important;
  z-index: 200;
}

.epl-am-section--listings:not(.epl-am-section--full-width) {
  padding-right: 10px;
}

.epl-am-tool--map-types .epl-button-map--full,
.epl-am-tool--map-types .epl-button-map--view,
.epl-am-tool--map-controls .epl-button-map--full,
.epl-am-tool--map-controls .epl-button-map--view {
  display: none;
}

.epl-am-template--split {
  -moz-column-gap: 3em;
       column-gap: 3em;
  row-gap: 0;
}

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