@charset "UTF-8";
.none {
    display: none;
}
.liquid-hotspot {
    width: 50px;
    height: 50px;
    background: transparent url('360v2/hotspot.png') left top no-repeat;
    background-size: 100%;
    cursor: pointer;
    animation: fadein 3s ease-in 0s infinite alternate;
}
.liquid-hotspot:hover {
    animation: none;
}
.liquid-tooltip span {
    visibility: hidden;
    position: absolute;
    border-radius: 3px;
    background-color: #333;
    color: #fff;
    text-align: center;
    max-width: 200px;
    padding: 5px 10px;
    margin-left: -220px;
    cursor: default;
}
.liquid-tooltip:hover span{
    visibility: visible;
}
.liquid-tooltip:hover span:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    bottom: -20px;
    left: -10px;
    margin: 0 50%;
}
.liquid-ar {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    z-index: 13;
    border: 0 none;
    width: 100%;
    height: 100%;
}
.liquid-ar-close {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 14;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    padding: .25rem 1.5rem;
    text-decoration: none;
    opacity: 0.9;
    cursor: pointer;
    border: 2px solid #32BDEB;
}
.liquid-thumbnail {
    z-index: 9;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    background: #00000080;
}
.liquid-thumbnail-items {
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    overflow-x: scroll;
}
.liquid-thumbnail-item {
    width: 16vw;
    min-width: 16vw;
    opacity: 0.9;
    position: relative;
    margin: 5px;
    border: 1px solid transparent;
}
.liquid-thumbnail-item:hover {
    opacity: 1;
}
.liquid-thumbnail-item.active {
    opacity: 1;
    border-color: #fff;
}
.liquid-thumbnail-item a {
    cursor: pointer;
}
.liquid-thumbnail-item img {
    display: block;
    width: 100%;
    height: auto;
}
.liquid-thumbnail-item p {
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: center;
    width: 98%;
    margin: 0;
    padding: 2%;
    color: #fff;
    font-size: small;
    text-shadow: 0 0 2px #333;
}
.liquid-thumbnail-toggle {
    z-index: 9;
    position: absolute;
    background: #00000080;
    width: 77px;
    height: 24px;
    line-height: 24px;
    top: -24px;
    right: 7px;
    color: #fff;
    font-size: small;
    text-align: center;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
}
.liquid-thumbnail-prev, .liquid-thumbnail-next {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50px;
    cursor: pointer;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2250%22%20height%3D%2250%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M15%2018l-6-6%206-6%22%2F%3E%3C%2Fsvg%3E'),
    linear-gradient(to right, #00000052, transparent);
    background-position: 50%;
    background-repeat: no-repeat;
}
.liquid-thumbnail-next {
    left: auto;
    right: 0;
    background: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2250%22%20height%3D%2250%22%20viewBox%3D%220%200%2024%2024%22%20fill%3D%22none%22%20stroke%3D%22%23ffffff%22%20stroke-width%3D%222%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%3E%3Cpath%20d%3D%22M9%2018l6-6-6-6%22%2F%3E%3C%2Fsvg%3E'),
    linear-gradient(to left, #00000052, transparent);
    background-position: 50%;
    background-repeat: no-repeat;
}

.liquid-map {
    left: 48px;
}
.liquid-map-modal .map {
    max-width: 500px;
}
.liquid-map-modal a.page {
    cursor: pointer;
    height: 30px;
    width: 30px;
    font-size: 20px;
    line-height: 1.5;
}
.liquid-map-modal a.page.active {
    background: #32BDEB;
}
.liquid-map-modal img {
    vertical-align: middle;
}

#panorama {
    width: 100vw;
    height: 100vh;
}
.pnlm-container {
    background: #333;
}
.pnlm-panorama-info {
    bottom: 0;
    border-radius: 0 5px 0 0;
}
.pnlm-about-msg {
    display: none !important;
}
@keyframes fadein {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}
@media (max-width: 575.98px) {
    .liquid-thumbnail-item {
        width: 33vw;
        min-width: 33vw;
    }
    .liquid-ar {
        width: 100%;
        height: 100%;
    }
}