.joblist{
	display: flex;
}

/* Style the tab */
.tab {
  overflow: hidden;
	display: flex;
	 flex-flow: column wrap;
}

/* Style the buttons inside the tab */
.tab button {
    /* background-color: inherit; */
    /* border: none; */
    /* outline: none; */
    cursor: pointer;
    padding: 14px 16px;
    transition: 0.3s;
    font-size: 13px;
    background: #ffffff05;
    border: 1px #00000052 solid;
    color: #5c5c5c;
    text-transform: uppercase;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #0000001c;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #2b383a;
}

/* 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: 32%;
}

.joblist_job_top {
    background: #00000052;
    color: #333;
    /* border-top: 1px solid #fff; */
    /* border-bottom: 1px solid #ccc; */
    padding: 5px;
    box-sizing: border-box;
    text-align: center;
    color: #6d6d6d;
}

.joblist_job_desc {
    height: 100px;
    overflow-y: scroll;
    padding: 2px 5px;
    box-sizing: border-box;
    text-align: justify;
    padding: 11px;
    background: #0000001f;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.joblist_job_desc::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.joblist_job_desc{
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.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;	
}

