:root{
  --controls-color: #ccc;
  --modal-background-color1: rgba(34, 34, 34, 0.95);
  --modal-background-color1a: rgba(34, 34, 34, 0.75);
}

.row > .column {
margin-top : 0px;
padding : 5px 5px;
}

.row:after {
content : "";
display : table;
clear : both;
}

/* styles the initial thumb columns */
.column {
position : relative;
float : left;
width : 25%;
}

/* styles the modal thumb columns */
.column2 {
position : relative;
float: left;
width : 10%;
padding: 3px;
}

.column2 img{
  aspect-ratio: 4/3;
}

.plan-thumb{
  display: none;
}

/* styles the modal background */
.modal {
display : none;
position : fixed;
z-index : 2;
margin-top: 0;
margin-left: 0;
padding-top : 0;
left: 0;
top: 0;
width : 100%;
height : 100%;
overflow : auto;
background-color: var(--modal-background-color1);
}

/* styles the container within modal */
.modal-container {
position : relative;
margin : 0px auto;
padding : 0;
max-width: 1400px;
height: 100%;
border: 0px solid #333;
}


/* styles the modal content */
.modal-content {
position : relative;
margin : 10px auto;
padding : 0;
width : 85%;
max-width: 1000px;
background-color: var(--modal-background-color1a);
}

/* styles the modal close button */
.close {
  color: var(--controls-color);
  position : absolute;
  top : 0;
  right: 1%;
  font-size : 3.8em;
  font-weight : normal;
  z-index: 10;
  transition : 0.6s ease;
  width: 50px;
  padding : 0px 0px 2px 16px;
  border: 0px solid rgb(255, 255, 255, 0.5); 
  background-color : rgb(255, 255, 255, 0.0); 
  outline: 0px solid rgb(255, 255, 255, 0.2);
  outline-offset: 0px;
  border-radius : 50px; 
}
.close:hover, .close:focus {
  color: red;
  text-decoration : none;
  cursor: pointer;
  background-color : rgb(255, 255, 255, 0.1);
  outline: 1px solid rgb(255, 255, 255, 0.1);
  outline-offset: 10px;
  
}
.mySlides {
  display: block;
  text-align: center;
}

/* styles the modal slide if portait 4:3 */
.mySlides img.slide-portrait{
  width: 56%;
}

.cursor {
  cursor: pointer;
}

/* styles the modal prev-next arrows */
.prev, .next {
  cursor : pointer;
  position : absolute;
  top : 50%;
  width: 50px;
  margin-top : -80px;
  color : var(--controls-color);
  font-weight : normal;
  font-size : 3em;
  text-align : center;
  z-index: 10;
  transition : 0.6s ease;
  user-select : none;
  padding : 0.1em 0.15em 0.1em 0.15em;
  border: 0px solid rgb(255, 255, 255, 0.5); 
  background-color : rgb(255, 255, 255, 0.0); 
  outline: 0px solid rgb(255, 255, 255, 0.1);
  outline-offset: 0px;
  border-radius : 50px;
}

.prev {
  left : 1%;
}

.next {
  right : 1%;
}

.prev:hover, .next:hover {
  background-color : rgb(255, 255, 255, 0.1);
  outline: 1px solid rgb(255, 255, 255, 0.1);
  outline-offset: 10px;
}

/* styles the text overlaid on lightbox thumbs */
.thumboverlay {
  color : white;
  font-family: 'Syncopate';
  font-size : 18px;
  font-weight : 700;
  text-transform: capitalize;
  padding : 5px 10px;
  position : absolute;
  z-index : 1;
  background-color: rgba(0, 46, 92, 0.65);
  border-radius: 0px 0px 10px;
}

/* styles the modal slide numbering */
.numbertext {
  color : var(--controls-color);
  font-size : 1.0em;
  position : absolute;
  top : 10px;
  right: 10px;
}

img {
  margin-bottom: 0;
}

/* styles the modal slide captions */
.caption-container {
  text-align : right;
  padding : 1px 10px;
  color : var(--controls-color);
  margin-top : 0;
  font-size : 1em;
}

/* styles appearance of modal thumbs */
.demo {
  opacity : 0.7;
}

.plan-icon {
  background-color: cadetblue;
}

.portrait {
  width : 9.37%;
}
.active, .demo:hover {
  opacity : 1; 
}
img.hover-shadow {
  transition : 0.3s;
}
.hover-shadow:hover {
  box-shadow : 0 4px 8px 0 rgb(0, 0, 0, 0.2), 0 6px 20px 0 rgb(0, 0, 0, 0.19);
}


/* responsive layout rules */

@media (max-width: 1200px) {
  .modal-content {
    width: 70%;
  }
}

@media (max-width: 820px) {
  .modal-content {
    width: 80%;
  }
  .column {
    width: 50%;
  }
    .column2 {
    width: 20%;
  }
}

@media (max-width: 560px) {
  .modal {
    width: 100%;
    left: 0;
    margin-left: 0;
    margin-top: 0;
  }
  
.modal-content {
  width: 100%;
  }
  .column {
    width:100%;
  }
  .column2 {
    width: 100%;
  }
  
  .column2 img {
  aspect-ratio: inherit;
}
  
  .demo {
opacity : 1.0;
 }
  .close {
    position: fixed;
    color: yellow;
    font-size: 3em;
    right: -20px;
    top: 10px;
    border: 0px;
  }
  
  .caption-container {
  text-align : center;
  }
  
 .numbertext {
    display: none;
  }
  
.prev, .next {
  display: none;
 }

.exterior {
  display: none;
 } 
  
.first-thumb {
  display: none;
 }   
  
    .plan-thumb {
  display: block;
 } 
  
   .plan-icon {
  display: none;
 }  
  
}
