/*!
 * PhotoSphereViewer 5.1.4
 * @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: flex;
    position: absolute;
    z-index: 90;
    bottom: -40px;
    left: 0;
    width: 100%;
    height: 40px;
    background: rgba(61,61,61,.5);
    transition: bottom ease-in-out .1s
}

.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: 0 0;
    color: rgba(255,255,255,.7)
}

.psv-button--active {
    background: rgba(255,255,255,.2)
}

.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
}

.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)
}

.psv-panel-close-button {
    display: none;
    position: absolute;
    top: -1px;
    right: 0;
    width: 19.2px;
    height: 19.2px;
    padding: 6.4px;
    background: 0 0;
    color: #fff;
    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: #dcdcdc;
    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
}

.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
}

.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(even),.psv-panel-menu--stripped .psv-panel-menu-item:nth-child(even)::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: 200px;
    background: rgba(61,61,61,.8);
    border-radius: 4px;
    padding: .5em 1em;
    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: 0 1px #000
}

.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: rgba(61,61,61,.8)
}

.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(61,61,61,.8)
}

.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(61,61,61,.8)
}

.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(61,61,61,.8)
}

.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)
}

.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
}

/*!
 * PhotoSphereViewer.GalleryPlugin 5.1.4
 * @copyright 2023 Damien "Mistic" Sorel
 * @licence MIT (https://opensource.org/licenses/MIT)
 */
.psv-gallery {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    background: rgba(61,61,61,.5);
    border-bottom: 1px solid rgba(255,255,255,.7);
    overflow-x: auto;
    overflow-y: hidden;
    transition: transform ease-in-out .1s;
    transform: translateY(100%);
    z-index: 90
}

.psv--has-navbar .psv-gallery {
    bottom: 40px;
    transform: translateY(calc(100% + 40px))
}

.psv-gallery--open {
    transform: translateY(0)!important
}

.psv-gallery-container {
    display: flex;
    padding: 15px
}

.psv-gallery-item {
    flex: none;
    position: relative;
    margin-right: 15px;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer
}

.psv-gallery-item-wrapper {
    width: 100%;
    height: 0
}

.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: .5em;
    background: rgba(0,0,0,.6);
    font: 16px sans-serif;
    line-height: 1.2em;
    color: rgba(255,255,255,.7);
    z-index: 2;
    transition: height ease-in-out .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 .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 #fff;
    z-index: 3
}

@media screen and (max-width: 500px) {
    .psv-gallery {
        top:0;
        overflow-x: hidden;
        overflow-y: auto
    }

    .psv-gallery-container {
        flex-wrap: wrap;
        margin-right: -15px;
        margin-top: 32px;
        padding-top: 0
    }

    .psv-gallery-item {
        width: calc(50% - 15px)!important;
        margin-bottom: 15px
    }

    .psv-gallery .psv-panel-close-button {
        display: block;
        z-index: 10
    }
}
