.modal {
    visibility: hidden;
    opacity: 0;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background-color: white;
    z-index: 10;
    transition: visibility 0s, opacity 0.5s linear;
}
.modal-backdrop {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 5;
}
.cloudimage-360-loader {
    display: none;
}
#hover-image {
    display: none;
    position: fixed;
    width: 80px;
    height: auto;
    pointer-events: none;
    z-index: 20;
}
.modal.show {
    visibility: visible;
    opacity: 1;
}
@media only screen and (max-width: 480px) {
    #hover-image {
        width: 100px;
    }
}
.note-3d {
    top: 60%;
    left: 53%;
    width: 100px;
}
.note-3d p {
    line-height: 120%;
    font-size: 11px;
}