html, body {
    width: 100%;
    height: 100%;
}

body {
    margin: 0;
}

.live_header {
    width: 100%;
    height: 100px;
    overflow: hidden;
    background-color: #272822;
}

.live_wrapper {
    overflow: hidden;
    padding: 15px 20px 0 0;
}

.live_headerLogo {
    float: left;
    overflow: hidden;
    margin: -4px 0 0 45px;

    
}

.logo_img {
    height: 100px;
    width: 100px;
    float: left;
}

.live_topToolbar {
    background-color: #2f3129;
    position: absolute;
    top: 100px;
    height: 50px;
    width: 100%;
    overflow: hidden;
}

.defaultActions {
    height: 35px;
    overflow: hidden;
    margin: 15px 0 0 50px;
    float: left;
}

.outputTab {
    position: absolute;
    top: 15px;
    left: 60%;
    overflow: hidden;
}

.tab-box {
    width: 75px;
    height: 40px;
    background-color: #353632;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    font-size: 13px;
    color: #dedede;
    margin: 0 -3px;
}

.active {
    background-color: #272822;
    color: #fff;
    font-weight: bold;
    cursor: auto;
}

.editorContainer {
    width: 100%;
    overflow: hidden;
    position: absolute;
    top: 150px;
    right: 0;
    bottom: 80px;
    left: 0;
}

.pythonEditor {
    width: 60%;
    float: left;
    height: 100%;
    z-index: 999;
}

.output {
    width: 40%;
    height: 100%;
    float: right;
}

.defaultOutput {
    padding: 10px;
    box-sizing: border-box;
    overflow-y: scroll;
    white-space: pre;
}

#editor {
    width: 60%;
    float: left;
    height: 100%;
    z-index: 999;
}

.bottomToolbar {
    background-color: #2f3129;
    position: absolute;
    bottom: 0;
    height: 80px;
    width: 100%;
}

.runCode {
    width: 100px;
    height: 42px;
    margin: 19px 5px 0 0;
    color: #fff;
    background-color: #17a68a;
    border: 1px solid #272822;
    cursor: pointer;
    font-weight: bold;
    border-radius: 3px;
    position: relative;
}

.resetCode {
    height: 42px;
    margin: 19px 0 0 0;
    color: #dedede;
    cursor: pointer;
    background-color: #353632;
    border: 1px solid #272822;
    padding: 0 10px;
    font-weight: bold;
    border-radius: 3px;
}

.wide {
    width: 60%;
}

.right {
    float: right;
}