
.participants {
	margin: 40px auto;
	padding: 0;
	box-sizing: border-box;
	position: relative;
	width: 100%;
	height: 660px;
	display: block;
	overflow: hidden;
	vertical-align: top;
}

.participants .scroller {
	position: absolute;
	left: 0;
	width: 100%;
	overflow-y: scroll;
	box-sizing: border-box;	
	padding: 40px;
	white-space: nowrap;
	display: block;
}

@media all and (max-width: 768px){
	.participants .scroller {
		padding: 20px;
	}
}

.participants .scroller::-webkit-scrollbar {
	width: 0px;
	background: transparent; /* make scrollbar transparent */
}
	
.participants .participant {
	text-decoration: none;
	width: 400px;
	height: 560px;
	display: inline-block;
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	margin: 0 40px 0 0px;
	padding: 0;
	text-align: center;
	font-size: 16px;
	line-height: 20px;
	overflow: hidden;
	background-color: white;
}

@media all and (max-width: 768px){

	.participants{
		padding: 20px 0 0 0;
	}
	
	.participants.scroller{
		padding: 20px 0 0 0;
	}
		
	a.participant {
		margin: 0 0 0 20px;
	}
	
	.hentry.participant {
		width: 300px;
		min-height: 460px;
		margin: 0px 20px 0 0;
	}
}

.participant .thumbnail {
	width: 150px;
	height: 150px;
	border-radius: 75px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	border: none;
	display: block;
	margin: 40px auto 15px auto;
}

@media all and (max-width: 768px){
	.participant .thumbnail {
		width: 100px;
		height: 100px;
	}
}

.participant .title-container {
	position: relative;
	padding: 10px 20px;
	width: 100%;
	display: block;
	white-space: normal;
}

.participant .title-container h2 {
	color: black;
	margin: 0;
	padding: 0 0 20px 0;
	font-size: 32px;
}

.participant .title-container p {
	margin: 0;
	padding: 0;
}

.participant .post-tags {
	position: absolute;
	right: 0;
	margin: 20px;
}

.participant .post-tags li{
	color: black;
	border: black 1px solid;
}

/* .participant:hover .post-tags li{
	color: white;
	border: white 1px solid;
} */