.hidden-cta {
  display: none !important;
}
.hidden-cta:first-of-type {
  display: block !important;
}

.no-siteplan {
  display:none !important;
}

.has-siteplan {
  display:flex !important;
}






#console {display: none;}
#dialog {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  bottom:0;
  right:0;
  width: 100%;
  width: 100vw;
  height: 100vh;
  background: rgb(58 47 121 / 93%);
  transition: visibility 0s linear 0.5s,opacity 0.5s linear;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}
.dialog_state {
  visibility: hidden;
  opacity: 0;
  display: none;
}
.dialog_state:checked + #dialog,
#dialog.dialog_open {
  transition-delay:0s;
  opacity: 1;
  visibility: visible;
}
#dlg-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  width: 100vw;
  height: 100vh;
  cursor: pointer;
}
.dialog_state:checked + #dialog #dlg-wrap {
  max-height: 24rem;
  opacity: 1;
  padding: 2rem;
}
#dlg-wrap {
  position: relative;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  padding: 2rem;
  border-radius: 0.25rem;
  /*border: 1px solid #969696;*/
  background: #fff;
  box-shadow: 1px 1px 6px rgba(0,0,0,0.3);
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: all .5s;
}
#dlg-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  cursor: pointer;
}
h2#dlg-header {
  font: 200 2em/1em Raleway, Open Sans, Arial, Sans-Serif;
  text-transform: initial;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
}
#dlg-content {
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.015em;
  text-align:center;
}
#dlg-prompt .button {
  margin: 1rem 0.5rem;
  border-radius: 1.5rem;
}



.main_area {
  transition: all 0.5s ease-out;
}
.dialog_state:checked ~ .main_area,
.main_area.dialog_open {
  filter: blur(6px);
}

.button, a.button {
  display: inline-block;
  padding: 0.25em 1em;
  box-sizing: border-box;

  background: #ffffff;
  color: #606060;
  text-decoration: none;
  letter-spacing: 0.075em;
  line-height: 2rem;
  font-family: Raleway, Open Sans, Arial;
  font-weight: 300;
  font-size: 0.85em;
  border-radius: 4px;
  border: 1px solid #e0e0e0;

  transition: .1s all;
  cursor: pointer;
}
.button:hover, a.button:hover {
  color: #a0a0a0;
  background: #f8f8f8;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
  /*transform: scale(1.01);*/
}
.button.positive, a.button.positive {
  border-color: #6199B7;
  color: #6199B7;
}
.button.positive:hover, a.button.positive:hover {
  border-color: #468FB6;
  color: #fff;
  background-color: #468FB6;
}

.icon {
  vertical-align: middle;
  line-height: inherit;
  font-size: 1.75em;
}


#main {
  height: 48px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  /* background: url("https://farm6.staticflickr.com/5688/21515632899_94e4ddb78a_o.jpg") no-repeat center center; */
  background-size: cover;
  position: relative;
}
#main .center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
h1 {
  font: 900 6.4em/1em Raleway, Open Sans, Arial, Sans-Serif;

  letter-spacing: -0.05em;
  margin: 2rem 0 0.5rem;
}
h2 {
  font: 800 2em/1em Raleway, Open Sans, Arial, Sans-Serif;

  letter-spacing: 0.0em;
  margin: 2rem 0 0.5rem;
}


/* Console */
#console {position: absolute;bottom: 0;left: 0;width: 100%;height: 100px;box-sizing: border-box;background: #f0f0f0;color: #606060;font: 400 13px/16px Open Sans;letter-spacing: 0em;text-align: left;padding: 2px;overflow-y: scroll;0 } #console p {margin: 0; padding: 0;} #console p em {font-style: none;font-weight: 700;}


/* div#dlg-prompt a {
background: none;
background-color: none;
border: none;
font-size: 26px;
} */


h2#dlg-header {
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  font-size: 18px;
  font-weight: 500;
  color: #392e79;
}

.dl-help-text {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
  font-style: italic;
  opacity: .5;
}


.loader {
  width: 60px;
}

.loader-wheel {
  animation: spin 1s infinite linear;
  border: 2px solid rgba(30, 30, 30, 0.5);
  border-left: 4px solid #fff;
  border-radius: 50%;
  height: 50px;
  margin-bottom: 10px;
  width: 50px;
}

.loader-text {
  color: #fff;
  font-family: arial, sans-serif;
}

.loader-text:after {
  content: 'Loading';
  animation: load 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    content: 'Loading';
  }
  33% {
    content: 'Loading.';
  }
  67% {
    content: 'Loading..';
  }
  100% {
    content: 'Loading...';
  }
}

.loader {
  width: 60px;
  margin: 0 auto 20px auto;
}

.dl-text-window-cls {
  margin-top:20px;
  font-size: 12px;

  display: block;
  opacity: 1;
  color: #000;
  text-align:center;
}

.center label {
  /*     display: inline-block;
  padding: 0.25em 1em;
  box-sizing: border-box;
  background: #c6c327;
  color: #606060;
  text-decoration: none;
  letter-spacing: 0.075em;
  line-height: 2rem;
  font-weight: 400;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  transition: .1s all; */
  cursor: pointer;
  font-size: 13px;
  text-align: center;
  width: 100%;
  background: #c6c327;
  border: solid 1px #c6c327;
  display: inline-block;
  text-transform: uppercase;
  padding: 7px 0;
  font-weight: 500;
  line-height: 26px;
  color: #3a2f79;
  letter-spacing: inherit;
}





/* S */

.dialog_states {
  visibility: hidden;
  opacity: 0;
  display: none;
}
.dialog_states:checked + #dialog,
#dialog.dialog_open {
  transition-delay:0s;
  opacity: 1;
  visibility: visible;
}
#dlg-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  width: 100vw;
  height: 100vh;
  cursor: pointer;
}
.dialog_states:checked + #dialog #dlg-wrap {
  max-height: 24rem;
  opacity: 1;
  padding: 2rem;
}
#dlg-wrap {
  position: relative;
  z-index: 1;
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
  width: 640px;
  padding: 2rem;
  border-radius: 0.25rem;
  /*border: 1px solid #969696;*/
  background: #fff;
  box-shadow: 1px 1px 6px rgba(0,0,0,0.3);
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
  transition: all .5s;
}
#dlg-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 2rem;
  height: 2rem;
  line-height: 2rem;
  text-align: center;
  cursor: pointer;
}
h2#dlg-header {
  font: 200 2em/1em Raleway, Open Sans, Arial, Sans-Serif;
  text-transform: initial;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
}
#dlg-content {
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.015em;
  text-align:center;
}
#dlg-prompt .button {
  margin: 1rem 0.5rem;
  border-radius: 1.5rem;
}



.main_area {
  transition: all 0.5s ease-out;
}
.dialog_states:checked ~ .main_area,
.main_area.dialog_open {
  filter: blur(6px);
}

.button, a.button {
  display: inline-block;
  padding: 0.25em 1em;
  box-sizing: border-box;

  background: #ffffff;
  color: #606060;
  text-decoration: none;
  letter-spacing: 0.075em;
  line-height: 2rem;
  font-family: Raleway, Open Sans, Arial;
  font-weight: 300;
  font-size: 0.85em;
  border-radius: 4px;
  border: 1px solid #e0e0e0;

  transition: .1s all;
  cursor: pointer;
}
.button:hover, a.button:hover {
  color: #a0a0a0;
  background: #f8f8f8;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
  /*transform: scale(1.01);*/
}
.button.positive, a.button.positive {
  border-color: #6199B7;
  color: #6199B7;
}
.button.positive:hover, a.button.positive:hover {
  border-color: #468FB6;
  color: #fff;
  background-color: #468FB6;
}

.icon {
  vertical-align: middle;
  line-height: inherit;
  font-size: 1.75em;
}


#main {
  height: 48px;
  width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  /* background: url("https://farm6.staticflickr.com/5688/21515632899_94e4ddb78a_o.jpg") no-repeat center center; */
  background-size: cover;
  position: relative;
}
#main .center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}
h1 {
  font: 900 6.4em/1em Raleway, Open Sans, Arial, Sans-Serif;

  letter-spacing: -0.05em;
  margin: 2rem 0 0.5rem;
}
h2 {
  font: 800 2em/1em Raleway, Open Sans, Arial, Sans-Serif;

  letter-spacing: 0.0em;
  margin: 2rem 0 0.5rem;
}


/* Console */
#console {position: absolute;bottom: 0;left: 0;width: 100%;height: 100px;box-sizing: border-box;background: #f0f0f0;color: #606060;font: 400 13px/16px Open Sans;letter-spacing: 0em;text-align: left;padding: 2px;overflow-y: scroll;0 } #console p {margin: 0; padding: 0;} #console p em {font-style: none;font-weight: 700;}


/* div#dlg-prompt a {
background: none;
background-color: none;
border: none;
font-size: 26px;
} */


h2#dlg-header {
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
  font-weight: 500;
  color: #392e79;
}

h2#dlg-header {
  font-size: 18px !important;

}

.dl-help-text {
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
  font-style: italic;
  opacity: .5;
}


.loader {
  width: 60px;
}

.loader-wheel {
  animation: spin 1s infinite linear;
  border: 2px solid rgba(30, 30, 30, 0.5);
  border-left: 4px solid #fff;
  border-radius: 50%;
  height: 50px;
  margin-bottom: 10px;
  width: 50px;
}

.loader-text {
  color: #fff;
  font-family: arial, sans-serif;
}

.loader-text:after {
  content: 'Loading';
  animation: load 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes load {
  0% {
    content: 'Loading';
  }
  33% {
    content: 'Loading.';
  }
  67% {
    content: 'Loading..';
  }
  100% {
    content: 'Loading...';
  }
}

.loader {
  width: 60px;
  margin: 0 auto 20px auto;
}

.dl-text-window-cls {
  margin-top:20px;
  font-size: 12px;

  display: block;
  opacity: 1;
  color: #000;
  text-align:center;
}

.center label {
  /*     display: inline-block;
  padding: 0.25em 1em;
  box-sizing: border-box;
  background: #c6c327;
  color: #606060;
  text-decoration: none;
  letter-spacing: 0.075em;
  line-height: 2rem;
  font-weight: 400;
  font-size: 14px;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
  transition: .1s all; */
  cursor: pointer;
  font-size: 13px;
  text-align: center;
  width: 100%;
  background: #c6c327;
  border: solid 1px #c6c327;
  display: inline-block;
  text-transform: uppercase;
  padding: 7px 0;
  font-weight: 500;
  line-height: 26px;
  color: #3a2f79;
  letter-spacing: inherit;
}

div#sp-button-Lease\+Pending, div#sp-button-Executed, div#sp-button-Available {
  display: none;
}

div#sp-button-Lease\+Pending:nth-of-type(2), div#sp-button-Available:nth-of-type(2) {
  display: block !important;
}

.centered {
  display:flex; justify-content:center;
}



.doc-btns {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 20px;
}


.brochure-cta .flyer {
    width: 100%;
    display: grid;
}
	
@media screen and (max-width:900px) {
	.doc-btns {
    display: grid;
    grid-template-columns: repeat(2, auto);
    gap: 20px;
}
	
}

@media screen and (max-width:768px) {
	.doc-btns {
    display: grid;
    grid-template-columns: repeat(1, auto);
    gap: 20px;
}
	
}