/* Panorama extension, https://github.com/GiovanniSalmeri/yellow-panorama */

div.panorama {
    position: relative;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
div.panorama-sliding {
    position: relative;
    overflow-x: auto;
    scrollbar-width: none;
    cursor: grab;
}
div.panorama-sliding::-webkit-scrollbar { 
    display: none;
}
div.panorama .icon {
    height: 30px;
    width: 30px;
    cursor: pointer;
    position: absolute;
    bottom: 15px;
    right: 15px;
    background-image: url("panorama.svg");
}
.content div.panorama img {
    max-width: none;
    width: auto;
	max-height: 720px;
    height: auto;
}
