.joblist{
	display: flex;
	max-width: 100%;
}

/* Style the tab */
.tab {
  overflow: hidden;
	display: flex;
	 flex-flow: column wrap;
	justify-content: space-evenly;
	gap: 10px;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: #414c46;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 3px;
  transition: 0.3s;
  font-size: 13px;
	color: #d5dcd5;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #db715b;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #414c46;
}

/* 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;
	justify-content: space-evenly;
}

.joblist_job_flex > div{
	margin: 5px;	
}

.joblist_job{
	width: 48%;
}

.joblist_job_top{
	background: #d5dcd5;
  color: #2b2b2b;
  padding: 5px;
	box-sizing: border-box;
	text-align: center;
	font-size: 15px;
}

.joblist_job_desc{
	height: 100px;
	overflow: auto;
	padding: 2px 5px;
	box-sizing: border-box;
	text-align: justify;
	font-size: 11px;
}

.joblist_job_desctitle {
	font-family: 'Grimoire', serif;
}

.joblist_job_staff_top{
	text-align: center;	
}

.joblist_job_staff{
	padding: 10px;
	box-sizing: border-box;
	max-height: 100px;
	overflow: auto;
}

	.joblist_staff{
	padding: 2px 5px;		
}

.joblist_staff::before{
		content: "» ";
	padding-right: 2px;
}

.joblist_otherinfos{
	padding: 10px 20px;	
}
        
		