body {
	overflow: hidden;
	margin: 0 0;
}

#editor {
	margin: 0;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 75%;
	left: 0;
}

#review {
	margin: 0;
	position: absolute;
	top: 50px;
	bottom: 0;
	right: 0;
	left: 25%;
	overflow: scroll;
}

#options {
	margin: 0;
	position: fixed;
	left: 25%;
	width: 100%;
}

#options {
	flex: 0 0 auto;
	background: #eee;
	border-bottom: 1px solid #ccc;
	padding: 8px;
	overflow: hidden;
}

#options label {
	margin-right: 8px;
}

#options #raw.disabled {
	opacity: 0.5;
}

#shareurl {
	display: none;
}

#status {
	width: 100%;
	position: fixed;
	bottom: 0;
	display: block;
	color: #FFF;
	z-index: 999;
}

#review svg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#review #text {
	font-size: 12px;
	font-family: monaco, courier, monospace;
	white-space: pre;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
}

#review img {
	display: block;
	margin: 0 auto;
}

#review.working svg, #output.error svg,
#review.working #text, #output.error #text,
#review.working img, #output.error img {
	opacity: 0.4;
}

#review.error #error {
	display: inherit;
}

#review #error {
	display: none;
	position: absolute;
	top: 20px;
	left: 20px;
	margin-right: 20px;
	background: red;
	color: white;
	z-index: 1;
}

#sample {
	font: bold 12px Arial;
	text-decoration: none;
	background-color: #EEEEEE;
	color: #333333;
	padding: 2px 6px 2px 6px;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	border-left: 1px solid #CCCCCC;
}
#download {
	font: bold 12px Arial;
	text-decoration: none;
	background-color: #EEEEEE;
	color: #333333;
	padding: 2px 6px 2px 6px;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	border-left: 1px solid #CCCCCC;
}
#toowm {
	font: bold 12px Arial;
	text-decoration: none;
	background-color: #EEEEEE;
	color: #333333;
	padding: 2px 6px 2px 6px;
	border-top: 1px solid #CCCCCC;
	border-right: 1px solid #333333;
	border-bottom: 1px solid #333333;
	border-left: 1px solid #CCCCCC;
}
/* The switch - the box around the slider */
.switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 23px;
}

/* Hide default HTML checkbox */
.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

/* The slider */
.slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	-webkit-transition: .4s;
	transition: .4s;
}

.slider:before {
	position: absolute;
	content: "";
	height: 15px;
	width: 15px;
	left: 4px;
	bottom: 4px;
	background-color: white;
	-webkit-transition: .4s;
	transition: .4s;
}

input:checked + .slider {
	background-color: #2196F3;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
	-webkit-transform: translateX(17px);
	-ms-transform: translateX(17px);
	transform: translateX(17px);
}

/* Rounded sliders */
.slider.round {
	border-radius: 17px;
}

.slider.round:before {
	border-radius: 50%;
}
