/* 360° tour modal close button — self-contained so it stays visible
   regardless of subtheme modal styles. Mirrors the gallery modal close. */
#unit-virtual-tour-modal .a-close {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  padding: 0;
  border: solid 2px #000;
  background-color: #000;
  transition: all 0.35s ease;

  svg path {
    fill: #fff;
  }

  &:hover {
    background-color: #fff;

    svg path {
      fill: #000;
    }
  }
}
