* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
body {
	background-color: #f1f1f1;
	color: #000000;
	margin: 0px;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0px 10px;
	overflow: hidden;
}
li {
	float: left;
	margin: 2px;
}
li a {
	display: inline-block;
}
li.dropdown {
	display: inline-block;
}

.dropdown-content {
	display: none;
	position: absolute;
	top: 44px;
	min-width: 160px;
	width: 40%;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
	background-color: hsl(0, 0%, 95%);
	z-index: 10;
}
.dropdown-content p {
	color: black;
	padding: 2px 16px;
	font-size: 12px;
}

.switch {
	position: relative;
	display: inline-block;
	margin: 0 4px;
}
.switch input {
	display: none;
}
.slider {
	box-sizing: border-box;
	position: static;
	width: 50px;
	height: 40px;
	margin: 0px 4px;
	background: white;
	border: solid lightgrey;
	border-radius: 20%;
	border-width: 4px 20px 4px 4px;
	display: inline-block;
	vertical-align: -14px;
	cursor: pointer;
	transition: border 0.3s;
} 
/*.slider:hover { 		} */
input:checked + .slider { 
	border-color: hsl(122, 39.4%, 49.2%);/*w3-green*/
	border-width: 4px 4px 4px 20px;
} 

.w3-bar .w3-bar-item:hover {
	color: #757575 !important;
}
.w3-bar .w3-bar-item {
	margin: 2px;
	height: calc(100% - (2px + 2px));
	padding: 2px 12px;
}

.dropdown {
	display: inline;
	z-index: 2;
}

#container {
	margin: 0px 10px;
	position: absolute;
	height: calc(100% - 10px - 44px);
	width: calc(100% - 20px);
	top: 44px; bottom: 0px; left: 0; right: 0;
}
#textareacontainer, #dragbar, #iframecontainer {
	float: left;
	height: 100%;
	width: calc(50% - 6px);
	box-shadow: 0px 3px 5px -1px rgb(182, 181, 181);
}
#dragbar {
	width: 12px;
	box-shadow: none;
	cursor: col-resize;
}
#filename {
	border: 1px solid hsl(130, 100%, 30%);
	background: white;
	width: 300px;
	padding: 7px 4px;
	text-align: left;
}
#shield {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 4;
}
#framesize span {
	font-family: Consolas, monospace;
}
#iframeResult {
	background-color: #ffffff;
	border: none;
	height: 100%;
	width: 100%;  
}

@media screen and (max-width: 1260px) {
	#container {
		top: 88px;
		height: calc(100% - 10px - 88px);
	}
}
@media screen and (max-width: 450px) {
	#container {
		top: 160px;
		height: calc(100% - 10px - 160px);
	}
}
@media only screen and (max-device-width: 768px) {
	#container     {min-width: 320px;}
}

[class*="tit-icon-"] {
	/*font: normal normal normal 18px/1 tit-fontello;*/
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	padding: 8px 10px;
}

@keyframes spin {
		0% { transform: rotate(0deg); }
		100% { transform: rotate(360deg); }
}
/* this MUST be the last rule*/
.show {display: block;}