body{
	background: #000;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

#cesiumContainer{
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	border: none;
	width: 100%;
	height: 100%;
}

.switch-container{
	z-index:  999;
	position: absolute;
	top: 10px;
	left: 10px;
	background-color: rgba(0, 0, 0, 0.7);
	width: auto;
	padding: 10px 10px;
	border-radius: 7px;
	border: 1px solid rgba(255,255,255,0.6);
}

.switch {
	display: inline-block;
	font-size: 16px;
	color: white;
}
.switch__input {
	position: absolute;
	top: 0;
	left: 0;
	width: 36px;
	height: 20px;
	opacity: 0;
	z-index: 0;
}
.switch__label {
	display: block;
	padding: 0 0 0 44px;
	cursor: pointer;
}
.switch__label:before {
	content: "";
	position: absolute;
	top: 11px;
	left: 8px;
	width: 36px;
	height: 14px;
	background-color: rgba(255,255,255,0.15);
	border-radius: 14px;
	z-index: 1;
	transition: background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.switch__label:after {
	content: "";
	position: absolute;
	top: 8px;
	left: 8px;
	width: 20px;
	height: 20px;
	background-color: #fff;
	border-radius: 14px;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
	z-index: 2;
	transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
	transition-property: left, background-color;
}
.switch__input:checked + .switch__label:before {
	background-color: rgba(63, 81, 181, 0.5);
}
.switch__input:checked + .switch__label:after {
	left: 24px;
	background-color: #3f51b5;
}