﻿/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden; /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
  	This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
  	calculation of the height of the owl-item that breaks page layouts
   */
}
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("../scss/owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*=owl-] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*=owl-]:hover {
  background: #31363D;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 16px;
  height: 16px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #31363D;
}

.prop-types-selector {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 580px) {
  .prop-types-selector {
    order: 1;
  }
}
.prop-types-selector .prop-type {
  font-size: 1.125rem;
  font-weight: 500;
  color: #31363D;
  background-color: #B8CAE3;
  text-transform: none;
  border-radius: 0 8px 8px 0;
}
.prop-types-selector .inactive-home {
  border-radius: 0 8px 8px 0;
}
.prop-types-selector .inactive-condo {
  border-radius: 8px 0 0 8px;
}
.prop-types-selector .active {
  color: #fff;
  background-color: #FB6146;
  height: 2.7rem;
  border-radius: 6px;
  line-height: 2.5;
}

.ImageViewSection {
  background-color: #F5F7FA;
}
.ImageViewSection .padding {
  padding: 1.25rem 0px;
}
.ImageViewSection .preconstrustion-listings {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  grid-auto-rows: auto;
  justify-items: center;
  text-align: center;
}
@media screen and (max-width: 1599px) {
  .ImageViewSection .preconstrustion-listings {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 780px) {
  .ImageViewSection .preconstrustion-listings {
    grid-template-columns: 100%;
  }
}
.ImageViewSection .preconstrustion-card {
  width: 23.2rem;
  text-align: center;
  padding: 1.25rem 0.3rem;
}
@media screen and (max-width: 1024px) {
  .ImageViewSection .preconstrustion-card {
    padding: 0.625rem 0.625rem;
  }
}
@media screen and (max-width: 480px) {
  .ImageViewSection .preconstrustion-card {
    padding: 0.25rem 0.25rem;
    width: 100vw;
    max-width: 23.2rem;
  }
}
.ImageViewSection .card-image {
  position: relative;
  height: 17.4rem;
  overflow: hidden;
}
.ImageViewSection .card-image img {
  display: block;
  border-radius: 2px 2px 0 0;
  position: relative;
  left: 0;
  right: 0;
  object-fit: cover;
  height: auto;
  max-width: 23.2rem;
  max-height: 300px;
  min-height: 268px;
}
.ImageViewSection .card-image .listing-card-title {
  color: rgb(224, 224, 224);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5.5rem;
  background-color: #31363D;
  font-family: "Work Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 1rem;
  text-align: left;
  display: flex;
  align-items: center;
  --max-lines: 3;
  position: relative;
  max-height: calc(var(--lh) * var(--max-lines));
  overflow: hidden;
}
.ImageViewSection .listing-price {
  color: #31363D;
  background-color: #FFD09C;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.75rem 0.625rem;
  text-align: right;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
@media screen and (max-width: 480px) {
  .ImageViewSection .listing-price {
    font-size: 1.2rem;
  }
}
.ImageViewSection .card-content {
  color: #31363D;
  font-size: 1.185rem;
  font-weight: 300;
  padding: 1rem 1rem 0rem 1rem;
}
@media screen and (max-width: 480px) {
  .ImageViewSection .card-content {
    padding: 0 1rem;
    font-size: 1rem;
  }
}
.ImageViewSection .card-content .adress {
  font-weight: 400;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  margin: 1.25rem 0px;
}
@media screen and (max-width: 480px) {
  .ImageViewSection .card-content .adress {
    margin: 0.5rem 0.3rem;
  }
}
.ImageViewSection .card-content .adress .city {
  font-weight: 500;
}
.ImageViewSection .card-content .location {
  font-weight: 400;
}
.ImageViewSection .card-content .value {
  font-weight: 500;
}
.ImageViewSection .card-content .props {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.625rem;
}
@media screen and (max-width: 480px) {
  .ImageViewSection .card-content .props {
    margin: 0.3rem;
  }
}
.ImageViewSection .card-content .props .feature {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow: hidden;
  white-space: nowrap;
}
.ImageViewSection .card-content .props .desc {
  display: block;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: clip;
  line-height: 1.5;
  padding-left: 5px;
}
@media screen and (max-width: 480px) {
  .ImageViewSection .card-content .props .desc {
    line-height: 1.7;
  }
}
.ImageViewSection .card-content .props .no-padding {
  padding: 0;
}
.ImageViewSection .card-content .props .left {
  justify-content: flex-end;
}
.ImageViewSection .card-content .props .year {
  color: #ff9800;
  font-weight: 500;
}
.ImageViewSection .card-content .props img {
  height: 1.5rem;
  margin-right: 0.3rem;
}

.icon-beds {
  display: block;
  width: 32px;
  height: 24px;
  background: url(/Layout/CNC/img/beds.svg);
  background-size: 32px 24px;
}

.icon-baths {
  display: block;
  width: 29px;
  height: 29px;
  background: url(/Layout/CNC/img/baths.svg);
  background-size: 29px 29px;
}

.icon-floors {
  display: block;
  width: 37px;
  height: 27px;
  background: url(/Layout/CNC/img/floors.svg);
  background-size: 37px 27px;
}

.icon-location {
  display: block;
  width: 23px;
  height: 29px;
  background: url(/Layout/CNC/img/location.svg);
  background-size: 23px 29px;
}

#hero-container {
  position: relative;
  max-height: 664px;
  width: 100vw;
  height: 664px;
  overflow: hidden;
  margin: 0;
}
@media screen and (max-width: 580px) {
  #hero-container {
    margin: 2.2rem 0 0 0;
  }
}
#hero-container #hero-carousel {
  margin: auto;
  height: 100% !important;
  overflow: hidden;
}
#hero-container #hero-carousel .slider-condo {
  height: 664px;
  width: 100%;
}
#hero-container #hero-carousel .slider-condo img, #hero-container #hero-carousel .slider-condo picture {
  display: block;
  object-fit: cover;
  height: 100%;
  min-width: 100%;
  width: auto;
}
#hero-container #hero-carousel .slider-condo .condo-title {
  position: absolute;
  top: 34.5rem;
  left: 0;
  width: 100%;
  height: 4.5rem;
  padding-left: 5.5rem;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 580px) {
  #hero-container #hero-carousel .slider-condo .condo-title {
    top: 32rem;
    padding-left: 3.75rem;
  }
}
#hero-container #hero-carousel .slider-condo .condo-title a {
  display: flex;
  padding-left: 9.375rem;
  height: 3.75rem;
  font-family: "Work Sans", sans-serif;
  font-size: 38px;
  font-weight: 400;
  line-height: 1.8;
  color: #31363D;
  opacity: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: inherit;
}
@media screen and (max-width: 720px) {
  #hero-container #hero-carousel .slider-condo .condo-title a {
    font-size: 28px;
    line-height: 2.5;
  }
}
@media screen and (max-width: 580px) {
  #hero-container #hero-carousel .slider-condo .condo-title a {
    font-size: 22px;
    line-height: 3;
    padding-left: 6.875rem;
  }
}
#hero-container #hero-carousel .owl-item {
  -webkit-animation-duration: 1s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
#hero-container #hero-carousel .owl-stage-outer {
  height: 100% !important;
  transform: translate3d(0, 0, 0);
}
#hero-container #hero-carousel .owl-dots {
  position: absolute !important;
  top: 35rem;
  left: 3.125rem;
}
@media screen and (max-width: 580px) {
  #hero-container #hero-carousel .owl-dots {
    top: 32.5rem;
    left: 0.625rem;
  }
}
#hero-container #hero-carousel .owl-dots .owl-dot span {
  border: 1px solid #FFFFFF;
}
#hero-container #hero {
  position: absolute;
  top: 18.5rem;
  z-index: 1;
  height: auto;
  color: #373D45;
  background-color: rgba(255, 255, 255, 0.86);
  left: 15%;
  right: 15%;
  padding: 1.25rem 1.25rem 2rem 1.25rem;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  font-size: 1.3rem;
}
@media screen and (max-width: 1200px) {
  #hero-container #hero {
    left: 5%;
    right: 5%;
    top: 12rem;
  }
}
@media screen and (max-width: 580px) {
  #hero-container #hero {
    top: 3.5rem;
  }
}
@media screen and (max-width: 360px) {
  #hero-container #hero {
    left: 1%;
    right: 1%;
    padding: 1.25rem 0.25rem;
  }
}
#hero-container #hero .hero-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
#hero-container #hero .hero-title h1 {
  color: #494B6E;
  font-size: 1.5rem;
  font-weight: 500;
  padding: 0.5rem 0rem;
  margin: 0rem 2rem;
}
@media screen and (max-width: 580px) {
  #hero-container #hero .hero-title h1 {
    margin: 0;
  }
}
#hero-container #hero .hero-controls {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr;
  grid-gap: 0.5rem;
}
@media screen and (max-width: 1200px) {
  #hero-container #hero .hero-controls {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 580px) {
  #hero-container #hero .hero-controls {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto 1fr 1fr 1fr 1fr;
    grid-row-gap: 0.5rem;
    grid-column-gap: 0;
  }
}
#hero-container #hero .hero-controls div {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
#hero-container #hero .hero-controls div input, #hero-container #hero .hero-controls div lable {
  height: 2.2rem;
  border: none !important;
  font-size: 1rem;
  margin: 0;
}
#hero-container #hero .hero-controls .empty {
  height: 0px;
}
#hero-container #hero .hero-controls .hero-panel {
  background-color: rgb(255, 255, 255);
  padding: 0rem 1rem;
}
#hero-container #hero .hero-controls .hero-panel #price-delimiter {
  height: 2rem;
  width: 1rem;
  border-left: 1px solid #A3AAB5;
}
#hero-container #hero .hero-controls .price-container {
  display: block;
  position: relative;
  top: 1rem;
  font-size: 1rem;
}
@media screen and (max-width: 1200px) {
  #hero-container #hero .hero-controls .beds {
    order: 5;
  }
}
@media screen and (max-width: 580px) {
  #hero-container #hero .hero-controls .beds {
    order: 1;
  }
}
#hero-container #hero .hero-controls .beds .beds-selector {
  height: 2rem;
  font-size: 1rem;
  font-weight: 500;
  color: #31363D;
  background-color: #fff;
  line-height: 2rem;
  padding: 0 0.75rem;
  border-radius: 6px;
  margin-right: 0.3125rem;
}
#hero-container #hero .hero-controls .beds .selected-beds {
  background-color: #FFD19E;
}
#hero-container #hero .hero-controls .waterfront-panel {
  width: 35%;
  height: 3rem;
}
@media screen and (max-width: 1200px) {
  #hero-container #hero .hero-controls .right-of-label {
    order: 3;
  }
}
@media screen and (max-width: 580px) {
  #hero-container #hero .hero-controls .right-of-label {
    order: initial;
  }
}
#hero-container #hero .hero-controls .waterfront-label {
  justify-content: flex-start;
}
@media screen and (max-width: 1200px) {
  #hero-container #hero .hero-controls .waterfront-label {
    order: 4;
  }
}
@media screen and (max-width: 580px) {
  #hero-container #hero .hero-controls .waterfront-label {
    order: 2;
  }
}
@media screen and (max-width: 1200px) {
  #hero-container #hero .hero-controls .cta {
    order: 6;
  }
}
#hero-container #hero .hero-controls .cta #search-btn {
  width: 65%;
  height: 3rem;
  line-height: 2.25;
  padding: 0rem 1rem;
  margin-left: 0.5rem;
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

.info-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.info-section h2 {
  font-family: "Work Sans", sans-serif;
  font-size: 2.25rem;
  font-weight: 400;
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 580px) {
  .info-section h2 {
    font-size: 1.6rem;
  }
}
.info-section .browse {
  padding: 1rem 2rem;
  margin: 3.5rem 0rem 0rem 0rem;
  height: auto;
  width: 20rem;
  margin-top: 2.5rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 580px) {
  .info-section .browse {
    width: 100%;
  }
}
.info-section p {
  line-height: 1.5;
  align-self: flex-start;
  margin: 0;
}
@media screen and (max-width: 780px) {
  .info-section p {
    margin-top: 0.5rem;
  }
}

.ImageViewSection {
  background-color: inherit;
}

.condo-hoods {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 2rem;
  padding: 1rem 0;
}
@media screen and (max-width: 1200px) {
  .condo-hoods {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1rem;
  }
}
@media screen and (max-width: 580px) {
  .condo-hoods {
    grid-template-columns: 1fr;
    grid-gap: 0rem;
  }
}
.condo-hoods .card a {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  color: #31363D;
}
.condo-hoods .card-image img {
  height: 13.75rem;
  object-fit: cover;
}

[type=checkbox] + span:not(.lever) {
  padding-left: 28px;
  padding-bottom: 25px;
  height: 20px;
  line-height: 20px;
}

[type=checkbox].filled-in:checked + span:not(.lever):after, [type=checkbox].filled-in:not(:checked) + span:not(.lever):after {
  width: 30px;
  height: 30px;
}

[type=checkbox].filled-in:checked + span:not(.lever):before {
  top: -3px;
  left: 1px;
  width: 12px;
  height: 25px;
}

.blog-posts {
  display: grid;
  grid-template-columns: calc(50% - 2rem) calc(50% - 2rem);
  grid-template-rows: 16.625rem 16.625rem;
  grid-gap: 2rem;
}
@media screen and (max-width: 820px) {
  .blog-posts {
    grid-template-columns: calc(100vw - 3rem);
    grid-template-rows: minmax(15rem, 1fr) minmax(15rem, 1fr) minmax(15rem, 1fr) minmax(15rem, 1fr);
  }
}
@media screen and (max-width: 520px) {
  .blog-posts {
    padding: 0 0.75rem;
  }
}
.blog-posts .post {
  display: grid;
  grid-template-columns: 174px calc(100% - 174px - 1rem);
  grid-template-rows: auto 174px 1rem;
  grid-column-gap: 1rem;
  grid-row-gap: 0.75rem;
  font-family: Roboto, sans-serif;
}
@media screen and (max-width: 520px) {
  .blog-posts .post {
    grid-template-columns: calc(100vw - 3rem);
    grid-template-rows: minmax(6rem, 1fr) 150px 170px 1rem;
    grid-column-gap: 0.5rem;
    grid-row-gap: 0.5rem;
  }
}
.blog-posts .post .image {
  display: flex;
  justify-content: center;
}
.blog-posts .post .image img {
  width: 174px;
  height: 174px;
}
@media screen and (max-width: 520px) {
  .blog-posts .post .image img {
    width: auto;
    height: 150px;
  }
}
.blog-posts .post .title, .blog-posts .post .read-more {
  grid-column: span 2;
}
@media screen and (max-width: 520px) {
  .blog-posts .post .title, .blog-posts .post .read-more {
    grid-column: span 1;
  }
}
.blog-posts .post .title a {
  font-family: "Work Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #31363D;
}
@media screen and (max-width: 520px) {
  .blog-posts .post .title a {
    font-size: 1rem;
  }
}
.blog-posts .post .read-more {
  text-align: right;
}
.blog-posts .post .read-more a {
  font-size: 1rem;
  font-weight: 500;
  color: #FB6146;
}
.blog-posts .post .date {
  color: #70706E;
  font-size: 1rem;
  font-weight: 500;
  padding-bottom: 0.75rem;
}
.blog-posts .post .text {
  font-size: 1rem;
  font-weight: 400;
  height: calc(174px - 1.75rem);
  overflow: hidden;
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22file:///D:/PNWS%2520Projects/cnc/Condos.WebRedesign/Layout/CNC/scss/vendors/slider/_core.scss%22,%22file:///D:/PNWS%2520Projects/cnc/Condos.WebRedesign/Layout/CNC/scss/vendors/slider/_animate.scss%22,%22file:///D:/PNWS%2520Projects/cnc/Condos.WebRedesign/Layout/CNC/scss/vendors/slider/_autoheight.scss%22,%22file:///D:/PNWS%2520Projects/cnc/Condos.WebRedesign/Layout/CNC/scss/vendors/slider/_lazyload.scss%22,%22file:///D:/PNWS%2520Projects/cnc/Condos.WebRedesign/Layout/CNC/scss/vendors/slider/_video.scss%22,%22file:///D:/PNWS%2520Projects/cnc/Condos.WebRedesign/Layout/CNC/scss/vendors/slider/_theme.default.scss%22,%22file:///D:/PNWS%2520Projects/cnc/Condos.WebRedesign/Layout/CNC/scss/vendors/slider/_theme.scss%22,%22file:///D:/PNWS%2520Projects/cnc/Condos.WebRedesign/Layout/CNC/scss/pages/common/_property-type-selector.scss%22,%22file:///D:/PNWS%2520Projects/cnc/Condos.WebRedesign/Layout/CNC/scss/vendors/materialize/components/_variables.scss%22,%22file:///D:/PNWS%2520Projects/cnc/Condos.WebRedesign/Layout/CNC/scss/pages/common/_entity-cards.scss%22,%22file:///D:/PNWS%2520Projects/cnc/Condos.WebRedesign/Layout/CNC/scss/pages/home/_home.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;AAAA;AAAA;AAGA;EACC;EACA;EACA;AACA;EACA;EACA;;AAEA;EACC;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA;AACA;EACA;;AAGD;AAAA;EAEC;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;;AAED;EACC;EACA;;AAGD;AAAA;EAEC;;AAGD;AAAA;AAAA;EAGC;EACA;EACA;EACA;EACA;EACA;;AAGD;AAAA;AAAA;EAGC;EACA;EACA;EACA;EACA;;AAGD;EACC;;AAGD;EACC;EACA;;AAGD;EACC;;AAGD;EACC;;AAGD;EACC;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA;;AAGD;EACC;;AAGD;EACC;;;AAIF;AACA;EACC;;;AC5HD;AAAA;AAAA;AAIC;EACC;EACA;;AAED;EACC;;AAED;EACC;;AAED;EACC;;;AAIF;EACC;IACC;;EAGD;IACC;;;ACzBF;AAAA;AAAA;AAIA;EACC;;;ACLD;AAAA;AAAA;AAKC;AAMC;AAAA;AAAA;AAAA;;AALA;EACE;EACA;;AAOF;EACC;;AAGD;EACC;;;AClBH;AAAA;AAAA;AAKC;EACC;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;;AAGD;AAAA;EAEC;;AAGD;EACC;EACA;EACA;EACA;EACA;EACA;;AAGD;EACC;EACA;EACA;EACA;;;AClDF;AAAA;AAAA;ACGC;EACC;EACA;EACA;;AAEA;EACC,ODJa;ECKb,WDEe;ECDf,QDGa;ECFb,SDGc;ECFd,YDPY;ECQZ;EACA;EACA;;AAEA;EACC,YDfoB;ECgBpB,ODfY;ECgBZ;;AAGF;EACC,SDPqB;ECQrB;;AAKF;EACC;;AAGD;EACC;EACA;;AAEA;EACC;EACA;EACA;;AAEA;EACC,ODvBW;ECwBX,QDvBW;ECwBX,QDtBY;ECuBZ,YD1CW;EC2CX;EACA;EACA;EACA,eD5BY;;ACiCZ;EACC,YDtDmB;;;AEJvB;EACG;EACA;;A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%22%7D */