.specials_bar {
  position: relative;
  background-color: #e2d4c7;
  color: #2a2d60;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.5s;
  overflow: auto;
  padding: 14px 5.35vw;
  gap: 5px;
  overflow: hidden;
}

.specials_bar .specials_bar_cnt {
  text-align: center;
  display: flex;
  align-items: center;
  gap: 5px;
}

.specials_bar .specials_bar_cnt span {
  font-size: 10px;
}
.specials_bar .specials_bar_cnt p {
  font-family: Noto Sans, Helvetica, Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  margin: 0px;
  padding: 0px 20px;
  letter-spacing: 3px;
}

.specials_bar .special_close {
  background: none;
  border: 0px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  height: 25px;
  width: 25px;
  position: absolute;
  top: 35%;
  transform: translateY(-50%);
  right: 12px;
}
.specials_bar .special_close span {
  height: 2px;
  width: 25px;
  display: block;
  background: #2a2d60;
  transition: all 0.3s;
}
.specials_bar .special_close span:first-child {
  position: absolute;
  top: 20px;
  left: 0px;
  transform: rotate(45deg);
}
.specials_bar .special_close span:last-child {
  position: absolute;
  top: 20px;
  left: 0px;
  transform: rotate(-45deg);
}

.specials_bar.hide {
  transform: translateY(-100%);
  height: 0;
  padding: 0;
}

.specials_bar.hide p,
.specials_bar.hide span {
  font-size: 0;
}
.specials_bar.hide .special_close {
  opacity: 0;
  visibility: hidden;
}

#popup-overlay {
  position: fixed;
  background-color: transparent;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all ease 0.5s;
  overflow: auto;
  flex-wrap: wrap;
}

#popup-overlay:before {
  width: 100%;
  height: 100%;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  z-index: 1;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  opacity: 0.75;
  background: #000000;
}

#popup-overlay #popup-container {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

#popup-overlay .popup {
  overflow: hidden;
  text-align: center;
  background: #e2d4c7;
  margin: 0 24px;
  max-width: 628px;
  z-index: 2;
  position: relative;
  padding: 64px 24px;
}

@media (min-width: 1024px) {
  #popup-overlay .popup {
    padding: 72px 60px;
    width: 85%;
    margin: 0;
  }
}

#popup-overlay .popup:before {
  content: "";
  border: 2px solid #2a2d60;
  top: 10px;
  left: 10px;
  right: 10px;
  display: block;
  bottom: 10px;
  position: absolute;
  z-index: 0;
}

#popup-overlay .popup .round-bg {
  display: block;
  height: 24px;
  width: 24px;
  position: absolute;
  right: 24px;
  top: 24px;
  border-radius: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  #popup-overlay .popup .round-bg {
    right: 32px;
    top: 32px;
  }
}

#popup-overlay .popup #popup-close {
  width: 14px;
  height: 14px;
  top: 0;
  right: 0;
  position: relative;
  cursor: pointer;
}

#popup-overlay #popup-close:before {
  content: "";
  position: absolute;
  width: 100%;
  background: #2a2d60;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}

#popup-overlay #popup-close:after {
  content: "";
  position: absolute;
  width: 100%;
  background: #2a2d60;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

#popup-overlay .popup #popup-close:after,
#popup-overlay .popup #popup-close:before {
  height: 2px;
}

#popup-overlay .popup .content-wrap {
  position: relative;
}

#popup-overlay .popup .popup-title {
  font-family: Noto Sans, Helvetica, Arial, sans-serif;
  font-size: 25px;
  line-height: 36px;
  font-weight: 700;
  letter-spacing: normal;
  letter-spacing: 3px;
  color: #2a2d60;
  text-transform: uppercase;
}
@media (max-width: 1023px) {
  #popup-overlay .popup .popup-title {
    font-size: 21px;
    line-height: 30px;
  }
}

@media (min-width: 1024px) {
  #popup-overlay .popup p {
    font-size: 18px;
    line-height: 28px;
  }
}

#popup-overlay .popup p {
  font-family: Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 24px;
  padding-bottom: 20px;
  letter-spacing: normal;
  letter-spacing: 1.5px;
  color: #2a2d60;
}

#popup-overlay .popup .btn {
  font-family: Noto Sans, Helvetica, Arial, sans-serif;
  line-height: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  padding: 20px 30px;
  color: #fff;
  background: #2a2d60;
  border: 1px solid #2a2d60;
  border-radius: 4px;
  cursor: pointer;
  will-change: background, color, border;
  transition: all 0.25s ease;
}
#popup-overlay .popup .btn:hover {
  color: #2a2d60;
  background: #fff;
  border-color: #fff;
}
#popup-overlay .popup .btn:active,
#popup-overlay .popup .btn:focus {
  outline: none;
  border: 0px;
}

#popup-overlay .popup .special_disclaimer {
  font-size: 0.85em;
  padding-top: 20px;
  padding-bottom: 0px;
}

.popups.hidden {
  opacity: 0;
  visibility: hidden;
}

.forms-wrap .contact-form-heading {
  width: 100%;
  margin-bottom: 20px;
  -ms-grid-column-span: 4;
  grid-column-end: span 4;
}
.forms-wrap .form-title {
  font-family: Noto Sans, Helvetica, Arial, sans-serif;
  line-height: 1.2;
  font-weight: 500;
  text-rendering: optimizelegibility;
  font-size: 24px;
  line-height: 40px;
}
.forms-wrap .form-desc {
  margin: 16px 0 0;
  display: block;
  opacity: 0.7;
}
.forms-wrap .form-container {
  -ms-grid-column: 6;
  grid-column-start: 6;
  -ms-grid-column-span: 7;
  grid-column-end: span 7;
}
.forms-wrap .ss-msg {
  color: #2a2d60;
}
.forms-wrap .ss-msg h3 {
  font-family: Noto Sans, Helvetica, Arial, sans-serif;
  margin-top: 15px;
  font-size: 20px;
}
.forms-wrap .field-wrap {
  min-width: 0;
  grid-column: span 12;
  -ms-grid-column-span: 12;
}
.forms-wrap .top-label {
  margin: 0.625em 0 0.5em;
  display: -moz-inline-stack;
  line-height: 1.2;
  clear: both;
}
.forms-wrap .field-label {
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  padding: 0;
  display: none;
}
.forms-wrap .field-label + .form-field {
  margin-top: 0.375em;
}
.forms-wrap .field-wrap input[type="tel"],
.forms-wrap .field-wrap input[type="email"],
.forms-wrap .field-wrap input[type="text"],
.forms-wrap .field-wrap textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid rgba(42, 45, 96, 0.5);
}
.forms-wrap .field-wrap input::placeholder,
.forms-wrap .field-wrap textarea::placeholder {
  color: rgba(42, 45, 96, 0.5);
}
.forms-wrap .field-wrap input::-moz-placeholder,
.forms-wrap .field-wrap textarea::-moz-placeholder {
  color: rgba(42, 45, 96, 0.5);
}
.forms-wrap .field-wrap input::-ms-input-placeholder,
.forms-wrap .field-wrap textarea::-ms-input-placeholder {
  color: rgba(42, 45, 96, 0.5);
}
.forms-wrap .field-wrap input::-webkit-input-placeholder,
.forms-wrap .field-wrap textarea::-webkit-input-placeholder {
  color: rgba(42, 45, 96, 0.5);
}
.forms-wrap .field-reqd {
  color: #c02b0a;
  display: inline-block;
  font-size: 13.008px;
  padding-inline-start: 0.125em;
  font-style: italic;
  font-weight: 400;
  margin-left: 0.5em;
}
.forms-wrap .form-submit-btn {
  margin-top: 64px;
}
.forms-wrap .forms-inner-wrap {
  -ms-grid-column-span: 4;
  grid-column-end: span 4;
}
@media (max-width: 1127px) {
  .forms-wrap .contact-form-heading {
    -ms-grid-column-span: 5;
    grid-column-end: span 5;
  }
  .forms-wrap .form-container {
    -ms-grid-column: 7;
    grid-column-start: 7;
    -ms-grid-column-span: 6;
    grid-column-end: span 6;
  }
}
@media (min-width: 400px) {
  .forms-wrap .form-title {
    font-size: 24px;
    line-height: 40px;
  }
}
@media (min-width: 768px) {
  .forms-wrap .form-title {
    font-size: 38px;
    line-height: 56px;
  }
  .forms-wrap .form-desc {
    margin: 24px 0 0;
  }
  .forms-wrap .forms-inner-wrap {
    -ms-grid-column-span: 12;
    grid-column-end: span 12;
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
  }
  .forms-wrap .field-wrap + .field-wrap {
    margin-top: 32px;
  }
}

iframe[src*="https://my.hy.ly"]
{
  height: 0;
  width: 0;
  position: absolute;
  border: 0;
  margin-top: -1px;
}
.modal-overlay {
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  z-index: -1;
  -webkit-transition: opacity 0.25s ease-out, z-index 0s linear 0.25s;
  transition: opacity 0.25s ease-out, z-index 0s linear 0.25s;
  position: fixed;
  top: 0;
  left: 0;
}

.active-modal .modal-overlay,
.temp-modal .modal-overlay {
  z-index: 10;
  opacity: 0.85;
  -webkit-transition: opacity 0.25s ease-out, z-index 0s linear;
  transition: opacity 0.25s ease-out, z-index 0s linear;
}

.modal-overlay .close-button {
  position: absolute;
  right: 0;
  top: 0;
  background: transparent;
  border: none;
}

.modal-overlay .close-button:hover {
  cursor: pointer;
}

.modal-overlay .close-button .close-text {
  position: absolute;
  left: -9999px;
}

.modal-overlay .close-button span {
  font-weight: 100;
  font-size: 3em;
  color: #fff;
}

.modal {
  opacity: 0;
  position: fixed;
  z-index: -1;
  -webkit-transform: translate(-50%, -50%) scale(0.85);
  transform: translate(-50%, -50%) scale(0.85);
  top: 50%;
  left: 50%;
  -webkit-transition: opacity 0.25s ease-out, z-index 0s linear 0.25s,
    -webkit-transform 0.25s ease-out;
  transition: opacity 0.25s ease-out, z-index 0s linear 0.25s,
    -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out,
    z-index 0s linear 0.25s;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out,
    z-index 0s linear 0.25s, -webkit-transform 0.25s ease-out;
  background: #fff;
  margin: 0;
}

@media (max-width: 769px) {
  .modal {
    width: 92%;
  }
}

.active-modal .modal {
  -webkit-transition: opacity 0.25s ease-out, z-index 0s linear,
    -webkit-transform 0.25s ease-out;
  transition: opacity 0.25s ease-out, z-index 0s linear,
    -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out,
    z-index 0s linear;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out,
    z-index 0s linear, -webkit-transform 0.25s ease-out;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

.current-modal {
  z-index: 11 !important;
  opacity: 1 !important;
  visibility: visible;
}

.close-button {
  position: absolute;
  top: 0;
  right: -1px;
  outline: 0;
}

.close-button:active,
.close-button:focus,
.close-button:hover {
  outline: 0;
}

.close-button span {
  font-size: 1.5em;
  padding: 0 0.25em;
  color: #000;
}

.close-button .close-text {
  display: block;
  overflow: hidden;
  width: 0;
  height: 0;
  text-indent: -9999px;
}

.active-modal .inner-modal {
  -webkit-transform: translate(-50%, -50%) scale(0.85);
  transform: translate(-50%, -50%) scale(0.85);
  -webkit-transition: opacity 0.25s ease-out, z-index 0s linear 0.25s,
    -webkit-transform 0.25s ease-out;
  transition: opacity 0.25s ease-out, z-index 0s linear 0.25s,
    -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out,
    z-index 0s linear 0.25s;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out,
    z-index 0s linear 0.25s, -webkit-transform 0.25s ease-out;
}

.inner-modal.active-inner-modal {
  -webkit-transition: opacity 0.25s ease-out, z-index 0s linear,
    -webkit-transform 0.25s ease-out;
  transition: opacity 0.25s ease-out, z-index 0s linear,
    -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out,
    z-index 0s linear;
  transition: transform 0.25s ease-out, opacity 0.25s ease-out,
    z-index 0s linear, -webkit-transform 0.25s ease-out;
  -webkit-transform: translate(-50%, -50%) scale(1);
  transform: translate(-50%, -50%) scale(1);
}

header + .fp-wrap {
  z-index: 1;
  opacity: 1;
  transition: opacity 0.8s ease, background 0.8s ease-in 0s;
}

.active_menu header + .fp-wrap {
  opacity: 0;
  transition: opacity 1.2s ease, background 0.8s ease-in 0s;
}

.page-floorplans .fp-wrap {
  min-height: 85vh;
}

.is-exiting #main #root {
  opacity: 0;
  transition: opacity 0.75s ease-out 0s;
}
.hy-wrap iframe {
  position: static;
}

.privacy-policy br {
  display: none;
}
.privacy-policy table {
  border: 1px solid #2a2d60;
}
.privacy-policy table td {
  padding: 10px;
  border: 0;
}
.privacy-policy table td:not(:last-of-type) {
  border-right: 1px solid #2a2d60;
}
.privacy-policy table tr:not(:last-of-type) {
  border-bottom: 1px solid #2a2d60;
}
.privacy-policy .entry_content ol,
.privacy-policy .entry_content ul {
  margin-bottom: 1em;
  padding: 0;
  margin: 0;
}
.privacy-policy .entry_content ol li {
  list-style-type: decimal;
  margin-left: 20px;
}
.privacy-policy .entry_content ul li {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 35px;
}
.privacy-policy .entry_content ul li li {
  list-style-position: outside;
  list-style-type: circle;
}
.privacy-policy table p {
  margin: 0;
}
.privacy-policy p {
  margin-bottom: 1rem;
}
.privacy-policy .entry_content ol li::marker,
.privacy-policy .entry_content ol li p {
  font-weight: 700;
}
header .menu-navigation {
  margin-top: 50px;
  height: calc(100dvh - 100px);
  padding-top: 40px;
}
header .nav.main_nav {
  max-height: 100%;
}
@media (min-width: 768px) {
  .privacy-policy .editorial_tmpl .classic_editor-wrap {
    padding-right: 0;
  }
  header .menu-navigation {
    margin-top: 60px;
    padding-top: 50px;
    height: calc(100dvh - 175px);
  }
}
@media (max-width: 600px) {
  .privacy-policy table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
}
@media (min-width: 768px) and (max-height: 800px) {
  header .nav.main_nav li:last-of-type {
    padding-bottom: 50px;
  }
}
@media (max-width: 767px) {
  header .nav.main_nav li:last-of-type {
    padding-bottom: 70px;
  }
}
.google_map-content p > a + br {
  display: none;
}
.google_map-content p > a {
  display: block;
  margin-bottom: 5px;
}
@media (min-width: 768px) and (max-width: 1600px) {
  .img_gallery-image .img_gallery-caption {
    font-size: 18px;
  }
  .slick-current .img_gallery-caption {
    transform: translateY(-28px);
  }
}

.form-container p.gform_description {
  font-size: 15px;
  margin-bottom: 0px;
  line-height: 1.8;
}
.form-container p.gform_description a {
  text-decoration: underline;
}

@media (max-width: 480px) {
  header .nav.main_nav {
    grid-gap: 26px;
  }
  header .nav li a {
    line-height: 1.6;
  }
}

@media (min-width: 768px) {
.img_gallery .slick-arrow:focus {
  background:rgba(42,45,96,.375);
}

.img_gallery .slick-arrow:focus:before {
  height: 32px;
  width: 32px;
  background: #2a2d60;
  border: 2px solid #fff
}

.img_gallery .slick-arrow:focus svg {
  height: 14px;
  width: 14px;
  fill: #fff;
}

.locations-key_location:focus {
  background: #414695;
}

.locations-key_category:focus .locations-category_label, 
.locations-key_category:focus .locations-plus, 
.locations-key_category:focus>img, 
.locations-key_category:focus>svg {
  opacity: 1;
}
.amenities-tab_button:not(.active_tab):focus {
  opacity: 1;
}
}

.img_gallery .slick-dots li button:focus
{
  outline: 1px dotted #2a2d60;
}

.menu-resident_portal 
{
color:#fff !important
}

.total_cost_clarity 
{
  grid-column: 1 / span 12;
  padding: 40px 0px 10px 0px;
  text-align: center;
}
.total_cost_clarity h2 
{
font-size: 30px;
}
.total_cost_clarity p 
{
max-width: 86%;
    margin-left: auto;
    margin-right: auto;
}
.total_cost_clarity .scroll-link
{
  text-decoration: underline;
  cursor: pointer;
}

.community_cost_guide 
{

  grid-column: 1 / span 12;
  padding: 40px 0px 0px 0px;
  text-align: center;
}
.community_cost_guide h2 
{
font-size: 30px;
}
.community_cost_guide p 
{
  padding-bottom: 30px;
  max-width: 86%;
    margin-left: auto;
    margin-right: auto;
}

button.scrollLink {
  appearance: none;
  border: 0px;
  background: none;
  color: inherit;
  text-decoration: underline;
}

.cost-iframe 
{
  max-width: 1100px;
  margin: 0px auto;
}