<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* VISOR 3D 
 * Author: Scopia Visual Interfaces Systems sl, https://www.scopia.es/
 * ------------- */
.visor3d{
    width: 100%;
    max-width: 100%;
    min-height: 400px;
    margin: 1rem 0;
    overflow: hidden;
    color: #fff;
    background-color: #111;
    border: 1px solid #111;
}
.visor3d:focus-visible{
  border: 3px solid #999;
  outline: 3px solid #fff;
  outline-offset: -6px;
}
.visor3d canvas.visor3d-viewer{
    width: 100%;
    height: 100%;
}
.visor3d .visor3d-info{
    width: 100%;
    min-height: 4rem;
    padding: 20px;
    text-align: start;
}
.visor3d .visor3d-title{
    font-size: 14px;
}
.visor3d .visor3d-msg{
    font-size: 12px;
}
.visor3d.error{
    display: grid;
    place-items: center;
    padding: 40px;
    text-align: center;
}
</pre></body></html>