@charset "UTF-8";
  
/* The Overlay (background) */
.overlay {
  /* Height & width depends on how you want to reveal the overlay (see JS below) */   
  height: 100%;
  width: 0;
  position: fixed; /* Stay in place */
  z-index: 1; /* Sit on top */
  right: 0;
  top: 0;
  background-color: rgb(0,0,0); /* Black fallback color */
  background-color: rgba(72, 72, 72, 1); /* Grey  */
  overflow-x: hidden; /* Disable horizontal scroll */
  transition: 0.5s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}

/* Position the content inside the overlay */
.overlay-content {
  position: relative;
  top: 25%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

.overlay-content-mobile {
  position: relative;
  top: 10%; /* 25% from the top */
  width: 100%; /* 100% width */
  text-align: center; /* Centered text/links */
  margin-top: 30px; /* 30px top margin to avoid conflict with the close button on smaller screens */
}

/* The navigation links inside the overlay */
.overlaytext {
  padding: 8px;
  text-decoration: none;
  font-size: 2.1rem;
  line-height: 2.2rem;
  color: #818181;
  display: block; /* Display block instead of inline */
  transition: 0.5s; /* Transition effects on hover (color) */
}


/* When you mouse over the navigation links, change their color */
.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

/* Position the close button (top right corner) */
.overlay .closebtn {
  position: absolute;
  top: 100px;
  right: 42px;
  width: 25px;
  height: 25px;
}

/*
.overlay .logobtn {
  position: absolute;
  top: 15px;
  left: 30px;
  width: 50px;
  height: 50px;
}
*/

.break_mob {display: none}

.hamburger {position: absolute; top: 100px; right: 40px; width: 30px;}
.hamburger_singlepage {position: fixed; top: 100px; right: 40px; width: 30px;}

.hamburger_container {display: none; position: fixed; top: 0; left: 0; width: 100%; height: 80px; background-color: #ececec; z-index: 1;}
.hamburger_singlepage_mob {position: fixed; top: 30px; right: 20px; width: 30px; z-index: 1;}
.closebtn_singlepage_mob {position: fixed; top: 30px; right: 20px; height: 25px; width: 25px; background-image: url(../images/hamburger_close_dark.svg); z-index: 6;}
.closebutton {display: block;}
.closebutton_mob {display: none;}


.logobtn {background-image: url(../images/logo_ohne_text.svg);}
.closebtn {background-image: url(../images/hamburger_close.svg);}
.closebtn_dark {background-image: url(../images/hamburger_close_dark.svg);}


.overlay-content {display: block}
.overlay-content-mobile {display: none}
.overlay-content-mobile a:hover, .overlay a:focus {
  color: #c8c8c8;}


