    .card {
      box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
      width: 100vw;
      height: 100vh;
      margin: auto;
      text-align: center;
      font-family: arial;
	}
	
      h1 {
      font: 20px 'Helvetica Neue', Arial, Helvetica, sans-serif, bold;
      
      }
      
      .mapboxgl-popup, .mapboxgl-popup-anchor-bottom {
      font-size: 30px;
      }
      
      #co2, #lat, #long {
      display: none;
      visibility: hidden;
      }
     
      table, tr, td {
	visibility: hidden;
	display: none;
      }

      #total, #total2{
	margin: 20px;
	/*width: 80px;
	height: 80px;*/
	color: #004300;
	font-weight: bold;
	font-size: 18px;
	position: relative;
	/*display: block;*/
	margin-left: auto;
	margin-right: auto;
      }
      
       
      
      

      #container {
	margin: 20px;
	width: 180px;
	height: 180px;
	position: relative;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

      .title {
	font-size: 18px;
      }

	#myDiv {
	  font-size: 25px;
	  font-weight: bold;
  	}

/*	#canvas {
	  max-width: 80%;
	  display: block;

  	  margin-left: auto;

  	  margin-right: auto;

          width: 70%;
        }*/

	
	button {
	  border: none;
	  outline: 0;
	  display: inline-block;
	  padding: 8px;
	  color: white;
	  background-color: #004300;
	  text-align: center;
	  cursor: pointer;
	  width: 100%;
	  font-size: 18px;
	}



	a {
	  text-decoration: none;
	  font-size: 22px;
	  color: black;
	}



	button:hover, a:hover {
	  opacity: 0.7;
	}
	
	 body { margin: 0; padding: 0; }
	#map { position: relative; top: 0; bottom: 0; width: 100vw; height: 100vh; }
        
	
    #map-container {
      position: relative;
      width: 100vw;
      height: 100vh;
    }
        
    .map-overlay {
        font: 8px 'Helvetica Neue', Arial, Helvetica, sans-serif;
        position: absolute;
        width: 30%;
        bottom: 0;
        right: 0;
        padding: 10px;

    }

    .map-overlay .map-overlay-inner {
        background-color: #fff;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
        border-radius: 3px;
        padding: 10px;
        margin-bottom: 10px;
    }

    .map-overlay h2 {
        line-height: 24px;
        display: block;
        margin: 0 0 10px;
    }

    .map-overlay .legend .bar {
        height: 10px;
        width: 100%;
        background: linear-gradient(to right, #77d879, #216b3d);
    }

    .map-overlay input {
        background-color: transparent;
        display: inline-block;
        width: 100%;
        position: relative;
        margin: 0;
        cursor: ew-resize;
}
         
  
 
 #slider-range {
    border-radius: 9px;
    height: 10px;
}

#slider-range .noUi-handle {
    background: #216b3d;
    height: 18px;
    width: 18px;
    top: -5px;
    right: -9px;
    border-radius: 9px;
}

#slider-range .noUi-handle:before, .noUi-handle:after {
display: none;
}

#slider-range .noUi-connect {
    background: #77d879;
}
.mapbox-logo{ display: none; } .mapboxgl-ctrl-logo { display: none !important; } .mapbox-improve-map { display: none; } .mapboxgl-ctrl-compass { display: none; }


form {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

/* form starting stylings ------------------------------- */
.group        { 
  position:relative; 
  margin-bottom:45px; 
}
input         {
  font-size:18px;
  padding:10px 10px 10px 5px;
  display:block;
  width:100%;
  border:none;
  border-bottom:1px solid #757575;

}
input:focus     { outline:none; }

/* LABEL ======================================= */
label          {
  color:#999; 
  font-size:18px;
  font-weight:normal;
  position:absolute;
  pointer-events:none;
  left:5px;
  top:10px;
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}

/* active state */
input:focus ~ label, input:valid ~ label    {
  top:-20px;
  font-size:14px;
  color:#5264AE;
}

/* BOTTOM BARS ================================= */
.bar  { position:relative; display:block; width:100%; }
.bar:before, .bar:after   {
  content:'';
  height:2px; 
  width:0;
  bottom:1px; 
  position:absolute;
  background:#5264AE; 
  transition:0.2s ease all; 
  -moz-transition:0.2s ease all; 
  -webkit-transition:0.2s ease all;
}
.bar:before {
  left:50%;
}
.bar:after {
  right:50%; 
}

/* active state */
input:focus ~ .bar:before, input:focus ~ .bar:after {
  width:50%;
}

/* HIGHLIGHTER ================================== */
.highlight {
  position:absolute;
  height:60%; 
  width:100px; 
  top:25%; 
  left:0;
  pointer-events:none;
  opacity:0.5;
}

/* active state */
input:focus ~ .highlight {
  -webkit-animation:inputHighlighter 0.3s ease;
  -moz-animation:inputHighlighter 0.3s ease;
  animation:inputHighlighter 0.3s ease;
}

/* ANIMATIONS ================ */
@-webkit-keyframes inputHighlighter {
  from { background:#5264AE; }
  to  { width:0; background:transparent; }
}
@-moz-keyframes inputHighlighter {
  from { background:#5264AE; }
  to  { width:0; background:transparent; }
}
@keyframes inputHighlighter {
  from { background:#5264AE; }
  to  { width:0; background:transparent; }
}

/* Error Messages ================ */
/* (D) CLOSE BUTTON */
.bar { position: relative; }
div.close {
  position: absolute;
  top: -10%;
  right: 10px;
  color: #888;
  cursor: pointer;
}
/* (C) ICONS */
i.ico {
  display: inline-block;
  width: 20px;
  text-align: center; 
  font-style: normal;
  font-weight: bold;
}

.error {
  color: #ba3939;
  background: #ffe0e0;
  border: 1px solid #a33a3a;
}

@media only screen and (max-width: 1000px) {
      .map-overlay {
        position: relative;
        width: 80%;
	height: auto;
	margin: 0 auto;
	}
    #slider-range .noUi-handle {
	height: 40px;
	width: 40px;
	top: -10px;
	right: -20px;
	border-radius: 20px;

    }
    
    .noUi-horizontal{
	height: 44px;
    }
    #slider-range {
    border-radius: 9px;
    height: 20px;
    }
    
    #map {
    height: 600px !important;
    
    }

}




