    /* Style the tab */
    .res_tab {
      overflow: hidden;
		padding:20px;
      background-color: #DE5F25;
		font-family:'Switzer', sans-serif;
		font-weight:800;
		text-transform:uppercase;
    }
    
    .res_bit form {
      display: inline;
    }
    
    /* Style the buttons that are used to open the tab content */
    .res_tab button {
      background-color: #DE5F25;
		color:#EAE6DC;
      background-image: none;
      border-radius: 0;
      float: left;
      border: none;
      outline: none;
      cursor: pointer;
      padding: 5px 10px;
      transition: 0.3s;
      font-size: 1.1em;
		text-transform:uppercase;
		font-family:'Switzer';
      font-weight: bold;
    }
    
    /* Change background color of buttons on hover */
    .res_tab button:hover {
       color:#1C1B19;
    }
    
    /* Create an active/current tablink class */
    .res_tab button.active {
      color:#1C1B19;
		font-weight:900;
		border-bottom:4px solid #F8F7F7;
		padding-bottom:6px;
    }
    
    /* Style the tab content */
    .res_tabcontent {
      font-family:'Switzer';
      padding: 6px 12px;
      border-top: none;
      animation: fadeEffect 1s; /* Fading effect takes 1 second */
    }
    
    /* Go from zero to full opacity */
    @keyframes fadeEffect {
      from {opacity: 0;}
      to {opacity: 1;}
    }
    
    .res_ausgabe {
        display: flex;
        flex-wrap: wrap;
    }
    
    .res_ausgabe h1 {
        flex-basis: 100%;
        text-align: center;
    }
    
    .res_ausgabe .res_bit {
        flex-grow: 1;
    }
    .res_add {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
    }
    .res_add h2 {
      flex-basis: 100%;
      text-align:center;
    }
    
    .res_add_save {
        flex-basis: 100%;
        text-align: center;
    }

    .res_mod {
     
      padding: 6px 12px;
      border-top: none;
  }
    
    .res_add_inputs, .res_add_select {
        /* flex-grow: 1; */
        margin: 5px 25px;
		
    }

    .res_add_inputs input, .res_add_select select {
       background:#EFECE8;
		border:0px;
		padding:3px;
		
    }
    
    .res_add_inputs {
        text-align: right;
    }    
  
    
		
		