:root {
  --secondary: #263238;
  --mdb-font-robot: "Roboto", sans-serif;
}

/*Fonts*/
@font-face {
  font-family: 'Roboto';
  src: url('/fonts/Roboto-Regular.eot');
  src: url('/fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
    url('/fonts/Roboto-Regular.woff2') format('woff2'),
    url('/fonts/Roboto-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* For large screens */
.h1 {
  font-size: 4.2rem;
}

.h2 {
  font-size: 2.5rem;
}

.h3 {
  font-size: 2rem;
}

.h4 {
  font-size: 1.75rem;
}

.h5 {
  font-size: 1.5rem;
}

.h6 {
  font-size: 1.25rem;
}

/* For medium screens */
@media (max-width: 991px) {
  .h1 {
    font-size: 2.5rem;
  }

  .h2 {
    font-size: 2rem;
  }

  .h3 {
    font-size: 1.75rem;
  }

  .h4 {
    font-size: 1.5rem;
  }

  .h5 {
    font-size: 1.25rem;
  }

  .h6 {
    font-size: 1rem;
  }
}

/* For small screens */
@media (max-width: 767px) {
  .h1 {
    font-size: 2rem;
  }

  .h2 {
    font-size: 1.75rem;
  }

  .h3 {
    font-size: 1.5rem;
  }

  .h4 {
    font-size: 1.25rem;
  }

  .h5 {
    font-size: 1rem;
  }

  .h6 {
    font-size: 0.875rem;
  }
}



/* For large screens */
p,
a,
.seo-content {
  font-size: 1.1rem;
  line-height: 1.5;
}

/* For medium screens */
@media (max-width: 991px) {

  p,
  a,
  .seo-content {
    font-size: 1rem;
    line-height: 1.4;
  }
}

/* For small screens */
@media (max-width: 767px) {

  p,
  a,
  .seo-content {
    font-size: 1rem;
    line-height: 1.3;
  }
}


/* For large screens */
.btn {
  font-size: 1rem;
}

/* For medium screens */
@media (max-width: 991px) {
  .btn {
    font-size: 0.9rem;
  }
}

/* For small screens */
@media (max-width: 767px) {
  .btn {
    font-size: 0.8rem;
  }
}

.extra-small {
  font-size: 14px;
}

/*Fonts*/

/*Button*/

.btn-style-1 {
  background: var(--main);
  color: white;
  border: none;
  font-weight: 700;
}

.btn-style-1:focus,
.btn-style-1:hover {
  background: white;
  color: var(--main);
  transition: 0.5s;
}

.btn-style-2 {
  background: var(--secondary);
  color: white;
  border: none;
  font-weight: 700;
}

.btn-style-2:focus,
.btn-style-2:hover {
  background: white;
  color: var(--main);
  transition: 0.5s;
}

/*Button*/

a {
  text-decoration: none !important;
}

/*Nav*/
nav {
  background: inherit;
}

.gray-banner {
  background: #263238;
}

.gray-banner .list-group-item {
  color: white;
  border: none;
  font-size: 12px;

}

nav .nav-link {
  font-size: 18px;
}

.bi.bi-list path {
  fill: var(--main);
}



.logo {
  max-width: 150px;
  height: auto;
}

@media (max-width: 992px) {
  .logo {
    max-width: 130px;
  }
}

.navbar-collapse.collapse.show {
  min-height: 42vh;
  overflow: scroll;

}

.nav-centered {
  min-height: 50px;
  place-content: center;
}

#navbarMenu {
  min-height: 100px;
}

/*Nav End*/

/* Section  */

.section-style-1 {
  background: var(--main);
}

.section-style-1 p {
  color: white;
}

.section-style-1 .h2 {
  color: white;
}

/* Section End */



/* Default height for small devices */
#main-hero {
  height: 400px;

}

/* Height for devices larger than 992px */
@media (min-width: 992px) {
  #main-hero {
    height: 1080px;

  }
}

#main-hero img {
  object-fit: cover;
}


.neighborhood-card .card-title {
  position: absolute;
  bottom: 10px;
  color: white;
}

.banner-hero img {
  max-height: 400px;
  width: 100%;
  object-fit: cover;
}

.border-list-color .list-group-item {
  border-bottom-color: var(--main) !important;
}

footer a {
  color: white;
}

@media (max-width: 1200px) {
  .floor-plans-block-details li {
    border: none !important;
  }

}

.bg-secondary-style {
  background: var(--secondary);
}

/*** See More ***/
@property --a {
  syntax: '<color>';
  inherits: false;
  initial-value: #212529;
}

.see-more {
  background: -webkit-linear-gradient(white, var(--a));
  --a: #212529;
  transition: max-height 0.5s ease-in-out, --a 0.3s ease-in-out;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.see-more.collapsed {
  --a: #eee;
  overflow: hidden;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-background-clip: text;
  -moz-text-fill-color: transparent;
}

.see-more.dark {
  transition: max-height 0.5s ease-in-out;
  background: initial;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: initial;
  -moz-background-clip: initial;
  -moz-text-fill-color: initial;
}

.see-more~.see-more-link {
  background-color: transparent !important;
  box-shadow: none !important;
  text-decoration: underline;
}

.see-more.dark~.see-more-link {
  color: white;
  outline-color: white;
}

/*** End See More ***/


.fade {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.fade.show {
  opacity: 0.9;
}

.filter-container input,
.filter-container select {
  border: none;
  border-bottom: solid black 1px;
}






:root {
  --tmr-bootstrap-border-color: #dee2e6;
  --tmr-white: #eee;
  --tmr-table-header: #54667a;
  --tmr-row-divider-color: #3490dc;
  --tmr-stripped-row-background-color: rgba(0, 0, 0, 0.05);
}

/*-- ==============================================================
Screen smaller than 760px and iPads.
============================================================== */

@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {

  [data-content]:before {
    content: attr(data-content);
  }

  /* Force table to not be like tables anymore */
  .table-mobile-responsive,
  .table-mobile-responsive thead,
  .table-mobile-responsive tbody,
  .table-mobile-responsive th,
  .table-mobile-responsive td,
  .table-mobile-responsive tr {
    display: block;
  }

  .table-mobile-responsive.text-center {
    text-align: left !important;
  }

  .table-mobile-responsive caption {
    width: max-content;
  }

  /* Hide table headers (but not display: none;, for accessibility) */
  .table-mobile-responsive thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .table-mobile-responsive> :not(:first-child) {
    border-top: none;
  }

  .table-mobile-responsive>:not(caption)>*>* {
    border-color: var(--tmr-bootstrap-border-color);
  }

  .table-mobile-responsive tr:not(.bg-light-blue) {
    border-bottom: 2px solid var(--tmr-row-divider-color);
  }

  /* Default layout */
  .table-mobile-responsive td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid var(--tmr-white);
    position: relative;
    padding-left: 50%;
    padding-top: 1.5rem !important;
  }

  .table-mobile-responsive td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 0;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: bold;
    color: var(--tmr-table-header);
  }

  /* Sided layout */
  .table-mobile-responsive.table-mobile-sided> :not(:first-child) {
    border-top: none;
  }

  .table-mobile-responsive.table-mobile-sided>:not(caption)>*>* {
    border-color: var(--bs-table-border-color);
  }

  .table-mobile-responsive.table-mobile-sided td {
    /* Behave  like a "row" */
    border: none;
    border-bottom: 1px solid var(--tmr-white);
    position: relative;
    padding-left: 50%;
    padding-bottom: 20px;
    padding-top: 20px !important;
    display: flex;
    justify-content: flex-end;
  }

  .table-mobile-responsive.table-mobile-sided td:before {
    /* Now like a table header */
    position: absolute;
    /* Top/left values mimic padding */
    top: 0;
    left: 6px;
    width: 45%;
    padding-right: 10px;
    white-space: nowrap;
    font-weight: bold;
    color: var(--tmr-table-header);
    display: flex;
    align-items: center;
    height: 100%;

  }

  /* Styleless */
  .table-mobile-responsive.table-mobile-styleless tr:not(.bg-light-blue) {
    border-bottom: none !important;
  }

  /* Stripped rows */
  .table-mobile-responsive.table-mobile-striped>tbody>tr:nth-of-type(odd)>* {
    background-color: var(--tmr-stripped-row-background-color) !important;
  }
}




.form-label {
  background: white
}

.form-notch div {
  border: 0 !important;
}

.form-control {
  border-bottom: solid #a19999 1px !important;
}

.form-control:focus {
  border-bottom: 0 !important;
}

.form-box {
  border: 1px solid #ddd;
  padding: 30px;
}

.form-box:focus,
.form-box:hover {
  transition: box-shadow .25s;
  box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.modal.fade.show {
  opacity: 0.9;
}

.lightbox-container img {
  max-width: 800px;
  width: 100%;
}




.gallery img {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100vw;

  z-index: 9999;
}

.lightbox-container {
  height: 100vh;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.8);
}

.lighbox-container * {
  max-width: 100%;
}

.active label {
  margin-top: -10px;
}



.bi-star-fill,
.bi-star-half,
.bi-star {
  fill: var(--main);
  stroke: var(--main);
}

.local-card-info h4 a {
  color: var(--main);
}

.local-place-block svg {
  fill: var(--main);
}

.local-place-block {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);

}

.local-card-info {
  min-height: 270px;
}

#map-buttons li {
  width: 20%;
  text-align: center;
  background: transparent !important;
}

#map-buttons li:focus button,
#map-buttons li:hover button {
  color: white;
  background: var(--main);
}


#map-buttons button {
  border: none;
  background: transparent;
  color: var(--main);
  border-bottom: solid 2px var(--main);
  padding-bottom: 10px;
  width: 100%;
}

.pet-title {
  bottom: 10%;
}

.residents-card .card-title {
  bottom: 10%;
}

.pet-card .card-body {
  min-height: 200px;
}

.bg-lightgray {
  background-color: #E8E8E8;
}

.font-small {
  font-size: 11px;
}

.bg-darkgray {
  background-color: #292929;
}

.logo-rental {
  max-width: 150px !important;
}

.red-color *,
.red-color {
  color: #B22540 !important;
}

.reviews-star-block {
  width: 200px;
  height: 80px;
}

.number-rating {
  font-size: 36px;
  /*color: #fd703b;*/
  color: #d93c02;
}

.total-reviews {
  font-size: 20px;
}

.avatar.grey {
  width: 100%;
  border-radius: 50%;
  text-align: center;
  font-size: 48px;
  padding: 50% 0px;
  line-height: 0;
  position: relative;
  color: white;
  background: gray;
}

.asyncGallery:not(.is-visible) {
  z-index: -5;
}

.review-row .reviews-star-block .rating,
.local-place-block .reviews-star-block .rating {
  color: var(--main);
  -webkit-text-stroke: 2px var(--main);
  font-size: 25px;
}

.review-row .reviews-star-block .ratingBorder,
.local-place-block .reviews-star-block .ratingBorder {
  -webkit-text-stroke: 2px var(--main);
  font-size: 25px;
}

.local-stars .reviews-star-block,
.local-place-block .local-stars .reviews-star-block {
  height: 40px;
}

.amenities-list .col-12.col-lg-4::before {
  content: "\2022";
  /* Unicode for a bullet */
  margin-right: 10px;
}

.gray-banner a {
  font-size: 0.8rem !important;
}

@media (min-width: 1400px) and (max-width: 1766px) {
  .gray-banner-hide {
    display: none !important;
  }

  .gray-banner .list-group-item {
    padding: 8px 9px !important;
  }
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20%;
  z-index: 1;
  cursor: pointer;
}

/* Map Start */
#map {
  height: 600px;
  max-height: 80vh;
  width: 100%;
}

.marker {
  background-size: cover;
  cursor: pointer;
  width: 40px;
  height: 40px;
}

.mapboxgl-popup,
.maplibregl-popup {
  z-index: 3;
}

.maplibregl-popup-content {
  padding: 20px 30px !important;
}

.property.marker {
  z-index: 2;
  width: 60px;
  height: 60px;
}

#map-output {
  min-height: 100px;
  width: 100%;
}

#map-output ul {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  width: 100%;
}

#map-output>ul>li {
  cursor: default;
  width: 18%;
  padding: 5px;
  margin: 3px 1%;
  display: inline-block;
  vertical-align: center;
  border: 0;
  /*border-bottom: 2px solid var(--main);*/
  outline: 0px solid;
  color: var(--main);
  font-size: 1.8rem;
  transition: outline 70ms ease-in;
}

#map-output>ul>li:focus,
#map-output>ul>li:focus-within,
#map-output>ul>li:hover {
  color: var(--main);
  outline: 2px solid var(--main);
}

#map-output>ul>li>button {
  font-size: 1.2rem !important;
  color: inherit;
  background: transparent;
  border: 0;
  width: 100%;
  height: 100%;
  display: inline;
  vertical-align: middle;
  outline: 0 !important;
}

@media (max-width: 991px) {
  #map-output>ul>li {
    width: 31%;
  }
}

@media (max-width: 575px) {
  #map-output>ul>li {
    width: 48%;
  }

  #map-buttons>li>button {
    font-size: 0.9rem;
  }
}

/* Map End */


.amenities-list-items {
  list-style: none;
  padding: 0;
  text-align: center;
}

.amenities-list-items li:not(:last-child)::after {
  content: "";
  display: block;
  width: 50%;
  /* Adjust the width of the border */
  height: 2px;
  /* Adjust the height of the border */
  background-color: #adabab54;
  /* Border color */
  margin: 0 auto;
  /* Center the border */
  margin-top: 30px
}

.mw-87 {
  max-width: 87px;
}

.text-white a {
  color: white;
  font-weight: bold;
  text-decoration: underline;
}

.special-unit-floorplan {
  color: var(--main);
}


.special-banner {
  background-color: var(--main);
  /* A strong red color like in the example */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  /* Ensures banner is on top of other content */
  color: white;
  padding: 1.5rem 1rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);

  /* --- Animation Properties --- */
  /* Initially hidden above the viewport */
  transform: translateY(-120%);
  /* Smooth transition for the slide effect */
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.special-banner.show {
  /* Slides the banner into view */
  transform: translateY(0);
}

.banner-content {
  position: relative;
}

.close-btn {
  background-color: #212529;
  /* Dark color for the button */
  color: white;
  border: 2px solid white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 24px;
  line-height: 32px;
  /* Vertically center the '×' */
  cursor: pointer;
  text-align: center;
  position: absolute;
  /* Position it below the banner, centered */
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: background-color 0.2s;
}

.close-btn:focus,
.close-btn:hover {
  background-color: #343a40;
}

.promo-button {
  background-color: #212529;
  border-color: #212529;
  font-weight: bold;
  padding: 0.5rem 1.5rem;
  transition: background-color 0.2s, border-color 0.2s;
}

.promo-button:focus,
.promo-button:hover {
  background-color: #343a40;
  border-color: #343a40;
}

.tap-call {
  display: none;
}

.nav-item.active a {
  color: var(--main);
  font-weight: bold;
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;


  background-color: rgba(0, 0, 0, 0.3);

}

#cookieConsent {
  z-index: 9001;
}

@media (min-width: 1400px) and (max-width: 1457px) {
  nav .nav-link {
    font-size: 16.5px;
  }
}

@media (min-width: 1400px) and (max-width: 1468px) {
  .gray-banner a {
    font-size: 0.65rem !important;
  }
}

@media (min-width: 1469px) and (max-width: 1522px) {
  .gray-banner a {
    font-size: 0.7rem !important;
  }
}

@media (min-width: 1523px) and (max-width: 1537px) {
  .gray-banner a {
    font-size: 0.74rem !important;
  }
}

@media (min-width: 1538px) and (max-width: 1608px) {
  .gray-banner a {
    font-size: 0.75rem !important;
  }

}

@media (min-width: 1608px) and (max-width: 2107px) {
  span.gray-banner-hide {
    display: none !important;
  }
}

button.modal-trigger img.responsive-img {
  max-width: 100%;
  height: 100%;
}

@media (min-width: 1025px) {
  .unit-table-row td {
    max-width: 450px;
  }
}