/**
 * Minified by jsDelivr using clean-css v5.3.1.
 * Original file: /npm/@photo-sphere-viewer/core@5.1.1/index.css
 *
 * Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
 */
/*!
 * PhotoSphereViewer 5.1.1
 * @copyright 2014-2015 JÃ©rÃ©my Heleine
 * @copyright 2023 Damien "Mistic" Sorel
 * @licence MIT (https://opensource.org/licenses/MIT)
 */
.psv-container {
    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 .1s
}

.psv-canvas {
    display: block
}

.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 {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255,255,255,.7);
    width: 150px;
    height: 150px;
    outline: 3px solid transparent
}

.psv-loader-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    color: rgba(61,61,61,.5);
    outline: 10px solid transparent;
    z-index: -1
}

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

.psv-navbar {
    display: initial;
    position: absolute;
    z-index: 90;
    /*bottom: -40px;*/
    top:5%;
    left: -50px;
    /*width: 100%;*/
    width: 50px;
    height: 100%;
    /*background: rgba(61,61,61,.5);*/
    background: none;
    transition: bottom ease-in-out .1s
}

.psv-navbar--open {
    right: 0;
    left: initial;
}

.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: 0 0;
    /*color: rgba(255,255,255,.7)*/
    color: rgba(255,255,255,1);
    background: rgba(0,0,0,0.5);
    border-radius: 50%;
    margin: 8px;
}

.psv-button--active {
   /* background: rgba(255,255,255,.2);*/
    color: rgba(255,255,255,1);
    background: rgba(0,111,118,0.9);
    border-radius: 50%;
}

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

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

.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-caption {
    flex: 1 1 100%;
    color: rgba(255,255,255,.7);
    overflow: hidden;
    text-align: center;
    cursor: default;
    padding: unset;
    height: unset;
    width: unset;
    display: none;
}

.psv-caption-content {
    display: inline-block;
    padding: 10px;
    font: 16px sans-serif;
    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,.7);
    transition: all .3s ease
}

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

.psv-zoom-range:not(.psv-button--disabled):hover .psv-zoom-range-line {
    box-shadow: 0 0 2px rgba(255,255,255,.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: .2s
}

.psv-notification-content {
    max-width: 50em;
    background: rgba(61,61,61,.8);
    border-radius: 4px;
    padding: .5em 1em;
    font: 14px sans-serif;
    color: #fff
}

.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;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: radial-gradient(#fff 0,#fdfdfd 16%,#fbfbfb 33%,#f8f8f8 49%,#efefef 66%,#dfdfdf 82%,#bfbfbf 100%);
    opacity: .8
}

.psv-overlay-image {
    margin-bottom: 4vh
}

.psv-overlay-image svg {
    width: 50vw
}

@media (orientation: landscape) {
    .psv-overlay-image svg {
        width:25vw
    }
}

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

.psv-overlay-text {
    color: rgba(0,0,0,.8);
    font: 20px sans-serif;
    opacity: .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,.7);
    transform: translate3d(100%,0,0);
    opacity: 0;
    transition-property: opacity,transform;
    transition-timing-function: ease-in-out;
    transition-duration: .1s;
    cursor: default;
    margin-left: 9px
}

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

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

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

.psv-panel-close-button:hover {
    /*background: rgba(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,.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 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;
    background: 0 0
}

.psv-panel-content {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    color: #eaeaea;
    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: .2s
}

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

@media screen and (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;
    justify-content: center;
}

.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: .5em 1em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: background .1s ease-in-out;
    outline: 0!important;
}

.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: .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,.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,.1)*/
/*}*/

/*.psv-panel-menu--stripped .psv-panel-menu-item:nth-child(2n),.psv-panel-menu--stripped .psv-panel-menu-item:nth-child(2n)::before {*/
/*    background: 0 0*/
/*}*/

/*.psv-container:not(.psv--is-touch) .psv-panel-menu-item:hover {*/
/*    background: rgba(255,255,255,.2)*/
/*}*/

.psv-tooltip {
    position: absolute;
    z-index: 50;
    box-sizing: border-box;
    max-width: 500px;
    /*background: rgba(61,61,61,.8);*/
    background: rgb(0 111 118);
    border-radius: 4px;
    opacity: 0;
    transition-property: opacity,transform;
    transition-timing-function: ease-in-out;
    transition-duration: .1s
}

.psv-tooltip-content {
    color: #fff;
    font: 14px sans-serif;
    text-shadow: initial;
    letter-spacing: 2px;
}
.psv-tooltip-content a{
    color: #fff;
}

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

.psv-tooltip--top-center,.psv-tooltip--top-left,.psv-tooltip--top-right {
    transform: translate3d(0,5px,0)
}

.psv-tooltip--top-center .psv-tooltip-arrow,.psv-tooltip--top-left .psv-tooltip-arrow,.psv-tooltip--top-right .psv-tooltip-arrow {
    border-top-color: rgb(0, 111, 118);
}

.psv-tooltip--bottom-center,.psv-tooltip--bottom-left,.psv-tooltip--bottom-right {
    transform: translate3d(0,-5px,0)
}

.psv-tooltip--bottom-center .psv-tooltip-arrow,.psv-tooltip--bottom-left .psv-tooltip-arrow,.psv-tooltip--bottom-right .psv-tooltip-arrow {
    border-bottom-color: rgba(0, 111, 118)
}

/*.psv-tooltip--center-left,.psv-tooltip--left-bottom,.psv-tooltip--left-top {*/
/*    transform: translate3d(5px,0,0)*/
/*}*/

.psv-tooltip--center-left .psv-tooltip-arrow,.psv-tooltip--left-bottom .psv-tooltip-arrow,.psv-tooltip--left-top .psv-tooltip-arrow {
    border-left-color: rgba(0, 111, 118)
}

.psv-tooltip--center-right,.psv-tooltip--right-bottom,.psv-tooltip--right-top {
    transform: translate3d(-5px,0,0)
}

.psv-tooltip--center-right .psv-tooltip-arrow,.psv-tooltip--right-bottom .psv-tooltip-arrow,.psv-tooltip--right-top .psv-tooltip-arrow {
    border-right-color: rgba(0, 111, 118)
}

.psv-tooltip--left-top,.psv-tooltip--top-left {
    box-shadow: -3px -3px 0 rgba(90,90,90,.7)
}

.psv-tooltip--top-center {
    /*box-shadow: 0 -3px 0 rgba(90,90,90,.7)*/
    box-shadow: initial;
}

.psv-tooltip--right-top,.psv-tooltip--top-right {
    box-shadow: 3px -3px 0 rgba(90,90,90,.7)
}

.psv-tooltip--bottom-left,.psv-tooltip--left-bottom {
    box-shadow: -3px 3px 0 rgba(90,90,90,.7)
}

.psv-tooltip--bottom-center {
    box-shadow: 0 3px 0 rgba(90,90,90,.7)
}

.psv-tooltip--bottom-right,.psv-tooltip--right-bottom {
    box-shadow: 3px 3px 0 rgba(90,90,90,.7)
}

.psv-tooltip--center-left {
    box-shadow: -3px 0 0 rgba(90,90,90,.7)
}

.psv-tooltip--center-right {
    box-shadow: 3px 0 0 rgba(90,90,90,.7)
}

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

/*# sourceMappingURL=/sm/7695b44888d46121d59e0b3dd35b11bcba537a6e0e64103e737476e7cbd8d958.map */
