body, html {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.hide {
    display: none;
}

#split-view {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
#split-view:after {
    display: block;
    content: "";
    clear: both;
    visibility: hidden;
}

.split-content {
    height: 100%;
    overflow: hidden;
    float: left;
    position: relative;
    z-index: 1;
}
.split-content.fold-state {
    float: none;
}

.split-panel {
    padding: 12px;
    height: 100%;
    box-sizing: border-box;
    background: #fbfbfb;
    overflow-y: auto;
    overflow-x: visible;
    float: right;
    position: relative;
    z-index: 2;
    transition: 0.3s;
}

.split-panel.resizing {
    transition: none;
}

.split-panel.fold-state {
    height: 30px;
    overflow: hidden;
    border-radius: 50%;
    position: fixed;
    right: 10px;
    top: 10px;
}

.split-panel.fold-state:hover {
    box-shadow: 0 2px 16px 1px rgba(0, 0, 0, 0.2);
}

.split-panel-resize {
    width: 4px;
    height: 100%;
    background: #eaeaea;
    position: absolute;
    left: 0;
    top: 0;
    cursor: col-resize;
    z-index: 2;
    transition: 0.3s;
    user-select: none;
}

.split-panel-resize:hover {
    background: rgb(33, 115, 70);
}

.split-panel-collapse {
    box-sizing: border-box;
    width: 30px;
    height: 30px;
    padding: 6px;
    background: rgb(33, 115, 70);
    overflow: hidden;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: 0.3s;
}
.split-panel-collapse:hover {
    box-shadow: 0 2px 16px 1px rgba(0, 0, 0, 0.2);
}
.split-panel-collapse.fold-state {
    background: #fbfbfb;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
}

.split-panel-collapse > span {
    display: block;
    width: 100%;
    height: 100%;
    background-image: url("./collapse.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
    transform: rotate(180deg);
}
.split-panel-collapse.fold-state > span {
    background-image: url("./expand.svg");
}