#LPA3DOffice {
  text-align: center;
  background-color: #000;
  position: relative;
}

#LPA3DOfficeContainer {
  max-width:1000px;
  position: relative;
  width: calc(100% - 2rem);
  margin: auto;
  z-index: 1;
}

#LPA3DOfficeHotspotContainer {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#LPA3DOfficeHotspotContainer .hotspot {
  position: absolute;
}

#LPA3DOfficeImageContainer {
  position: relative;
  z-index: 1;
  top: 0;
  left: 0;
  line-height: 0;
}

#LPA3DOfficeImageContainer #initial {
  position: relative;
  z-index: 1;
}

#LPA3DOfficeImageContainer .highlight {
  opacity: 0;
  position: absolute;
  z-index: 2;
  transition: all 0.35s ease-in-out;
}

#LPA3DOfficeImageContainer .highlight.active {
  opacity: 1;
}

.hotspot {
  padding: 0.5rem;
  width: 2rem;
  height: 2rem;
  transform: translate(-1rem, -1rem);
}

.hotspot .dot {
  width: 1rem;
  height: 1rem;
  border: solid 2px #fff;
  border-radius: 1rem;
  background-color: rgba(0,43,78,0.6);
  position: absolute;
  transition: all 0.15s ease-in-out;
}


#LPA3DOfficeDetailsMobile,
#LPA3DOfficeDetails .description .desktop {
  display: none;
}


@media screen and (max-width: 63.9375rem) {

  #LPA3DOffice {
    min-height: 100vw;
  }

  #LPA3DOfficeDetails {
    display: none;
  }

  #LPA3DOfficeDetailsMobile {
    display: block;
    position: fixed;
    bottom: 0;
    z-index: 1000;
  }

  #LPA3DOfficeDetailsMobile .description {
    bottom: 0;
    position: fixed;
  }

  #LPA3DOfficeDetailsMobile .description .content {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
    padding: 2rem 1.5rem;
    width: 100%;
    text-align: left;
    background: #fff;
    transform: translateY(100%);
    transition: all 0.25s ease-in-out;
    position: relative;
  }

  #LPA3DOfficeDetailsMobile .description.active .content {
    transform: translateY(0%);
  }

  #LPA3DOfficeDetailsMobile .description.active .mobile {
    display: block;
  }

  #LPA3DOfficeDetailsMobile .description .mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100vw;
    pointer-events: all;
    
  }

  #LPA3DOfficeDetailsMobile .description .mobile .description-close {
    color:#002B4E;
    border: 0;
    background: none;
    position:absolute;
    top: 1rem;
    right: 1rem;
  }

}

@media screen and (min-width: 64rem) {

  #LPA3DOffice {
    padding: 3rem 0;
  }


  .hotspot .dot:hover {
    width: 1.1rem;
    height: 1.1rem;
    border: solid 4px #fff;
    transform: translate(-1px, -1px);
  }

  .hotspot:hover {
    cursor: pointer;
  }


  #LPA3DOfficeDetailsMobile .description.active .mobile {
    display: none;
  }

  #LPA3DOfficeDetails {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    pointer-events: none;
    width: 100%;
    height: 100%;
  }

  #LPA3DOfficeDetails .description {
    opacity: 0;
    
  }

  #LPA3DOfficeDetails .description.active {
    opacity: 1;
    pointer-events: all;
  }

  #LPA3DOfficeDetails .description.active .content {
    background-color: rgba(0,0,0,0.3);
    color:#fff;
  }

  #LPA3DOfficeDetails .description .content {
    border-radius: 1rem;
    padding: 2rem 1.5rem;
    width: 340px;
    text-align: left;
  }

  #LPA3DOfficeDetails .description .content.right {
    transform: translate(-370px, -43px);
  }

  #LPA3DOfficeDetails .description .content.left {
    transform: translate(30px, -43px);
  }

  #LPA3DOfficeDetails .description .content.right::after {
    position: absolute;
    content : "";
    top: 32px;
    right: -17px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 11px 0 11px 17px;
    border-color: transparent transparent transparent rgba(0,0,0,0.3);
    transform: rotate(0deg);
  }

  #LPA3DOfficeDetails .description .content.left::after {
    position: absolute;
    content : "";
    top: 32px;
    left: -17px;
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 11px 17px 11px 0;
    border-color: transparent rgba(0,0,0,0.3) transparent transparent;
    transform: rotate(0deg);
  }

  #LPA3DOfficeDetails .description .desktop {
    display: block;
    position: absolute;
    box-shadow: -1px 2px 6px 1px rgba(0,0,0,0.05);
  }

}

@media screen and (min-width: 120rem) {
  #LPA3DOfficeContainer,
  #LPA3DOfficeDetails {
    max-width:1200px;
  }

  

}