@charset "utf-8";
/* CSS Document */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
	font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
}

a {
	text-decoration: none;
	color: #878787;
}
a:hover {
	text-decoration: underline;
	color: #e2001a;
}

#wrapper{
    max-width: 1200px; 
    margin: 0 auto;
}

#wrapper_e{
    max-width: 1000px; 
    margin: 0 auto;
}

#header{
    width: 100%; 
    text-align: center;
}

#footer{
    /*background-color: #DBDBDB;*/ 
    padding: 20px 10px 20px 10px; 
    margin-top: 20px; 
    text-align: center;
}

.textlink{
	color: #e2001a;
	text-decoration: underline;
	cursor: pointer;
}
.textlink:hover{
	text-decoration: none;
}


.logo{
    max-width: 350px; 
    margin: 0 auto;
}

.box {
    height: 70px;
    line-height: 30px;
    color: black;
    padding: 20px;
    font-size: 1.3rem;
    text-align: justify;
}

.box.active{
    background-color: #e2001a;
    color: white;
}

.eng{
    width: 100%; 
    font-size: 1.0rem; 
    
}

.enghead{
    font-size: 1.2rem;
    
}

.ger{
    width: 100%; font-size: 0.9rem; color: #939393; margin-left: 10px;
}

.gerhead{
    font-size: 1.1rem; 
}

.horibox{
    width: 100%; 
    margin-bottom: 10px; 
    display: flex; 
    flex-wrap: nowrap; 
    gap: 10px; 
    background-color: #DBDBDB; 
    padding: 5px;
    cursor: pointer;
}

.horibox:hover{
    background-color: #e2001a; 
    color: white;
}

.grid-container {
  display: grid;
  
  grid-template-rows: auto auto;
}

.header {
  grid-column: 1 / -1;
  display: grid;
  
}

.header-item {
  text-align: center;
  background-color: #e2001a;
  color: white;
}

.form-container{
    width: 100%; 
    margin: 30px 0 10px 0; 
    display: flex; 
    flex-wrap: wrap;
}

.form-group {
  margin: 0 10px 10px 0;
  display: flex;
  flex-direction: column;
  width: 45%;
    flex-grow: 1;
}

.form-group.full {
   width: 100%; 
}

label {
  display: block;
  margin-bottom: 5px;
}

input,
textarea {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

textarea {
  height: 100px;
}

.spalten-item {
  padding: 10px;
  border: 1px solid #ddd;
}

.spalten-item.belegt {
  background-color: #656565;
}

.spalten-item.frei {
  background-color: #DBDBDB;
  cursor: pointer;
  box-shadow: inset 0 -3px 0 -1px #DBDBDB;
  transition: box-shadow .15s ease-in-out;
}

.spalten-item.frei:hover {
  
   box-shadow: inset 0 -40px 0 -1px #e2001a;
}

#main{
    display: flex; 
    flex-wrap: wrap; 
    margin-top: 30px;
}

#menu_inner{
    display: flex; 
    flex-direction: column;
}

#menu{
    flex: 1 0 220px; 
    
    text-align: left;
}

#content{
    border: 1px solid #939393; 
    flex: 2 0 400px; 
    padding: 5px;
    /*height: 500px;*/
}

#inhalt{
    border: 0px solid #939393; 
     
    padding: 5px;
    /*height: 500px;*/
}

.button {
  margin-top: 20px;    
  display: block;
  font-size:15px;
  font-family:Arial;
  width:100px;
  height:30px;
  border-width:1px;
  color:rgba(59, 59, 59, 1);
  border-color:#dcdcdc;
  font-weight:bold;
  border-top-left-radius:6px;
  border-top-right-radius:6px;
  border-bottom-left-radius:6px;
  border-bottom-right-radius:6px;
  box-shadow:inset 0px 1px 0px 0px #ffffff;
  background:linear-gradient(#f9f9f9, #e9e9e9);
  text-decoration: none;
  padding: 5px;
  text-align: center;
    cursor: pointer;
        
}

.button.senden{
   background:linear-gradient(#F84F4F, #e2001a); 
    color: white;
}

.button.senden:hover{
   background:linear-gradient(#e2001a, #F84F4F); 
}


.button:hover {
  background: linear-gradient(#e9e9e9, #f9f9f9);
}

.step1{
    margin: 70px 30px 30px 30px; 
}

.steps{
    margin: 30px; 
}

@media screen and (max-width: 630px) {
    #menu_inner{
    display: flex; 
    flex-direction: row;
    }
    .titel{
        display: none;
    }
    .box {
    height: 50px;
    line-height: 10px;
    color: black;
    padding: 20px;
    font-size: 1.3rem;
    text-align: center;
    flex-grow: 1;    
        
}
    #menu{
    flex: 1 0 220px; 
    border: 1px solid #939393; 
    text-align: left;
}
    .form-group {
    width: 100%;
  }
.step1{
    margin: 70px 20px 20px 20px; 
}

.steps{
    margin: 10px; 
}    
  
}


  