.all {
  margin-left: auto;
  margin-right: auto;
  max-width: 75rem;
  max-height: 100vh;
  display: flex;
  flex-direction: row;
  flex-direction: column;
  height: 98vh;
  width: 98vw;
}
#map {
  height: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 20px;
}

/* Tablet and smaller devices: ensure map fits within viewport */
@media screen and (max-width: 1024px) {
  .all {
    height: 100vh;
    max-height: 100vh;
    width: 100vw;
  }
  #map {
    margin-bottom: 0;
  }
}


.text-center{
margin-bottom: 20px;
}

/* 
* Marker Icon Tooltip 
* Appears on hover over a marker
*/
.leaflet-popup-tip {
  display: none;
 }
 .leaflet-tooltip {
  background-color: rgba(20, 20, 40, 0.85);
  border: none;
  color: #DADDDF;
 }
 .marker-tooltip-name{
  font-weight: bold;
 }
 .iconfleft{
  text-align: left;

 }



#map{ z-index:1; }

.popup-details-site-name {
	font-size: 16pt;
	font-weight: bold;
	padding-right: 5px;
	height: 54px;
	display: grid;
	align-items: center;
	text-align: center;
  padding-top: 0px;
  padding-bottom: 10px;
	padding-left: 30px;
  padding-right: 30px;
}
.popup-details-site-elevation {
	font-size: 12pt;
  text-align: center;
  color: #DADDDF;
  padding-bottom: 0px;
}
.popup-details-date-time {
	font-size: 12pt;
  text-align: center;
  color: #DADDDF;
  padding-bottom: 0px;
}



/*
 * Info Panel Popup
 */
.popup-no-data {
  font-size: 20pt;
	font-weight: bold;
  padding-top: 50px;
	padding-bottom: 50px;
	align-items: center;
	text-align: center;  
}

.popup-body {
  padding-top: 40px;
 
}

.popup-content-header {
  position: absolute;
  top: 0px;
  height: 165px;
  overflow: hidden;
  padding-top:30px;
  width: 100%;
}


.popup-content-main {
  position: absolute;
  top: 185px;
  overflow-y: scroll;  
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */  
  bottom: 60px; 
  width:100%;
}
.popup-content-main::-webkit-scrollbar {
  display: none;
}

.popup-content-footer {
  position: absolute;
  bottom: 0px;
  height: 60px;  
  overflow: hidden;
  padding-bottom: 5px; 
  width:100%;
  
}

.popup-site-name {
	font-size: 16pt;
	font-weight: bold;
	padding-right: 5px;
	height: 54px;
	display: grid;
	align-items: center;
	text-align: center;
  padding-top: 0px;
  padding-bottom: 10px;
	padding-left: 1px;
  padding-right: 1px;
}

.popup-site-elevation {
	font-size: 12pt;
  text-align: center;
  color: #DADDDF;
  padding-bottom: 0px;
}

.popup-date-time {
	font-size: 12pt;
  text-align: center;
  color: #DADDDF;
  padding-bottom: 0px;
}

.popup-grid-container {
  display: grid;
  grid-template-columns: auto auto ;
	padding-left: 10px;
	padding-right: 10px;

}
.popup-grid-item {
  border-radius: 8px;
  padding: 5px;
  text-align: center;
  padding: 0px;
  margin: 0px;
  padding-top: 5px;
  color: #FFFFFF;

}
.popup-grid-item:hover {
  color: rgba(20, 20, 40, 0.85);
  background-color: #D5D8D9;
  cursor: pointer;
}
.popup-grid-item:hover .popup-grid-item-name {
  color: rgba(20, 20, 40, 0.85);
  background-color: #D5D8D9;
  cursor: pointer;
}
.popup-grid-item:hover .popup-grid-item-units {
  color: rgba(20, 20, 40, 0.85);
  background-color: #D5D8D9;
  cursor: pointer;
}

.popup-grid-item-value {
  display: inline;
  font-size: 20pt;
	font-weight: bold;
}


.popup-grid-item-name {
  font-size: 10pt;
	color: #D5D8D9;
}

.popup-grid-item-units {
  font-size: 10pt;
  color: #D5D8D9;
  border-radius: 8px;
}



/*
 * Status error tag for tooltip
 */
.status-error {
  display: inline-block;
  background-color: rgb(255,255,160);
  border: 2px solid;
  border-color: rgb(255,0,0);
  border-radius: 10px;
  color: black;
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 8px;
  padding-right: 8px;
}

/*
 * Status error tag for info popup
 */
.status-error-large {
  font-size: large;
  border-radius: 16px;
}


 /*
  * Modals
  */
  #modal {
    z-index:2;
    color: #DADDDF;  
    background-color: rgba(20, 20, 40, 0.85);  
  }
  
  #modal-content {

  }

  .modal-data-error-heading {
    font-size: large;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font: 24px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;

  }

  .modal-data-error-message {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
    font: 16px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
  }

  .modal-data-error-icon{
    text-align: center;
    padding-top: 10px;
    padding-bottom: 5px;
    transform: scale(2);
  }