:root {
 --border: 3px solid #B7C3D0;
 --outline-white: 2px solid #fff;
 --header-background-color: #00264d;
 --page-width-max: 1100px;
}

body {
  min-height: 100vh; 
  margin: 0; 
  font-family: var(--nav-font-family);
  color: #333;
  margin: 0px;
}

div {
  box-sizing: border-box;
  margin : 0;
  padding : 0;
}

* {
  transition: all 0.8s ease-in-out;
  }

a {
  outline: 0;
  text-decoration: none;
}

a:link {
  color : #ff6600;
  text-decoration : none;
}
a:visited {
  color: #ff0000;
  text-decoration : none;
} 

a:active {
  color : #ff6600;
  text-decoration : none;
}

a:hover {
  color: #ff6600;
  text-decoration : none;
}

a:hover .info {
  border: 1px solid #ff6600;
  text-decoration : none;
}

a:hover .img {
  border: 1px solid #ff6600;
  text-decoration : none;
}

h3{
  margin-top: 0px;
  font-size: 1.2em;
  letter-spacing: 3px;
  margin-bottom: 0px;
  text-transform: uppercase;
}

h4 {
  width: 100%;
  font-size: 1.1em;
  letter-spacing: 3px;
  margin: 10px 0px;
  border-bottom: 0px dotted black;
  padding: 5px;
  background-color: #eee;
  text-transform: none;
}

ul.features li {
  list-style: square;
  margin-top: 10px;
  margin-left: -10px;
}

ul.features ::marker { 
  color: red;
  font-size: 14px;
}

h.review-heading{
  display: inline-block;
  margin-top: 0px;
  margin-left: 10px;
  font-size: 1.0em;
  font-weight: bold;
  color: var(--header-background-color);
  text-transform: uppercase;
  letter-spacing: 5px;
  column-span: all;
}

h.documents-heading{
  display: inline-block;
  margin-top: 10px;
  margin-left: 10px;
  font-size: 0.87em;
  font-weight: normal;
  text-transform: uppercase;
  column-span: all;
}

ul.documents {
  font-size: 0.8em;
  margin-left: 10px;
  margin-bottom: 40px;
  column-count: 2;
  column-gap: 100px;
  column-rule: 1px solid lightblue;
}

ul.documents li {
  list-style: number;
  margin-top: 10px;
  margin-left: -25px;
}

ul.documents li i {
 font-size: 1.0em;
 color: red;
}

ul.documents li a {
  color: #222;
  margin-left: 10px;
}

ul.documents li a:hover{
   color: cadetblue;
}

ul.documents li:before { 
  color: red;
  font-size: 1.0em;
  background-image: url(".../common/icons8-pdf-16.png");
}

ul.documents.review-item{
  font-size: 0.98em;
}

.hide {
  display: none;
}

.not-visible{
  visibility: hidden;
}

/* Style post-it note used when rented */
.postit {
  position: absolute;
  z-index: 1;
  width: 200px;
  height: 200px;
  top: 60%;
  right: 5%;
  padding: 0;
  background-image : url("../common/rentedpostit.png");
  background-repeat: no-repeat;
  opacity: 0.8;
}

/* animated the postit */
@keyframes postit-animate {
  0%   {top: 5%; }
  25%  {top: 10%; }
  100% {top: 60%; }
}
  

/* Style the wrapper0 */
.wrapper0 {
  display: block;
  position: relative;
  max-width : var(--page-width-max);
  height: 100vh; 
  margin: 0px auto;
  padding : 0px;
}

.wrapperwide {
  max-width: 1100px;
}

/* Style the header */
.header {
  /*! display: block; */
  /*! height: 75px; */
  margin : 10px 5px 0px 5px;
  padding: 10px 15px;
  background-color: var(--header-background-color);
  /*! border-radius: 7px; */
}

/* Style the page title */
.page-title {
  font: bold 1.3em 'Marcellus', garamond, serif;
  color: #fff;
}

/* Style the page sub-title where applic */
.page-sub-title {
  font-size: 0.9em;
  color: #333;
  margin : 5px 5px 0px 15px;
  padding : 0;
}

/* Style the left container */
.container-left {
  display:block;
  float: left;
  max-width: 260px; 
  max-height : 1000px;
  margin: 5px 10px 10px 0px;
  padding : 0;
  overflow: hidden;
  border: 0px solid #ccc;
}

/* Style the left container image */
  .container-left img {
  width: 100%;
}

.container-spacer {
  height: 200px;
  background-color: #eee;
}

/* Style the grid container */
.grid-container {
  display: grid;
  padding: 10px 5px 10px 5px;
  grid-template-areas:
    'gallery1 gallery1' 
    'left left' 
    'left2 right2' 
    'left3 left3';
  grid-column-gap: 10px;
  grid-row-gap: 10px;
} 

/* defaults for divs inside grid container */
.grid-container > div {
  font-size: 0.85em;
}

/* Style the subheader inside grid */
.gallery1 {
  grid-area: gallery1;
  margin-top: 0px;
}

/* Style the left column */
.grid-section1 {
  grid-area: left;
  margin-top: 20px;
}

/* Style the left2 column */
.grid-section2 {
  grid-area: left2;
}

/* Style the right2 column */
.grid-section3 {
  grid-area: right2;
  /*! background-color: var(--header-background-color); */
  /*! color: #eee; */
  border-radius: 25px;
}

/* Style the footer contained within grid */
.grid-section4 {
  grid-area: left3;
  background-color: beige;
  display: none;
}

/* Style the container for light box - see sep css file for lightbox */
.lightbox-container {
  height:320px;
  overflow: hidden;
}

.border2 {
  border: 3px solid;
  border-color: var(--header-background-color);
}

.background1 {
  background-color: #eee;
}

.nowrap {
  white-space: nowrap;
}

.pdf {
  background-image: url(".../assets121/common/icons8-pdf-16.png");
}

.responsive-image {
  width: 100%;
  height: auto;
}

/* style the boxed notices used on apt pages */
.notice {
  text-transform: uppercase;
  font-weight: bold;
  text-align: center;
  margin: auto 10px;
  padding: 10px;
}

/* Style the main footer */
.footer-main {
  margin: 0px auto;
  padding: 5px;
  color: var(--header-background-color);
  font: 0.8em georgia, serif;
  text-align: justify;
  text-justify:  inter-character;
  border-top: 2px solid;
  max-width : var(--page-width-max);
  background: #fff;
}

/* Style the footer on ADMN page */
.footer-fixed {
  position: fixed;
  bottom: 0px;
  width: 100%;
}

.media{
  display: block;
  position: relative;
  margin: 100px auto;
  width: 100%;
}

.iframe-container {
  position: relative;
  width: 100%;
  height: 1150px;
  overflow: hidden;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}


iframe {
  margin: 5px 5px 10px 0px;
  width:99%;
  height: 1150px;
  overflow: auto;
  border-top: 2px solid #ccc;
  border-left: 0px;
  border-right: 0px;
  border-bottom: 0px;
  outline: var(--outline-white);
  outline-offset: -1px;
} 

/* tyle the iframe to fit in the iframe container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 90%;
  height: 100%;
}

iframe#iframepage1 {
  width: 99%;
  height: 600px;
  border: 0px;
  overflow: hidden;
  padding: 0px;
  outline: 0px;
} 

iframe#iframepage2 {
  width: 100%;
  height: 800px;
  border: 0px;
  overflow: hidden;
  margin: 0px auto;
  padding: 0px;
  outline: 0px;
} 

iframe#iframepagestreetview {
  width: 100%;
  height: 800px;
  border: 0px;
  overflow: hidden;
  margin: 0px auto;
  padding: 0px;
  outline: 0px;
} 

iframe#iframeaddress {
  width: 329px;
  height: 100px;
  border: 0px;
  margin-left: -10px;
}

iframe#iframeleasereview {
  width: 99%;
  height: 900px;
  overflow: auto;
}

iframe#iframeleasereview2 {
  width: 99%;
  height: 800px;
  overflow: auto;
}

iframe#iframedocs {
  width: 99%;
  overflow: hidden;
  border: 0px;
}

/* Responsive layout rules - frames */  

@media (max-width: 960px) {
 iframe#iframepage1 {
  width:98.5%;
  height: 350px;
  }
  
  iframe#iframe {
  width:98.5%;  
 }
  
iframe#iframeleasereview {
  width:98.5%;  
 }
}

/* Responsive layout rules - omits left container */

@media (max-width: 820px) {
  .container-left {
	   display: none;
  }
  
.lightbox-container {
height: 250px;
}
  ul.documents {
    column-count: 1;
  }
 }

/* Responsive layout rules - stack columns net to each other her instead of next to each other */  

@media (max-width: 560px) {
    .header{
      text-align: center;
  }
  
  .page-title {
  font: bold 1.1em 'Marcellus', garamond, serif;
}
  
  .grid-container  {
    grid-template-areas: 
      'gallery1 gallery1'
      'left left' 
       'right right'
       'left2 left2' 
       'right2 right2'
      'left3 left3';
  }

  
/* Responsive layout rules - frames */  
  
 iframe#iframepage1 {
  width:97%;
  height: 500px;
  }
  
  iframe#iframepage2 {
  width:97%;
  height: 500px;
  }
  
  iframe#iframepagestreetview {
  width:97%;
  height: 350px;
  }
  
  iframe#iframe {
  width:97%;  
  }
  
iframe#iframeleasereview {
  width:97%;  
 } 
}

@media (max-width: 400px) {
 iframe#iframepage1 {
  width:95%;
  height: 350px;
  }
  
 iframe#iframepage2 {
  width:95%;
  height: 350px;
  }
  
   iframe#iframepagestreetview {
  width:95%;
  height: 350px;
  }
  
  iframe#iframe {
  width:95%;  
 }
  
iframe#iframeleasereview {
  width:95%;  
 }
  
  .lightbox-container {
height: 260px;
 }
}