
html, body {
    height: 100%;
    font-family: GraublauRegular, Arial;
    font-size: 15px;
    line-height: 20px;
}

#map {
    height: 100%;
    background: #eee;
}

#debug {
    position: absolute;
    top: 0px;
    right: 0px;
    background: rgba(255, 255, 255, .9);
    padding: 10px;
    font-family: 'Courier new';
    color: #000;
    width: 250px;
    overflow-x: hidden;
}

#sidebar {
    background: rgba(0, 0, 0, .8);
    position: absolute;
    top: 0;
    left: 0;
    width: 240px;
    padding: 20px;
    height: 100%;
    color: #fff;
    transition: left 300ms;
    -webkit-transition: left 300ms;
}

    #sidebar.collapsed {
        left: -240px;
    }

    #sidebar #sidebar-collapse {
        display: block;
        position: absolute;
        top: 20px;
        right: -28px;
        width: 28px;
        font-size: 32px;
        line-height: 36px;
        background: inherit;
        border-radius: 0 8px 8px 0;
        cursor: pointer;
        padding-bottom: 4px;
        text-align: center;
    }

        #sidebar #sidebar-collapse:before {
            content: "\00AB";
        }

        #sidebar.collapsed #sidebar-collapse:before {
            content: "\00BB";
        }

    #sidebar .logo {
        height: 90px;
        background: url('../images/logo.png') center center no-repeat;
        background-size: contain;
        margin-bottom: 30px;
    }

    #sidebar select {
        width: 100%;
    }

    #sidebar label {
        display: block;
        padding: 4px 0;
        font-size: 18px;
    }

    #sidebar #following {
        position: absolute;
        top: 20px;
        left: 115%;
        white-space: nowrap;
        background: rgba(0, 0, 0, .8);
        padding: 0 15px;
        font-size: 18px;
        line-height: 40px;
        border-radius: 8px;
        opacity: 0;
        transition: opacity 200ms;
        -moz-transition: opacity 200ms;
    }

        #sidebar.collapsed #following {
            opacity: 1;
        }


input[type=text],
select,
textarea {
    font: inherit;
    border: 0;
    background: #fff;
    border-radius: 2px;
    padding: 6px;
    outline: 0;
}