html, body {
    width: 100%;
    height:100%;
    min-height: 100%;
}

#container {
    width: 100%;
    height:100%;
    min-height: 100%;
    display: flex;
    
    flex-direction: column;
    justify-content: space-between;
}

.toolbar_item {
    float: left;
}

#content {
    flex: 1 0 0;
    height: 100%;
    overflow-y: hidden;
}

#header {
    flex: 0 0 auto;
}

#canvas_container {
    width:100%;
    height:100%;
    position: relative;
}

#info {
    width: 100%;
    min-height: 100%;
    background: white;
    overflow: scroll;    
}

@media only screen and (min-width: 600px) {
    #info {
        width: 600px;
        min-height: 1px;
        transform: translate(-50%, -50%);
        position: absolute;
        top: 40%;
        left: 50%;
    }
}


#info_title {
    width: 100%;
    height: 32px;
}

#info_container {
    display: none;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
}

#loading_container {
    display: block;
    width: 100px;
    height: 50px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#info_button {
    float: right;
}

#github_button {
    float: right;
}

#play, #stop, #fullscreen, #show_dets, #pause {
    margin-left: 20px;
}

.check_container {
    top: 8px;
    position: relative;
}

#margin_left {
    margin-left: 8px;
}

canvas {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

canvas:focus {
    outline: none !important;
}