#gisbtn_2 {
	margin-left: -107px;
}

.fade-toggle {
	display: inline-flex;
	background-color: #224E81;
	border-radius: 7px;
	padding: 2px;
	position: absolute;
	/*margin: 20px 0;*/
	bottom: 95px;
	right: 4px;
}  
.toggle-option {
	position: relative;
	z-index: 2;
}        
.toggle-input {
	display: none;
}        
.toggle-label {
	display: block;
	padding: 4px 12px;
	border-radius: 7px;
	text-align: center;
	font-size: 14px;
	cursor: pointer;
	z-index: 2;
	position: relative;
	transition: all 0.3s ease;
	overflow: hidden;
}        
.observation-label {
	color: rgba(255, 255, 255, 0.9);
}        
.forecast-label {
	color: rgba(255, 255, 255, 0.9);
}        
.label-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 7px;
	z-index: -1;
	opacity: 0;
	transition: opacity 0.4s ease;
}        
.observation-label .label-bg {
	background-color: #5790FF;
}        
.forecast-label .label-bg {
	background-color: #5790FF;
}        
.toggle-input:checked + .toggle-label .label-bg {
	opacity: 1;
}        
.toggle-input:checked + .toggle-label {
	color: white;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}