.joblist {background-color: var(--hintergrund2);}

/* Style the tab */
.tab {
  width: 729px;
  height: 277px;
  /* border: 1px solid; */
}

/* Style the buttons inside the tab */
.tab button {
  padding: 10px 8px;
  transition: 0.3s;
  font-size: 17px;
  background-color: var(--link1);
  float: left;
  width: 240px;
  height: 42px;
  margin: 1px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: var(--link2);
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: var(--link2);
	color:var(--font-color1);
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  box-sizing: border-box;
  width: 729px;
   /* Fading effect takes 1 second */
  background-color: var(--hintergrund2);
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {
opacity: 0;
}

to {
opacity: 1;
}


}

.joblist_infotext{
	margin: 15px;
	text-align: justify;
	font-size: 12pt;
}

.joblist_job_flex{
	display: flex;
	flex-flow: row wrap;
}

.joblist_job_flex > div{	margin: 3px;}
.joblist_job{width: 49%;}

.joblist_job_top{
	background: var(--akzent3);
  border-top: 1px solid var(--hintergrund1);
  border-bottom: 1px solid var(--hintergrund1);
	color:var(--hintergrund1);
  padding: 5px;
	box-sizing: border-box;
	text-align: center;
}

.joblist_job_top a{color:var(--hintergrund2);}

.joblist_job_desc{
	height: 100px;
	overflow: auto;
	padding: 2px 5px;
	box-sizing: border-box;
	text-align: justify;
}

.joblist_job_staff_top{	text-align: center;}

.joblist_job_staff{
	padding: 5px;
	box-sizing: border-box;
	max-height: 150px;
	overflow: auto;
}

.joblist_staff{	padding: 2px 5px;}

.joblist_staff::before{
		content: "» ";
	padding-right: 2px;
}

.joblist_otherinfos{	padding: 10px 20px;}