#fake3d-overlay {
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #223;
    font-family: Ruda, sans-serif;
    touch-action: none;
}
#fake3d-overlay canvas {
    display: block;
}
.gslide-inline .ginlined-content { padding: 0; }
.glightbox-button-hidden { display: none; }
#fake3d-overlay .error {
    color: #eaa;
}
#fake3d-info {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
    z-index: 100;
    font-size: 18px;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,
                 -1px  1px 0 #000, 1px  1px 0 #000;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.3s ease-out;
}
#fake3d-info.hidden {
    opacity: 0;
}
#motion-btn {
    display:none;
    position:absolute;
    top:10px;
    right:10px;
    z-index:101;
    padding:6px 10px;
    font-size:12px;
    border-radius:4px;
    border:none;
    background:rgba(0,0,0,0.6);
    color:#fff;
    cursor:pointer;
}
#fake3d-loading {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 200;
}
#fake3d-loading .spinner {
    border: 4px solid rgba(255,255,255,0.3);
    border-top: 4px solid white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
#fake3d-loading .text {
    margin-top: 1em;
    font-size: 14px;
    color: white;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,
                 -1px  1px 0 #000, 1px  1px 0 #000;
}
#fake3d-overlay @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}