html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /*font-family: "Monument Extended", Arial, Helvetica, sans-serif;*/
  font-family: 'Poppins', "Monument Extended", Arial, Helvetica, sans-serif;
  font-weight: 300;
}

body {
  margin: 0;
  padding: 0;	
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#loading_page{
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgba(79,79,79,0.95);
  z-index: 9999;
  -webkit-backdrop-filter: grayscale(100%);
  backdrop-filter: grayscale(100%);
  pointer-events: auto;
}

#loading_page:after{
  content:"";
  position: absolute;
  top:0;
  left:0;
  right:0;
  height:100%;
  width: 100%;
  cursor: wait;
}


#loading_page_spinner_container{
    display: flex;
    width: 250px;
    height: 250px;
    align-items: center;
    justify-content: center;
}

#loading_page_spinner{
  display: inline-block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
  background: linear-gradient(0deg, rgba(255, 61, 0, 0.0) 33%, rgba(0, 195, 255, 1) 100%);
  box-sizing: border-box;
  animation: spinner_rotation 1s linear infinite;
}

#loading_page_spinner::after {
  content: '';  
  box-sizing: border-box;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border-radius: 50%;
  background: rgba(79,79,79,1);
}

#loading_page_spinner-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: auto;
  position: absolute;
  color: rgba(0, 195, 255, 1);
  font-weight: 600;
}

#site_loading_section_status{
    display: flex;
    flex-direction: column;
    color: white;
    font-weight: 300;
    font-size: 12px;
}

#check_startseite_loaded,
#check_observation_loaded,
#check_forecast_loaded,
#check_climate_loaded,
#check_extreme_loaded{
    display: None;
    color: lime;
}

.navbar{
  display: flex;
  position: absolute;
  justify-content: space-between;
  top: 0px;
  right: 0px;
  height: 10vh;
  width: 100%;
  transition: 0.8s ease-in-out;
  z-index: 1;
  pointer-events: none;
}

.startseite_navigation{
  display: flex;
  height: 100%;
  width: 50%;
  justify-content: center;
}


.startseite_navigation ul{
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
}

.startseite_navigation ul li{
  display: flex;
  width: 150px;
  height: 30px;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  margin: 2px 5px 2px 5px;
  background-color: rgba(112,112, 112, 1);
  cursor: pointer;
  pointer-events: auto;
  animation: navAnimationAtStart 0.8s ease-in-out;
}



.startseite_navigation ul li a{
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 15px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  color: white;
  font-weight: 200;
  font-size: 0.8rem;
  transition: 0.8s ease-in-out;
  box-shadow: -5px -5px 15px rgba(255,255,255,0.2),
	       5px 5px 15px rgba(0,0,0,0.1),
	       inset -5px -5px 5px rgba(255,255,255,0.2),
	       inset 5px 5px 5px rgba(0,0,0,0.1);
}




main{
  margin: 0;
  padding: 0;
  perspective: 1px;
  transform-style: preserve-3d;
  height: 100%;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;	
}


.main-container {
  z-index: 2;
  min-height: 100vh;
  width: 100vw;
  position: absolute;
  top: 100vh;
  background-color: rgba(0,0,0,1);
  line-height: 30px;
  /*font-weight: lighter;*/
  padding: 0px;
  color: rgba(200,200,200,1);
}

section {
  display: flex;
  min-height: 100vh;
  width: 100vw;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}


.container-scrollPage{
  display: none;
}


#beobachtungsdaten{
  background-color: rgba(56, 66, 75, 1);
  position: relative;
}

#vorhersagedaten{
  background-color: rgba(156, 162, 170, 1);
  position: relative;
}

#klimadaten{
  background-color: rgba(105, 121, 135, 1);
  position: relative;
}

#extremwerte{
  background-color: rgba(154, 174, 187, 1);
  position: relative;
}

.leaflet-marker-icon{
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.leaflet-div-icon{
  display: flex;
  justify-content: center;
  align-items: center;
}


.navigationTitle{
  font-size: 12px;
  color: rgba(200, 200, 200, 1);
  margin: 20px 0px 10px 0px;
  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  line-height: 14px;
}

.select-wrapper{
  display: table-cell;
  position: relative;
}

.select-wrapper::before{
  content: "";
  height: 6px;
  width: 6px;
  border-top: 2px solid rgba(200, 200, 200, 1);
  border-left: 2px solid rgba(200, 200, 200, 1); 
  transform: rotate(-135deg) translate(0%, 50%);
  position: absolute;
  right: 5%;
  top: 50%;
  color: #fff;
  pointer-events: none;
}

.option-select-wrapper{
  display: table-cell;
  position: relative;
  margin: 5px 10px 0px 0px;
}

.option-select-wrapper::before{
  content: "";
  height: 6px;
  width: 6px;
  border-top: 2px solid rgba(200, 200, 200, 1);
  border-left: 2px solid rgba(200, 200, 200, 1); 
  transform: rotate(-135deg);
  position: absolute;
  right: 10px;
  top: 10px;
  color: #fff;
  pointer-events: none;
}


.menuSelectBox {
  display: flex;
  width: 180px;
  height: 40px;
  color: rgba(200, 200, 200, 1);
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  line-height: 16px;
  cursor: pointer;
  border: none;
  background-image: linear-gradient(to right, rgba(60, 79, 91, 1), rgba(74, 92, 108,1));
  box-shadow: 1px 1px 5px 1px rgba(0,0,0,0.2);
  border-radius: 3px;
  outline: none;
  transition: 0.2s ease;
  outline: none;
}

.menuSelectBox option{
  color: rgba(200,200,200,1);
  background-color: rgba(60, 79, 91, 1);
}

.scrollbar-container{
  display: none;
}

footer{
  display: flex;
  height: 50px;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 300;
  line-height: 50px;
  text-transform: uppercase;
}

footer a{
  text-decoration: none;
  color: rgba(255, 255, 255, 1);
  padding: 0px 5px;
  box-sizing: border-box;
}


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

  body, html{
    overflow-x: hidden;
    position: fixed;
  }

  .navbar{
    height: calc(100vh);
    width: 240px;
    top: 0px;
    right: 0px;
    position: absolute;
    transform: translateX(calc(100% - 60px));
    transition: transform 0.5s ease-in;
    justify-content: center;
    align-items: flex-start;
  }

  .navbar-active{
    transform: translateX(0%);
  }

  .navigation_slider{
    display: flex;
    width: 60px;
    height: 60px;
    background-color:rgba(225, 225, 225, 0);  
    cursor: pointer;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 50%;
    border: 0px solid rgba(255, 255, 255, 1);
    transform: translateX(30px);
    box-shadow: -2px -2px 5px rgba(255,255,255,0.5),
	       2px 2px 5px rgba(0,0,0,0.1),
	       inset -5px -5px 5px rgba(255,255,255,0.3),
	       inset 5px 5px 5px rgba(0,0,0,0.1);
    margin: 1vh 0px 0px 0px;
    pointer-events: auto;
  }

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

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

  .scrollbar-container{
    display: flex; 
    flex-direction: column;
    position: absolute;
    right: 5px;
    top: 87%;
    transform: translate(0, -50%);
    z-index: 1;
    justify-content: center;
    align-items: center;
    box-sizing: content-box;
  }

  .scrollPageBtn{
    display: flex;
    height: 10vw;	/* soll quadratisch bleiben */
    min-height: 30px;
    max-height: 50px;
    width: 10vw;
    min-height: 30px;
    max-width: 50px;
    box-sizing: border-box;
    border-radius: 50%;
    margin: 5px 0px 0px 0px;
    border: 2px solid rgba(255,255,255,1);
    background-color: rgba(255,255,255,0.3);
    justify-content: center;
    align-items: center;
  }

  .scrollPageBtn > div{
    display: block;
    height: 10px;
    width: 10px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    pointer-events: none;
  }

  #pageUpBtn > div{
    transform: rotate(135deg) translate(+15%,-15%);
  }

  #pageDownBtn > div{
    transform: rotate(-45deg) translate(+15%,-15%);
  }
  .container-logo{
    display: none;
  } 
        
  .startseite_navigation{
    display: flex;
    height: 100%;
    width: 180px;
    justify-content: center;
    background-color:rgba(0,0,0, 0.8);
  }

  .startseite_navigation ul li a{
    display: flex;
    height: 100%;
    width: 100%;
    border-radius: 0px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    color: white;
    font-size: 0.8rem;
    transition: 0.8s ease-in-out;
    box-shadow: none;
    text-transform: uppercase;
  }

  .startseite_navigation ul li{
    border-radius: 0px;
  }

  .startseite_navigation ul li:hover{
    background-color: rgba(255,	255, 255, 0);
  }

  .startseite_navigation ul{
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    flex-wrap: wrap;
    padding: 0;
  }

  .startseite_navigation ul li{
    pointer-events: auto;
    transform: translateY(0px);
    background-color: rgba(112,112, 112, 0);
    width: 100%;
  }

  .option-select-wrapper{
    margin-right: 0px;
  }

}

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

  .startseite_navigation ul li{
    width: 200px;
    height: 40px;
    border-radius: 20px;
    margin: 2px 10px 2px 10px;
  }

  .startseite_navigation ul li a{
    border-radius: 20px;
    font-weight: 300;
    font-size: 1rem;
  }

  .navigationTitle{
    font-size: 17px;
    line-height: 17px;
  }

  .menuSelectBox {
    width: 300px;
    height: 60px;
    font-size: 18px;
    line-height: 60px;
  }

  footer{
    height: 100px;
    font-size: 16px;
  }

}

@keyframes navMainFade{

    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }

}

@keyframes navAnimationAtStart{

    0%{opacity: 0;
       transform: translateY(-20px);}

    100%{opacity: 1;
         transform: translateY(0px);}
}

@keyframes spinner_rotation {
  0% { transform: rotate(0deg) }
  100% { transform: rotate(360deg)}
} 

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

.toggle .navigation_slider_line2{
  opacity: 0;
}

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






