*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html{
	font: normal 14px sans-serif;
}

body{
	border: 2px solid #ddd;
	padding: 23px;
}


/*	Table styles	*/

.title{
	color: #515559;
	font-size: 14px;
	font-weight: 800;
	margin-bottom: 15px;
}

.table-striped{
	font: normal 13px sans-serif;
	color: #515559;
	text-align: center;
	margin: 5px 0 15px;
	border-spacing: 0;
	border: 1px solid #3C78A7;
}

.table-striped td,
.table-striped th{
	padding: 10px 18px;
}

.table-striped thead{
	background-color: #3C78A7;
	color: #ffffff;
}

.table-striped tr:nth-child(even) td{
	background-color:  #f3f8ff;
}

.table-striped:empty{
	display: none;
}

hr{
	border: 3px solid #eee;
    margin: 30px 0;
}

/*	Editor	*/

.editor{
	overflow: hidden;
}

.CodeMirror{
	height: 105px;
	width: 100%;
	border: 1px solid #d0d0d0;
	margin-top: 15px;
}

.buttons{
	margin-top: 20px;
}

.submit{
    display: inline-block;
    border-radius: 3px;
    box-sizing: border-box;
    color: #fff;
    cursor: pointer;
    font-weight: 400;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    background-color: #4985B5;
    opacity: 0.9;
}

.submit:hover{
    opacity: 1;
}


.result{
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	transform: translateY(100%);
	transition: 0.4s ease-out;
	background-color: #fff;
	z-index: 1000;
	padding: 31px;
	box-shadow: 0 0 60px #F1F1F1 inset;
}

.result .close{
	cursor: pointer;
	font-size: 40px;
	position: absolute;
	top: 15px;
	right: 15px;
}

.result.visible{
	transition: 0.4s ease-in;
	transform: translateY(0);
}

.error-message{
	color:#B71919;
}

@media(max-width: 450px){
	.CodeMirror{
		width: 100%;
		float:none;
	}

	.buttons > a{
		float: none;
		display: inline-block;
	}
}