/* __V3D_TEMPLATE__ - template-based file; delete this line to prevent this file from being updated */

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

.v3d-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    cursor: grab;
}

.v3d-container:active {
    cursor: grabbing;
}

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

/* .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); }

.screen_button {
    position: absolute;
    bottom: 20px;
    left: 50px;
    cursor: pointer;
    background-size: 100% 100%;
    display: inline-block;
    z-index: 1;
    color: #000000;
    border: 1px solid #000000;
    padding: 10px 20px;
    border-radius: 5px;
}

#screen_2_button {
    left: 200px;
}

#screen_3_button {
    left: 350px;
}

#screen_4_button {
    left: 500px;
}

#screen_5_button {
    left: 650px;
}

#hall_button {
    left: 1600px;
}

#door_button {
    left: 1750px;
}

#hq {
    bottom: 400px;
}

#mq {
    bottom: 350px;
}

#lq {
    bottom: 300px;
}

#mirror {
    bottom: 100px;
}

#SSAA {
    bottom: 200px;
}

/* Dropdown Button */
.btn {
    background-color: #252525;
    color: white;
    padding: 16px;
    font-size: 16px;
    border: none;
    outline: none;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: absolute;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    z-index: 1;
}

/* Links inside the dropdown */
.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {background-color: #ddd}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Change the background color of the dropdown button when the dropdown content is shown */
.btn:hover, .dropdown:hover .btn  {
    background-color: #0b7dda;
}