html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    font-family: 'Arial';
    color: #3B5160;
}
.content {
    flex: 1; 
}
#progress-container {
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
    width: 100%;
    height: 30px;
    background-color: rgba(0, 0, 0, 0.7);
}
#progress {
    width: 0;
    height: 100%;
    background-color: #FDCB00;
    cursor: pointer;
}
.tools {
    position: fixed;
    top: 50px;
    right: 50px;
    background: rgba(255,255,255,.8);
    width: 320px;
    height: auto;
    padding: 20px;
}
.tools button {
    position: relative;
}
.tools button i {
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -10px;
    font-size: 20px;
}
/*.tools button, #checkButton {
    width: 100%;
    background: white;
    border: 1px solid #3B5160;
    height: 30px;
    line-height: 30px;
    text-transform: uppercase;
}*/
.tools #subtools {
    display: none;
    margin-top: 20px;
}
.tools #coordinates {
    line-height: 1.2em;
}
.spinner {
    display: none;
    text-align: center;
}
.spinner i {
    color: #FDCB00;
    animation: spin 1s linear infinite;
    font-size: 25px;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
small {
    display: block;
    margin-top: 20px;
    margin-bottom: 10px;
}
#hotspots {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.3);   
    display: none;
}
#hotspots .inner {
    position: fixed;
    width: 500px;
    height: auto;
    background: white;
    bottom: 100px;
    right: 20px;
    padding: 20px;
    box-sizing: border-box;    
}
#overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0,0,0,.3);
    display: none;
}
#overlay h3 {
    margin-top: 0;
}
#overlay .inner {
    position: fixed;
    width: 500px;
    height: auto;
    background: white;
    bottom: 100px;
    right: 20px;
    padding: 20px;
    box-sizing: border-box;
}
#overlay .inner input.text {
    width: 100%;
    height: 30px;
    line-height: 30px;
    border: 1px solid #3B5160;
    display: block;
    margin-bottom: 15px;
    padding: 0 10px;
    box-sizing: border-box;
}
#overlay table {
    width: 100%;
    border-collapse: collapse;
    display: none;
}
.table-outer {
    max-height: 300px;
    overflow-y: scroll;
}
table, th, td {
    border: 1px solid rgb(200,200,200);
}
#overlay table th {
    text-align: left;
}
#overlay table .action {
    text-align: right;
}
#overlay table tbody .action {
    text-decoration: underline;
}
#overlay table th, #overlay table td {
    padding: 5px;
}
#overlay img {
    width: 100%;
    height: auto;
}
#loader {
    text-align: center;
    display: none;
}
#step1, #step2, #step3 {
    text-align: center;
    display: none;
}
#step4 {
    color: green;
    display: none;
    margin-top: 10px;
}
.lds-facebook,
.lds-facebook div {
    box-sizing: border-box;
}
.lds-facebook {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}
.lds-facebook div {
    display: inline-block;
    position: absolute;
    left: 8px;
    width: 16px;
    background: currentColor;
    animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}
.lds-facebook div:nth-child(1) {
    left: 8px;
    animation-delay: -0.24s;
}
.lds-facebook div:nth-child(2) {
    left: 32px;
    animation-delay: -0.12s;
}
.lds-facebook div:nth-child(3) {
    left: 56px;
    animation-delay: 0s;
}
@keyframes lds-facebook {
    0% {
        top: 8px;
        height: 64px;
    }
    50%, 100% {
        top: 24px;
        height: 32px;
    }
}
.a-enter-vr-button {
    display: none !important;
}