*{
    font-family: monospace;
}
html{
	height: 100%;
}
body{
	width: 100%;
	height: 100%;
	background:rgb(78, 79, 80);
}
.edits{
	width: 95%;
	height: 50%;

	display: inline-flex;
	justify-content: space-between;

	margin-left: 2.5%;
	margin-right: 2.5%;

    font-size: 16px;

    height: 90%;
}
.edits .html-edit,
.edits .css-edit,
.edits .js-edit{
	width: calc(95% / 3);
	height: 98%;
	background: rgb(55, 56, 57);

    width: calc(97% / 2);
}
.edits .css-edit{
    display: none;
}
.edits .html-edit .tag,
.edits .css-edit .tag,
.edits .js-edit .tag{
	display: inline-block;
	height: 30px;
	line-height: 30px;
	border-bottom: solid 1px rgb(85, 86, 87);
	color: white;
	width: 95%;
	padding-left: 5%;
}
.edits .html-edit .edit,
.edits .css-edit .edit,
.edits .js-edit .edit{
	width: 94%;
    height: none;
    border: none;
    background: transparent;
    padding: 3%;
    height: 70%;
    overflow: auto;
    height: calc(94% - 40px);
    color: white;
    line-height: 1.5em;
}
.edits .html-edit #html-code,
.edits .css-edit #css-code,
.edits .js-edit #js-code,
.CodeMirror{
	width: 94%;
    height: none;
    border: none;
    background: transparent;
    padding: 3%;
    height: 70%;
    overflow: auto;
    height: calc(94% - 40px);
    color: white;
    line-height: 1.5em;
}
.edits .run{
	background: rgb(78, 79, 80);
}
.result{
	width: 100%;
	height: 50%;
	background: rgb(55, 56, 57);

    display: flex;
    align-items: center;
    justify-content: center;
    height: 10%;
}
.result .run,
.result .close{
    background: rgb(78, 79, 80);
    color: white;
    font-size: 13px;
    padding: 5px 10px;
    margin-left: 1%;
    border-radius: 5px;
    letter-spacing: 4px;
    margin-top: 1%;
    display: inline-block;

    margin-top: 0;
    cursor: pointer;
}
.result .run-result{
    height: calc(92% - 45px);
    border: solid 1px rgb(78, 79, 80);
    border-radius: 5px;
    margin-left: 1%;
    margin-right: 1%;
    margin-top: 1%;

    display: none;
}





