.joblist{
	display: flex;
}

/* Style the tab */
.tab {
  	overflow: hidden;
	display: flex;
	flex-flow: column wrap;
	background: var(--main-accent);
	width: 20%;
	border-radius: 5px;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px;
  transition: 0.3s;
	width: 100%;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: var(--accent-two);
}

/* 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: 13px;
}



.joblist_job_flex{
	display: flex;
	flex-flow: row wrap;
}

.joblist_job_flex > div{
	margin: 5px;	
}

.joblist_job{
	width: 48.8%;
	box-sizing: border-box;
	border: 5px solid var(--main-accent);
	background: var(--accent-three);
	border-radius: 5px;
}

.joblist_job_top{
	background: var(--main-accent);
  	padding: 5px;
	box-sizing: border-box;
	text-align: center;
	font-size: 12px;
	text-transform: uppercase;
	height: 60px;
  	align-content: center;
}

.joblist_job_desc{
	height: 150px;
	overflow: auto;
	padding: 10px;
	box-sizing: border-box;
	text-align: justify;
}

.joblist_job_staff_top{
	text-align: center;	
}

.joblist_job_staff{
	padding: 10px;
	box-sizing: border-box;
	height: 150px;
	overflow: auto;
}

	.joblist_staff{
	padding: 2px 5px;		
}

.joblist_staff::before{
		content: "» ";
	padding-right: 2px;
}

.joblist_otherinfos{
	padding: 10px 20px;	
}
        