﻿html, body {
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    overflow: hidden;
    font-family: "Segoe WP", "Segoe UI", "Verdana", "Arial";
}

a {
    color: white;
}

    a:visited {
        color: white;
    }

.hidden {
    display: none;
}

#notSupported {
    text-align: center;
    color: white;
    opacity: 0.8;
    background-color: #0077DB;
    font-size: 40px;
    padding-top: 20%;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1000;
    cursor: default;
}


#renderCanvas {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    margin-bottom: 70px;
    touch-action: none;
    -ms-touch-action: none;
}

.help {
    position: absolute;
    background-color: #0077DB;
    right: 0;
    bottom: 70px;
    color: white;
    padding-right: 10px;
    width: 360px;
    height: 50px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    transform: translateX(400px);
    -webkit-transform: translateX(400px);
}

    .help.shown {
        transform: translateX(0px);
        -webkit-transform: translateX(0px);
    }

.helpText {
    cursor: default;
    position: absolute;
    margin: 10px;
    bottom: 5px;
}

.helpArrow {
    position: absolute;
    margin: 5px;
    margin-right: 10px;
    right: 0px;
}

#sliders {
    position: absolute;
    top: 25%;
    right: 10px;
    height: 50%;
    width: 150px;
    text-align: center;
}

.slider {
    height: 20%;
    margin-bottom: 5px;
    margin-left: 70px;
}

.sliderText {
    color: white;
    font-size: 20px;
    cursor: default;
}

#fps {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 20px;
    color: white;
    text-shadow: 2px 2px 0 black;
}

#babylonLogo {
    position: absolute;
    left: 20px;
    top: 20px;
}

#footer {
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: 0;
    background-color: #0077DB;
    padding-top: 5px;
    padding-left: 15px;
}

#footerRight {
    position: absolute;
    bottom: 0;
    right: 10px;
}

#footerLeft {
    position: absolute;
    bottom: 5px;
    left: 15px;
    color: white;
}

#logo {
    position: absolute;
    width: 194px;
    bottom: 0;
    left: 50%;
    margin-left: -97px;
}

.sepButton {
    width: 24px;
    height: 40px;
    margin-right: 20px;
}

.controlButton {
    border-radius: 25px;
    border: 2px solid white;
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

    .controlButton.selected {
        background-color: orange;
    }

    .controlButton:hover {
        transform: scale(0.95);
        -webkit-transform: scale(0.95);
    }

    .controlButton:active {
        transform: scale(0.9);
        -webkit-transform: scale(0.9);
        background-color: orange;
    }
