<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Define theme colors here */
:root {
    --dark: #38656f;
    --light: #f0f7f7;
    --accent: #ff6666;
  }
  /* End Theme Colors */

  :root {
    --font-body: 'OurFontRegular', 'sans-serif';
    --font-body-bold: 'OurFontBold', 'sans-serif';
    --font-heading: 'OurFontDisplayRegular', 'serif';
  }


*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
code,
em,
img,
small,
strike,
strong,
sub,
sup,
tt,
b,
u,
i,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
main,
canvas,
embed,
footer,
header,
nav,
section,
video,
abbr,
address,
cite,
del,
dfn,
ins,
kbd,
q,
samp,
var,
dl,
dt,
dd,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
hgroup,
menu,
summary,
time,
mark,
audio {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none;
  outline: 0;
  background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input {
  -webkit-appearance: none;
  border-radius: 0;
}

input,
select {
  vertical-align: middle;
}

a {
  margin: 0;
  padding: 0;
  background: transparent;
  text-decoration: none;
  outline: 0;
}

a:hover {
  text-decoration: none;
}

a:focus {
  /* chrome focus styles */
  outline-color: rgb(77, 144, 254);
  outline-offset: 2px;
  outline-style: solid;
  outline-width: 2px;
}

button {
  background: transparent;
  outline: 0;
  border: 0;
  box-shadow: none;
  cursor: pointer;
}

button:focus {
  /* chrome focus styles */
  outline-color: rgb(77, 144, 254);
  outline-offset: 2px;
  outline-style: solid;
  outline-width: 2px;
}

  /* 
  Define button theme here
  
  Button will always use the --accent color as the 
      - background in the default state
      - text color in the hover state
  
  This variable defines the
      - text color of the button's default state
      - background of the button's hover state
  
  Possible values: --light or --dark
  */
  :root {
    --button_color: var(--dark);
  }
  /* End button theme */
  
  
  body {
    color: var(--dark);
  }
  
  .bg_white * {
    color: var(--dark);
  }
  
  .bg_dark {
    background: var(--dark);
  }
  
  .bg_dark * {
    color: #FFFFFF;
  }
  
  .bg_dark p a:hover,
  .bg_dark p a:focus {
    color: var(--accent);
    text-shadow: 0 0 1px var(--accent);
  }
  
  .bg_light {
    background: var(--light);
  }
  
  .bg_light * {
    color: var(--dark);
  }
  
  ._accent {
    color: var(--accent);
  }

  /* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
    -webkit-transition: none;
    transition: none;
  }
  
  .screen-reader-text.skip-link:focus {
    clip: auto !important;
    -webkit-clip-path: none;
    clip-path: none;
    left: 10px;
    top: 10px;
    z-index: 100000;
    display: inline-block;
    height: auto;
    width: auto;
    cursor: pointer;
  }
  
  body:not(._tabbing) button,
  body:not(._tabbing) a {
    outline: none;
  }

  html,
  body {
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smooth: grayscale;
  }
  
  html::-webkit-scrollbar {
    width: 6px;
  }
  
  html::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--accent);
  }
  
  button,
  a {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  
  p {
    margin-bottom: 30px;
  }
  
  p:last-of-type {
    margin-bottom: 0;
  }
  
  p a {
    text-decoration: underline;
  }
  
  p a:hover,
  p a:focus {
    text-decoration: underline;
    text-shadow: 0 0 1px #000000;
  }
  
  main {
    width: calc(100vw - (100vw - 100%));
  }
  
  main:focus-visible {
    outline: 0;
    /* bugfix black outline */
  }
  
  section {
    width: calc(100vw - (100vw - 100%) - 60px);
    margin: 0 30px 20px;
    position: relative;
  }
  
  section &gt; div {
    width: 88%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 6vw 4vw;
  }
  
  figure {
    font-size: 0;
  }
  
  figure img {
    width: 100%;
    height: auto;
    max-width: 100%;
  }
  
  figure.bg-img {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100%;
    display: block;
  }
  
  figure.bg-img img {
    opacity: 0;
    visibility: hidden;
    display: block;
  }
  
  ._content {
    padding: 0 4vw;
  }

  .button {
    background: var(--accent);
    color: var(--button_color);
    padding: 15px 40px;
    font-size: 14px;
    font-family: var(--font-body-bold);
    border: 1px solid var(--accent);
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  
  .button svg,
  .button img {
    margin-left: 10px;
    fill: var(--button_color);
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    filter: invert(35%) sepia(18%) saturate(849%) hue-rotate(144deg) brightness(99%) contrast(97%);
  }
  
  .button:hover,
  .button:focus {
    background: var(--button_color);
    color: var(--accent);
  }
  
  .button:hover svg,
  .button:hover img,
  .button:focus svg,
  .button:focus img {
    fill: var(--accent);
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
    filter: invert(52%) sepia(31%) saturate(2526%) hue-rotate(322deg) brightness(103%) contrast(101%);
  }
  
  ul + .button,
  p + .button {
    margin-top: 60px;
  }
  
  .neo_brochure {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 2;
    -webkit-transform: rotate(-180deg) translateY(50%);
    transform: rotate(-180deg) translateY(50%);
  }
  
  .neo_brochure &gt; a {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    -webkit-text-orientation: mixed;
    text-orientation: mixed;
    padding: 40px 15px;
  }
  
  .neo_brochure &gt; a &gt; img,
  .neo_brochure &gt; a &gt; svg {
    margin-left: 0;
    margin-bottom: 14px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
  
  .neo_brochure &gt; a:hover &gt; img,
  .neo_brochure &gt; a:hover &gt; svg,
  .neo_brochure &gt; a:focus &gt; img,
  .neo_brochure &gt; a:focus &gt; svg {
    -webkit-transform: rotate(180deg) translateY(5px);
    transform: rotate(180deg) translateY(5px);
  }
  h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
    display: block;
  }
  
  h1,
  .h1 {
    font-family: var(--font-heading);
    font-size: 80px;
    line-height: 1.05;
  }
  
  @media screen and (max-width: 1480px) {
  
    h1,
    .h1 {
      font-size: calc(80px + -35 * (100vw - 1480px) / -1160);
    }
  }
  
  @media screen and (max-width: 320px) {
  
    h1,
    .h1 {
      font-size: 45px;
    }
  }
  
  h2,
  .h2 {
    font-family: var(--font-heading);
    font-size: 50px;
    line-height: 1.1;
    margin-bottom: 50px;
  }
  
  @media screen and (max-width: 1480px) {
  
    h2,
    .h2 {
      font-size: calc(50px + -15 * (100vw - 1480px) / -1160);
    }
  }
  
  @media screen and (max-width: 320px) {
  
    h2,
    .h2 {
      font-size: 35px;
    }
  }
  
  h3,
  .h3 {
    font-family: var(--font-heading);
    font-size: 22px;
  }
  
  @media screen and (max-width: 1480px) {
  
    h3,
    .h3 {
      font-size: calc(22px + -2 * (100vw - 1480px) / -1160);
    }
  }
  
  @media screen and (max-width: 320px) {
  
    h3,
    .h3 {
      font-size: 20px;
    }
  }
  
  h4,
  .h4 {
    font-family: var(--font-heading);
    font-size: 20px;
  }
  
  @media screen and (max-width: 1480px) {
  
    h4,
    .h4 {
      font-size: calc(20px + -2 * (100vw - 1480px) / -1160);
    }
  }
  
  @media screen and (max-width: 320px) {
  
    h4,
    .h4 {
      font-size: 18px;
    }
  }
  
  h5,
  .h5 {
    font-family: var(--font-heading);
    font-size: 18px;
  }
  
  h6,
  .h6 {
    font-family: var(--font-body);
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  @media screen and (max-width: 1480px) {
  
    h6,
    .h6 {
      font-size: calc(20px + -2 * (100vw - 1480px) / -1160);
    }
  }
  
  @media screen and (max-width: 320px) {
  
    h6,
    .h6 {
      font-size: 18px;
    }
  }

  .neo_scurve {
    overflow: hidden;
  }
  
  .neo_scurve &gt; div {
    padding-top: 0;
    padding-bottom: 0;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  
  .neo_scurve &gt; div &gt; div {
    width: 50%;
  }
  
  .neo_scurve ._media {
    width: calc(50% + (100vw - 100% - 60px) / 2);
    margin-left: calc(-1 * (100vw - 100% - 60px) / 2);
  }
  
  .neo_scurve ._content {
    padding-top: 6vw;
    padding-bottom: 6vw;
    padding-left: 0;
    padding-right: 4vw;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
  }
  
  .neo_scurve ._content + ._media {
    margin-left: 0;
    margin-right: calc(-1 * (100vw - 100% - 60px) / 2);
  }
  
  .neo_scurve ._media + ._content {
    padding-left: 4vw;
    padding-right: 0;
  }
  #header {
    position: -webkit-sticky;
    position: sticky;
    z-index: 3;
    top: 0;
    left: 0;
    background: #FFFFFF;
    width: 100%;
    padding: 0 30px;
  }
  
  #header &gt; div {
    height: 76px;
    width: 88%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 4vw;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
  }
  
  #header &gt; div .neo_logo {
    font-size: 0;
    height: 100%;
    padding: 0.1in;
  }
  
  #header &gt; div .neo_logo &gt; img,
  #header &gt; div .neo_logo &gt; svg {
    width: auto;
    height: 100%;
    max-width: 168px;
  }
  
  #header &gt; div .neo_menu {
    height: 100%;
    /* Firefox scrollbar */
    scrollbar-color: var(--accent) #FFFFFF;
    scrollbar-width: auto;
    /* Chrome scrollbar */
  }
  
  #header &gt; div .neo_menu::-webkit-scrollbar {
    width: 5px;
  }
  
  #header &gt; div .neo_menu::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--accent);
  }
  
  #header &gt; div .neo_menu nav {
    height: 100%;
  }
  
  #header &gt; div .neo_menu nav ul {
    height: 100%;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    gap: 16px;
  }
  
  #header &gt; div .neo_menu nav ul &gt; li {
    height: 100%;
  }
  
  #header &gt; div .neo_menu nav ul &gt; li a {
    display: block;
    height: 100%;
    color: var(--dark);
    font-size: 14px;
    font-family: var(--font-body-bold);
    line-height: 1;
    padding: 25px 7px 25px;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }
  
  #header &gt; div .neo_menu nav ul &gt; li a:hover,
  #header &gt; div .neo_menu nav ul &gt; li a:focus {
    border-bottom: 5px solid var(--accent);
  }
  
  #header &gt; div .neo_login a {
    font-size: 12px;
    font-family: var(--font-body-bold);
    letter-spacing: 1.2px;
    color: var(--dark);
    text-transform: uppercase;
  }
  
  #header &gt; div .neo_login a &gt; span {
    border-bottom: 1px solid transparent;
    -webkit-transition: border 0.35s ease-in-out;
    transition: border 0.35s ease-in-out;
  }
  
  #header &gt; div .neo_login a &gt; img,
  #header &gt; div .neo_login a &gt; svg {
    margin-left: 11px;
    fill: var(--dark);
    -webkit-transition: -webkit-transform 0.35s ease-in-out;
    transition: -webkit-transform 0.35s ease-in-out;
    transition: transform 0.35s ease-in-out;
    transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
  }
  
  #header &gt; div .neo_login a:hover,
  #header &gt; div .neo_login a:focus {
    color: var(--accent);
  }
  
  #header &gt; div .neo_login a:hover &gt; span,
  #header &gt; div .neo_login a:focus &gt; span {
    border-bottom: 1px solid var(--accent);
  }
  
  #header &gt; div .neo_login a:hover &gt; img,
  #header &gt; div .neo_login a:hover &gt; svg,
  #header &gt; div .neo_login a:focus &gt; img,
  #header &gt; div .neo_login a:focus &gt; svg {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  
  .neo_hamburger {
    display: none;
    position: relative;
    width: 50px;
    height: 76px;
    cursor: pointer;
  }
  
  .neo_hamburger::before,
  .neo_hamburger::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 100%;
    top: 50%;
    left: 0;
    background: #000000;
    -webkit-transition: -webkit-transform 0.35s ease-in-out;
    transition: -webkit-transform 0.35s ease-in-out;
    transition: transform 0.35s ease-in-out;
    transition: transform 0.35s ease-in-out, -webkit-transform 0.35s ease-in-out;
  }
  
  .neo_hamburger::before {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
  }
  
  .neo_hamburger::after {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
  }

  .neo_hero {
    height: calc(100vh - 90px - 20px);
    min-height: 450px;
    background: #000000;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: end;
    justify-content: flex-end;
  }
  
  .neo_hero &gt; figure {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .neo_hero &gt; figure img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  
  .neo_hero &gt; figure:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: transparent -webkit-linear-gradient(bottom, #000000 0%, rgba(84, 84, 84, 0) 100%) 0% 0% no-repeat padding-box;
    background: transparent linear-gradient(0deg, #000000 0%, rgba(84, 84, 84, 0) 100%) 0% 0% no-repeat padding-box;
    mix-blend-mode: multiply;
    opacity: 0.72;
  }
  
  .neo_hero &gt; div {
    position: relative;
    z-index: 1;
    color: #FFFFFF;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .neo_building &gt; div {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  
  .neo_building &gt; div &gt; div {
    width: 50%;
  }
  
  .neo_building &gt; div &gt; div._content {
    padding-right: 0;
  }
  
  .neo_building &gt; div &gt; div p {
    margin-bottom: 35px;
  }
  
  .neo_building &gt; div &gt; div ul {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
  }
  
  .neo_building &gt; div &gt; div ul li {
    margin-right: 4vw;
    margin-bottom: 5px;
  }
  
  .neo_building &gt; div &gt; div ul li:last-of-type {
    margin-bottom: 0;
  }
  
  .neo_building &gt; div &gt; div ul li &gt; span {
    display: block;
  }
  
  .neo_building &gt; div &gt; div ul li &gt; span:first-of-type {
    margin-bottom: 5px;
  }
  
  .neo_building &gt; div &gt; div ul li &gt; span:last-of-type {
    margin-bottom: 0;
  }

  .neo_amenities &gt; div &gt; div ul li {
    font-size: 20px;
    margin-bottom: 20px;
  }
  
  .neo_amenities &gt; div &gt; div ul li:last-of-type {
    margin-bottom: 0;
  }

  .neo_gallery &gt; div {
  width: 100%;
  max-width: unset;
  padding-left: 0;
  padding-right: 0;
}

.neo_gallery &gt; div &gt; div._heading {
  width: 88%;
  max-width: 1480px;
  margin: 0 auto 50px;
  padding-left: 4vw;
  padding-right: 4vw;
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
}

.neo_gallery &gt; div &gt; div._heading &gt; h2 {
  margin-right: 20px;
  margin-bottom: 0px;
}

.neo_gallery &gt; div &gt; div.neo_slider {
  width: calc(100% + 60px);
  margin-left: -30px;
}

.neo_gallery &gt; div &gt; div.neo_slider .slick-list {
  padding-left: calc(30px + 4vw + (100% - 60px) * 0.12 / 2);
}

.neo_gallery &gt; div &gt; div.neo_slider .slick-slide {
  margin: 0 10px;
  position: relative;
}

.neo_gallery &gt; div &gt; div.neo_slider .slick-slide button {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.neo_gallery &gt; div &gt; div.neo_slider .slick-slide button:focus {
  outline-offset: -2px;
}

.neo_gallery &gt; div &gt; div.neo_slider figure img {
  max-height: 75vh;
  height: 50vw;
  width: auto;
}

.neo_gallery &gt; div &gt; div.neo_slider .slick-arrow {
  width: 45px;
  height: 45px;
  background: var(--accent);
  border-radius: 100%;
  display: block;
  padding: 0;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.neo_gallery &gt; div &gt; div.neo_slider .slick-arrow &gt; svg {
  fill: var(--button_color);
  -webkit-transition: all 0.35s ease-in-out;
  transition: all 0.35s ease-in-out;
}

.neo_gallery &gt; div &gt; div.neo_slider .slick-arrow.slick-prev {
  left: 60px;
}

.neo_gallery &gt; div &gt; div.neo_slider .slick-arrow.slick-next {
  right: 60px;
}

.neo_gallery &gt; div &gt; div.neo_slider .slick-arrow:hover,
.neo_gallery &gt; div &gt; div.neo_slider .slick-arrow:focus {
  background: var(--button_color);
}

.neo_gallery &gt; div &gt; div.neo_slider .slick-arrow:hover &gt; svg,
.neo_gallery &gt; div &gt; div.neo_slider .slick-arrow:focus &gt; svg {
  fill: var(--accent);
}

  .neo_tour &gt; div &gt; div._heading {
    text-align: center;
  }
  
  .neo_tour &gt; div &gt; div._media figure {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
  }
  
  .neo_tour &gt; div &gt; div._media figure iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }

  .neo_availability &gt; div &gt; div._heading {
    text-align: center;
  }
  
  .neo_availability [role=table] {
    overflow-y: auto;
    max-height: 70vh;
    padding-right: 10px;
    /* Firefox scrollbar */
    scrollbar-color: var(--accent) #FFFFFF;
    scrollbar-width: auto;
  }
  
  /* Chrome scrollbar */
  .neo_availability [role=table]::-webkit-scrollbar {
    width: 5px;
  }
  
  .neo_availability [role=table]::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: var(--accent);
  }
  
  .neo_availability [role=table] [role=rowgroup] [role=row] {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    border: 1px solid #E3E3E3;
    margin-bottom: 5px;
    padding: 15px 45px;
  }
  
  .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell] {
    width: calc((100% - 150px - 185px) / 4);
    padding: 0 5px;
  }
  
  .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell]._floorplan {
    width: 150px;
  }
  
  .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell]._floorplan &gt; figure {
    max-width: 70px;
    height: auto;
  }
  
  .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell]._floorplan &gt; figure &gt; img {
    max-height: 52px;
    object-fit: cover;
  }
  
  .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell]._detail {
    width: 185px;
    padding: 0;
  }
  
  .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell]._detail &gt; .button {
    margin-left: auto;
    width: 100%;
    text-align: center;
  }
  
  .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell] p {
    margin-bottom: 0;
  }
  
  .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell] p strong {
    font-family: var(--font-body-bold);
  }
  
  .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell] label {
    font-size: 12px;
  }

  .neo_location &gt; div &gt; div iframe {
    width: 100%;
    min-height: 75vh;
  }

  .neo_leasing {
    text-align: center;
  }
  
  .neo_leasing &gt; div &gt; div._heading img {
    width: auto;
    height: 26px;
    max-width: 100%;
    margin-bottom: 50px;
  }
  
  .neo_leasing &gt; div &gt; div._contacts &gt; ul {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    justify-content: center;
  }
  
  .neo_leasing &gt; div &gt; div._contacts &gt; ul &gt; li {
    width: 25%;
    padding: 15px;
  }
  
  .neo_leasing &gt; div &gt; div._contacts &gt; ul &gt; li &gt; p {
    margin-bottom: 20px;
  }
  
  .neo_leasing &gt; div &gt; div._contacts &gt; ul &gt; li &gt; ul {
    line-height: 1.5;
  }
  
  .neo_leasing &gt; div &gt; div._contacts &gt; ul &gt; li &gt; ul &gt; li {
    display: block;
    margin-bottom: 3px;
  }
  
  .neo_leasing &gt; div &gt; div._contacts &gt; ul &gt; li a {
    font-size: 15px;
    color: var(--accent);
    font-family: var(--font-body-bold);
    border-bottom: 1px solid transparent;
    /* max-width: 240px; */
    word-wrap: break-word;
    display: inline-block;
  }
  
  .neo_leasing &gt; div &gt; div._contacts &gt; ul &gt; li a:hover,
  .neo_leasing &gt; div &gt; div._contacts &gt; ul &gt; li a:focus {
    border-bottom: 1px solid var(--accent);
  }
  
  .neo_leasing &gt; div &gt; div._contacts &gt; ul &gt; li &gt; span {
    display: block;
    font-size: 15px;
  }

  #footer {
    width: calc(100vw - (100vw - 100%) - 60px);
    margin: 0 30px;
    position: relative;
    padding: 2vw 0;
  }
  
  #footer &gt; div {
    width: 88%;
    max-width: 1480px;
    margin: 0 auto;
    padding: 0 4vw;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
  }
  
  #footer &gt; div.neo_footer {
    margin-top: 15px;
    margin-bottom: 30px;
  }
  
  #footer &gt; div.neo_footer &gt; div {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
  }
  
  #footer &gt; div.neo_footer &gt; div:first-child {
    margin-right: 15px;
    margin-bottom: 15px;
  }
  
  #footer &gt; div.neo_footer &gt; div .neo_socials &gt; li {
    margin-left: 30px;
  }
  
  #footer &gt; div.neo_footer &gt; div .neo_socials &gt; li &gt; a {
    display: block;
  }
  
  #footer &gt; div.neo_footer &gt; div .neo_socials &gt; li &gt; a &gt; svg g,
  #footer &gt; div.neo_footer &gt; div .neo_socials &gt; li &gt; a &gt; svg path {
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  
  #footer &gt; div.neo_footer &gt; div .neo_socials &gt; li &gt; a:hover &gt; svg g,
  #footer &gt; div.neo_footer &gt; div .neo_socials &gt; li &gt; a:focus &gt; svg g {
    stroke: var(--accent);
  }
  
  #footer &gt; div.neo_footer &gt; div .neo_socials &gt; li &gt; a:hover &gt; svg path,
  #footer &gt; div.neo_footer &gt; div .neo_socials &gt; li &gt; a:focus &gt; svg path {
    fill: var(--accent);
  }
  
  #footer &gt; div.neo_disclaimer {
    font-size: 12px;
    margin-bottom: 20px;
  }
  
  #footer &gt; div.neo_copyright {
    font-size: 12px;
  }
  
  #footer &gt; div.neo_copyright &gt; div {
    margin-bottom: 20px;
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
  }
  
  #footer &gt; div.neo_copyright &gt; div &gt; ul {
    display: -webkit-box;
    display: flex;
    flex-wrap: wrap;
    -webkit-box-align: center;
    align-items: center;
  }
  
  #footer &gt; div.neo_copyright &gt; div:first-child {
    margin-right: 20px;
  }
  
  #footer &gt; div.neo_copyright &gt; div:first-child a {
    margin-left: 16px;
    color: var(--dark);
    text-decoration: underline;
  }
  
  #footer &gt; div.neo_copyright &gt; div:first-child a:hover,
  #footer &gt; div.neo_copyright &gt; div:first-child a:focus {
    color: var(--accent);
  }
  
  #footer &gt; div.neo_copyright svg,
  #footer &gt; div.neo_copyright img {
    width: 100px;
    height: auto;
  }
/* Magnific Popup CSS */

.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: var(--dark);
    opacity: 1;
  }
  
  .mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
  }
  
  .mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    box-sizing: border-box;
  }
  
  .mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
  }
  
  .mfp-align-top .mfp-container:before {
    display: none;
  }
  
  .mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
  }
  
  .mfp-inline-holder .mfp-content,
  .mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
  }
  
  .mfp-ajax-cur {
    cursor: progress;
  }
  
  .mfp-zoom-out-cur,
  .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: zoom-out;
  }
  
  .mfp-zoom {
    cursor: pointer;
    cursor: zoom-in;
  }
  
  .mfp-auto-cursor .mfp-content {
    cursor: auto;
  }
  
  .mfp-close,
  .mfp-arrow,
  .mfp-preloader,
  .mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  .mfp-loading.mfp-figure {
    display: none;
  }
  
  .mfp-hide {
    display: none !important;
  }
  
  .mfp-preloader {
    color: #ffffff;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
  }
  
  .mfp-preloader a {
    color: #ffffff;
  }
  
  .mfp-preloader a:hover {
    color: #ffffff;
  }
  
  .mfp-s-ready .mfp-preloader {
    display: none;
  }
  
  .mfp-s-error .mfp-content {
    display: none;
  }
  
  button.mfp-close,
  button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    box-shadow: none;
    touch-action: manipulation;
  }
  
  button::-moz-focus-inner {
    padding: 0;
    border: 0;
  }
  
  button.mfp-close {
    width: 37.477px;
    height: 37.477px;
    line-height: 37.477px;
    position: absolute;
    right: 50px;
    top: 50px;
    text-decoration: none;
    text-align: center;
    opacity: 1;
    padding: 0;
    color: #ffffff;
  }
  
  button.mfp-close &gt; svg {
    stroke: #ffffff;
    pointer-events: none;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  
  button.mfp-close:hover,
  button.mfp-close:focus {
    opacity: 1;
  }
  
  button.mfp-close:hover &gt; svg,
  button.mfp-close:focus &gt; svg {
    stroke: var(--accent);
  }
  
  .mfp-close-btn-in .mfp-close {
    color: #ffffff;
  }
  
  .mfp-image-holder .mfp-close,
  .mfp-iframe-holder .mfp-close {
    color: #ffffff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
  }
  
  .mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #ffffff;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
    display: none !important;
  }
  
  button.mfp-arrow {
    position: absolute;
    opacity: 1;
    margin: 0;
    padding: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    width: 45px;
    height: 45px;
    background: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 100%;
    display: block;
  }
  
  button.mfp-arrow &gt; svg {
    fill: var(--button_color);
    pointer-events: none;
    -webkit-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
  }
  
  button.mfp-arrow:hover,
  button.mfp-arrow:focus {
    opacity: 1;
    background: var(--button_color);
  }
  
  button.mfp-arrow:hover &gt; svg,
  button.mfp-arrow:focus &gt; svg {
    fill: var(--accent);
  }
  
  button.mfp-arrow-left {
    left: 30px;
  }
  
  button.mfp-arrow-right {
    right: 30px;
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
  
  .mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
  }
  
  .mfp-iframe-holder .mfp-close {
    top: -40px;
  }
  
  .mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
  }
  
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0;
    background: var(--dark);
  }
  
  /* Main image in popup */
  img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
  }
  
  /* The shadow behind the image */
  .mfp-figure {
    line-height: 0;
  }
  
  .mfp-figure:after {
    content: "";
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0;
    background: var(--dark);
  }
  
  .mfp-figure small {
    color: #ffffff;
    display: block;
    font-size: 12px;
    line-height: 14px;
  }
  
  .mfp-figure figure {
    margin: 0;
  }
  
  .mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
  }
  
  .mfp-title {
    text-align: left;
    line-height: 18px;
    color: #ffffff;
    word-wrap: break-word;
    padding-right: 36px;
  }
  
  .mfp-image-holder .mfp-content {
    max-width: 100%;
  }
  
  .mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
  }
  
  @media screen and (max-width: 800px) and (orientation: landscape),
  screen and (max-height: 300px) {
  
    /**
     * Remove all paddings around the image on small screen
     */
    .mfp-img-mobile .mfp-image-holder {
      padding-left: 0;
      padding-right: 0;
    }
  
    .mfp-img-mobile img.mfp-img {
      padding: 0;
    }
  
    .mfp-img-mobile .mfp-figure:after {
      top: 0;
      bottom: 0;
    }
  
    .mfp-img-mobile .mfp-figure small {
      display: inline;
      margin-left: 5px;
    }
  
    .mfp-img-mobile .mfp-bottom-bar {
      background: rgba(0, 0, 0, 0.6);
      bottom: 0;
      margin: 0;
      top: auto;
      padding: 3px 5px;
      position: fixed;
      box-sizing: border-box;
    }
  
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0;
    }
  
    .mfp-img-mobile .mfp-counter {
      right: 5px;
      top: 3px;
    }
  
    .mfp-img-mobile .mfp-close {
      top: 0;
      right: 0;
      width: 35px;
      height: 35px;
      line-height: 35px;
      background: rgba(0, 0, 0, 0.6);
      position: fixed;
      text-align: center;
      padding: 0;
    }
  }
  
  @media all and (max-width: 900px) {
    .mfp-arrow-left {
      -webkit-transform-origin: 0;
      transform-origin: 0;
    }
  
    .mfp-container {
      padding-left: 6px;
      padding-right: 6px;
    }
  }
  
  /* overlay at start */
  .mfp-fade.mfp-bg {
    opacity: 0;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
  }
  
  /* overlay animate in */
  .mfp-fade.mfp-bg.mfp-ready {
    opacity: 1;
  }
  
  /* overlay animate out */
  .mfp-fade.mfp-bg.mfp-removing {
    opacity: 0;
  }
  
  /* content at start */
  .mfp-fade.mfp-wrap .mfp-content {
    opacity: 0;
    -webkit-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
  }
  
  /* content animate it */
  .mfp-fade.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
  }
  
  /* content animate out */
  .mfp-fade.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
  }

  @media screen and (min-width: 1742px) {

    /* $containMax is 1480px; */
    /* this is the media query at which the containers max out at 1480px wide */
    .neo_gallery &gt; div &gt; div.neo_slider .slick-list {
      padding-left: calc(30px + 4vw + (100% - 60px - 1480px) / 2);
    }
  }
  
  @media screen and (max-width: 1380px) {
    .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell] {
      width: calc((100% - 100px - 185px) / 4);
    }
  
    .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell]._floorplan {
      width: 100px;
    }
  
    .neo_leasing &gt; div &gt; div._contacts &gt; ul &gt; li {
      width: 50%;
    }
  }
  
  @media screen and (max-width: 1180px) {
    .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell] {
      width: 33% !important;
      margin: 5px 0px;
    }
  
    .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell]._detail &gt; .button {
      margin-left: 0px;
    }
  }
  
  @media screen and (max-width: 1080px) {
  
    #header &gt; div,
    section &gt; div,
    .neo_gallery &gt; div &gt; div._heading,
    #footer &gt; div {
      width: 100%;
    }
  
    .neo_gallery &gt; div &gt; div.neo_slider .slick-list {
      padding-left: calc(30px + 4vw + (100% - 60px) * 0 / 2);
    }
  }

  @media screen and (max-width: 960px) {
    .neo_hamburger {
      display: block;
    }
  
    #header:before {
      content: "";
      background: transparent;
      position: fixed;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
      -webkit-transform: scaleY(0);
      transform: scaleY(0);
      -webkit-transform-origin: top;
      transform-origin: top;
      -webkit-transition: all 0.35s ease-in-out;
      transition: all 0.35s ease-in-out;
    }
  
    #header div .neo_menu {
      opacity: 0;
      visibility: hidden;
      width: 100%;
      height: auto;
      max-height: 65vh;
      overflow: auto;
    }
  
    #header div .neo_menu &gt; nav {
      padding: 2.5vh 0;
    }
  
    #header div .neo_menu &gt; nav &gt; ul {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
      -webkit-box-align: start;
      align-items: flex-start;
    }
  
    #header div .neo_menu &gt; nav &gt; ul &gt; li &gt; a {
      padding: 2.5vh 0px;
      font-size: 18px;
    }
  
    #header div .neo_login {
      opacity: 0;
      visibility: hidden;
      width: 100%;
      margin-top: 5vh;
    }
  
    #header div .neo_login &gt; a {
      font-size: 16px;
    }
  
    #header._active:before {
      background: #FFFFFF;
      -webkit-transform: scaleY(100%);
      transform: scaleY(100%);
    }
  
    #header._active .neo_menu,
    #header._active .neo_login {
      opacity: 1;
      visibility: visible;
      -webkit-transition: all 0.35s ease-in-out;
      transition: all 0.35s ease-in-out;
    }
  
    #header._active .neo_hamburger::before {
      -webkit-transform: translateY(0px) rotate(45deg);
      transform: translateY(0px) rotate(45deg);
    }
  
    #header._active .neo_hamburger::after {
      -webkit-transform: translateY(0px) rotate(-45deg);
      transform: translateY(0px) rotate(-45deg);
    }
  
    h2,
    .h2 {
      margin-bottom: 30px;
    }
  
    .neo_leasing &gt; div &gt; div._heading img {
      margin-bottom: 30px;
    }
  
    ul + .button,
    p + .button {
      margin-top: 40px;
    }
  }
  
  @media screen and (max-width: 840px) {
    section &gt; div {
      padding-top: 45px;
      padding-bottom: 45px;
    }
  
    .neo_building &gt; div &gt; div {
      width: 100%;
    }
  
    .neo_scurve &gt; div {
      padding: 0;
    }
  
    .neo_scurve ._media {
      width: 100%;
      margin-left: 0;
      margin-right: 0;
      margin-top: 0;
    }
  
    .neo_scurve ._content {
      width: 100%;
      padding: 45px 4vw !important;
    }
  
    .neo_scurve ._content + ._media {
      margin-top: 0;
      margin-bottom: 0;
      margin-right: 0;
    }
  
    ._content {
      padding: 0 0;
    }
  
    .neo_gallery &gt; div &gt; div._heading &gt; h2 {
      width: 100%;
      margin-bottom: 30px;
    }
  
    .neo_availability [role=table] [role=rowgroup] [role=row] {
      padding: 15px;
    }
  }
  
  @media screen and (max-width: 720px) {
    main {
      overflow-x: hidden;
    }
  
    h2 br,
    .h2 br {
      display: none;
    }
  
    #header {
      padding: 0 10px;
    }
  
    #header &gt; div {
      width: 100%;
      padding: 0 30px;
    }
  
    section {
      margin-bottom: 15px;
    }
  
    section,
    #footer {
      width: calc(100vw - (100vw - 100%) - 20px);
      margin-left: 10px;
      margin-right: 10px;
    }
  
    section &gt; div,
    .neo_gallery &gt; div &gt; div._heading,
    #footer &gt; div {
      padding-left: 30px;
      padding-right: 30px;
    }
  
    .neo_leasing &gt; div &gt; div._contacts &gt; ul &gt; li {
      width: 100%;
      padding: 15px 0;
      margin-bottom: 15px;
    }
  
    .neo_leasing &gt; div &gt; div._contacts &gt; ul &gt; li:last-of-type {
      margin-bottom: 0;
    }
  
    .neo_scurve ._content {
      padding-left: 30px !important;
      padding-right: 30px !important;
    }
  
    .neo_availability [role=table] {
      max-height: 60vh;
    }
  
    .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell] {
      width: 50% !important;
    }
  
    .neo_brochure {
      bottom: 0;
      top: unset;
      -webkit-transform: rotate(270deg) translate(100%, calc(-100vw + 100%));
      transform: rotate(270deg) translate(100%, calc(-100vw + 100%));
      -webkit-transform-origin: bottom right;
      transform-origin: bottom right;
    }
  
    .neo_brochure &gt; button,
    .neo_brochure .button {
      height: 100vw;
      text-align: center;
    }
  
    .neo_brochure &gt; button &gt; svg,
    .neo_brochure &gt; button &gt; img,
    .neo_brochure .button &gt; svg,
    .neo_brochure .button &gt; img {
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
      -webkit-transform-origin: center center;
      transform-origin: center center;
    }
  
    .neo_brochure &gt; button:hover &gt; img,
    .neo_brochure &gt; button:hover &gt; svg,
    .neo_brochure &gt; button:focus &gt; img,
    .neo_brochure &gt; button:focus &gt; svg,
    .neo_brochure .button:hover &gt; img,
    .neo_brochure .button:hover &gt; svg,
    .neo_brochure .button:focus &gt; img,
    .neo_brochure .button:focus &gt; svg {
      -webkit-transform: rotate(90deg) translateY(2px);
      transform: rotate(90deg) translateY(2px);
    }
  
    body {
      margin-bottom: 46px;
    }
  
    .neo_gallery &gt; div &gt; div.neo_slider {
      width: calc(100% + 20px);
      margin-left: -10px;
    }
  
    .neo_gallery &gt; div &gt; div.neo_slider .slick-list {
      padding-left: calc(40px + (100% - 20px) * 0 / 2);
    }
  
    .neo_gallery &gt; div &gt; div.neo_slider .slick-arrow.slick-prev {
      left: 25px;
    }
  
    .neo_gallery &gt; div &gt; div.neo_slider .slick-arrow.slick-next {
      right: 25px;
    }
  
    .neo_gallery &gt; div &gt; div.neo_slider figure img {
      height: 60vw;
    }
  }

  @media screen and (max-height: 500px) {
    #header div .neo_menu {
      max-height: 48vh;
    }
  }
  
  @media screen and (max-width: 540px) {
    #footer &gt; div.neo_copyright &gt; div {
      width: 100%;
      display: block;
      margin-right: 0;
    }
  
    #footer &gt; div.neo_copyright &gt; div:first-child a {
      display: block;
      margin-top: 10px;
      margin-left: 0;
      margin-right: 16px;
    }
  }
  
  @media screen and (max-width: 480px) {
    #header &gt; div {
      padding: 0 20px;
    }
  
    section &gt; div,
    .neo_gallery &gt; div &gt; div._heading,
    #footer &gt; div {
      padding-left: 20px;
      padding-right: 20px;
    }
  
    .neo_scurve ._content {
      padding-left: 20px !important;
      padding-right: 20px !important;
    }
  
    .neo_leasing &gt; div &gt; div._contacts &gt; ul &gt; li &gt; p {
      margin-bottom: 10px;
    }
  
    .neo_leasing &gt; div &gt; div._contacts &gt; ul &gt; li a {
      display: block;
      font-size: 17px;
      pad: 5px;
    }
  
    .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell]._detail &gt; .button,
    .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell]._detail &gt; button {
      padding: 13px 18px;
    }
  
    .neo_gallery &gt; div &gt; div.neo_slider .slick-arrow {
      width: 40px;
      height: 40px;
    }
  
    .neo_gallery &gt; div &gt; div.neo_slider .slick-arrow &gt; svg {
      width: 40px;
      height: 40px;
    }
  
    .neo_gallery &gt; div &gt; div.neo_slider .slick-arrow.slick-prev {
      left: 15px;
    }
  
    .neo_gallery &gt; div &gt; div.neo_slider .slick-arrow.slick-next {
      right: 15px;
    }
  
    button.mfp-arrow {
      width: 40px;
      height: 40px;
    }
  
    button.mfp-arrow &gt; svg {
      width: 40px;
      height: 40px;
    }
  
    button.mfp-arrow.mfp-arrow-left {
      left: 15px;
    }
  
    button.mfp-arrow.mfp-arrow-right {
      right: 15px;
    }
  
    button.mfp-close {
      right: 30px;
      top: 30px;
      width: 25px;
      height: 25px;
    }
  
    button.mfp-close &gt; svg {
      width: 25px;
      height: 25px;
    }
  }
  
  @media screen and (max-width: 400px) {
  
    .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell]._detail &gt; .button,
    .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell]._detail &gt; button {
      padding: 10px 12px;
    }
  }
  
  @media screen and (max-width: 380px) {
    #footer &gt; div.neo_footer &gt; div:first-child {
      -webkit-transform: scale(0.8);
      transform: scale(0.8);
      -webkit-transform-origin: left center;
      transform-origin: left center;
    }
  }
  
  @media screen and (max-width: 360px) {
    .neo_availability [role=table] [role=rowgroup] [role=row] [role=cell] {
      width: 100% !important;
    }
  }</pre></body></html>