* {
    margin: 0;
    padding: 0;
    box-sizing: border-box; /*padding and border does not affect actual width and height */
    font-size: 16px;
  }
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 300;
  src: url(../../Roboto/Roboto-Light.ttf);
}
@font-face {
  font-family: 'Robotolight';
  font-style: normal;
  font-weight: 100;
  src: url(../../Roboto/Roboto-Thin.ttf);
}
@font-face {
  font-family: 'Robotobold';
  font-style: normal;
  font-weight: 400;
  src: url(../../Roboto/Roboto-Medium.ttf);
}  

html {
  font-size: 62.5%;
  height: 100%;
}

body {
  font-family: 'Roboto';
  font-weight: 300;
  background-color: black;
  height: 100%;
  overflow-y: scroll;/*scrollbar displayed always*/
  overflow-x: hidden;
}
.menuopen::-webkit-scrollbar {
  background-color: black               /* width of the entire scrollbar */
}
.heading1 {
  font-size: 30px;
  font-weight: 300;
} 
.heading2 {
  font-size: 16px;
}

/*content1 */ 

.menu {
  background-color: transparent;
  color: white;
  position: fixed;
  max-height: 70px;
  height: 12%;
  min-height: 30px;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
  
  left: 0;
  top: 0;
  z-index: 100;
  transition: all 300ms ease-in-out; /* scroll stuff*/
  display: flex; 
  flex-direction: row;
  justify-content: space-between;
  align-items: center;

}
.menulogo {
  height: 25px;
  width: auto;
  background-repeat: no-repeat;
  background-size: cover; /* it is as tall and wide as the div */
  background-position: center center; 
  transition: all 300ms ease-in-out;
}
.menubar {
  background-color: transparent; 
  height: 29.7px;
  width: 25px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  
  
}
.bar1 {
  background-color: white;
  width: 100%;
  height: 1.9px;
  
}

.menuopen {
  transform: translateX(-100%);
  color: gray;
  background-color: black;
  width: 100hv;
  min-width: 350px;
  height: 100hv;
  bottom: 0;
  top:0;
  z-index: 101;
  transition: transform 300ms ease;
  display: flex; 
  flex-direction: column;
  justify-content: space-between;
  overflow-x: hidden;
  overflow-y: auto; /*scrollbar geht weg wenn man ihn nicht braucht */
  position: fixed; /*dafür das man wenn sich das menü öffnet nur man das menü scrollen kann fortsetzung ist beim content1*/
}

.menuopen::-webkit-scrollbar {
  background-color: black; /*scrollbar gets black*/
}



.menuopentop{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  background-color: black;
  min-width: 100%;
  width: auto;
  padding-top: 10px;
  height: 70px;
  position: fixed;
  top: 0;
  z-index: 5;
  opacity: 1;
}
.menuclosecross {
  font-size: 50px;
  color: gray;
  transform: rotate(45deg);
  font-weight: 100;
  margin-right: 5%;
}

.menuclosecross:hover {
  color: white;
  transition-duration: 300ms;
}

.anmelden {
  display: flex; 
  flex-direction: row;
  background-color: transparent;
  gap: 10px;
  align-items: center;
  margin-left: 15%;
  text-decoration: none;
}

.anmeldentext {
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.loginnormal {
  font-size: 16px;
  color:white;
  text-decoration: none;
}
.loginpremium {
  font-size: 16px;
  color:white;
  text-decoration: none;
}
.loginslash {
  font-size: 16px;
  color:white;
}

.loginpremium:hover {
  color: gray;
  transition-duration: 300ms;
}
.loginnormal:hover {
  color: gray;
  transition-duration: 300ms;
}


.menuopenbottom {
  font-size: 16px;
  display: grid;
  grid-template-rows: 50% 50%; 
  grid-template-columns: 50% 50%;
  grid-column-gap: 30px;
  grid-row-gap: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 15%;
  padding-right: 15%;
  background-color: black;
  
  width: 100%;
  height: 70px;
  position: fixed;
  bottom: 0;
  overflow: hidden;
}
.mbt {
  color: gray;
  text-decoration: none;
}

.mbt:hover {
  color: white;
  text-decoration: underline;
  transition-duration: 300ms;
  
}

.menuopenmiddle {
  font-size: 30px;
  background-color: black;
  font-weight: 300;
  display: flex; 
  flex-direction: column;
  gap: 25px;
  margin-top: 30%;
  padding-bottom: 70px;
  font-weight: 350;
  padding-left: 15%;
}
.menuopenmiddletext {
  font-size: 30px;
}

.menuopenmiddletext:hover {
  color: white;
  transition-duration: 100ms;
}



.material-icons {
  color: #FE7316;
  font-size: 18px;
}

content {
  display: flex; 
  flex-direction: column;
}

.contentmenuopen1 {
  overflow: hidden;
  position: fixed; /*man kann nur das menu scrollen den body scrollbar kann man nicht mehr verwenden */
  
}




/*content 1 */

.content1 {
  height: 90vh;
  background-color: black;
  width: 70%;
  margin-top: 140px;
  margin-inline: 15%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c11 {
  font-size: 30px;
  position: relative;
  padding-bottom: 10px;
  color: white;
}
.c11::after {
  content: '';
  background-color: white;
  position:absolute;
  height: 2px;
  width: 40px;
  border-radius: 15px;
  bottom: 0;
  left: 3px;
}

#form1{
	display: flex;
	flex-direction: column;
}
.c12 {
  font-size: 30px;
  color: white;
}
.c13 {
  width: 300px;
  border-bottom: 1.5px solid lightgray;
  margin-top: 50px;
  margin-bottom: 10px;
  font-size: 16px;
  color: white;
  font-weight: 400;
  transition: 500ms;
  z-index: 30;
}
[contenteditable] {
  outline: 0px solid transparent;
}

[contenteditable=true]:empty:before{
  content: attr(placeholder);
  pointer-events: none;
  display: block; /* For Firefox */
}
[contenteditable=true]:after#user::before {
  Content: "Username";
  position:relative;
}
#beschriftungusername {
  color: #BDBDBD;
  font-size: 16px;
  position: absolute;
  font-weight: 400;
  top: 265px;
  z-index: 50;
  transition: 300ms;
}
#beschriftungkennwort {
  color: #BDBDBD;
  font-size: 16px;
  position: absolute;
  font-weight: 400;
  top: 345px;
  z-index: 50;
  transition: 300ms;
}


input {
  border-top-style: hidden;
  border-right-style: hidden;
  border-left-style: hidden;
  border-bottom-style: groove;
  background-color: black;
}

.no-outline:focus {
  outline: none;
  background-color: black;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #1b1b1b inset !important;
  -webkit-text-fill-color: white !important;
}


.c1checkbox{
  width: 27px;
  height: 27px;
  -webkit-appearance: none;
  border: 1px solid lightgray;
  border-radius: 50%;
  position: absolute;
  left: -40px;
}
.c1checkbox:checked {
	border: 1px solid white;
	color: #FE7316;
  background-color: #FE7316;
  padding: 1px;
  box-shadow: inset 0px 0px 0px 3.5px black; 
}
.c14 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 40px;
  margin-top: 40px;
  margin-left: 40px;
  align-items: center;
  position: relative;
  color: white;
}
.c15 {
  color: red;
  font-weight: 400;
  margin-bottom: 10px;
}

/*content 2 */

.arrow-normal  {
  width: 18px;
  height: 13px;
  margin-top: 3px;
}

.myContainer {
  width: 25px;
  height: 20px;
  position: relative;
  background:transparent;
  overflow: hidden;
  align-items: center;
  padding-top: 3px;
  margin-bottom: 4px;
}
.RAR_arrow {
  position: absolute;
  width: 18px;
  height: 13px;
}
.heading2 {
  font-size: 16px;
}
.c423 {
  background-color: white;
    color: black;
    font-size: 16px;
    padding-top: 8px;
    padding-bottom: 10px;
    padding-inline: 20px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    width: max-content;
}

/* Scroll Stuff*/

.scroll-down .menu {
  transform: translate3d(0, -100%, 0);
}

.scroll-up .menu{
 background-color: black;
}

.scroll-up .bar1 {
  background-color: white;
}

.scroll-top .menu {
  background-color: transparent;
}


/*botttom Webpage */
*::bevor, *::after {box-sizing:border-box}

.c5 {
    background-color: rgb(236, 237, 231);
    width: 100%;
    height: 100%;
    padding: 5%;
}
/*top */


.c5t2 {
    background-color: black;
    color: white;
    font-size: 16px;
    padding-top: 8px;
    padding-bottom: 10px;
    padding-inline: 30px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 10px;
    text-decoration: none;
    width: max-content;
}





/*middle*/
.c5m1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 15px;
    border-bottom: 1.1px solid black;
    font-size: 16px;
    padding-left: 3px;
    background-color: transparent;
    z-index: 6;
}
.c5m2 {
    background-color: transparent;
    display: flex; 
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    transition: all 1s;
}
.c5m3{
    font-size: 30px;
    font-weight: 100;
    margin-right: 0px;
    transition: transform 300ms; /*die transition ist nur für die transform sachen der rest wird nicht verzögert*/
    line-height: 35px; /* macht höhe vom div streifen gleich hoch egal was für eine fontsize content hat*/
}
.c5m4 {
    height: 0px;
    transition-property: height;
    background-color: transparent;
    transition-duration: 700ms;
    overflow:hidden;
    font-weight: 300;
    
}
.c5m4 a {
    color:black;
    text-decoration: none;
}
.c5m4 a:hover {
    font-weight: 400;
}
/* middle lep*/

#c5m4lep {
    display: flex;
    flex-direction: column;
}
#c5m4lep a {
    padding-top: 7px;
    padding-bottom: 7px;
}
 /*middle Kontakt */
 
#c5m4kontakt {
    display: flex;
    flex-direction: row;
    background-color: transparent;
    height: 0;
   
    
}
#c5m4kontakt img {
    width: 35%;
    height: 100%;
    margin: 10px;
}

#c5m4kontakt div {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    margin-top: 10px;
}
.c5m41 {
    margin-left: 15px;
    font-weight: 400;
    margin-bottom: 7px;
    transition: transform 200ms;
    position: relative;
    background-color: transparent;
    display: inline-block;
}
.c5m41:hover {
    text-decoration: underline;
}
.c5m41::after {
    content: '';
    position: absolute;
    display: block;
    background-color: blue;
    height: 1px;
}

#c5m4kontakt table {
    border-spacing: 15px 15px;
}
#c5m4kontakt table td {
    vertical-align: top;
}

/* middle Vertriebskanäle */
#c5m4vertriebskanäle {
    display: flex; 
    flex-direction: column;
}
#c5m4vertriebskanäle a {
    padding-top: 7px;
    padding-bottom: 7px;
}

/* middle Anleitungen */ 
#c5m4anleitungen {
    display: flex; 
    flex-direction: column;
}
#c5m4anleitungen a {
    padding-top: 7px;
    padding-bottom: 7px;
}

/*middle Impressum & AGB */

#c5m4agb {
    display: flex;
    flex-direction: row;

}
.c5m4impressum {
    font-weight: 400;
    width: 100%;
    display: flex;
    flex-direction: column;
    display: block;
}

.c5m4impressum div{
    font-weight: 300;
    display: block;
    margin-top: 20px;
}
.c5m41impressum {
    margin-top: 20px;
    margin-bottom: 10px; 
}
.c5m4impressum table {
    border-spacing: 15px 15px;
    font-weight: 300;
}

.c5m4impressum table td {
    vertical-align: top;
}
.c5m4agb {
    font-weight: 400;
    width: 100%;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
   
}
.c5m4agb div {
    font-weight: 300;
    margin-top: 20px;
    margin-bottom: 10px; 
}
.c5m4agb a {
    padding: 7px;
    padding-left: 30px;
    font-weight: 300;
}

.c5m4agb a:hover  {
    font-weight: 400;
}

/*bottom*/
.c5b {
    margin-top: 20px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    font-size: 11px;
    color: gray;
  
}
.c5b1 {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  flex-wrap: wrap;
  align-items: center;
  color: black;
  background-color: transparent;
  width: max-content;
}
.c5b2 {
display: flex;
flex-direction: row;
flex-wrap: nowrap;
justify-content: space-between;
gap: 7px;
}
.c5b3 {
font-size: 12px; padding-top: 2px; padding-left: 5px;
}

/*handy size*/
@media screen and (max-width: 601px) { 
  #c5m4agb {
    flex-direction: column-reverse;
  }
  .c5m4agb div {
    font-weight: 300;
    margin-top: 10px;
    margin-bottom: 10px; 
  }
  .c5m4agb a {
    padding: 7px;
    padding-left: 15px;
    font-weight: 300;
    text-decoration: underline;
  }
  .c5m4agb {
    padding-left: 0px;
  }
  .c5m4impressum {
    margin-top: 20px;
  }
  .c5m41impressum {
    margin-top: 5px;
  }
  .c5m4impressum div{
    font-weight: 300;
    display: block;
    margin-top: 10px;
  }
   .c4text2 {
    font-size: 13px;
  }
}
@media screen and (max-width: 401px) {
  .menuopen {
    min-width: 100%;
  }
  .body::-webkit-scrollbar {
    background-color: transparent;
  }
  .menuopen {
    width: 100hv;
  }
  .c2pfeilright {
    width: 10%;
  }
  .c2pfeilleft {
    width: 10%;
  }
 
  /*bottom*/
  #c5m4kontakt {
    display: flex;
    flex-direction: column;
    }
  #c5m4kontakt img {
    width: 50%;
    margin-left:25%;
  }
  .c5m4impressum table td {
    font-size: 14px;
  }
  
  }
  
  @media only screen and (max-width: 995px) {	
  .c13 {
  width: 230px;
}
  
  }


