
/* Palette: https://mycolor.space/?hex=%23B0C4DE&sub=1*/

.window_vorhersagedaten_navigation{
  display: flex;
  height: calc(100vh - 40px);
  width: 250px;
  padding: 10px;
  margin: 10px 5px 10px 5px;
  border-radius: 3px;
  background-color: rgba(60, 79, 91, 1);
}


.window_vorhersagedaten_billboard{
  display: flex;
  flex-direction: column;
  height: calc(100vh - 40px);
  width: 900px;
  padding: 10px;
  margin: 10px 5px 10px 5px;
  border-radius: 3px;
  background-color: rgba(60, 79, 91, 1);
}

.vorhersagedaten_navigation{
  display: block;
  width: 100%;
}

.container_for_burger{
  display: none;
}

.for_burger{
  display: none;
}

#forecastDataMap{
  display: flex;
  height: calc(100% - 60px);
  width: 100%;
}

.for-mapLegend{
  display: grid;
  height: 60px;
  grid-template-columns: minmax(200px, auto) 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  background-color: rgba(84, 84, 84, 1);
  border: 1px solid rgba(64, 64, 64, 1);
  box-sizing: border-box;
}

#for-mapLegend-title{
  grid-column: 1/3;
  border-bottom: 1px solid rgba(64, 64, 64, 1);
  color: white;
}

#for-mapLegend-model{
  border-right: 1px solid rgba(64, 64, 64, 1);
  padding: 0px 10px;
}


#for-mapLegend-legend{
  grid-column: 1/3;
  border-top: 1px solid rgba(64, 64, 64, 1);
}

#for-mapLegend-legend ul{
  display: flex;
  width: 100%;
  flex-direction: row;
  list-style: none;
  align-items: center;
  justify-content: space-evenly;
  padding: 0px;
  margin: 0px;
}

#for-mapLegend-legend ul li{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

#for-mapLegend-legend ul li:before{
  display: block;
  content: '';
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 1);
  margin-right: 5px;
}

#for-mapLegend-legend ul li:nth-child(2):before{
  background-color: rgba(0, 255, 111, 1);
}

#for-mapLegend-legend ul li:nth-child(3):before{
  background-color: rgba(255, 154, 0, 1);

}
.for-mapLegend-item{
  display: flex;
  height: 20px;
  line-height: 20px;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: rgba(200, 200, 200, 1);
  box-sizing: border-box;
}

.forValueContainer{
  display: flex;
  height: 100%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: white;
  border-radius: 50%;
  box-sizing: border-box;
  border: 1px solid black;
}

/*Wird ausgeührt wenn die fensterbreite kleiner als 1000px ist*/

@media screen and (max-width:1000px){

  .window_vorhersagedaten_navigation{
    display: flex;
    height: 100%;
    max-height: calc(100vh - 40px);
    width: 300px;
    position: absolute;
    left: 0px;
    top: 0vh;
    z-index: 9999;
    transform: translateX(calc(-100% + 65px));
    transition: transform 0.5s ease-in;
    padding: 10px;
    margin: 10px 5px 10px 5px;
    border-radius: 3px; 
    background-color: rgba(67, 79, 91, 0);
    justify-content: space-between;
    pointer-events: none;   
  }

  .window_vorhersagedaten_navigation-active{
    transform: translateX(calc(0% - 10px));
  }

  .vorhersagedaten_navigation{
    display: block;
    width: 260px;
    background-color: rgba(67, 79, 91, 1);
    pointer-events: auto;  
  }

  .container_for_burger{
    display: flex;
    width: 60px;
    justify-content: center;
    align-items: center;
    pointer-events: none;
  }

  .for_burger{
    display: flex;
    height: 60px;
    min-height: 60px;
    width: 60px;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin:0px 0px 0px 0px;
    padding: 0px;
    background-color: rgba(67, 79, 91, 0);
    border-radius: 50%;
    cursor: pointer;
    transform: translateX(-30px);
    box-shadow: -1px -1px 5px rgba(255,255,255,0.8),
	       2px 2px 5px rgba(0,0,0,1),
	       inset -5px -5px 5px rgba(255,255,255,0.3),
	       inset 5px 5px 5px rgba(0,0,0,0.1);
    pointer-events: auto;
  }


  .for_burger div{
    display: flex;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .for_burger div div{
    width: 25px;
    height: 2px;
    border-radius: 1px;
    background-color: rgba(0, 0, 0, 1);
    margin: 2px 0px 2px 0px;
    transition: 0.5s ease;
  }

  .forNavigationTitle{
    padding: 0px 0px 0px 5px;
  }

  .forSelectBox {
    margin: 0px 0px 0px 5px;
  }

  .for-mapLegend{
    grid-template-columns: auto 1fr;
  }

  .for-mapLegend-item{
    display: flex;
    height: 20px;
    line-height: 20px;
    font-size: 10px;
  }

}

@media screen and (min-width:2000px){

  .window_vorhersagedaten_navigation{
    width: 500px;
  }

  .window_vorhersagedaten_billboard{
    width: 1800px;
  }

  #forecastDataMap{
    display: flex;
    height: calc(100% - 60px);
    width: 100%;
  }

  .for-mapLegend{
    height: 90px;
    grid-template-columns: minmax(300px, auto) 1fr;
  }

  .for-mapLegend-item{
    height: 30px;
    line-height: 24px;
    font-size: 24px;
  }

  #for-mapLegend-legend ul li:before{
    height: 15px;
    width: 15px;
  }
}



.toggle .for_navigation_slider_line1{
  transform: rotate(-45deg) translate(-4px , 4.5px);
}

.toggle .for_navigation_slider_line2{
  opacity: 0;
}

.toggle .for_navigation_slider_line3{
  transform: rotate(45deg) translate(-4px , -4.5px);
}

