.panorama-popup {
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  left: -300vw;
  right: -200vw;
  z-index: 99;
  width: 100vw;
  height: 100vh;
}
.panorama-popup.visible {
  left: 0;
  right: 0;
}
.panorama-holder {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.close-panorama {
  display: flex;
  position: absolute;
  width: 2.25rem;
  height: 2.25rem;
  align-items: center;
  justify-content: center;
  color: #0a0102;
  background-color: #fafcfc;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  top: 1rem;
  right: 1rem;
  z-index: 100;
  cursor: pointer;
  border: none;
}
.close-panorama:hover,
.close-panorama:focus {
  background-color: rgba(0,39,132,1);
  color: #fafcfc;
}
