body {
    margin: 0px;
    overflow: hidden;
}

#app-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
}

.fullscreen-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: none;
    z-index: 1;
}

#dreamer {
	position: absolute;
	bottom: 20px;
	right: 30px;
}

#dreamer-url {
  /*display: none;*/
  color: lightgray;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .75em;
}

a:hover#dreamer-url {
  color: gainsboro;
  text-decoration: none
}

.fullscreen-open {
    background-image: url('media/fullscreen_open.svg');
}

.fullscreen-close {
    background-image: url('media/fullscreen_close.svg');
}

/* removes tap blinking on ios devices */
* { -webkit-tap-highlight-color:rgba(0,0,0,0); }

/*styling for annotations*/
.app-annotation {
	color: red;
    background-color: white;
	font-size: 1em;
	border-radius: .5em;
	border: 1px solid black;
}
.app-annotation-dialog {
	color: red;
    background-color: white;
    font-size: 1em;
	padding: .5em;
	border: 1px solid black;
}
.app-annotation-transparent {
	opacity: 0;
}
#annotation-container {
	display: none;
}
/* Hide the logo */
.app-simple-preloader-logo {
    display: none !important;
}

/* White background - full screen */
.app-simple-preloader-background {
    background-color: #ffffff !important;
    background: white !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 99999 !important;
}

/* Container - centered with black outline */
.app-simple-preloader-container {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 400px !important;
    max-width: 80% !important;
    height: 40px !important;
    background-color: #ddd !important;
    border: 1px solid #000000 !important;
}

/* The orange progress bar */
.app-simple-preloader-bar {
    background: orange !important;
    height: 100% !important;
}