.player-wrapper,
.code-wrapper {
    height: 100%;
    max-height: 100%;
    position: absolute;
    box-sizing: border-box;
    -moz-box-sizing:border-box;
    width: 100%;
}

.code-wrapper {
    border: 1px solid #666;
}
/*
.player-wrapper {
  right:-4px;
}
*/
.code-wrapper {
/*  left: -4px; */
    background-color: #222;
}

.result-container iframe {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 0px;
}


.result-container {
    width: 100%;
    position:absolute;
    top: 0px;
    bottom: 0px;
}



body,html {
   height: 100%;
}

body {
    padding: 0; margin: 0;
}

#editorContainer div.cols {
    padding: 5px 10px;

    box-sizing: border-box;
    -moz-box-sizing: border-box;
    position:absolute;
    top: 55px;
    left: 9px;
    right: 9px;
    bottom: 4px;
}

#editorContainer {
    height: 100%;
    width: 100%;
    background-color: #444;
    box-sizing: border-box;
    -moz-box-sizing:border-box;
}
#editor {
    position: absolute;
    left:0;
    right:0;
    top:0;
    bottom:0;
}

#editorNav {
    height: 50px;
    margin: 0;
    width: 100%;
    background-color: #111;
    color: #ccc;
    font-family: sans-serif;
}

#editorNav .buttons {
    margin: 0;
    padding: 0;
    height: 100%;
    margin-left: 205px;
}

#editorNav .buttons li {
    line-height: 100%;
    min-width:100px;
    display: block;
    float:left;
    height: 50px;
    text-align: center;
    box-sizing:border-box;
    -moz-box-sizing:border-box;
}

#editorNav .buttons li a i.fa {
    margin-right:6px;
}

#editorNav .buttons li a {
    width: 100%;
    text-decoration: none;
    line-height: 50px;
    padding: 0 10px;
    height: 100%;
    display: block;
    box-sizing:border-box;
    -moz-box-sizing: border-box;
    cursor: pointer;
}

#editorNav .buttons li a.active,
#editorNav .buttons li a:hover {

    background-color: #222;
    color: #EEE;

}

#player-console {
    width: 100%;
    position: absolute;
  /*  bottom: -4px;*/
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: 1px solid #666;
    background-color: #222;
    color: #CCC;
    padding: 3px;
    overflow-y: auto;
    font-size:12px;
    font-family: monaco,monospace;
    height: 100%;
}
#player-console pre {
    margin: 2px 0;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', monospace;
}
.splitter-horizontal {
    height: 8px;
    width: 100%;
    position: absolute;
    cursor: row-resize;
    margin-top: -5px;
}
#result {
    overflow: auto;
    border:1px solid #666;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    position: absolute;
    width:100%;
    height:100%;
   /* top: -4px;*/
    background-color: #222;
}
 #player-container {
    margin:0;
    padding:0;
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0
}
#player-console .cmd {
    background-color: #2a2a2d;
}
#player-console .cmd .prompt {
    color: lightseagreen;
}
#editor {
    background-color: #222;
}
#editor .ace_gutter {
    background-color: #2a2a2d;
}



#editorContainer .loading {
    height: 50px;
    position:absolute;
    top:50%;
    left:0;
    right:0;
    text-align:center;
    font-size: 40px;
    font-weight: bold;
    font-family: 'Monaco', monospace;
    color: #CCC;
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-name: pulse;
    animation-duration: 2s;
    animation-iteration-count: infinite;
}


@-webkit-keyframes pulse {
    from {
        opacity: 0.25;
    }
    50% {
        opacity: 1.0;
    }
    to {
        opacity: 0.25;
    }
}
@-moz-keyframes pulse {
    from {
        opacity: 0.25;
    }
    50% {
        opacity: 1.0;
    }
    to {
        opacity: 0.25;
    }
}
@keyframes pulse {
    from {
        opacity: 0.25;
    }
    50% {
        opacity: 1.0;
    }
    to {
        opacity: 0.25;
    }
}

img.pulse:hover {
    -webkit-animation-name: pulse;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-iteration-count: 10;
}

#editorNav .home-logo {
    float: left;
    line-height: 50px;
    text-decoration: none;
    color: #EEE;
    font-size: 22px;
    margin-left: 10px;

}

