* {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-scale: 100%;
    vertical-align: baseline;
    background: transparent;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html, body {
    width: 100%;
    height: 100%;
    line-height: 1;
    background: #33052f;
}

.dev {
    background-color: black;
    border: 1px solid yellow;
    color: yellow;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
}

.dev-toggle {
    position: absolute;
    padding: 10px;
    top: 0px;
    left: 50%;
    cursor: pointer;
}

.dev-menu {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(33, 33, 33, 0.2);
    padding-top: 50px;
}

.dev-menu.open {
    display: block;
}

.dev-panel-header {
    
    margin-top: 5px;
    color: white;
}
.dev-dump .dev-panel-header {
    margin-bottom: 2px;
}

.dev-dump {
    border: none;
    color: white;
    padding: 2px;
}

.dev-btn {
    position: relative;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    padding: 6px;
    margin: 2px;
}

.dev-btn.on {
    background-color: yellow;
    border: 1px solid yellow;
    color: black;
}

.dev-tune-row {
    display: inline-block;
    margin-right: 10px;
    color: white;
}

.dev-tune-edit {
    display: inline-block;
    padding: 3px;
    background: black;
    margin-right: 3px;
    margin-left: 3px;
    border: 1px solid yellow;
    min-width: 15px;
    text-align: center;
    cursor: pointer;
}

.dev-tune-edit:active {
    background-color: yellow;
    color: black;
}

.dev-output-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    color: white;
    padding: 50px;
}

.dev-close {
    position: absolute;
    top: 0;
    right: 0;
}

.dev-level-row{
    background-color: rgba(11, 11, 11, .5);
    padding-left: 10px;
}
.dev-level-row.curr-level{
    background-color: rgba(0, 138, 7, 0.5);
}