
body{
    position:fixed;
    background-color: black;
    margin: 0;
}
.toggle {
    visibility: visible;
    font-size: 12pt;
    padding: 0.5%;
    padding-right: 1%;
    padding-left: 1%;
}

button {
    background-color: black;
    color: #2fa1d6;
    border: 2px black solid;
    font-weight: normal;
}
button:active {
    background-color: white;
    color: black;
} 
#hideBtn {
    z-index: 1001;
    left: 0;
    top: 0;
    position: absolute;
    font-size: 15pt;
    border: 2px solid black;
}
#navigation {
    z-index: 1001;
    position: absolute;
    top: 10px;
    width: 100%;      
}
#inner_navigation {
    z-index: 1000;
    left: -100%;
    top: 0;
    opacity: 0.4;
    position: absolute;
    width: 90%;
}


#inputZFilter, #resetMode {
    z-index: 2000;
    position: absolute;
    top: -5%;
    left: -5%;
    padding-left: 40%;
    padding-top: 20%;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.7);
    font-family: Arial;
    font-size: 12pt;
    display: none;
}

#zFilterLoadingScreen {
    z-index: 2000;
    position: absolute;
    width: 105%;
    height: 105%;
    top: -5%;
    left: -5%;
    background-color: rgba(255,255,255,0.7);
    display:none;
}

#zFilterLoadingScreenContent {
    position: absolute;
    width: 200px;
    height: 100px;
    left: 50%;
    margin-left: -100px;
    top: 50%;
    margin-top: -50px;
}


.toggleZDiff {
    padding: 2px;
    border: 1px solid white;
    border-radius: 3px;
    width: 90px;
    height: 50px;
    font-size:1.2em;
    display:inline;
}

.setResetButton {
    padding: 2px;
    border: 1px solid white;
    border-radius: 3px;
    width: 90px;
    height: 50px;
    font-size:1.2em;
    display:inline;
}



#closeToggleZDiff, #closeResetMode{

    width:30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 20px;
    padding: 5px;
    font-size:1em;
    position:absolute;
    margin-top: -30px;

}


#currentZFilter {
    display:inline;
}

#input {
    z-index: 2000;
    position: absolute;
    top: -5%;
    left: -5%;
    padding-left: 40%;
    padding-top: 20%;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.7);
    font-family: Arial;
    font-size: 20pt;
    display: none;
}
#inputID {
    margin-top: 10pt;
    font-size: x-large;
    border: 0px;
    height: 40pt;
    padding-left: 10pt;
    padding-right: 10pt;
}
#toggleInputID {
    left: -1px;
    top: -1px;
    font-weight: 900;
    font-size: x-large;
}

#sendIDButton {
    left: 1px;
    font-weight: 900;
    font-size: x-large;
    top: 3px;
}

#backspaceButton {
    top: 2px;
    font-size: 20pt;
}

.bigbutton {
    height: 60px;
    width: 60px;
    font-size: 12pt;
    background-color: black;
    color: #2fa1d6;  
    position: relative;
    left: 1px;
    top: -1px;
}

#formButtons {
    margin-top: 10pt;
    display: inline-block;
}
#help {
    position: absolute;
    top: 50pt;
    right: 50pt;
    color: white;
    font-family: Arial;
    display: none;
    z-index: 1000;
}
#help-hint {
    position: absolute;
    top: 50pt;
    right: 120pt;
    color: white;
    font-family: Arial;
    z-index: 1000;
}
#idNavigation{
    visibility: hidden;
}

.numberInput{
    width: 40px;
    height: 40px;
}

#loader {
    width: 70px;
    height: 20px;
    text-align: center;
    position: absolute;
    bottom: 20px;
    left: 10px;
}

#loader > div {
    width: 10px;
    height: 10px;
    background-color: #FF8100;

    border-radius: 100%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

#loader .bounce1 {
    -webkit-animation-delay: -0.48s;
    animation-delay: -0.48s;
}

#loader .bounce2 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

#loader .bounce3 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% { -webkit-transform: scale(0) }
    40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% { 
        -webkit-transform: scale(0);
        transform: scale(0);
    } 40% { 
        -webkit-transform: scale(1.0);
        transform: scale(1.0);
    }
}


