

.rtsp-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.rtsp-container .rtsp-item iframe {
    width: 100%;
    height: 400px;
    border: none;
}
@media (min-width: 768px) {
    .rtsp-container {
        flex-direction: row;
    }
    .rtsp-container .rtsp-item {
        width: 50%;
    }
}


#panorama {
    border: solid 1px #eeeeee;
}
.pannellum-hotspot-move {
    height: 100px;
    width: 100px;
    background-image: url("/image/panorama.hotspot.svg");
    background-position: center;
    background-size: 100px 100px;
}
.pannellum-hotspot-move-dark {
    height: 100px;
    width: 100px;
    background-image: url("/image/panorama.hotspot.dark.svg");
    background-position: center;
    background-size: 100px 100px;
}
.pannellum-hotspot-entrance-dark,
.pannellum-hotspot-entrance,
.pannellum-hotspot-exit-dark,
.pannellum-hotspot-exit {
    height: 60px;
    width: 60px;
    background-position: center;
    background-size: 60px 60px;
}
.pannellum-hotspot-entrance-dark {
    background-image: url("/image/panorama.entrance.dark.svg");
}
.pannellum-hotspot-entrance {
    background-image: url("/image/panorama.entrance.svg");
}
.pannellum-hotspot-exit-dark {
    background-image: url("/image/panorama.exit.dark.svg");
}
.pannellum-hotspot-exit {
    background-image: url("/image/panorama.exit.svg");
}
div.custom-tooltip span {
    visibility: hidden;
    position: absolute;
    border-radius: 3px;
    background-color: #fff;
    color: #000;
    text-align: center;
    max-width: 200px;
    padding: 5px 10px;
    margin-left: -220px;
    cursor: default;
}
div.custom-tooltip:hover span{
    visibility: visible;
}
div.custom-tooltip:hover span:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-width: 10px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    bottom: -20px;
    left: -10px;
    margin: 0 50%;
}