* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    color: #000000;
    margin: 0px;
    font-size: 100%;
}
main {
    position: relative;
    min-height: 100vh;
    top: 0;
}
.barraSup {
    height: 40px;
    overflow: hidden;
    min-width: 380px;
    position: absolute;
    width: 100%;
    top: 0px;
    background: #E0F7FA;
    color: black;
}

#dragbar {
    position: absolute;
    cursor: col-resize;
    z-index: 3;
    padding: 5px;
}

#shield {
    display: none;
    top: 0;
    left: 0;
    width: 100%;
    position: absolute;
    height: 100%;
    z-index: 4;
}

#framesize span {
    font-family: Consolas, monospace;
}

#container {
    background-color: #f1f1f1;
    width: 100%;
    overflow: auto;
    position: absolute;
    top: 40px;
    bottom: 0;
    height: auto;
}

#textareacontainer, #iframecontainer {
    float: left;
    height: 100%;
    width: 50%;
}

#textarea, #iframe {
    height: 100%;
    width: 100%;
    padding-bottom: 10px;
    padding-top: 1px;
}

#textarea {
    padding-left: 10px;
    padding-right: 5px;
}

#iframe {
    padding-left: 5px;
    padding-right: 10px;
}

#textareawrapper {
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#iframewrapper {
    width: 100%;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#textareaCode {
    background-color: #ffffff;
    font-family: consolas, "courier new", monospace;
    font-size: 15px;
    height: 100%;
    width: 100%;
    padding: 8px;
    resize: none;
    border: none;
    line-height: normal;
}

.CodeMirror.cm-s-default {
    line-height: normal;
    padding: 4px;
    height: 100%;
    width: 100%;
}

#iframeResult, #iframeSource {
    background-color: #ffffff;
    height: 100%;
    width: 100%;
}

#textareacontainer.horizontal, #iframecontainer.horizontal {
    height: 50%;
    float: none;
    width: 100%;
}

#textarea.horizontal {
    height: 100%;
    padding-left: 10px;
    padding-right: 10px;
}

#iframe.horizontal {
    height: 100%;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-left: 10px;
}

#container.horizontal {
    min-height: 200px;
    margin-left: 0;
}

#bannerCabecera {
    overflow: hidden;
    text-align: center;
    margin-top: 5px;
    height: 90px;
}

@media screen and (max-width: 727px) {
    .barraSup {
        top: 70px;
    }

    #container {
        top: 108px;
    }
}

@media screen and (max-width: 467px) {
    .barraSup {
        top: 60px;
    }

    #container {
        top: 98px;
    }
}

@media only screen and (max-device-width: 768px) {
    #iframewrapper {
        overflow: auto;
    }

    #container {
        min-width: 320px;
    }

    .orientacion {
        display: none;
    }

    #tryhome {
        display: block;
    }
}

@font-face {
    font-family: 'fontawesome';
    src: url('/editor/fontawesome.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.fa {
    display: inline-block;
    font: normal normal normal 12px/1 fontawesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
}

.fa-home:before {
    content: '\f015';
}

.fa-rotate:before {
    content: '\f021';
}

.fa-run:before {
    content: '\f04b';
}
.fa-copy:before {
    content: "\f0c5"
}
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.title span:first-child{
    color: #9595d5;
}
.title span:last-child{
    color: #4CAF50;
}
#iframewrapper {
}