:root {
    --colors_dark_grey: rgba(60, 60, 60, 1);
}  

body {
    margin: 0;
}

#main_3d_canvas_COMMENTED {
	pointer-events: auto;
    width: 100vw;
    height: 100vh;
    display: block;
    background: "Assets/Images/background.png" no-repeat center center ;
    background-size: cover;
}

#canvas_overlay {
    pointer-events: none;
    position: absolute;
    height: 100vh;
    width: 100vw;
}

#reset_pos_button {
	pointer-events: auto;
	position: absolute;
    width: 10vw;
    height: 10vw;
	bottom: 0px;
	right: 0px;
  	margin-bottom: 1px;
  	margin-right: 1px;
    background: url("./Assets/UI/RESET_POSITION.png");
    background-size: cover;
    cursor: pointer;
    border: none;
	
}

#loading_bar_main {
    pointer-events: none;
    background-color: var(--colors_dark_grey);
}

#loading_bar_fill {
    pointer-events: none;
    background-color: white;
}