<!-- BODY {background:none transparent;}-->
#content {background-color:#fff; padding:15px; border-radius: 10px;}

.material-switch > input[type="checkbox"] {
	display: none;   
}

.material-switch > label {
	cursor: pointer;
	height: 0px;
	position: relative; 
	width: 40px;  
}

.material-switch > label::before {
	background: rgb(0, 0, 0);
	box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
	border-radius: 8px;
	content: '';
	height: 16px;
	margin-top: -8px;
	position:absolute;
	opacity: 0.3;
	transition: all 0.4s ease-in-out;
	width: 40px;
}
.material-switch > label::after {
	background: rgb(255, 255, 255);
	border-radius: 16px;
	box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
	content: '';
	height: 24px;
	left: -4px;
	margin-top: -8px;
	position: absolute;
	top: -4px;
	transition: all 0.3s ease-in-out;
	width: 24px;
}
.material-switch > input[type="checkbox"]:checked + label::before {
	background: inherit;
	opacity: 0.5;
}
.material-switch > input[type="checkbox"]:checked + label::after {
	background: inherit;
	left: 20px;
}

.icon-spacer {
	margin-right: 7px;
}

.qq-upload-drop-area-selector {
	background: #2ab573 !important;
}

#images:not(:empty) {
	margin-top: 15px;
}

.uploadContainer.isImage {
	display: inline-block;
	position: relative;
	width: 100px;
	height: 100px;
	border: 1px solid #CCC;
	margin-right: 4px;
	margin-bottom: 4px;
	vertical-align: top
}

.uploadContainer.isImage .loader {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%, -50%, 0);
	font-size: 28px;
}

.uploadContainer.isImage .deleteFile {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 100px;
	height: 100px;
	cursor: pointer;
}

.uploadContainer.isImage:hover .deleteFile {
	display: block;
}

.uploadContainer.isImage .deleteFile .icon {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	transform: translate3d(-50%, -50%, 0);
	font-size: 28px;
	color: #FFF;
}

.uploadContainer.isImage .deleteFile:after {
	content: " ";
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.4);
}