@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');
#map {
    height: 100%;
	width: 100%;
	position:relative;
}
#mapDiv{
	width: 50%;
	height: 50%;
	position: relative;
	padding-bottom: 30px;
}
html {
	height: 100%;
	margin: 0;
	padding: 0;
	font-family: roboto;
}
body{
	height: 100%;
	padding:0;
	margin-left: 10px;
	background: #ffffff;
	overflow-x: hidden;
}
.Absolute-Center {
	width:330px;
	height:150px;
	position:absolute;
	left:50%;
	top:50%;
	margin:-75px 0 0 -165px;
	color: white;
	font-family: Arial
}
		
.lightIcon {
	width:auto;
	position:relative;
	left:-40px;
	top:0px;
	margin:0px 0 0 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-top: 0px;
	padding-bottom: 0px;
}
.BadgerLogo {
	position:absolute;
	left:10px;
	top:15px;
}
.BEACON {
	position:absolute;
	left:55px;
	top:12px;
	font-family: Arial;
	color: white;
}
#bgDiv{
    overflow-x: hidden;
	overflow-y: hidden;
	width: 100%; 
	white-space: nowrap;
	-webkit-overflow-scrolling: touch;
	background-color: #b0c4de;
	z-index:-1;
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	right:0;
}
.bg{
}
#exceptionDiv{
	position: static;
}
.exceptionBTN{
	cursor: pointer;
	width: 50%;
	border: none;
	display: block;
	position: static;
	padding: 16px 0px;
	margin: 10px;
	word-wrap: break-word;
	white-space: normal;
	font-weight: bold;
	border-bottom: solid;
	border-top: solid;
	border-width: 1px;
	border-color: #ccc;
}
.exceptionBTN:hover{
	background-color: #ccc;
}
ul{
	display: none;
}
.isActive{
	display: block;
}
.tooltip {
	display: inline-block;
}

.tooltip .tooltiptext {
	visibility: hidden;
	width: 100%;
	border-radius: 6px;
	padding: 5px 0;
	position: absolute;
	z-index: 1;
	opacity: 0;
	transition: opacity 0.3s;
}
.tooltip{
	text-align: left;
}
.tooltiptext{
	width: 100% !important;
}
.tooltip .tooltiptext::after {
	
	position: absolute;
	top: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #555 transparent;
}
.tooltip:hover .tooltiptext {
	visibility: visible;
	opacity: 1;
	text-align: center;
}
.encoderPic{
	height: 400px;
	width: 400px;
	position: absolute;
	left: 45%;
	transform: translate(-50%, -40%);
}
#UploadButton{
	margin-top: 5px;
	margin-bottom: 10px;
	cursor: pointer;
}
.modal {
	display: none;
	position: fixed; 
	z-index: 1; 
    left: 0;
	top: 0;
	width: 100%;
	height: 100%; 
	overflow: auto; 
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4); 
}
.modal-content {
	position: relative;
	background-color: #fefefe;
	margin: 10% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 30%;
	height: 20%;
	min-height: 20%;
	min-width: 30%;
	-webkit-animation: fadein 0.5s; /* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein 0.5s; /* Firefox < 16 */
	-ms-animation: fadein 0.5s; /* Internet Explorer */
	-o-animation: fadein 0.5s; /* Opera < 12.1 */
	animation: fadein 0.5s;
}
.close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}
.close:hover,
.close:focus {
	color: red;
	text-decoration: none;
	cursor: pointer;
}
#progressHeader{
	text-align: center;
}
#bar{
	transform: translate(-50%, 0%);
	margin-left: 50%;
	position: static;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 23px;
  margin-top: -5px;
}

/* 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(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}