.CodeMirror-gutter-filler, .CodeMirror-hscrollbar, .CodeMirror-scrollbar-filler, .CodeMirror-vscrollbar {
    opacity: 0.1;
    margin-bottom: -5px;
    margin-right: -5px;
}
.code-editor{
    background:#222;
    width: calc(100vw - 300px);
    height: 400px;
    font-size: 0.9rem;
    overflow:hidden;
}
/* width */

#main{
        width: 100%;
        height: 100%;
}
#output{
        overflow: auto;
        display: inline-block;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 50%;
}
#result{
        position: absolute;
        width: 50vw;
        height: 100vh;
}
.CodeMirror {
        /* position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0; */
        height: 102%;
        width: 100%;
        padding-top:8px;
        padding-bottom:20px;
}
.CodeMirror-scroll{
    padding-bottom: 40px;
    margin-bottom: -20px;
}
#info{
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: green;
    border-radius: 50%;
    color: white;
    text-align: center; 
    padding: auto;
    box-shadow: 2px 2px 3px #999;
}
.top-float{
    font-size: 1.5em;
    margin-top:18px;
}
@media screen and (max-width: 800px) {
    #info{
        right: 20px;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }
    .top-float{
        font-size: 1.2em;
        margin-top: 15px;
        
    }
    #output {
        top: 50%;
        display: block;
        left:0;
        width: 100%;
        height: 50%;
    }
    #result{
        width: 100vw;
        height: 50vh;
    }
    .CodeMirror{
        height: 50%;
        width: 100%;
    }
}