html, body {
    margin: 0px;
    padding: 0px;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
titlebar {
    height: 60px;
}
titlebar img {
    position: fixed;
    height: 100px;
    width: 400px
}
menubar {
    display: block;
    height: 26px;
    padding: 10px;
}
content {
    display: flex;
    height: 90%;
    flex-wrap: wrap;
    border-top: solid #eee 3px;
}
sidebar {
    width: 300px;
    padding: 10px;
    overflow-y: auto;
    height: 100%;
}
output_canvas {
    flex-grow: 1;
    width: 300px;
    max-height: 100%;
}
configSection {
    border: solid #cccccc 1px;
    border-radius: 4px;
    width: 280px;
    margin-bottom: 10px;
    overflow: hidden;
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.3s ease-out, height 0.3s ease-out;
    height: 24px;
}
configSection.expand {
    height: auto;
}
configTitle {
    display: block;
    padding: 4px;
    padding-left: 30px;
    background-color: #cccccc;
    margin-bottom: 6px;
    cursor: pointer;
    background-repeat: no-repeat;
}
configSection.expand configTitle {
    background-image: url(chevron-down-solid.svg);
    background-size: 20px;
    background-position: 4px 2px;
}
configSection.collapse configTitle {
    background-image: url(chevron-right-solid.svg);
    background-size: 14px;
    background-position: 8px 1px;
}
configSection.collapse select, configSection.collapse input {
    display: none;
}
configSection div {
    margin-left: 4px;
    margin-right: 4px;
    margin-bottom: 4px;
}
img {
    object-fit: contain;
    height: 99%;
    width: 99%;
}
a {
    cursor: pointer;
}

project_screen {
    display: block;
}

project_screen a {
    padding-left: 2px;
    padding-right: 2px;
}

project_screen input {
    margin-left: 2px;
    margin-right: 2px;
}

project_screen.screen_active a.screen_show {
    display: unset;
}

project_screen.screen_active a.screen_hide {
    display: none;
}

project_screen.screen_inactive a.screen_show {
    display: none;
}

project_screen.screen_inactive a.screen_hide {
    display: unset;
}

project_screen.screen_active i.fa-trash {
    color: #CCC;
}