
html, body,div{
  border:0;
	outline:0;
	padding:0;
  margin:0;
  font-family: 'Open Sans', sans-serif;
  scroll-behavior: smooth;
}
/*Font*/
a{
  text-decoration: none;
  color: #000;
  font-size: 16px;
}
p a{
  text-decoration: underline;
}
p:hover a{
  opacity: 0.8;
}
p{
  color: rgba(0, 0, 0, 1);
  font-size: 16px;
  line-height: 28px;
  font-weight: bold;
  margin: 0px;
}
b{
  font-weight: 900;
  color: #000;
}
h1{
  margin-bottom: 5px;
  text-transform: uppercase;
}
h2{
  margin-bottom: 5px;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  p{
    font-size: 16px;
  }
  h1{
    font-size: 26px;
  }
  }

.header{
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 1);
    /*backdrop-filter: blur(20px);*/
    position: fixed;
    top: 0;
    box-shadow: 0px 1px 15px 5px rgba(0, 0, 0, 0.2);  
    z-index: 5;
    
}
.header-container{
  width: 1260px;
  padding-left: 10px;
  padding-right: 10px;
  margin-left: auto;
  margin-right: auto;
  height: 100px;
}

/* Desktop Navigation*/
.navigation{
  float: right;
  height: 30px;
  margin-top: 50px;
  user-select: none;
}
.navigation  ul{
  overflow: hidden;
  margin-top: 0px;
}
.navigation  li{
  display: block;
}
.navigation  li :hover{
  cursor: pointer;
}

.navigation  ul li{
  float: left;
  padding-left: 15px;
  padding-right: 15px;
  width: auto;
}
.navigation  li a{
  font-size: 16px;
  font-weight: bolder;
  padding-top: 5px;
  padding-bottom: 12px;
  border-bottom: solid 3px transparent;  
  display: block;
}
.navigation  li ul li a{
  padding-top: 0px;
  padding-bottom: 0px;
  display: block;
}
.navigation  ul, li a {
  text-decoration: none;
  list-style-type: none;
  color: black;
}

/* Elemente Hiden */

.navigation ul li ul {
  display: none;
  visibility: hidden;
  background-color: white;
  position: absolute;
  margin: 0px;
  margin-top: -11px;
  margin-left: -20px;
  padding: 0px;
  padding-top: 10px;
  padding-bottom: 10px;
  /* offset-x | offset-y | blur-radius | spread-radius | color */
  box-shadow: 2px 3px 5px 1px rgba(0, 0, 0, 0.2);
}
.navigation ul li ul li{
  float: none;
  margin: 0px;
  padding: 5px;
  padding-left: 20px;
  padding-right: 20px;
}
div.navigation li:hover ul{
  visibility: visible;
  display: block;
}

/* menu icon */

  /*underline Effekt*/
  .navigation li a:after {
    display:block;
    content: '';
    border-bottom: solid 3px #ff0000;  
    transform: scaleX(0);  
    transition: transform 250ms ease-in-out;
  }
  .navigation li a:hover:after { transform: scaleX(1); }
  .navigation li a.fromRight:after{ transform-origin:100% 50%; }
  .navigation li a.fromLeft:after{  transform-origin:  0% 50%; }
  
  /* Aktive seite */
  .active {
    
  }  

  /*Hamburger*/
  .hamburger-button{
    position: fixed;
    top: 0px;
    float: right;
    margin-left: calc(100% - 50px);
    z-index: 99;
  }
  label.hamburg {
    display: none;
    width: 55px; height: 30px;   
    float: right;
    margin-right: 10px;
    margin-top: 40px;
    border-radius: 4px; 
    cursor: pointer;
 }
 
 input#hamburg {
   display:none;
  }
 .line { 
  left:10px;
  height: 4px; width: 30px; 
  margin-top: 4px;
  background: rgb(26, 25, 25); border-radius: 2px;
  display: block; 
  transition: 0.5s; 
  transform-origin: center; 
}
#hamburg:checked + .hamburg .line:nth-child(1){
  transform: translateY(8px) rotate(-45deg);
}
#hamburg:checked + .hamburg .line:nth-child(2){
  opacity:0;
}
#hamburg:checked + .hamburg .line:nth-child(3){
  transform: translateY(-8px) rotate(45deg);
}
/* MENU Expand Arrow*/
.menu-expand{
  float: left;
}
label.menu-expand1 {
  width: 55px; height: 30px;   
  float: right;
  margin-right: 10px;
  border-radius: 4px; 
  cursor: pointer;
}
input#menu-expand1 {
 display:none;
}

/*  MOBILE Navigation */

.mobile-navbar{
  display: none;
  top: 0;
  height: 100%;
  z-index: 90;
  position: fixed;
  margin-left: calc(100% );
  width: 300px;
  background-color: white;
  box-shadow: 2px 3px 50px 7px rgba(0, 0, 0, 0.2);
  overflow: auto;
  user-select: none;
}
.mobile-navbar  ul{
  margin-left: 0px;
  padding: 0px;
  margin-top: 80px;
}
.mobile-navbar  ul li{
  width: 100%;
  float: left;
  background-color: white;
  box-shadow: 2px 3px 5px 1px rgba(0, 0, 0, 0.2);
}

.mobile-navbar ul  #expandable:after{
  content: "\f107";
  font-family: FontAwesome;
  position: absolute;
  color: #000;
  padding: 0;
  display: block;
  right: 20px;
  margin-top: -40px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
}
.mobile-navbar #expandable{
  height: auto;
}
.mobile-navbar  li :hover{
  cursor: pointer;
  background-color: rgb(197, 197, 197);
}

.mobile-navbar  ul, li a {
  text-decoration: none;
  list-style-type: none;
  color: black;
}
.mobile-navbar ul li a{
  display: block;
  font-size: 18px;
  font-weight: 800;
  padding: 20px;
}
.mobile-navbar ul li ul li{
  float: left;
  margin: 0px;
  display: block;
  width: 100%;
}
.mobile-navbar ul li ul li a{
  margin-left: 10px;
}
.mobile-navbar ul li ul{
  float: left;
  display: none;
  margin-left: 0px;
  padding: 0px;
  margin-top: 10px;
  display: block;
  /* offset-x | offset-y | blur-radius | spread-radius | color */

}
  @media (max-width: 1280px) {
    .header-container{
      width: calc( 100% - 20px);
    }  
  }
  @media (max-width: 1280px) {
    .navigation{
      display: none;
    }
    label.hamburg { 
      display: block;
    }
  }
  @media (min-width: 1280px) {
    .mobile-navbar{
      display: none;
    }
  }

  /*Main Page*/

  .main{
    width: 100%;
    margin-top: 60px;
    background-color: rgba(228, 228, 228, 0.123);
    padding-bottom: 15px;
    min-height: calc(100vh - 105px);
  }
  .nav-contact{
    width: 400px;
    top: 0px;
    z-index: 99;
    position: fixed;
    margin-left: 850px;
    text-align: right;
    margin-top: 20px;
    font-style: normal;
  }
  .nav-contact a{
    opacity: 80%;
  }
  .nav-contact a:hover{
    opacity: 100%;
  }
  .logo{
    height: 90px;
    margin-top: 5px;
    width: 150px;
    float: left;
    margin-left: 5px;
  }
  .container{
    width: 1240px;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 20px;
    padding-top: 20px;
    margin-left: auto;
    margin-right: auto;
    height: fit-content;
    justify-content: center;
    align-items: center;
    text-align: center;
    display: block;
    overflow: hidden;
  }
  .textbox{
    width: 50%;
    margin-left: 25%;
  }
  .textbox80{
    width: 94%;
    margin-left: 3%;
  }
  .container-fullwidth{
    width: 100%;
    padding-top: 20px;
    text-align: center;
    height: auto;
    background-color: rgb(255, 255, 255);
    display: block;
    box-shadow: 2px 3px 10px 7px rgba(0, 0, 0, 0.2);
  }
  .container-fullwidth .grey{
    padding-top: 0px;
  }
  .one-half40 img{
    margin-left: 10%;
    width: 80%;
    float: left;
  }
  .one-half40 {
    width: 40%;
    float: left;
    margin-top: 20px;
    padding: 0px;
  }
  .one-half60 {
    float: left;
    width: 60%;
    margin-top: 20px;
  }
  
 /*Unterseiten*/
  .one-half{
    width: 50%;
    margin: 0px;
    float: left;
    margin-bottom: auto;
    margin-top: 50px;
  }
   .text{
    margin-top: 0px;
    margin-bottom: 30px;
  }
  .one-half h3, .one-half p{
    text-align: left;
  }
  .leistungen-images{
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
  }
  .leistungen-images img{
    width: 50%;
    margin-left: 50%;
    margin-top: 18px;
    margin-bottom: 25px;
    float: left;
  }

  .align-left{
    text-align: left;
  }
  .align-center p, .align-center h3{
    text-align: center;
  }
  /*Error 404*/
  .blank{
    width: 100%;
    height: 80vh;
    text-align: center;
    align-items: center;
    justify-content: center;
    }
  .blank h1{
    padding-top: 35vh;
    padding-bottom: 20px;
    font-size: 60px;
  }
  .blank a{
    font-size: 26px;
    font-weight: bold;
  }

  .vergleich{
    width: 50%;
    height: auto;
    margin: 0;
    padding: 0;
    float: left;
  }
  .vergleich img{
    width: 100%;
    margin-left: 0%;
    float: left;
  }

  /* Roter Button*/
  .red-button{
    background-color: rgba(255, 2, 2, 0.8);
    padding: 10px;
    box-shadow: 0px 0px 10px 5px rgba(255, 0, 0, 0.2);
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 16px;
  }
  .red-button:hover{
    background-color: rgba(255, 0, 0, 0.6);
  }

  @media (max-width: 1280px) {
    .container{
        width: calc(100% - 40px);
      }
    }

  @media (max-width: 1280px) {
    .nav-contact{
      display: none;
    }
    .one-half{
      width: 100%;
      margin-top: 15px;
    }
    .leistungen-images img{
      width: 80%;
      margin-left: 10%;
    }
    .textbox{
      width: 100%;
      margin-left: 0%;
    }
    .vergleich{
      width: 100%;
    }
    .one-half40 {
      width: 100%;
      float: left;
    }
    .one-half60 {
      float: left;
      width: 100%;
    }
    .one-half40 img{
      margin-left: 25%;
      width: 50%;   
    }
  }

  /*Content Spacer*/
  .spacer{
    width: 100%;
    height: 30px;
    float: left;
  }
  @media(max-width: 780px){
    .one-half40 img{
      margin-left: 10%;
      width: 80%;   
    }
  }
  /* Slideshow*/
  
  .slideshow{
    width: 100%;
    height: 900px;
    position: relative;
  }
  .slide{
    position: absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    overflow: hidden;
    opacity: 0;
    transition: opacity 2s;
  }
  .slide-bild{
    width: 100%;
    height: 100%; 
    object-fit: cover;
  }
  .pfeil{
    position: absolute;
    top:0;
    bottom:0;
    font-size: 50px;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.658);
    display: flex;
    justify-content: center;
    align-items: center;
    user-select: none;
    cursor: pointer;
    width: 10%;
  }
  .pfeil:hover{
    color: rgb(255, 255, 255);
  }
  .pfeil-links{
    left:0;
  }
  .pfeil-rechts{
    right:0;
  }
  .indikatorenliste{
    position: absolute;
    bottom: 0px;
    right: 0px;
    left:0px;
    color: white;
    list-style-type: none;
    font-size: 50px;
    display: flex;
    justify-content: center;
    margin: 0px;
    padding: 0px;
  }
  .indikator{
    padding: 0 10px;
    user-select: none;
    cursor: pointer;
    opacity: 70%;
    transition: opacity 1s;
  }
  .aktiv{
    opacity: 1;
  }

  /*Text für Slider*/
  .slide-text{
    position: absolute;
    left: 0;
    right: 0;
    left:0;
    z-index: 3;
    user-select: none;
    padding-bottom: 0px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    vertical-align: center;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .slide-text-backround{
    background-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0px 0px 100px 100px rgba(0, 0, 0, 0.4);
    border-radius: 7px;
    width: max-content;
    padding: 25px;
    
  }
  .slide-text h1{
    font-size: 70px;
    color: white;
    margin-bottom: 0px;
    margin-top: 0px;
  }
  .slide-text h3{
    font-size: 40px;
    color: white;
    margin-bottom: 0px;
    margin-top: 0px;
  }
  .slide-text a{
    font-size: 35px;
    color: white;
  }

  @media (max-width: 1280px) {
    .slideshow{
      height: 700px;
    }
    .slide-text h1{
      font-size: 50px;
    }
    .slide-text h3{
      font-size: 25px;
    }
    .slide-text a{
      font-size: 25px;
    }
  }
  @media (max-width: 780px) {
    .slideshow{
      height: 500px;
    }
    .slide-text h1{
      font-size: 40px;
    }
    .slide-text h3{
      font-size: 20px;
    }
    .slide-text a{
      font-size: 20px;
    }
  }
  @media (max-width: 600px) {
    .slideshow{
      height: 350px;
    }
    .slide-text h1{
      font-size: 25px;
    }
    .slide-text h3{
      font-size: 15px;
    }
    .slide-text a{
      font-size: 15px;
    }
  }

  /*Footer*/

  .footer{
    width: 100%;
    height: auto;
    background-color: rgb(255, 255, 255);
    box-shadow: 2px 4px 7px 5px rgba(0, 0, 0, 0.2);
    display: block;
    padding-bottom: 2px;
  }
  .footer .copy{
    width: 100%;
    text-align: center;
  }
  .footer .copy p{
    font-size: 14px;
  }
  .social-icons{
    text-align: center;
  }
  .social-icons img{
    height: 30px;
    padding-left: 5px;
    padding-right: 5px;
    opacity: 65%;
  }
  .social-icons img:hover{
    opacity: 100%;
  }
  .footer-links{
    text-align: center;
    margin-top: 10px;
  }
  .footer-links a{
    font-size: 14px;
    text-decoration: underline;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-links a:hover{
    opacity: 70%;
  }
  .contact{
    text-align: center;
    display: block;
    padding-bottom: 10px;
  }
  .contact h3{
    margin-top: 0px;
    margin-bottom: 0px;
    padding-top: 10px;
  }
  .contact-onehalf{
    padding: 10px;
    display: inline-block; 
  }


  /*Scroll to top Button*/
#srollToTop {
  display: none; 
  position: fixed; 
  bottom: 25px; 
  right: 30px; 
  z-index: 99; 
  border: none; 
  outline: none; 
  background-color: red; 
  font-weight: bolder;
  cursor: pointer; 
  border-radius: 50%; /* Rounded corners */
  width: 50px;
  aspect-ratio: 1;
  box-shadow: 0px 0px 2px 2px rgba(105, 0, 0, 0.1);
  transition: 0.2s;
}
#srollToTop img{
  width: 60%;
  user-drag: none;  
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}


#srollToTop:hover {
  background-color: rgba(255, 0, 0, 0.644); /* Add a dark-grey background on hover */
}


  
/* API Mietanfragen*/


.projekt-navigation{
  height: 40px;
  width: 100%;
  padding-top: 10px;
  border-bottom: 1px solid;
  border-bottom-color: rgba(0, 0, 0, 0.13);
}


.Fenster{
  width: 100%;
}

.dataContainer{
  width: calc(100% - 40px);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: white;
  text-align: left;
  float: left;
  margin-bottom: 20px;
}
#MLT {
  background-color: rgba(209, 209, 209, 0.164);
}

.dataContainer h3, h4{
  float: left;
  width: 100%;
}




.Fenster form p,a{
  font-size: 12px;
}

.Fenster .input{
  border-bottom: 1px solid;
  border-bottom-color: rgba(0, 0, 0, 0.13);
  width: 100%;
  margin-bottom: 10px;
  float: left;
}
.Fenster .inputHalf{
  border-bottom: 1px solid;
  border-bottom-color: rgba(0, 0, 0, 0.13);
  width: 50%;
  margin-bottom: 10px;
  float: left;
}
.Fenster .inputQuarter{
  border-bottom: 1px solid;
  border-bottom-color: rgba(0, 0, 0, 0.13);
  width: 25%;
  margin-bottom: 10px;
  float: left;
}
.Fenster .inputSixth{
  border-bottom: 1px solid;
  border-bottom-color: rgba(0, 0, 0, 0.13);
  width: calc(100%/6);
  margin-bottom: 10px;
  float: left;
}

.Fenster .inputTime{
  border-bottom: 1px solid;
  border-bottom-color: rgba(0, 0, 0, 0.13);
  width: 13%;
  margin-bottom: 10px;
  float: left;
}
.Fenster .inputTimeDuration{
  border-bottom: 1px solid;
  border-bottom-color: rgba(0, 0, 0, 0.13);
  width: 8%;
  margin-bottom: 10px;
 float: left;
  opacity: 0.8;
  text-align: right;
}
.Fenster .inputTimeComment{
  border-bottom: 1px solid;
  border-bottom-color: rgba(0, 0, 0, 0.13);
  width: 28%;
  margin-bottom: 10px;
  float: left;
}
.Fenster .inputTimeWithLj{
  width: 7%;
  float: left;
}

.Fenster .inputTimeButton button{
  border: none;
  width: 5%;
  background-color: rgb(255, 0, 0);
  float: right;
 height: 22px;
 border-radius: 4px;
}
.Fenster .inputTimeButton button:hover{
  background-color: #ff0000a4;
  cursor: pointer;
}
.Fenster select:hover{
  cursor: pointer;
}

.Fenster textarea{
  font-size: 12px;
  font-family: 'Open Sans', sans-serif;
  width: calc(100% );
  resize: vertical;
  border: none;
  background-color: rgba(128, 128, 128, 0.1);
  height: auto;
  -webkit-appearance: none;
}
.Fenster textarea:focus {
  outline: none;
}
.Fenster input[type="text"],
.Fenster input[type="date"],
.Fenster input[type="time"],
.Fenster input[type="submit"],
.Fenster input[type="number"]{
  height: 20px;
  font-size: 14px;
  background-color: none;
  background:none;
  border:none;
  width: 100%;
  -webkit-appearance: none;
}
.Fenster input[type="date"],
.Fenster input[type="time"]{
  height: 22px;
}

.Fenster input[type="date"],
.Fenster input[type="time"]{
  width: auto;
}


.Fenster input[type="text"]:focus,
 .Fenster input[type="textarea"]:focus ,
  .Fenster input[type="date"]:focus,
  .Fenster input[type="time"]:focus,
  .Fenster input[type="number"]{
  outline: none;
}
.container input[type="submit"] {
  background-color: rgba(255, 0, 0, 0.699);
  font-size: 16px;
  font-weight: bold;
  padding-left: 10px;
  padding-right: 10px;
  height: 30px;
  border: none;
  border-radius: 4px;
  width: 100px;
}
.container input[type="submit"]:hover{
  background-color: rgba(255, 0, 0, 0.288);
  cursor: pointer;
}
.container input[type="submit"]:focus{
  outline: none;
}

.Fenster .inputHeaderTime{
  float: left;
  width: 26%;
}
.Fenster .inputHeaderDuration{
  float: left;
  width: 8%;
  opacity: 0.8;
}
.Fenster .inputHeaderComment{
  float: left;
  width: 28%;
}
.Fenster .inputHeaderWithLj{
  float: left;
  width: 7%;
}
.Fenster .inputHeaderSpacer{
  float: left;
  width: 30%;
  height: 28px;
}
.spielzeitItem{
  width: 100%;
  float: left;
}
.spielzeitItem2{
  width: 100%;
  float: left;
}
.spielzeitItem3{
  width: 100%;
  float: left;
}

.Fenster select{
  -moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	border: none;
	outline:none;
  background-image: url('images/icons/chevron-up-down-blue.svg'), linear-gradient(white,gainsboro);
	background-repeat: no-repeat;
	background-position: right;
  width: 90%;
  height: 22px;
  font-size: 14px;
  padding-left: 2px;
  padding-bottom: 2px;
  padding-right: 2px;
}

.Fenster textarea{
  width: 100%;
  height: auto;
  min-height: 20px;
  font-size: 14px;
  background-color: none;
  background:none;
  border:none;
  height: auto;
  resize: vertical;
  display: block;
  -webkit-appearance: none;
  font-family: inherit;
}
.Fenster textarea:focus{
  outline: none;
}

.Fenster .materialSuche{
  border-bottom: 1px solid;
  border-bottom-color: rgba(0, 0, 0, 0.13);
  width: 30%;
  margin-bottom: 10px;
  float: left;
}

.SearchMaterialItem p{
  width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-overflow:'...';
}



/* Projekt liste */

.projektlist{
  width: calc(100% - 40px);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: white;
  text-align: left;
  float: left;
  margin-bottom: 20px;
}
.projektlistItemName p {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap
}
.projektlistItem{
  width: 100%;
  height: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  float: left;
}
.projektlistItemID{
  width: 5%;
  float: left;
}
.projektlistItemType{
  width: 10%;
  float: left;
}

.projektlistItemName{
  width: 25%;
  float: left;
}
.projektlistItemDate{
  width: 15%;
  float: left;
}
.projektlistItemDuration{
  width: 5%;
  float: left;
}
.projektlistItemNumber{
  width: 7%;
  float: left;
}
.projektlistItemStatus{
  width: 8%;
  float: left;
}

.projektlistHeader{
  height: 25px;
  border-bottom: 1px solid;
  border-bottom-color: rgba(0, 0, 0, 0.13);
  margin-bottom: 10px;
}

.projektlistHeaderName{
  width: 25%;
  float: left;
}
.projektlistHeaderType{
  width: 10%;
  float: left;
}
.projektlistHeaderDate{
  width: 15%;
  float: left;
}
.projektlistHeaderDuration{
  width: 5%;
  float: left;
}
.projektlistHeaderID{
  width: 5%;
  float: left;
}
.projektlistHeaderStatus{
  width: 8%;
  float: left;
}
.projektlistFilter{
  width: 100%;
  background-color: rgb(214, 214, 214);
  height:fit-content;
  min-height: fit-content;
  text-align: left;

}
.projektlistFilterElement{
  width: 46%;
  float: left;
  margin-left: 2%;
  margin-right: 2%;
}
.projektlistFilterElement select{
  font-size: 16px;
  float: right;
}
.projektlistFilterElementHalf{
  width: 50%;
  float: left;
}
.projektlistFilter select{
  font-size: 16px;
  background-color: rgb(255, 0, 0);
  background:none;
  width: 100%;
  border: none;
}
.projektlistFilter select option{
  font-size: 16px;
  background-color: rgb(255, 255, 255);
  width: 100%;
  border: none;

}

#submitFilter, #submitNewProjekt{
  width: 15%;
  margin-top: 20px;
  float: left;
}


#messages p {
  font-weight: 100;
  font-size: 14px;
}

/* Projektrequestmaterials*/

.materialitem{
  height: 30px;
}
.materialitem form p{
  height: 30px;
  font-size: 14px;
  font-weight: normal;
}
.materialitem form{
  height: 30px;
  width: 100%;
}

.materialitem-Name{
  width: 50%;
  float: left;
  text-align: left;
}
.materialitem-Quantity{
  width: 10%;
  float: left;
  text-align: left;
}
.materialitem-Button{
  width: 25%;
  float: left;
}
.materialitem .input{
  border-bottom: 1px solid;
  border-bottom-color: rgba(0, 0, 0, 0.13);
  width: 100%;
  margin-bottom: 10px;
  height: 30px;
}
.materialitem-Button input[type="submit"]{
  height: 30px;
  font-size: 20px;
  font-weight: bold;
  background: none;
  color: red;
}
.materialitem-Button input[type="submit"]:hover{
    color: #ff000060;
    background-color: none;
    background: none;
}

/* Search*/
.livesearch{
  border: none;
  font-size: 14px;
  z-index: 1;
}
#livesearch{
  width: 30%;
  background-color: white;
  float: left;
  max-height: 400px;
  overflow: auto;

}
.searchitem-name{
  width: calc(100% - 6px);
  float: left;
  text-align: left;
  white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
  padding: 3px; 
}
.searchitem-name label:hover{
  cursor: pointer;
  color: rgba(255, 0, 0, 0.664);
}
.searchitem-button{
  /*width: calc(10% - 6px);
  //float: left;
  text-align: left;
  padding: 3px; 
  */
  display: none;
}

/* login */

.login{
  width: 600px;
  margin-left: auto;
  margin-right: auto;
  background-color: white;
  border-radius: 5px;
}
.login h3{
  padding-top: 30px;
}

.login input[type="email"],
.login input[type="password"]{
  height: 40px;
  font-size: 18px;
  background-color: none;
  background:none;
  border:none;
  width: calc(100% - 80px);
  -webkit-appearance: none;
  padding: 40px;
  text-align: center;
}
.login input[type="submit"]{
  margin-bottom: 40px;
}
.login input[type="email"]:focus,
.login input[type="password"]:focus{
  outline: none;
}

/**  Materialliste**/
.projektMatList{
  width: calc(100% - 40px);
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: white;
  text-align: left;
  float: left;
  margin-bottom: 20px;
}
.projektMatListItem{
  width: 100%;
  height: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.projektMatListQuantity{
  width: 10%;
  float: left;
  
}
.projektMatListPrice{
  width: 10%;
  float: left;
  text-align: right;
}
.projektMatListFactor{
  width: 10%;
  float: left;
  text-align: right;
}
.projektMatListDiscount{
  width: 10%;
  float: left;
  text-align: right;
}
.projektMatListName{
  width: 50%;
  float: left;
}
.projektMatListTotalPrice{
  width: 10%;
  float: left;
  text-align: right;
}

.projektMatListHeader{
  height: 25px;
  border-bottom: 1px solid;
  border-bottom-color: rgba(0, 0, 0, 0.13);
  margin-bottom: 10px;
}

.projektMatListHeaderQuantity{
  width: 10%;
  float: left;
}
.projektMatListHeaderName{
  width: 50%;
  float: left;
}
.projektMatListHeaderPrice{
  width: 10%;
  float: left;
  text-align: right;
}
.projektMatListHeaderDiscount{
  width: 10%;
  float: left;
  text-align: right;
}
.projektMatListHeaderFactor{
  width: 10%;
  float: left;
  text-align: right;
}
.projektMatListHeaderTotalPrice{
  width: 10%;
  float: left;
  text-align: right;
}

.projekt-navigation{
  width: 90%;
  background-color: white;
  height: 30px;
}
.projekt-navigation a {
  font-size: 16px;
  font-weight: bold;
  margin: 15px;
  height: 30px;
  vertical-align: middle;
}
.projekt-navigation a:hover {
  color: red;
}
.projekt-navigation #active{
  color: red;
}
/* WEB GL*/
#webgl {
   height: auto;
}


