@charset "UTF-8";
body {
    margin: 0;
    padding: 0;
}
.none {
    display: none;
}
h3 {
    font-size: large;
    margin: 0 auto 0.5rem 0;
}

.liquid-tooltip {
    width: 15px;
    height: 15px;
    background: #ff1493;
    border: 5px double #fff;
    border-radius: 50%;
    cursor: pointer;
    transform-origin: center;
    animation: fadein 1s ease-in 0s infinite alternate;
}
.liquid-tooltip.ar:after, .liquid-tooltip.td:after {
    content: '';
    position: absolute;
    top: 0;
    left: 20px;
    bottom: 0;
    margin: auto;
    background: #fff url(../img/icon_ar.png?v2) center center no-repeat;
    background-size: 100% auto;
    width: 30px;
    height: 26px;
    padding: 5px;
    border-radius: 5px;
    border: 2px solid #fff;
    box-shadow: 0 0 3px #00000080;
}
.liquid-tooltip.td:after {
    content: '360°';
    color: #fff;
    background: #004b87;
    text-align: center;
    line-height: 26px;
}

.liquid-tooltip:hover {
    z-index: 2;
}
.liquid-tooltip span {
    visibility: hidden;
    position: absolute;
    display: block;
    border-radius: 5px;
    background-color: #000000b3;
    color: #fff;
    font-size: 90%;
    text-align: left;
    line-height: 1.3;
    padding: 1rem;
    cursor: default;
    width: 30vw;
}
.liquid-tooltip.big span {
    width: 40vw;
}
.liquid-tooltip.biggest span {
    width: 80vw;
}
.liquid-tooltip span h3 {
    font-size: medium;
    margin: 7px 0;
}
.liquid-tooltip span div {
    display: table-cell;
    vertical-align: top;
}
.liquid-tooltip span img {
    display: block;
    margin: 5px auto 0 auto;
}
.liquid-tooltip span iframe {
    width: 100%;
    height: 50vh;
}
.liquid-tooltip span div:first-child {
    padding-right: 5px;
}
.liquid-tooltip span div:last-child {
    padding-left: 5px;
}
.liquid-tooltip span div img {
    margin: 0;
}
.liquid-tooltip span:hover {
    background-color: #000;
}
.liquid-tooltip.ar span, .liquid-tooltip.td span {
    width: 80px;
}

.liquid-tooltip:hover, .liquid-tooltip.active {
    animation: none;
}
.liquid-tooltip:hover span {
    visibility: visible;
}
.liquid-tooltip.active span {
    visibility: visible !important;
}
.liquid-tooltip:hover span:after, .liquid-tooltip.active span:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
    bottom: -20px;
    left: -15px;
    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: var(--mh);
    right: 0;
    z-index: 14;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    line-height: 20px;
    padding: .25rem .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: 2px solid transparent;
    letter-spacing: -0.2px;
}
.liquid-thumbnail-item:hover {
    opacity: 1;
}
.liquid-thumbnail-item.active {
    opacity: 1;
    border-color: #fbc003;
    font-weight: bold;
}
.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, .liquid-thumbnail-popup {
    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-popup {
    top: -56px;
    border-radius: 5px;
}
.liquid-thumbnail-popup.active {
    background: #000000cc;
    color: #fbc003;
}
.liquid-thumbnail-prev, .liquid-thumbnail-next {
    pointer-events: none;
    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;
}
.pnlm-controls-container {
    top: var(--mh);
}
.pnlm-load-box {
    opacity: 0;
 }
.pnlm-hotspot.pnlm-scene, .liquid-transition {
    background: transparent url(../img/icon_arrow.png) center center no-repeat;
    background-size: 100% auto;
    width: 100px;
    height: 50px;
    opacity: 0.9;
    cursor: pointer;
 }
.pnlm-hotspot.pnlm-scene:hover, .liquid-transition:hover {
    opacity: 1;
}
.pitchyaw {
    position: fixed;
    z-index: 99;
    top: var(--mh);
    right: 0;
    width: auto;
}

.liquid-popuptip {
    font-size: small;
}

.liquid-popup {
    display: none;
    position: fixed;
    top: 4px;
    left: 4px;
    width: 400px;
    max-width: 94%;
    border: 2px solid #333;
    border-radius: 5px;
    background: #fff;
    opacity: 1;
    color: #333;
    padding: 5px;
}
.liquid-popup img {
    width: 100%;
    height: auto;
}
.liquid-popup h3 {
    margin: .5rem 0;
    font-size: medium;
}
.liquid-popup p {
    font-size: small;
}
.liquid-popup i {
    content: '\0d7';
    position: absolute;
    top: 2px;
    right: 2px;
    background: #fff;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 1;
    font-size: 18px;
    font-style: normal;
    font-weight: bold;
    cursor: pointer;
}

@keyframes fadein {
    0% {
        opacity: 0.8;
    }
    100% {
        opacity: 0;
    }
}
@media (max-width: 575.98px) {
    .liquid-thumbnail-item {
        width: 33vw;
        min-width: 33vw;
    }
    .liquid-tooltip span {
        width: 320px !important;
        font-size: small;
    }
    .liquid-tooltip:hover span {
        visibility: hidden;
    }
    .liquid-ar {
        width: 100%;
        height: 100%;
    }
    .liquid-ar-close, .pitchyaw {
        top: var(--mhs);
    }
    .pnlm-controls-container {
        top: 9rem;
    }
    .liquid-ar-close span {
        display: none;
    }
}