/*body {
  color: #333;
  padding: 1.5em;
}*/
table {
  border-collapse: collapse;
  width: 100%;
  border:hidden;
}
th {
 /* background-color: #eee;*/
  font-weight: bold;
}
th,
td {
	vertical-align:auto;
  border:hidden;
  line-height: 1.5;
  padding: 0.2em;
  text-align: left;
  width:auto;
 
}
/* Stapeln von Zeilen vertikal auf kleinen Bildschirmen */
@media (max-width: 30em) {
  /*Verstecken der column labels */
	thead tr {
		position: absolute;
		/*top: -9999em;*/
		left: -9999em;
	}
	tr {
    /*border: 0.125em solid #333;*/
    border-bottom: 0;
  }
	/* Abstand zwischen Tabellenzeilen */
	
	#table {
		width:80%;
	}
	
  tr + tr {
    margin-top: 1.5em;
  }
  /* Tabellenzellen Verhalten wie Zeilen */
  tr,
  td {
		display: block;
		table-layout:auto;
		padding: 0.75rem;
			/*border:hidden;*/				
	}
	td {
		border:hidden;
		/*border-bottom: 0.125em solid #333;*/
	/* ein Leerzeichen für Datenbeschriftungen */
		/* padding-left: 5%; */
	}
	/* Hinzufügen von  Datenbeschriftungen */
  td:before {
    content: attr(data-label);
    display: block;
    font-weight: bold;
    line-height: 1.5;
    margin-left: -90%;
    width:90%;
      
  }
}
/* Stapeln von Etiketten vertikal auf kleineren Bildschirmen */
@media (max-width: 20em) {
  td {
   /* padding-left: 0.75em;*/
  }
 td:before {
	/* border:none;*/
    border-collapse: separate; 
    display: block;
    margin-bottom: 0.75em;
    margin-left: 0;
    padding: 0;
	/*width:90%;*/
  }
  
  td {
	  border:hidden;
  }
 /* td:after {
	  padding-left:0;
}*/
}

/*html {
  height 100%
}*/

/* Basic table style*/
table {
  max-width: 60rem;
  border-collapse: collapse;
  margin:-3px;
  padding;: 0;
  width: 100%;
  /*border: 3px solid #dfdfdf;*/
}
th{
  text-align:left;
}

th,td{
	font-family:"RUB Scala MZ";
	font-size: 1.1em;
	line-height:1.3em;
	text-align:left;
	color:#606060; /*dunkelgrau*/
  	border: none;
  	padding: 0.3rem;
	margin-bottom: -20px;
	/*border: 1px solid #dfdfdf;*/
}

.td_bold {
	font-weight:bold
}

/* Responsive table part*/
@media screen and (max-width: 1070px) {
  
  .responsive-table{ 
    border: 0;
  }
  table {
	  margin-left: -10px;
	  /* border: 0px solid #dfdfdf;*/
  }
  
    thead {
      display: none;
	}
	
	th {display:none;
	}
	
    /*tbody{
      background-color: #efefef;
	}*/
	
    th, td{
	    padding:.65rem;
      background-color: white;
}

    tr {
     /* border-bottom: 1px solid #ddd;*/
      display: block;
      margin-bottom:0.75rem;
}

      &:last-of-type{
        margin-bottom:inherit;
	  }
	  
    td {
      display: block;
      /*border-bottom:1px #000;*/
      text-align:left;
}

    td:before{ 
      content: attr(data-label);
      float: left;
      font-weight: bold;
	}
}