#main-header{
    position: relative !important;
}

#editor-cont {
    width: 98.6vw;
    margin-left: calc(-50vw + 50%);
    background: #f5f5f5;
    padding: 0;
    min-height: 98vh;
    position: relative;
}

.output {
    width: 100%;
    height: 40vh;
    background-color: #f4f4f4;
    border-left: 2px solid #ddd;
    box-sizing: border-box;
    position: relative;
}

div#editor-live-cont {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 30px);
}

.editor-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: row;
    flex: 1;
}

.editor {
    width: 50%;
    height: 100%;
    border-right: 2px solid #ddd;
}

.tabs {
    display: flex;
    flex-direction: row;
    width: 100%;
}

.tabs div {
    width: 100%;
    padding: 5px 20px;
    background-color: #272822;
    color: white;
    border-right: 2px solid;
    border-color: #dddddd;
    font-weight: 900;
}

.tabs.tabs-format {
    text-align: center;
    cursor: pointer;
}

.tabs.tabs-format div {
    background-color: #2f3129;
}

.console-boton {
    background-color: #ff0000;
    width: fit-content;
    position: absolute;
    top: 35px;
    right: 18px;
    padding: 5px 10px;
    cursor: pointer;
    color: white;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

#close-ancla, 
#close-fullScreen,
#close-console,
.console {
    display: none;
}

.console {
    height: 100%;
    width: 100%;
    background-color: #2e2e2e;
    color: #fff;
    overflow-y: auto;
    padding: 10px;
    font-size: 14px;
    border-top: 2px solid #ddd;
    box-sizing: border-box;
}

#close-console {
    right: 18px;
    top: 6px;
}

.fullScreen-boton {
    background-color: blue;
    width: fit-content;
    position: absolute;
    top: 4px;
    right: 18px;
    padding: 5px 10px;
    cursor: pointer;
    color: white;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.outputFullScreen {
    position: fixed;
    z-index: 6;
    width: 100%;
    height: 100vh;
    top: 0;
    bottom: 0;
}

.outputFullScreen .console-boton {
    z-index: 10;
}

.ancla-boton{
    background-color: #209800;
    width: fit-content;
    position: absolute;
    top: -12px;
    right: 7px;
    padding: 5px 10px;
    cursor: pointer;
    color: white;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

div#close-ancla {
    top: 1px !important;
}

.anclaActiva{
    overflow: hidden !important;
}

.anchaFullPage{
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0 !important; 
    z-index: 1001 !important;
}

.tabsMovil{
    display: none;
}


@media (max-width: 700px) {
    #tabs{
        display: none !important;
    }
    .tabsMovil {
        display: block !important;
        width: 100%;
        background: #272822;
        padding: 12px;
        padding-top: 0px;
    }

    .tabsMovil select {
        all: none;
        width: 100%;
        max-width: 300px;
        padding: 8px 12px;
        font-size: 16px;
        border-radius: 6px;
        border: none;
        background: #272822;
        color: white;
    }

    .editor-container {
        display: block;
    }

    .editor {
        width: 100%;
    }

    #html-editor {
        display: block;
    }

    #css-editor, #js-editor {
        display: none;
    }

    .html-tab-format {
        display: block;
    }

    #css-tab-format, #js-tab-format {
        display: none;
    }
}













