.map-wrap {
  width: 100%;
  margin: 0 auto;
  background: #dadada;
  min-height: 600px;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

@media (min-width: 576px) {
  .map-wrap {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .map-wrap {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .map-wrap {
    max-width: 992px;
    padding-left: 0;
    padding-right: 0;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (min-width: 1200px) {
  .map-wrap {
    max-width: 1200px;
  }
}
@media (min-width: 1550px) {
  .map-wrap {
    max-width: 1550px;
  }
}
@media (max-width: 992px) {
  body #map,
  body #accordion {
    width: 100%;
  }
  .map-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
#map {
  height: 500px;
  float: left;
  width: 75%;
  outline: none !important;
}

#accordion {
  width: 100%;
  float: right;
}

.accordion-item {
  border-bottom: 1px solid #ccc;
  font-family: "GothamBook", sans-serif;
  font-weight: normal;
  color: #111;
}

.accordion-header {
  /*      padding: 10px;*/
  background: #f1f1f1;
  cursor: pointer;
  font-weight: normal;
  position: relative;
  padding: 10px 16px;
  color: #111;
  font-size: 15px;
}

.accordion-header.active:after {
  -webkit-transform: rotate(135deg) translate(2px, -2px);
  transform: rotate(135deg) translate(2px, -2px);
}

.accordion-header.active {
  background: #e2e2e2; /* Example: change background when active */
}

.accordion-header:after {
  content: "";
  height: 12px;
  width: 12px;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  border-bottom: 1px solid;
  border-left: 1px solid;
  -webkit-transform: rotate(-45deg) translate(2px, -2px);
  transform: rotate(-45deg) translate(2px, -2px);
  position: absolute;
  right: 15px;
  bottom: calc(50% - 5px);
}

.accordion-content {
  overflow: hidden;
  transition: max-height 0.3s ease;
  /* Ensure no fixed max-height is set */
  max-height: 0;
  background: #fff;
}

.accordion-content.show {
  max-height: 500px; /* Set a large enough max-height */
  opacity: 1;
  padding: 10px; /* Add padding when showing */
}

.accordion-content a {
  display: block;
  padding-top: 3px;
  padding-bottom: 3px;
  cursor: pointer;
  padding-left: 20px;
  font-size: 0.875em;
  color: #111;
  transition: none !important;
  transform: none !important;
  line-height: 1.4;
}

.accordion-header.active {
  background: #e2e2e2; /* Example: change background when active */
}

.property-card {
  margin: 20px 0;
}
.property-card span.property-card__disclaimer {
  position: absolute;
  color: #fff;
  font-size: 0.675rem;
  top: 6px;
  left: 10px;
  opacity: 0.7;
}
.property-card span.area-icon:nth-child(1) {
  margin: 0 10px 0 0;
}
.property-card__price {
  text-align: right;
}
.property-card__price span {
  font-size: 0.875rem;
}
.property-card__price-label {
  display: block;
  font-weight: bold;
}
.property-card__price-value {
  display: block;
  font-size: 1.2rem;
  font-weight: bold;
}
.property-card__image {
  position: relative;
  height: 290px;
  overflow: hidden;
}
.property-card__image-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.property-card__image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 13px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.property-card__type {
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}
.property-card__download-btn {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  background: #6E6F72;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 3px 15px 0;
}
.property-card__download-btn:hover {
  background-color: #111;
  color: #fff;
}
.property-card__download-icon {
  margin-left: 5px;
  margin-top: -4px;
  width: 16px;
  height: 16px;
}
.property-card__title {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  text-transform: capitalize;
  font-family: "GothamBook";
  font-weight: bold;
  color: #000;
}
.property-card__info {
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
}
.property-card__info-item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.property-card__info-icon {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}
.property-card__info-list {
  list-style-type: none;
  padding: 0;
  margin: 0 !important;
  display: flex;
  width: 100%;
}
.property-card__info-list-item {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.property-card__info-list-icon {
  margin-right: 5px;
  width: 16px;
  height: 16px;
}

.section-figcap .wpb_single_image .vc_figure {
  position: relative;
}

.section-figcap .wpb_single_image .vc_figure-caption {
  position: absolute;
  bottom: 10px;
  right: 10px;
  color: #fff;
  font-size: 12px !important;
  font-family: Roboto;
}

.caption-no-bg .caption {
  background-color: transparent;
  padding: 0;
  bottom: 15px;
  right: 15px;
  font-size: 15px;
  font-family: Roboto;
}

#slider-27-slide-51-layer-0 {
  font-size: 12px !important;
}

/* Style for the navigation list */
ul.sticky-nav {
  list-style-type: none;
  padding: 0;
  margin: 0;
  background: #e7dfda;
  DISPLAY: FLEX;
  ALIGN-ITEMS: self-start;
  margin: 0 !important;
}

ul.sticky-nav li {
  width: 100%;
  display: flex;
  MAX-WIDTH: 170PX;
  WIDTH: AUTO;
}
ul.sticky-nav li a {
  PADDING: 15PX 12px;
  display: block;
}
ul.sticky-nav li a:hover {
  color: #fff;
  background-color: #6E6F72;
}
@media (max-width: 767px) {
  ul.sticky-nav li a {
    font-size: 13px;
    PADDING: 15PX 10px;
  }
}
@media (max-width: 768px) {
  ul.sticky-nav li {
    MARGIN: 0 8PX 0;
  }
  ul.sticky-nav li:hover {
    color: inherit;
    background-color: transparent;
    font-weight: bold;
  }
}

.wpb_raw_code.wpb_raw_html {
  margin-bottom: 0 !important;
}

#sticky-menu-lp {
  width: 100%; /* Ensure it takes full width */
  transition: top 0.3s; /* Smooth transition */
}

#sticky-menu-lp.vc_row-has-fill > .vc_column_container > .vc_column-inner {
  padding-top: 0;
}

#sticky-menu-lp .wpb_raw_code .wpb_wrapper {
  display: flex;
  justify-content: center;
}
@media (max-width: 600px) {
  #sticky-menu-lp .wpb_raw_code .wpb_wrapper {
    justify-content: space-evenly;
  }
}

.logged-in #sticky-menu-lp.sticky {
  top: 150px !important;
}
@media (max-width: 600px) {
  .logged-in #sticky-menu-lp.sticky {
    top: 89px !important;
  }
}

#sticky-menu-lp {
  width: 100vw !important;
}

#sticky-menu-lp.sticky {
  position: fixed !important; /* Change to fixed when sticky */
  z-index: 1001121210; /* Higher z-index to stay above other content */
  background-color: white; /* Background color for visibility */
  top: 130px !important;
  left: 0;
  top: 120px !important;
  width: 100vw !important;
  box-sizing: border-box;
  left: 0 !important;
  margin-left: 0 !important;
  opacity: 1 !important;
}
@media (max-width: 780px) {
  #sticky-menu-lp.sticky {
    top: 165px !important;
  }
}
@media (max-width: 767px) {
  #sticky-menu-lp.sticky {
    top: 135px !important;
  }
}
@media (max-width: 600px) {
  #sticky-menu-lp.sticky {
    top: 90px !important;
  }
}

.vc_custom_1727760404778 .caption {
  font-size: 16px;
  font-family: "GothamBook", sans-serif;
}

body .vc_row-no-padding .ult-carousel-wrapper {
  /* Background settings for Slick slider arrows */
  /* Default opacity for Slick slider arrows */
  /* Icon styling for Slick slider arrows */
  /* Custom background images for previous and next arrows */
  /* Hover background for Slick slider arrows */
  /* Hover state opacity for background layers */
}
body .vc_row-no-padding .ult-carousel-wrapper .slick-prev {
  transform: none !important;
}
body .vc_row-no-padding .ult-carousel-wrapper .slick-prev,
body .vc_row-no-padding .ult-carousel-wrapper .slick-next {
  background-image: none !important;
}
body .vc_row-no-padding .ult-carousel-wrapper .slick-prev:before,
body .vc_row-no-padding .ult-carousel-wrapper .slick-next:before {
  background: rgba(255, 255, 255, 0.8);
  background-color: rgba(255, 255, 255, 0.8) !important;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  box-sizing: border-box;
  border-radius: inherit;
  -webkit-backface-visibility: hidden;
  transition: opacity 0.15s linear;
}
body .vc_row-no-padding .ult-carousel-wrapper .slick-prev:not(:hover):before, body .vc_row-no-padding .ult-carousel-wrapper .slick-next:not(:hover):before {
  opacity: 1;
}
body .vc_row-no-padding .ult-carousel-wrapper .slick-prev i, body .vc_row-no-padding .ult-carousel-wrapper .slick-next i {
  padding: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  background-repeat: no-repeat !important;
  background-size: initial !important;
  background-position: center !important;
  z-index: 1213124234534;
  position: relative;
  display: block;
}
body .vc_row-no-padding .ult-carousel-wrapper .slick-prev {
  left: 10%;
}
@media (max-width: 768px) {
  body .vc_row-no-padding .ult-carousel-wrapper .slick-prev {
    left: 0;
  }
}
body .vc_row-no-padding .ult-carousel-wrapper .slick-next {
  right: 0;
}
body .vc_row-no-padding .ult-carousel-wrapper .slick-prev i {
  background-image: url(https://castlegroup.com.au/wp-content/themes/castlegroup-child/images/arrow_prev.png) !important;
}
body .vc_row-no-padding .ult-carousel-wrapper .slick-next i {
  background-image: url(https://castlegroup.com.au/wp-content/themes/castlegroup-child/images/arrow_next.png) !important;
}
body .vc_row-no-padding .ult-carousel-wrapper .slick-prev:after,
body .vc_row-no-padding .ult-carousel-wrapper .slick-next:after {
  background: #ffffff;
  width: 54px;
  height: 54px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  opacity: 0;
  box-sizing: border-box;
  border-radius: inherit;
  -webkit-backface-visibility: hidden;
  transition: opacity 0.15s linear;
  transition-delay: 0.1s;
}
body .vc_row-no-padding .ult-carousel-wrapper .slick-prev:hover:before, body .vc_row-no-padding .ult-carousel-wrapper .slick-next:hover:before,
body .vc_row-no-padding .ult-carousel-wrapper .slick-prev:not(:hover):after, body .vc_row-no-padding .ult-carousel-wrapper .slick-next:not(:hover):after {
  opacity: 0;
}

body .vc_row-no-padding .ult-carousel-wrapper .slick-prev:hover:before,
body .vc_row-no-padding .ult-carousel-wrapper .slick-next:hover:before,
body .vc_row-no-padding .ult-carousel-wrapper .slick-prev:not(:hover):after,
body .vc_row-no-padding .ult-carousel-wrapper .slick-next:not(:hover):after {
  opacity: 1;
  background-color: #FFF !important;
}

span.property-card__deposit-taken,
span.property-card__sold {
  display: flex;
  align-items: center;
  background: #6E6F72;
  border-radius: 4px;
  font-size: 0.75rem;
  text-transform: uppercase;
  padding: 3px 15px 0;
  line-height: 1;
  padding: 8px 15px 6px !important;
  display: inline-block;
  background-color: #d35827;
  color: #ffffff;
  padding: 8px;
  display: inline-block;
}

@media (max-width: 500px) {
  ul.sticky-nav li a {
    font-size: 13px;
    PADDING: 15PX 1px;
  }
}
body .vc_row-no-padding .ult-carousel-wrapper .slick-prev,
body .vc_row-no-padding .ult-carousel-wrapper .slick-next {
  width: 54px;
  height: 54px;
}

#gmap-wrapper .vc_column-inner {
  padding-top: 0 !important;
}

.sticky-element-active + #sticky-menu-lp {
  left: 0 !important;
  z-index: 2 !important;
  top: 120px !important;
}
@media (max-width: 780px) {
  .sticky-element-active + #sticky-menu-lp {
    top: 165px !important;
  }
}
@media (max-width: 767px) {
  .sticky-element-active + #sticky-menu-lp {
    top: 135px !important;
  }
}
@media (max-width: 600px) {
  .sticky-element-active + #sticky-menu-lp {
    top: 90px !important;
  }
}

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