#weather-details-modal {
    height: 100%;
    max-width: 100%;
    width: 100%;
    z-index:2;
    color: #DADDDF;  
    background: rgba(0, 20, 40, 1);
    font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
    padding-left: 5px;
    padding-right: 20px;
}

#weather-details-modal-content {
  height: 100%;
  display: flex;  
  flex-direction: column;
  overflow-x: hidden;
}

#map{ z-index:1; }


.modal a.close-modal[class*="icon-"] {
  top: 10px;
  right: 10px;
  width: 30px;
  text-indent: 0;
  text-align: center;
  border: 2px solid;
  border-radius: 8px;
  color: #D5D8D9;
  background-color: rgba(20, 20, 40, 0); 	
  line-height: 28px;
  cursor: pointer;
  background-image: none;
  display: inline;
  font-size: 13pt;
}

.modal a.close-modal[class*="icon-"]:hover{
  color: rgba(20, 20, 40, 0.85);
  background-color: #D5D8D9;
}

/*
 * Weather Details Heading
 */
#weather-details-heading {
	text-align: center;

  flex: 0 0 auto;
}

#weather-details-site-name {
  font-size: 18pt;
  font-weight: bold;
  padding-right: 5px;
  height: 27px;
  display: inline-block;
  align-items: center;
  text-align: center;
  padding-top: 0px;
  padding-bottom: 10px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}
#weather-details-site-name-icon
{
  cursor: pointer;
  padding-bottom: 3px;
}

#weather-details-site-elevation {
  font-size: 14pt;
  text-align: center;
  color: #DADDDF;
  padding-bottom: 0px;
}

#weather-details-date-time {
  font-size: 14pt;
  text-align: center;
  color: #DADDDF;
  padding-bottom: 5px;
}

#weather-details-body {
  max-height: calc(100% - 96px);
  font-size: 14pt;
  text-align: center;
  color: #DADDDF;
  overflow-x: hidden;

}



/*
 * Weather Details Tabs
 */

#weather-details-tabs {


  flex: 0 1 auto;
}

#weather-details-tabs-ul {

  width: 100%;
  height: 35px; 
  border-bottom: solid 2px #D5D8D9;
  padding-right: 2px;
  margin-top: 5px;
  padding-inline-start: 10px;

}

#weather-details-tabs-ul li {
  float:left; 
  font-weight: bold;
  font-size: 16px;
  list-style:none; 
  border-top:2px solid #D5D8D9; 
  border-left:2px solid #D5D8D9; 
  border-right:2px solid #D5D8D9; 
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;    
  margin-right:5px; 
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 5px;
  padding-bottom: 5px;
  outline:none;
  cursor: pointer;  
  background-color: rgba(40, 40, 60, 1);
  height: 23px;
}

#weather-details-tabs-ul li:hover{
  color: rgba(20, 20, 40, 1);
  background-color: #D5D8D9; 
}

.weather-details-tab-active {
  height: 25px !important;
  background-color:rgba(20, 20, 40, 1) !important;
  cursor: default !important;
}

.weather-details-tab-active:hover {
  background-color:rgba(20, 20, 40, 1) !important;
  color: #D5D8D9 !important;

}

/* Weather Details Body */
#weather-details-body {
  height: 100%;
  /*overflow-y:hidden;*/
  /*overflow-y:scroll;*/
  flex: 0 2 auto;
  padding-left: 10px;
}

.chart-legend {
  display: flex;
  justify-content: flex-end;
  padding: 0 10px 10px;
  /*font-size: 12px;*/
}

.chart-legend .item {
  /*line-height: 12px;*/
  padding: 0 10px 0 4px;
}

#legend .item.humidity {
  border-left: 12px solid #19A0AA;
}

#legend .item.temperature {
  border-left: 12px solid #F15F36;
}

/* Charts */
/*.chart-container{

}*/
.chart{
  padding-bottom: 20px;
  padding-right: 10px;
}

.apexcharts-tooltip{
  background: #DADDDF !important;
  color: rgba(20, 20, 40) !important;
}

#wind-chart-group-last-5{
  display: flex;
  flex-direction: row;
}

#windspeed-chart-last-5{
  width: 100%;
}

#windrose-chart-last-5{
  width: 315px;
  padding-right: 0px;
}



