.CodeMirror {
    min-height: 300px;
    border-radius: 0px;
    font-size: 16px;
    height: 100%;
}
#output {
    background: #1e1e1e;
    color: #00ff00;
    overflow-y: auto;
    padding: 15px;
    font-family: monospace;
    border-radius: 0px;
    height: auto;
}
#run-btn {
    position: absolute;
    z-index: 9999;
    width: 40px !important;
    right: 10px;
    top: 10px;
    margin: 0px !important;
}

#send-btn {
    position: absolute;
    z-index: 9999;
    width: 40px !important;
    right: 60px;
    top: 10px;
    margin: 0px !important;
}

#open-btn {
    position: absolute;
    z-index: 9999;
    width: 40px !important;
    right: 110px;
    top: 10px;
    margin: 0px !important;
}

.CodeMirror-scroll {
    position: absolute;
}

.CodeMirror-sizer{
    
    width: 100vw;
    
}

@media (max-width: 767px) {
    #output {
        min-height: 26vh;
        max-height: 26vh;
    }
    #codigo {
        min-height: 57vh;
        max-height: 57vh;
    }
     #editor {
        min-height: 57vh;
        max-height: 57vh;
    }
    #input{
        min-height: 15vh;
        max-height: 15vh;
    }
}

@media (min-width: 768px) {
    #output {
        min-height: 75vh;
        max-height: 75vh;
    }
    #codigo {
        min-height: 100vh;
        max-height: 100vh;
    }
    #editor {
        min-height: 100vh;
        max-height: 100vh;
    }
    #input{
        min-height: 20vh;
        max-height: 20vh;
    }
}