/* Variables */
:root {
    --editor-bg: #eee;
    --editor-border: #3f87a6;
}

/* Reset Styles */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

.editor {
    height: 75%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.editor__wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: var(--editor-bg);
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #ccc;
}

.editor__body {
    flex: 1;
}

.editor__footer {
    display: flex;
}

.editor__footer--left {
    display: flex;
    flex-direction: column;
}

.editor__footer--right {
    flex: 1.5;
    margin-left: 10px;
    overflow: hidden;
}

.editor__btn {
    border: 0;
    padding: 5px;
    background-color: #fff;
    border: 2px solid #000;
    width: 150px;
    cursor: pointer;
	border-radius:15px;
}


.editor__footer .editor__btn{
	margin-top:5px;
}

.editor__btn:hover {
    background-color: #f7c4c4;
}

.editor__btn:active {
    background-color: #ec9f9f;
}

.editor__console {

    background-color: #fff;
    width: 100%;
    height: 100%;
    margin-top: 5px;
    border: 1px solid var(--editor-border);
    overflow: auto;
	text-align:center;
}

.editor__code {
    position: relative;
    height: 100%;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 1px solid var(--editor-border);
}