* {
    box-sizing: border-box;
}

body {
    font-family: Helvetica, sans-serif;
    font-size: 14px;
    color: #333;
    padding: 20px;
    overflow-x: hidden;
}

.app {
    display: table;
}
.left, .center {
    display: table-cell;
}

.left {
    width: 20%;
    padding-right: 20px;
}

.center {
    width: 80%;
    overflow-x: auto;
}

.log {
    color: rgb(126, 75, 0);
    padding: 5px;
    border: 1px solid rgb(190, 147, 81);
    border-radius: 8px;
    margin-bottom: 10px;
    background-color: rgb(255, 235, 206);
    display: none;
}

.center {
    padding-left: 10px;
}

.message {
    width: 100%;
    height: 300px;
}

.row {
    margin-bottom: 15px;
}

.submit {
    background-color: rgb(24, 107, 202);
    padding: 10px;
    color: #fff;
    border: none;
    border-radius: 8px;
    outline: none;
    cursor: pointer;
    margin-bottom: 20px;
    min-width: 200px;
}

input[type=submit], select {
    min-height: 30px;
    min-width: 300px;
    padding: 0 10px;
}

label {
    min-width: 100px;
    display: inline-block;
}

.jsonView{
    margin-left: 20px;
    font-family: Consolas, "Lucida Console", Menlo, "dejavu sans mono", monospace;
    font-size: 12px;
    line-height: 16px;
    padding: 2px;
    cursor: default;
    color: rgb(66, 66, 66);
    white-space: nowrap;
    -webkit-user-select: none;
}

.jsonView>div{
    display: inline-block;
}

.jsonView.hidden{
    display: none;
}

.jsonView>.children, .jsonView.insert{
    display: block;
}

.jsonView>.name{
    color: rgb(136, 19, 145);
}

.jsonView>.separator:before{
    content: ":";
}

.jsonView>.separator{
    padding-right: 5px;
}

.jsonView>.spacing{
    display:inline-block;
    width:15px;
}
.jsonView>.spacing::before{
    content: '1';
    visibility:hidden;
}

.jsonView>.value.null, .jsonView>.value.undefined{
    color: rgb(128, 128, 128);
}

.jsonView>.value.boolean, .jsonView>.value.number{
    color: rgb(28, 0, 207);
}

.jsonView>.value.string:not(.edit):before, .jsonView>.value.string:not(.edit):after{
    content: "\"";
}

.jsonView>.value.string {
    color: rgb(196, 26, 22);
}

.jsonView>.name:hover, .jsonView>.value:hover{
    background-color: rgba(56, 121, 217, 0.1);
}

.jsonView>.expand, .jsonView>.collapse{
    min-width: 20px;
    margin-left: -20px;
    cursor: pointer;
    width: 100%;
    position: absolute;
}
.jsonView>.expand, .jsonView>.collapse:hover {
    background-color: rgba(180, 208, 252, 0.1);
}

.jsonView>.expand:before{
    content: '\25B6';
}

.jsonView>.collapse:before{
    content: '\25BC';
}

.jsonView>.edit{
    padding: 0px 5px 0px 5px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
}

.jsonView>.edit br{
    display: none;
}

.jsonView>.edit *{
    display: inline;
    white-space: nowrap;
}

.jsonView>.value.edit{
    color: rgb(0, 0, 0);
}

.jsonView>.delete:before{
    content: '+';
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    display: inline-block;
}

.jsonView>.delete{
    opacity: 0;
    display: inline;
    padding: 3px;
    cursor: pointer;
    color: rgb(150, 150, 150);
}

.jsonView>.item:hover~.delete{
    opacity: 1;
    color: rgb(150, 150, 150);
}
.jsonView>.delete:hover{
    opacity: 1;
    color: rgb(0, 0, 0);
    background: rgb(220, 220, 220);
}

.jsonView.readonly>.insert,.jsonView.readonly>.delete{
    display: none !important;
}
.jsonView>.insert:before{
    content: '+';
}

.jsonView>.insert{
    display: none;
    color: rgb(150, 150, 150);
    cursor: pointer;
}

.jsonView.expanded>.insert, .jsonView.expanded>.insert{
    display: inline-block;
    margin-left: 20px;
    padding: 3px;
}

.jsonView>.insert:hover{
    color: rgb(0, 0, 0);
    background: rgb(220, 220, 220);
}