
body {
  margin: 0;
  padding: 0;
}

#map {
  position: absolute;
  top: 50px;
  bottom: 0;
  right: 0;
  left: 0;
}

#GeneralLoading{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9%;
  height: 12%;
  object-fit: contain;
  -webkit-transform: translate(-90%, -50%);
  -moz-transform: translate(-90%, -50%);
  -ms-transform: translate(-90%, -50%);
  -o-transform: translate(-90%, -50%);
  transform: translate(-90%, -50%);
  z-index:9999;
}

#sentinel1, #landsat8, #load_data, #clear_data, #export_data [type=button] { 
  box-shadow: none;
  border: none;
  outline: none;
}

.form-control:focus {
  outline: none !important;
  border: none !important;
  outline-width: '0' !important;
  box-shadow: none !important;
}

.sliderWrapper{
  display: inline-block;margin:24px 24px 24px 24px;
}

.sliderWrapper div{
  display: inline-block;line-height:60px;
}

/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline block;
  width: 40px;
  height: 22px;
}

/* 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: 13px;
  width: 12px;
  left: 5px;
  bottom: 5px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #196cb0;
}

input:checked + .slider:before {
  -webkit-transform: translateX(17px);
  -ms-transform: translateX(17px);
  transform: translateX(17px);
}

.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}