﻿html, body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    color: rgb(51, 51, 51);
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

.flex-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.flex-element {
    order: 0;
    width: 100%;
}

.header {
    min-height: 50px;
    flex: 0 50px;
}

.content {
    flex: 1 auto;
    display: flex;
    align-content: stretch;
    align-items: stretch;
    flex-direction:row;
}


.fill {
    height: 100%;
    min-height: 100%;
}


.tool-map-container {
    display: flex;
    align-items: stretch;
    flex:1;
}

.panel-left {
    flex: 0 300px;
    align-self: stretch;
}

.panel-right {
    flex: 1 auto;
    align-self: stretch;
    width:100%;
}
