.joblist{
display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.job_place {
font-size: 9px;
  letter-spacing: 3px;
  margin-top: -22px;
}

/* Style the tab */
.tab {
overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
}

/* Style the buttons inside the tab */
.tab button {
background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 5px 8px;
  transition: 0.3s;
  font-size: 10px;
  border: 1px solid var(--line1);
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: var(--golden);
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: var(--golden);
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
	box-sizing: border-box;
	width: 100%;
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

.joblist_infotext{
	margin: 20px;
  text-align: justify;
  font-size: 12px;
  line-height: 170%;
}



.joblist_job_flex{
	display: flex;
	flex-flow: row wrap;
	margin-top:30px;
}

.joblist_job_flex > div{
	margin: 5px;	
}

.joblist_job{
	width: 33%;
}

.joblist_job_top{
box-sizing: border-box;
  text-transform: uppercase;
  background-image: url(/images/stats_back.png);
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  background-size: 100%;
  background-position-y: 93%;
  border-bottom: 1px solid var(--golden);
	flex-wrap: wrap;
}

.job_ue {
font-weight: bold;
  width: 100%;
}

.joblist_job_desc{
height: 100px;
  overflow: auto;
  padding: 10px;
  box-sizing: border-box;
  text-align: justify;
  line-height: 170%;
}

.joblist_job_staff_top{
	text-align: center;
  font-size: 10px;
  padding-bottom: 0px;
}

.joblist_job_staff{
	padding: 10px;
	box-sizing: border-box;
	max-height: 100px;
	overflow: auto;
	font-size:10px;
	text-transform:uppercase;
}

	.joblist_staff{
	padding: 2px 5px;		
}

.joblist_staff::before{
		content: "» ";
	padding-right: 2px;
}

.joblist_otherinfos{
	padding: 10px 20px;	
}
        