/*!
 * Photo Sphere Viewer 5.10.1
 * @copyright 2014-2015 Jérémy Heleine
 * @copyright 2015-2024 Damien "Mistic" Sorel
 * @licence MIT (https://opensource.org/licenses/MIT)
 */
/* src/styles/index.scss */
.psv-container {
  --psv-core-loaded: true;
  container-name: psv-container;
  container-type: size;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  background:
    radial-gradient(
      #fff 0%,
      #fdfdfd 16%,
      #fbfbfb 33%,
      #f8f8f8 49%,
      #efefef 66%,
      #dfdfdf 82%,
      #bfbfbf 100%);
  overflow: hidden;
}
.psv-container * {
  box-sizing: content-box;
}
.psv-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  transition: opacity linear 100ms;
}
.psv-canvas {
  display: block;
}
.psv-fullscreen-emulation {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.psv-loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 80;
}
.psv-loader {
  --psv-loader-border: 3px;
  --psv-loader-tickness: 10px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.7);
  width: 150px;
  height: 150px;
}
.psv-loader-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: rgba(61, 61, 61, 0.5);
  z-index: -1;
}
.psv-loader-text {
  font: 600 16px sans-serif;
}
.psv-navbar {
  display: flex;
  position: absolute;
  z-index: 90;
  bottom: -40px;
  left: 0;
  width: 100%;
  height: 40px;
  background: rgba(61, 61, 61, 0.5);
  transition: bottom ease-in-out 0.1s;
  font: 16px sans-serif;
  cursor: default;
}
.psv-navbar--open {
  bottom: 0;
}
.psv-navbar,
.psv-navbar * {
  box-sizing: content-box;
}
.psv-button {
  flex: 0 0 auto;
  padding: 10px;
  position: relative;
  cursor: pointer;
  height: 20px;
  width: 20px;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
}
.psv-button--active {
  background: rgba(255, 255, 255, 0.2);
}
.psv-button--disabled {
  pointer-events: none;
  opacity: 0.5;
}
.psv-button-svg {
  width: 100%;
  transform: scale(1);
  transition: transform 200ms ease;
  vertical-align: initial;
}
.psv-button:not(.psv-button--disabled):focus-visible {
  outline: 2px solid #007cff;
  outline-offset: -2px;
}
.psv-container:not(.psv--is-touch) .psv-button--hover-scale:not(.psv-button--disabled):hover .psv-button-svg {
  transform: scale(1.2);
}
.psv-move-button + .psv-move-button {
  margin-left: -10px;
}
.psv-custom-button {
  width: auto;
  min-width: 20px;
}
.psv-custom-button--no-padding {
  padding: 0;
  height: 100%;
}
.psv-caption {
  flex: 1 1 100%;
  color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  text-align: center;
  cursor: unset;
  padding: unset;
  height: unset;
  width: unset;
}
.psv-caption-content {
  display: inline-block;
  padding: 10px;
  white-space: nowrap;
}
.psv-zoom-range.psv-button {
  width: 80px;
  height: 1px;
  margin: 10px 0;
  padding: 9.5px 0;
  max-width: 600px;
}
.psv-zoom-range-line {
  position: relative;
  width: 80px;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}
.psv-zoom-range-handle {
  position: absolute;
  border-radius: 50%;
  top: -3px;
  width: 7px;
  height: 7px;
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1);
  transition: transform 0.3s ease;
}
.psv-zoom-range:not(.psv-button--disabled):hover .psv-zoom-range-line {
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.7);
}
.psv-zoom-range:not(.psv-button--disabled):hover .psv-zoom-range-handle {
  transform: scale(1.3);
}
.psv-notification {
  position: absolute;
  z-index: 100;
  bottom: -40px;
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  padding: 0 2em;
  opacity: 0;
  transition-property: opacity, bottom;
  transition-timing-function: ease-in-out;
  transition-duration: 200ms;
}
.psv-notification-content {
  max-width: 50em;
  background: rgba(61, 61, 61, 0.8);
  border-radius: 4px;
  padding: 0.5em 1em;
  font: 14px sans-serif;
  color: rgb(255, 255, 255);
}
.psv-notification--visible {
  opacity: 100;
  bottom: 80px;
}
.psv-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 110;
  inset: 0;
  background:
    radial-gradient(
      #fff 0%,
      #fdfdfd 16%,
      #fbfbfb 33%,
      #f8f8f8 49%,
      #efefef 66%,
      #dfdfdf 82%,
      #bfbfbf 100%);
  opacity: 0.8;
  cursor: default;
}
.psv-overlay-image {
  width: 100%;
  text-align: center;
  color: rgb(48, 48, 48);
}
.psv-overlay-image svg {
  width: 50%;
}
@container psv-container (orientation: landscape) {
  .psv-overlay-image svg {
    width: 33%;
  }
}
.psv-overlay-title {
  color: black;
  margin-top: 1em;
  font: 30px sans-serif;
  text-align: center;
}
.psv-overlay-text {
  color: rgba(0, 0, 0, 0.8);
  font: 20px sans-serif;
  opacity: 0.8;
  text-align: center;
}
.psv-panel {
  position: absolute;
  z-index: 90;
  right: 0;
  height: 100%;
  width: 400px;
  max-width: calc(100% - 9px);
  background: rgba(10, 10, 10, 0.7);
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: ease-in-out;
  transition-duration: 100ms;
  cursor: default;
  margin-left: 9px;
}
.psv--has-navbar .psv-panel {
  height: calc(100% - 40px);
}
.psv-panel-close-button {
  display: none;
  position: absolute;
  top: -1px;
  right: 0;
  width: 19.2px;
  height: 19.2px;
  padding: 6.4px;
  background: transparent;
  color: #fff;
  transition: background 300ms ease-in-out;
  cursor: pointer;
}
.psv-panel-close-button svg {
  transition: transform 300ms ease-in-out;
}
.psv-panel-close-button:hover {
  background: rgba(0, 0, 0, 0.9);
}
.psv-panel-close-button:hover svg {
  transform: scale(-1);
}
.psv-panel-resizer {
  display: none;
  position: absolute;
  top: 0;
  left: -9px;
  width: 9px;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  cursor: col-resize;
}
.psv-panel-resizer::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1px;
  margin-top: -14.5px;
  width: 1px;
  height: 1px;
  box-shadow:
    1px 0 #fff,
    3px 0px #fff,
    5px 0px #fff,
    1px 2px #fff,
    3px 2px #fff,
    5px 2px #fff,
    1px 4px #fff,
    3px 4px #fff,
    5px 4px #fff,
    1px 6px #fff,
    3px 6px #fff,
    5px 6px #fff,
    1px 8px #fff,
    3px 8px #fff,
    5px 8px #fff,
    1px 10px #fff,
    3px 10px #fff,
    5px 10px #fff,
    1px 12px #fff,
    3px 12px #fff,
    5px 12px #fff,
    1px 14px #fff,
    3px 14px #fff,
    5px 14px #fff,
    1px 16px #fff,
    3px 16px #fff,
    5px 16px #fff,
    1px 18px #fff,
    3px 18px #fff,
    5px 18px #fff,
    1px 20px #fff,
    3px 20px #fff,
    5px 20px #fff,
    1px 22px #fff,
    3px 22px #fff,
    5px 22px #fff,
    1px 24px #fff,
    3px 24px #fff,
    5px 24px #fff,
    1px 26px #fff,
    3px 26px #fff,
    5px 26px #fff,
    1px 28px #fff,
    3px 28px #fff,
    5px 28px #fff;
  background: transparent;
}
.psv-panel-content {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  color: rgb(220, 220, 220);
  font: 16px sans-serif;
  overflow: auto;
}
.psv-panel-content:not(.psv-panel-content--no-margin) {
  padding: 1em;
}
.psv-panel-content--no-interaction {
  user-select: none;
  pointer-events: none;
}
.psv-panel--open {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition-duration: 0.2s;
}
.psv-panel--open .psv-panel-close-button,
.psv-panel--open .psv-panel-resizer {
  display: block;
}
@container psv-container (max-width: 400px) {
  .psv-panel {
    width: 100% !important;
    max-width: none;
  }
  .psv-panel-resizer {
    display: none !important;
  }
}
.psv-panel-menu {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.psv-panel-menu-title {
  flex: none;
  display: flex;
  align-items: center;
  font: 24px sans-serif;
  margin: 24px 12px;
}
.psv-panel-menu-title svg {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}
.psv-panel-menu-list {
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
.psv-panel-menu-item {
  min-height: 1.5em;
  padding: 0.5em 1em;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: background 0.1s ease-in-out;
}
.psv-panel-menu-item--active {
  outline: 1px solid currentcolor;
  outline-offset: -1px;
}
.psv-panel-menu-item-icon {
  flex: none;
  height: 1.5em;
  width: 1.5em;
  margin-right: 0.5em;
}
.psv-panel-menu-item-icon img {
  max-width: 100%;
  max-height: 100%;
}
.psv-panel-menu-item-icon svg {
  width: 100%;
  height: 100%;
}
.psv-panel-menu-item:focus-visible {
  outline: 2px solid #007cff;
  outline-offset: -2px;
}
.psv-panel-menu--stripped .psv-panel-menu-item:hover {
  background: rgba(255, 255, 255, 0.2);
}
.psv-panel-menu--stripped .psv-panel-menu-item:nth-child(odd),
.psv-panel-menu--stripped .psv-panel-menu-item:nth-child(odd)::before {
  background: rgba(255, 255, 255, 0.1);
}
.psv-panel-menu--stripped .psv-panel-menu-item:nth-child(even),
.psv-panel-menu--stripped .psv-panel-menu-item:nth-child(even)::before {
  background: transparent;
}
.psv-container:not(.psv--is-touch) .psv-panel-menu-item:hover {
  background: rgba(255, 255, 255, 0.2);
}
.psv-tooltip {
  position: absolute;
  z-index: 50;
  box-sizing: border-box;
  max-width: 200px;
  background: rgba(61, 61, 61, 0.8);
  border-radius: 4px;
  opacity: 0;
  transition-property: opacity, transform;
  transition-timing-function: ease-in-out;
  transition-duration: 100ms;
  cursor: default;
}
.psv-tooltip-content {
  color: rgb(255, 255, 255);
  font: 14px sans-serif;
  text-shadow: 0 1px #000;
  padding: 0.5em 1em;
}
.psv-tooltip-arrow {
  position: absolute;
  height: 0;
  width: 0;
  border: 7px solid transparent;
}
.psv-tooltip--top-left,
.psv-tooltip--top-center,
.psv-tooltip--top-right {
  transform: translate3d(0, 5px, 0);
}
.psv-tooltip--top-left .psv-tooltip-arrow,
.psv-tooltip--top-center .psv-tooltip-arrow,
.psv-tooltip--top-right .psv-tooltip-arrow {
  border-top-color: rgba(61, 61, 61, 0.8);
}
.psv-tooltip--bottom-left,
.psv-tooltip--bottom-center,
.psv-tooltip--bottom-right {
  transform: translate3d(0, -5px, 0);
}
.psv-tooltip--bottom-left .psv-tooltip-arrow,
.psv-tooltip--bottom-center .psv-tooltip-arrow,
.psv-tooltip--bottom-right .psv-tooltip-arrow {
  border-bottom-color: rgba(61, 61, 61, 0.8);
}
.psv-tooltip--left-top,
.psv-tooltip--center-left,
.psv-tooltip--left-bottom {
  transform: translate3d(5px, 0, 0);
}
.psv-tooltip--left-top .psv-tooltip-arrow,
.psv-tooltip--center-left .psv-tooltip-arrow,
.psv-tooltip--left-bottom .psv-tooltip-arrow {
  border-left-color: rgba(61, 61, 61, 0.8);
}
.psv-tooltip--right-top,
.psv-tooltip--center-right,
.psv-tooltip--right-bottom {
  transform: translate3d(-5px, 0, 0);
}
.psv-tooltip--right-top .psv-tooltip-arrow,
.psv-tooltip--center-right .psv-tooltip-arrow,
.psv-tooltip--right-bottom .psv-tooltip-arrow {
  border-right-color: rgba(61, 61, 61, 0.8);
}
.psv-tooltip--left-top,
.psv-tooltip--top-left {
  box-shadow: -3px -3px 0 rgba(90, 90, 90, 0.7);
}
.psv-tooltip--top-center {
  box-shadow: 0 -3px 0 rgba(90, 90, 90, 0.7);
}
.psv-tooltip--right-top,
.psv-tooltip--top-right {
  box-shadow: 3px -3px 0 rgba(90, 90, 90, 0.7);
}
.psv-tooltip--left-bottom,
.psv-tooltip--bottom-left {
  box-shadow: -3px 3px 0 rgba(90, 90, 90, 0.7);
}
.psv-tooltip--bottom-center {
  box-shadow: 0 3px 0 rgba(90, 90, 90, 0.7);
}
.psv-tooltip--right-bottom,
.psv-tooltip--bottom-right {
  box-shadow: 3px 3px 0 rgba(90, 90, 90, 0.7);
}
.psv-tooltip--center-left {
  box-shadow: -3px 0 0 rgba(90, 90, 90, 0.7);
}
.psv-tooltip--center-right {
  box-shadow: 3px 0 0 rgba(90, 90, 90, 0.7);
}
.psv-tooltip--visible {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}
.psv-loader-image {
  user-select: none;
  pointer-events: none;
}

.psv-caption-content {
  user-select: none;
}

.swal_approve_button {
  background-color: #ffc107 !important;
  border-color: #ffc107 !important;
}

.swal_approve_button:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5) !important;
  border-color: #ffc107 !important;
}

.swal2-icon.swal2-info {
  border-color: #999999 !important;
  color: #999999 !important;
}

.base-viewer-loader {
  position: absolute;
  z-index: 999999;
  height: 100%;
  width: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s ease-out;
}

.base-viewer-loader:before {
  content: "";
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary)
    transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.swal2-input {
  padding: 10px !important;
  margin: 0 10px !important;
  box-sizing: border-box !important;
  width: calc(100% - 20px) !important;
}

.custom-tooltip {
    max-width: none;
    width: 300px;
    box-shadow: 0 0 0 3px white;
}

.custom-tooltip .psv-tooltip-content {
    padding: 0;
}

.custom-tooltip img {
    width: 100%;
    border-radius: 4px 4px 0 0;
}

.custom-tooltip h2,
.custom-tooltip p {
    margin: 1rem;
    text-align: justify;
}

.psv-inner-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: var(--psv-overlay-zindex);
  inset: 0;
  background: var(--psv-main-background);
  opacity: 1;
  cursor: default;
  pointer-events: none;
}

.psv-inner-overlay-image {
  width: 30%;
  text-align: center;
}

.psv-inner-overlay-image svg {
  width: 40%;
}

@media (max-width: 768px) {
  .psv-inner-overlay-image {
    width: 50%;
  }
  .psv-inner-overlay-image svg {
    width: 60%;
  }
}

.psv-inner-overlay-title {
  color: black;
  margin-top: 1em;
  font: 30px sans-serif;
  text-align: center;
}

.psv-inner-overlay-text {
  color: rgba(0, 0, 0, 0.8);
  font: 20px sans-serif;
  opacity: 0.8;
  text-align: center;
}

.custom-viewer-bar {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  right: 0;
  z-index: 40;
  padding: 4px;
  cursor: pointer;
  box-sizing: border-box;
}

.psv-gallery .psv-panel-close-button {
  display: block;
  z-index: 100;
  top: -4px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 0 0 0 8px;
  padding-bottom: 10px;
}
.psv-gallery .psv-gallery-container {
  scrollbar-width: thin;
}

/*!
 * Photo Sphere Viewer / Gallery Plugin 5.10.1
 * @copyright 2015-2024 Damien "Mistic" Sorel
 * @licence MIT (https://opensource.org/licenses/MIT)
 */
/* src/style.scss */
.psv-container {
  --psv-gallery-plugin-loaded: true;
}
.psv-gallery {
  --psv-gallery-breakpoint: 500px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  background: rgba(61, 61, 61, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  transition: transform ease-in-out 0.1s;
  transform: translateY(100%);
  z-index: 41;
  cursor: default;
}
.psv--has-navbar .psv-gallery {
  bottom: 40px;
  transform: translateY(calc(100% + 40px));
}
.psv-gallery--open {
  transform: translateY(0) !important;
}
.psv-gallery-container {
  display: flex;
  align-content: flex-start;
  padding: 15px;
  overflow-x: auto;
}
.psv-gallery-item {
  flex: none;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  cursor: pointer;
}
.psv-gallery-item:not(:last-child) {
  margin-right: 15px;
}
.psv-gallery-item-title {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  width: 100%;
  height: 2.2em;
  padding: 0.5em;
  background: rgba(0, 0, 0, 0.6);
  font: 16px sans-serif;
  line-height: 1.2em;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
  transition: height ease-in-out 0.2s;
}
.psv-gallery-item-title span {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  user-select: none;
}
.psv-gallery-item-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  transform: scale3d(1, 1, 1);
  transition: transform ease-in-out 0.2s;
  z-index: 1;
}
.psv-gallery-item:hover .psv-gallery-item-title {
  height: 100%;
}
.psv-gallery-item:hover .psv-gallery-item-title span {
  white-space: normal;
}
.psv-gallery-item:hover .psv-gallery-item-thumb {
  transform: scale3d(1.2, 1.2, 1);
}
.psv-gallery-item--active::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 3px solid white;
  z-index: 3;
}
@container psv-container (max-width: 500px) {
  .psv-gallery {
    top: 0;
  }
  .psv-gallery-container {
    flex-wrap: wrap;
    height: calc(100% - 32px);
    margin-top: 32px;
    padding: 0 0 0 15px;
    overflow: hidden auto;
  }
  .psv-gallery-item {
    width: calc(50% - 15px) !important;
    margin-bottom: 15px;
  }
  .psv-gallery .psv-panel-close-button {
    display: block;
    z-index: 10;
  }
}
/*!
 * Photo Sphere Viewer / Markers Plugin 5.10.1
 * @copyright 2015-2024 Damien "Mistic" Sorel
 * @licence MIT (https://opensource.org/licenses/MIT)
 */
/* src/style.scss */
.psv-container {
  --psv-markers-plugin-loaded: true;
}
.psv-markers {
  pointer-events: none;
  position: absolute;
  z-index: 10;
  width: 100%;
  height: 100%;
}
.psv-markers-svg-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 20;
}
.psv-markers-css3d-container {
  position: absolute;
  z-index: 21;
}
.psv-marker {
  display: none;
  pointer-events: auto;
}
.psv-marker--normal {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  overflow: visible;
  background-size: contain;
  background-repeat: no-repeat;
}
.psv-marker--css3d {
  display: block;
}
.psv-marker--transparent {
  display: block;
  opacity: 0;
}
.psv-marker--visible {
  display: block;
}
.psv-marker--has-tooltip,
.psv-marker--has-content {
  cursor: pointer;
}
/*!
 * Photo Sphere Viewer / Virtual Tour Plugin 5.10.1
 * @copyright 2015-2024 Damien "Mistic" Sorel
 * @licence MIT (https://opensource.org/licenses/MIT)
 */
/* src/style.scss */
.psv-container {
  --psv-virtual-tour-plugin-loaded: true;
}
.psv-virtual-tour-tooltip h3 {
  margin: 0;
  padding: 0;
  line-height: normal;
}
.psv-virtual-tour-tooltip h3:not(:last-child) {
  margin-bottom: 0.5em;
}
.psv-virtual-tour-tooltip img {
  display: block;
  width: 200px;
  margin: 0 -1em;
}
.psv-virtual-tour-tooltip img:first-child {
  border-radius: 4px 4px 0 0;
}
.psv-virtual-tour-tooltip img:last-child {
  border-radius: 0 0 4px 4px;
}
.psv-virtual-tour-tooltip img:not(:last-child) {
  margin-bottom: 0.5em;
}
.psv-virtual-tour-tooltip p {
  margin: 0;
  padding: 0;
  line-height: normal;
}
.psv-virtual-tour-link {
  cursor: pointer;
  transform-origin: center;
}
.psv-virtual-tour-arrows {
  position: absolute;
  overflow: visible !important;
  z-index: 11;
  bottom: 0;
  left: 0;
  filter: drop-shadow(0 10px 2px rgba(0, 0, 0, 0.7));
  pointer-events: none;
  transition: margin ease-in-out 0.3s;
}
.psv-virtual-tour-arrows .psv-virtual-tour-link {
  transition: opacity linear 0.2s;
}
.psv-virtual-tour-arrows .psv-virtual-tour-link:hover {
  opacity: 1 !important;
}
.psv-virtual-tour-arrow {
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}
.psv-virtual-tour-arrow:hover {
  animation: psv-virtual-tour-link-button-in 1s ease-out forwards;
}
.psv-virtual-tour-loader {
  display: block;
  position: relative;
  width: 40px;
  height: 30px;
  margin: 0 40px;
}
.psv-virtual-tour-loader div {
  display: inline-block;
  position: absolute;
  left: 10%;
  width: 20%;
  background: #fff;
  animation: psv-virtual-tour-loader 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.psv-virtual-tour-loader div:nth-child(1) {
  left: 10%;
  animation-delay: -0.24s;
}
.psv-virtual-tour-loader div:nth-child(2) {
  left: 40%;
  animation-delay: -0.12s;
}
.psv-virtual-tour-loader div:nth-child(3) {
  left: 70%;
  animation-delay: 0;
}
@keyframes psv-virtual-tour-loader {
  0% {
    top: 10%;
    height: 80%;
  }
  50%, 100% {
    top: 30%;
    height: 40%;
  }
}
@keyframes psv-virtual-tour-link-button-in {
  0% {
    box-shadow: 0 0 0 0 rgba(97, 170, 242, 0);
  }
  20% {
    box-shadow: 0 0 0 5px #61aaf2;
  }
  100% {
    box-shadow: 0 0 0 20px rgba(97, 170, 242, 0);
  }
}
/*!
 * Photo Sphere Viewer / Map Plugin 5.10.1
 * @copyright 2015-2024 Damien "Mistic" Sorel
 * @licence MIT (https://opensource.org/licenses/MIT)
 */
/* src/style.scss */
.psv-container {
  --psv-map-plugin-loaded: true;
}
.psv-map {
  position: absolute;
  margin: 10px;
  z-index: 40;
  transition: all ease-in-out 0.3s;
}
.psv-map__container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: rgba(61, 61, 61, 0.7);
  overflow: hidden;
  transition: all ease-in-out 0.3s;
}
.psv-map__container svg,
.psv-map__container img,
.psv-map__container canvas {
  width: 100%;
  height: 100%;
}
.psv-map--round .psv-map__container {
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
}
.psv-map--square {
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.7);
  overflow: hidden;
}
.psv-map__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.psv-map__toolbar {
  position: absolute;
  bottom: 1em;
  left: calc(50% - 3.25em);
  display: flex;
  justify-content: center;
  align-items: center;
  font: 12px sans-serif;
  padding: 0.25em;
  border-radius: 1.5em;
  background: #222;
  color: white;
  user-select: none;
  transition: opacity ease-in-out 0.3s;
}
.psv-map__toolbar svg {
  height: 1em;
  cursor: pointer;
}
.psv-map__toolbar-text {
  width: 4em;
  text-align: center;
}
.psv-map__button {
  position: absolute;
  width: 34px;
  aspect-ratio: 1;
  line-height: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: center;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: all ease-in-out 0.3s;
}
.psv-map__button svg {
  width: 60%;
}
.psv-map__button--top-left {
  left: 0;
  top: 0;
  border-bottom-right-radius: 8px;
  transform: translate(-3px, -3px);
}
.psv-map__button--top-right {
  right: 0;
  top: 0;
  border-bottom-left-radius: 8px;
  transform: translate(3px, -3px);
}
.psv-map__button--bottom-left {
  left: 0;
  bottom: 0;
  border-top-right-radius: 8px;
  transform: translate(-3px, 3px);
}
.psv-map__button--bottom-right {
  right: 0;
  bottom: 0;
  border-top-left-radius: 8px;
  transform: translate(3px, 3px);
}
.psv-map--round .psv-map__button {
  border-radius: 50%;
}
.psv-map--square .psv-map__button {
  transform: unset;
}
.psv-map--maximized {
  margin: 0 !important;
  width: 100% !important;
  height: 100% !important;
}
.psv--has-navbar .psv-map--maximized {
  height: calc(100% - 40px) !important;
}
.psv-map--maximized,
.psv-map--maximized .psv-map__container {
  border-radius: 0;
}
.psv-map--round.psv-map--maximized .psv-map__button {
  outline: 2px solid currentcolor;
}
.psv-map--round.psv-map--maximized .psv-map__button--top-left {
  left: 10px;
  top: 10px;
}
.psv-map--round.psv-map--maximized .psv-map__button--top-right {
  right: 10px;
  top: 10px;
}
.psv-map--round.psv-map--maximized .psv-map__button--bottom-left {
  left: 10px;
  bottom: 10px;
}
.psv-map--round.psv-map--maximized .psv-map__button--bottom-right {
  right: 10px;
  bottom: 10px;
}
.psv-map--collapsed {
  width: 34px !important;
  height: 34px !important;
}
.psv-map--collapsed > * {
  opacity: 0;
}
.psv-map--collapsed .psv-map__button-close {
  opacity: 1;
  transform: translate(0, 0);
  z-index: 1;
}
.psv-map--top-left {
  top: 0;
  left: 0;
}
.psv-map--top-right {
  top: 0;
  right: 0;
}
.psv-map--bottom-left {
  bottom: 0;
  left: 0;
}
.psv--has-navbar .psv-map--bottom-left {
  bottom: 40px;
}
.psv-map--bottom-right {
  bottom: 0;
  right: 0;
}
.psv--has-navbar .psv-map--bottom-right {
  bottom: 40px;
}
.psv-map__button--bottom-left {
  width: 86px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}

.plans-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  display: none;
  background-color: white;
  border: 1px solid #ccc;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 40;
  height: fit-content;
  width: auto;
  white-space: nowrap;
  overflow-y: hidden;
}

.plans-option {
  padding: 4px 12px;
  cursor: pointer;
  user-select: none;
  background-color: white;
  color: black;
  border-bottom: 1px solid #eee;
}
.psv-map__toolbar {
  top: 1em;
  bottom: unset;
}

@keyframes shake {
  0% {
    transform: translate(1px, 1px) rotate(0deg);
  }
  25% {
    transform: translate(-1px, -1px) rotate(-0.5deg);
  }
  50% {
    transform: translate(-1px, 1px) rotate(0.5deg);
  }
  75% {
    transform: translate(1px, -1px) rotate(0deg);
  }
  100% {
    transform: translate(1px, 1px) rotate(-0.5deg);
  }
}

.active-shake {
  animation: shake 1s infinite;
}

@keyframes psv-virtual-tour-link-button-in-on-delete {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
  }

  20% {
    box-shadow: 0 0 0 5px rgba(255, 0, 0, 1);
  }

  100% {
    box-shadow: 0 0 0 20px rgba(255, 0, 0, 0);
  }
}

.psv-virtual-tour-arrow-delete {
  width: 100%;
  height: 100%;
  padding: 0;
  border: red 1px solid;
  background: none;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
}

.psv-virtual-tour-arrow-delete:hover {
  animation: psv-virtual-tour-link-button-in-on-delete 1s ease-out infinite;
}

.psv-virtual-tour-arrow-rotate {
  width: 100%;
  height: 100%;
  padding: 0;
  border: #ffc107 1px solid;
  background: none;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  cursor: move;
  touch-events: none;
}

.rotate-arrow {
  position: absolute;
}
.rotate-arrow::before {
  content: "\21BB";
  display: block;
  text-align: center;
  font-size: 28px;
  color: #ffc107;
  cursor: pointer;
  text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}

.swal-rotate-arrow-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: 20px auto;
  overflow: hidden;
}

.swal-rotate-arrow-text {
  margin-top: 15px;
  text-align: center;
  font-size: 1.125rem;
  color: #999999;
}

.edit-panel-container {
  position: absolute;
  top: 0px;
  z-index: 50;
  display: none;
  gap: 10px;
  padding: 10px;
  background-color: rgba(61, 61, 61, 0.5);
  width: 100%;
  transform: translateY(0);
  opacity: 0;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.edit-panel-container.opened {
  transform: translateY(0);
  display: flex;
  opacity: 1;
  pointer-events: auto;
}

.edit-panel-container.closed {
  transform: translateY(-100%);
  display: none;
  opacity: 0;
  pointer-events: none;
}

.edit-panel-container .psv-panel-close-button {
  display: block;
  right: 20px;
  z-index: 100;
  top: -4px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 0 0 0 8px;
  padding-bottom: 10px;
  padding-left: 8px;
}

.region-selection {
  position: absolute;
  border: 2px solid red;
  z-index: 1000;
}
.region-selection-buttons {
  position: absolute;
  display: flex;
  gap: 10px;
  z-index: 1000;
  cursor: pointer;
}

.marker-modal {
  text-align: left;
}

.marker-label {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.marker-adv-toggle {
  font-size: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 4px 0;
  text-decoration: none;
}
.marker-adv-icon {
  display: inline-block;
  transform: rotate(0deg);
  transition: transform 0.15s ease;
}
.marker-adv-toggle.is-open .marker-adv-icon {
  transform: rotate(180deg);
}

.marker-drop-area {
  position: relative;
  padding: 18px;
  text-align: center;
  border: 2px dashed #6c757d;
  border-radius: 10px;
  background-color: #f8f9fa;
}

.marker-drag-message {
  position: absolute;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.95);
  color: #495057;
  font-size: 1rem;
  z-index: 10;
  pointer-events: none;
  border-radius: 10px;
}

.marker-drop-area.drag-over .marker-drag-message {
  display: flex;
  font-size: 1.2rem;
  border: 2px dashed #0d6efd;
}

.marker-actions {
  padding: 0;
}

.marker-select-btn.btn {
  padding: 2px 8px;
  font-size: 0.875rem;
}

.marker-file-name {
  margin-top: 8px;
  font-size: 12px;
  color: #6c757d;
}

.marker-preview {
  display: none;
  max-width: 100%;
  border-radius: 4px;
  margin-top: 6px;
}

.marker-select-btn.btn {
  font-weight: 600;
  color: #fff;
  background: #ffc107;
  border: 1px solid #ffc107;
}
.marker-select-btn.btn:hover {
  color: #fff;
  background: #ffca2c;
  border-color: #ffca2c;
}
.marker-select-btn.btn:active {
  color: #fff;
  background: #ffb400;
  border-color: #ffb400;
}
.marker-select-btn.btn:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.5);
}

.marker-select-btn.btn:disabled {
  color: #fff;
  background: #ffd768;
  border-color: #ffd768;
  opacity: 0.75;
}

.vitour-viewer-container {
  position: relative;
  width: 100%;
  height: calc(100% - 40px);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.vitour-viewer-container .bg-blur {
  position: absolute;
  opacity: 0.5;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-filter: blur(13px);
  filter: blur(13px);
  z-index: 1;
}
.vitour-viewer-container .vitour-canvas-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.vitour-viewer-container .vitour-canvas-container canvas {
  display: block;
  max-width: 100%;
  max-height: 100%;
  margin: 0 auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .vitour-viewer-container .vitour-canvas-container {
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .vitour-viewer-container .vitour-canvas-container canvas {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}

#info-box {
  position: absolute;
  padding: 8px;
  background: rgba(0, 0, 0, 0.4);

  color: #feb900;
  z-index: 10;
  font-size: 14px;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  text-align: left;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

#info-box .name {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 2px;
}

#info-box .phone {
  font-size: 14px;
  color: #ffdb70;
}

