/* Styles for individual pages */

/* pano 360 */
.panoContainer,
.mapContainer {
  width: 100%;
  height: 100%;
  position: fixed !important;
  top: 0;
  left: 0;
  z-index: 0;
}

/* pano 360 */

/* Location Page */
.mapContainer,
.panoContainer {
  transition: transform 1.5s ease;
}
.locationPagePanoContainerHide {
  transform: translateX(100%);
}
.locationPagePanoContainerVisible {
  transform: translateX(0);
}
.locationMapContainerHide {
  transform: translateX(-100%);
}
.mapKey img {
  background-color: var(--colorRed);
  width: 26px;
  height: 26px;
  border-radius: 20px;
  padding: 3px;
  vertical-align: middle;
  margin: 3px 10px 3px 0;
}
.mapKey > img:nth-of-type(2) {
  background-color: #89a831;
}
.mapKey > img:nth-of-type(3) {
  background-color: #0c7c59;
}
.mapKey > img:nth-of-type(4) {
  background-color: #008dd5;
}
.mapKey > img:nth-of-type(5) {
  background-color: #e1ff21;
}
.mapKey > img:nth-of-type(6) {
  background-color: #e43f6f;
}
/* Location Page */

/* Booking */
.bookingBlock {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
.loadingImage {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
}
/* Booking */

/* Interiors */
.roomInfoRow {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: nowrap;
  height: 26px;
  align-items: center;
}

.roomInfoLabel {
  width: 100px;
}
.roomInfoValue {
  width: 80px;
  color: #e0b481;
  font-weight: 600;
}

.roomInfoIcon {
  width: 24px;
  margin-right: 10px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.5;
}

.roomInfo {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  max-width: 230px;
  border-top: 1px solid var(--lightGoldColor);
  border-bottom: 1px solid var(--lightGoldColor);
  background: rgba(0, 0, 0, 0.11);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px 20px !important;
  margin-top: 2rem !important;
}

.roomInfo div {
  position: relative;
}
/* Interiors */

/* Site Summary */
.siteSummaryImage {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: cover;
  background-image: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0) 30%
    ),
    url(/wp-content/uploads/images/siteSummary/4-resized-23.webp);
}
.siteSummaryImage svg {
  width: 100%;
  height: auto;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.siteSummaryImage svg polygon {
  transition: all 0.3s ease;
}

.siteSummaryImage svg path {
  pointer-events: none;
}
@media (max-aspect-ratio: 2000 / 1200) {
  .siteSummaryImage svg {
    width: auto;
    height: 100vh;
  }
}

#siteSummaryLot35Text,
#siteSummaryLot36Text {
  pointer-events: none;
}
#siteSummaryLot35 path,
#siteSummaryLot36 path {
  transition: all 0.5s ease;
  pointer-events: all;
}
#siteSummaryLot35 path:hover,
#siteSummaryLot36 path:hover {
  fill-opacity: 0.5 !important;
}

/* Site Summary */

/* Floor Selector */
.panoResetViewButton {
  pointer-events: all;
  transform: scale(0);
  transition: transform 0.3s ease;
}
.rotateButtonVisible {
  transform: scale(1);
}
/* Floor Selector */

/* Montario Quarter */
main[data-page-url="montario"] .moreInfoText img {
  margin-right: 20px;
}
/* Montario Quarter */

/* Floor Selector */
main[data-page-url="floor-selector"] .moreInfoText .floorCalloutText {
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  width: 220px;
  pointer-events: all;
  padding: 10px;
}
main[data-page-url="floor-selector"] .moreInfoText .floorCalloutText > div {
  font-size: 13px !important;
}
/* Floor Selector */

/* Team */
.teamContent > div {
  overflow: auto;
  padding: 30px;
  color: white;
  width: 100%;
  height: 100%;
}

.person {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* height: 50%; */
  /* width: auto !important; */
  /* justify-content: flex-start; */
  padding: 10px 5px !important;
}

.personImage {
  width: 10vw;
  height: 10vw;
  /* height: 50%; */
  background-size: contain;
  background-repeat: no-repeat;
  margin-bottom: 10px;
  background-position: bottom;
  border: solid 1px var(--colorRed);
  border-style: none;
  border-bottom-style: solid;
  transition: all 0.2s ease;
}
.person h4 {
  margin: 0;
}
.personRole {
  margin: 5px 0;
}

body.hasHover .person:hover .personImage {
  border-color: var(--darkGoldColor);
}

body.hasHover .person:hover h4 {
  color: var(--darkGoldColor) !important;
}

.personDescription {
  display: none;
}
.person .openPopupContent {
  /* max-width: 10vw; */
}
.teamGrid {
  align-items: flex-start !important;
  justify-content: center !important;
  align-content: space-around !important;
}
/* Management Team */
/* Team */

/* Contact Us */
.contactUsBlocks > div {
  text-align: left !important;
}
.phoneIcon {
  margin-right: 7px;
  vertical-align: middle;
  width: 22px;
}
/* Contact Form */
.contactFormPopup {
  width: 450px;
}
.contactForm p {
  padding: 0;
  margin: 10px 0 0 0;
}
.contactForm input:focus:not(.buttonPrimary) {
  box-shadow: var(--buttonOverOutline);
}
.wpcf7-spinner {
  position: absolute;
  margin-top: 15px;
}
.contactFormButtons {
  text-align: center;
}
.contactFormFields,
.contactForm in {
  margin: 20px 0;
}
.wpcf7-response-output {
  border-width: 1px;
  border-radius: 50px;
  font-size: 1em;
  text-align: center;
}
/* Contact Form */

/* Contact Us */

/* Projects */
.mapPinContentValue h4 {
  font-size: 20px;
}
/* Projects */

/* Timeline */
.timelineContent {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-evenly;
}
/* Timeline */

/* Executive Summary */
.main[data-page-url="executive-summary"] .col2 {
  height: 100%;
  align-content: flex-start;
}
.main[data-page-url="executive-summary"] .col3 > div {
  height: 43%;
  text-align: center;
  align-content: center;
}
.main[data-page-url="executive-summary"] .col2 > div .contentIcon {
  margin: 0 auto;
}
.main[data-page-url="executive-summary"] .col2 > div .dropdown-content {
  left: 50%;
  transform: translateX(-50%);
}
/* Executive Summary */
