﻿div {
    user-select: none;
}


Body {
    overflow-x: hidden;
}

.imagin3D_container {
    background: var(--back_color_imagin)
}

.imagin3D, .imagin3D_client, .imagin3D_full {
    margin: 0;
    padding: 0;
    background: var(--back_color_imagin);
    touch-action: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none
}

.imagin3D_client {
    display: flex;
    position: relative;
    width: 100vw;
    height: 70vh;
}

.imagin3D_full {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: calc(var(--vh, 1vh) * 100);
}

.canvas3D, .canvas2D, .canvasGUI {
    margin: 0;
    padding: 0;
    position: absolute;
    display: block;
    width: 100vw;
    height: inherit;
    min-width: 400px;
    min-height: 400px;
    touch-action: none
}

.canvas2D, .canvasGUI {
    background-color: transparent;
    -webkit-tap-highlight-color: transparent;
    touch-action: none
}

.canvas3D {
    z-index: 1;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.canvas2D {
    z-index: 2;
}

.canvasGUI {
    z-index: 3;
    /*width: 100%;*/
}
