/* Property Header */

.property__header-wrapper {
  padding-top: 82px; /* Header Height*/
}

.property__header {
  align-items: center;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.property__header-left-col {
  width: 100%;
}

.property__header-right-col {
  width: 100%;
}

.property__header-images .image-list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-height: calc(100vh - 15rem);
}

.property__header-images .image-list__image-wrapper {
  display: block;
  overflow: hidden;
  padding: 1rem;
}

.property__header-images .image-list__image-wrapper a {
  display: block;
}

.property__header-images .image-list__image-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .property__header-wrapper {
    padding-top: 68px; /* Header Height*/
  }  
  
  .property__header-left-col {
    padding-bottom: 2rem;
  }
}

@media (min-width: 768px) {
  .property__header-left-col {
    width: 50%;
  }

  .property__header-right-col {
    padding-left: 2rem;
    width: 50%;
  }  
}

/* Property Info */

.property__info-wrapper .content-wrapper {
  padding: 1rem;
}

.property__info {
  align-items: stretch;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}


.property__info-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
}

.property__info-col--1 {
  width: 100%;
}

.property__info-title {
  margin-bottom: 0.25rem;
}

.property__info-subtitle > *:last-child {
  margin-bottom: 0.25rem;
}

.property__info-col--2 {
  width: 100%;
}

.property__info-address > *:last-child {
  margin-bottom: 0;
}

.property__info-col--3 {
  width: 100%;
}

.property__info-contact > *:last-child {
  margin-bottom: 0;
}

.property__info-col--4 {
  width: 100%;
}

.property__info-buttons {
  align-items: center;
  display: flex;
  flex-direction row;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.property__info-button-wrapper {
  padding: 0.5rem;
}

@media (max-width: 767px) {
  .property__info-col:not(:last-child) {
    border-bottom-style: solid;
    border-bottom-width: 1px;
  }
}

@media (min-width: 768px) {
  .property__info {
    margin-left: -1rem;
    margin-right: -1rem;
  }

  .property__info-col {
    padding: 0 1rem;
  }

  .property__info-col:not(:last-child) {
    border-right-style: solid;
    border-right-width: 1px;
  }

  .property__info-col--1 {
    width: 35%;
  }

  .property__info-col--2 {
    width: 15%;
  }

  .property__info-col--3 {
    width: 15%;
  }

  .property__info-col--4 {
    width: 35%;
  }
}

/* Site Plan */

.property__site-plan-header {
  padding-bottom: 1rem;
}

.property__site-plan-image {
  align-items: center;
  display: flex;
  justify-content: center;
}