
/* /node_modules/@photo-sphere-viewer/core/index.css */
/*!
 * Photo Sphere Viewer 5.14.1
 * @copyright 2014-2015 Jérémy Heleine
 * @copyright 2015-2026 Damien "Mistic" Sorel
 * @licence MIT (https://opensource.org/licenses/MIT)
 */
.psv-container {
  --psv-core-loaded: true;
  background: radial-gradient(#fff 0%, #fdfdfd 16%, #fbfbfb 33%, #f8f8f8 49%, #efefef 66%, #dfdfdf 82%, #bfbfbf 100%);
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  container: psv-container / size;
}

.psv-container * {
  box-sizing: content-box;
}

.psv-canvas-container {
  z-index: 0;
  transition: opacity .1s linear;
  position: absolute;
  top: 0;
  left: 0;
}

.psv-fullscreen-emulation {
  z-index: 9999;
  width: 100% !important;
  height: 100% !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
}

.psv-loader-container {
  z-index: 80;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.psv-loader {
  --psv-loader-border: 3px;
  --psv-loader-tickness: 10px;
  color: #ffffffb3;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 150px;
  display: flex;
  position: relative;
}

.psv-loader-canvas {
  color: #3d3d3d80;
  z-index: -1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.psv-loader-text {
  text-align: center;
  font: 600 16px sans-serif;
}

.psv-loader--undefined .psv-loader-canvas {
  animation: 2s cubic-bezier(.75, .25, .25, .75) infinite psv-loader;
}

@keyframes psv-loader {
  0% {
    transform: rotate(0);
  }

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

.psv-navbar {
  z-index: 90;
  cursor: default;
  background: #3d3d3d80;
  width: 100%;
  height: 40px;
  font: 16px sans-serif;
  transition: bottom .1s ease-in-out;
  display: flex;
  position: absolute;
  bottom: -40px;
  left: 0;
}

.psv-navbar--open {
  bottom: 0;
}

.psv-navbar, .psv-navbar * {
  box-sizing: content-box;
}

.psv-button {
  cursor: pointer;
  color: #ffffffb3;
  background: none;
  flex: none;
  width: 20px;
  height: 20px;
  padding: 10px;
  position: relative;
}

.psv-button--active {
  background: #fff3;
}

.psv-button--disabled {
  pointer-events: none;
  opacity: .5;
}

.psv-button-svg {
  width: 100%;
  vertical-align: initial;
  transition: transform .2s;
  transform: scale(1);
}

.psv-button:not(.psv-button--disabled):focus-visible {
  outline-offset: -2px;
  outline: 2px solid #007cff;
}

.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-download-button {
  color: #ffffffb3 !important;
  text-decoration: none !important;
}

.psv-download-button:before, .psv-download-button:after {
  display: none !important;
}

.psv-custom-button {
  width: auto;
  min-width: 20px;
}

.psv-custom-button--no-padding {
  height: 100%;
  padding: 0;
}

.psv-caption {
  color: #ffffffb3;
  text-align: center;
  cursor: unset;
  padding: unset;
  height: unset;
  width: unset;
  flex: 100%;
  overflow: hidden;
}

.psv-caption-content {
  white-space: nowrap;
  padding: 10px;
  display: inline-block;
}

.psv-zoom-range.psv-button {
  width: 80px;
  max-width: 600px;
  height: 1px;
  margin: 10px 0;
  padding: 9.5px 0;
}

.psv-zoom-range-line {
  background: #ffffffb3;
  width: 80px;
  height: 1px;
  transition: all .3s;
  position: relative;
}

.psv-zoom-range-handle {
  background: #ffffffb3;
  border-radius: 50%;
  width: 7px;
  height: 7px;
  transition: transform .3s;
  position: absolute;
  top: -3px;
  transform: scale(1);
}

.psv-zoom-range:not(.psv-button--disabled):hover .psv-zoom-range-line {
  box-shadow: 0 0 2px #ffffffb3;
}

.psv-zoom-range:not(.psv-button--disabled):hover .psv-zoom-range-handle {
  transform: scale(1.3);
}

.psv-notification {
  z-index: 100;
  box-sizing: border-box;
  opacity: 0;
  justify-content: center;
  width: 100%;
  padding: 0 2em;
  transition-property: opacity, bottom;
  transition-duration: .2s;
  transition-timing-function: ease-in-out;
  display: flex;
  position: absolute;
  bottom: -40px;
}

.psv-notification-content {
  color: #fff;
  background: #3d3d3dcc;
  border-radius: 4px;
  max-width: 50em;
  padding: .5em 1em;
  font: 14px sans-serif;
}

.psv-notification--visible {
  opacity: 100;
  bottom: 80px;
}

.psv-overlay {
  z-index: 110;
  opacity: .8;
  cursor: default;
  background: radial-gradient(#fff 0%, #fdfdfd 16%, #fbfbfb 33%, #f8f8f8 49%, #efefef 66%, #dfdfdf 82%, #bfbfbf 100%);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  inset: 0;
}

.psv-overlay-image {
  text-align: center;
  color: #303030;
  width: 100%;
}

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

@container psv-container (orientation: landscape) {
  .psv-overlay-image svg {
    width: 33%;
  }
}

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

.psv-overlay-text {
  color: #000c;
  opacity: .8;
  text-align: center;
  font: 20px sans-serif;
}

.psv-panel {
  z-index: 90;
  opacity: 0;
  cursor: default;
  background: #0a0a0ab3;
  width: 400px;
  max-width: calc(100% - 9px);
  height: 100%;
  margin-left: 9px;
  transition-property: opacity, transform;
  transition-duration: .1s;
  transition-timing-function: ease-in-out;
  position: absolute;
  right: 0;
  transform: translate3d(100%, 0, 0);
}

.psv--has-navbar .psv-panel {
  height: calc(100% - 40px);
}

.psv-panel-close-button {
  color: #fff;
  cursor: pointer;
  background: none;
  width: 19.2px;
  height: 19.2px;
  padding: 6.4px;
  transition: background .3s ease-in-out;
  display: none;
  position: absolute;
  top: -1px;
  right: 0;
}

.psv-panel-close-button svg {
  transition: transform .3s ease-in-out;
}

.psv-panel-close-button:hover {
  background: #000000e6;
}

.psv-panel-close-button:hover svg {
  transform: scale(-1);
}

.psv-panel-resizer {
  cursor: col-resize;
  background-color: #000000e6;
  width: 9px;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: -9px;
}

.psv-panel-resizer:before {
  content: "";
  background: none;
  width: 1px;
  height: 1px;
  margin-top: -14.5px;
  position: absolute;
  top: 50%;
  left: 5.5px;
  box-shadow: 1px 0 #fff, 3px 0 #fff, 5px 0 #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;
}

.psv-panel-content {
  box-sizing: border-box;
  color: #dcdcdc;
  width: 100%;
  height: 100%;
  font: 16px sans-serif;
  overflow: auto;
}

.psv-panel-content:not(.psv-panel-content--no-margin) {
  padding: 1em;
}

.psv-panel-content--no-interaction {
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}

.psv-panel--open {
  opacity: 1;
  transition-duration: .2s;
  transform: translate3d(0, 0, 0);
}

.psv-panel--open .psv-panel-close-button, .psv-panel--open .psv-panel-resizer {
  display: block;
}

@container psv-container (width <= 400px) {
  .psv-panel {
    max-width: none;
    width: 100% !important;
  }

  .psv-panel-resizer {
    display: none !important;
  }
}

.psv-panel-menu {
  flex-direction: column;
  height: 100%;
  display: flex;
}

.psv-panel-menu-title {
  flex: none;
  align-items: center;
  margin: 24px 12px;
  font: 24px sans-serif;
  display: flex;
}

.psv-panel-menu-title svg {
  width: 24px;
  height: 24px;
  margin-right: 12px;
}

.psv-panel-menu-list {
  flex: 1;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-x: hidden;
}

.psv-panel-menu-item {
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  min-height: 1.5em;
  padding: .5em 1em;
  transition: background .1s ease-in-out;
  display: flex;
}

.psv-panel-menu-item--active {
  outline-offset: -1px;
  outline: 1px solid;
}

.psv-panel-menu-item-icon {
  flex: none;
  width: 1.5em;
  height: 1.5em;
  margin-right: .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-offset: -2px;
  outline: 2px solid #007cff;
}

.psv-panel-menu--stripped .psv-panel-menu-item:hover {
  background: #fff3;
}

.psv-panel-menu--stripped .psv-panel-menu-item:nth-child(odd), .psv-panel-menu--stripped .psv-panel-menu-item:nth-child(odd):before {
  background: #ffffff1a;
}

.psv-panel-menu--stripped .psv-panel-menu-item:nth-child(2n), .psv-panel-menu--stripped .psv-panel-menu-item:nth-child(2n):before {
  background: none;
}

.psv-container:not(.psv--is-touch) .psv-panel-menu-item:hover {
  background: #fff3;
}

.psv-tooltip {
  z-index: 50;
  box-sizing: border-box;
  opacity: 0;
  cursor: default;
  background: #3d3d3dcc;
  border-radius: 4px;
  max-width: 200px;
  transition-property: opacity, transform;
  transition-duration: .1s;
  transition-timing-function: ease-in-out;
  position: absolute;
}

.psv-tooltip-content {
  color: #fff;
  text-shadow: 0 1px #000;
  padding: .5em 1em;
  font: 14px sans-serif;
}

.psv-tooltip-arrow {
  border: 7px solid #0000;
  width: 0;
  height: 0;
  position: absolute;
}

.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: #3d3d3dcc;
}

.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: #3d3d3dcc;
}

.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: #3d3d3dcc;
}

.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: #3d3d3dcc;
}

.psv-tooltip--left-top, .psv-tooltip--top-left {
  box-shadow: -3px -3px #5a5a5ab3;
}

.psv-tooltip--top-center {
  box-shadow: 0 -3px #5a5a5ab3;
}

.psv-tooltip--right-top, .psv-tooltip--top-right {
  box-shadow: 3px -3px #5a5a5ab3;
}

.psv-tooltip--left-bottom, .psv-tooltip--bottom-left {
  box-shadow: -3px 3px #5a5a5ab3;
}

.psv-tooltip--bottom-center {
  box-shadow: 0 3px #5a5a5ab3;
}

.psv-tooltip--right-bottom, .psv-tooltip--bottom-right {
  box-shadow: 3px 3px #5a5a5ab3;
}

.psv-tooltip--center-left {
  box-shadow: -3px 0 #5a5a5ab3;
}

.psv-tooltip--center-right {
  box-shadow: 3px 0 #5a5a5ab3;
}

.psv-tooltip--visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
