/* =======================================================
// Team shortcode main
======================================================= */

.teamShort .teamlid::after,
.teamShort::after {
	clear: both;
	content: " ";
	display: block;
}
.teamShort{}
.teamShort .teamlid{
	display: flex;
	position: relative;
	width: 100%;
	padding-bottom: 50px;
}
.teamShort .teamlid .foto_wrapper{
	width: 40%;
	min-width: 200px;
}
.teamShort .teamlid .foto_container{
	display: inline-block;
	position: relative;
	width: 100%;
	height: auto;
	padding-top: 100%;
	border-radius: 50%;
	background-color: #f3f0ec;	
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	overflow: hidden;
}
.teamShort .teamlid .beschrijving{
	position: relative;
	width: 100%;
	border-bottom: solid 4px #ef7c2d;
}
	/* Media Queries - Divi: 
	================================================== */
	@media all and (max-width: 980px) {
		.teamShort .teamlid {
			flex-wrap: wrap;
		}
	}
/* =======================================================
// Team shortcode Normal 
======================================================= */

.teamShort.normal .teamlid{
	align-items: center;
	justify-content: center;
}
.teamShort.normal .teamlid .beschrijving h3{
	position: relative;
	padding: 0;
	/*font: 33px sans-serif;*/
	text-align: left;
	background-color: white;
	z-index: 2;
}
.teamShort.normal .teamlid .beschrijving h3:before {
	content:"";
	display: block;
	position: absolute;
	width: 100%;
	height: 4px;
	margin: 0 auto;
	top: calc(50% - 2px);
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #ef7c2d;
	z-index: -1;
}
.teamShort.normal .teamlid .beschrijving h3 span { 
	background: #fff; 
	padding-right: 10px;
}
.teamShort.normal .teamlid .beschrijving .afdeling {
	padding-left: 10px;
	font-size: 83%;
	text-transform: uppercase;
	color: #556f87;
}
.teamShort.normal .teamlid .beschrijving .afdeling span {
	font-weight: bold;
}

.teamShort.normal .teamlid .beschrijving .tekst {
	/*font-size: 16px;*/
	padding: 20px 10px;
}
.teamShort.normal .teamlid .contactIcons { 
	display: inline-block;
	width: 100%;
	padding: 0 10px;
}
.teamShort.normal .teamlid .contactIcons a {
	color: black;
}
.teamShort.normal .teamlid .contactIcons a + a{
	float: right;
}
.teamShort.normal .teamlid .contactIcons a i {
	padding-right: 5px;
}

	/* Media Queries - Divi: 
	================================================== */
	@media all and (min-width: 981px) {
		.teamShort.normal .teamlid .beschrijving{
			padding-bottom: 20px;
		}
		.teamShort.normal .teamlid:nth-child(odd) .beschrijving {
			margin-left: 20px;
		}
		.teamShort.normal .teamlid:nth-child(even) {
			flex-direction: row-reverse;
		}
		.teamShort.normal .teamlid:nth-child(even) .beschrijving {
			margin-right: 20px;
		}
		.teamShort.normal .teamlid .contactIcons {
			position: absolute;
			bottom: 0;
		}
	}
	@media all and (max-width: 980px) {
		.teamShort.normal .teamlid .beschrijving h3{
			text-align: center;
			/*font-size: 28px;*/
		}
		.teamShort.normal .teamlid .beschrijving h3 span { 
			padding-left: 10px;
		}
		.teamShort.normal .teamlid .contactIcons a {
			font-size: 12px;
		}
	}

/* =======================================================
// Team shortcode Compact 
======================================================= */
.teamShort.compact {
	text-align: center;
}
.teamShort.compact .teamlid{
	padding-bottom: 0;
	display: inline-block;
}
.teamShort.compact .teamlid .info {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	background-color: #ef7c2d;
	text-align: center;
	font-weight: bold;
}
.teamShort.compact .teamlid.clicked .info {
	opacity: 1;
	transform: scale(1);
}
.teamShort.compact .teamlid .info .text{
	display: flex;
	flex-direction: column;
	justify-content: center;
	min-height: 40%;
	max-width: 95%;
	margin-left: 8%;
	margin-right: 8%;
	color: white;
	font-size: 22px;
	text-align: center;
	text-transform: uppercase;
	word-break: break-word;
	overflow: hidden;
	z-index: 20;
}
.teamShort.compact .teamlid .info .contactIcons {
	display: inline-block;
	width: 100%;
	margin-top: 10px;
	text-align: center;
}
.teamShort.compact .teamlid .info .contactIcons a {
	display: inline-block;
	position: relative;
}
.teamShort.compact .teamlid .info .contactIcons a + a {
	margin-left: 25px;
}
.teamShort.compact .teamlid .info .contactIcons a i{
	width: 1.7em;
	height: 1.7em;
	line-height: 1.7em;
	color: #ef7c2d;
	text-align: center;
	font-size: 2rem;
	background-color: #fff;
	border-radius: 50%;
}
.teamShort.compact .teamlid .info .contactIcons a p {
	color: #fff;
}

.teamShort.compact .teamlid .info .contactIcons a .tooltiptext {
	position: absolute;
	top: 110%;
	max-width: 500px;
	padding: 3px 10px;
	background-color: black;
	border-radius: 20px;
	color: #fff;
	white-space: nowrap;
	opacity: 0;
	transition: opacity .3s ease, transform .3s ease;
	transform: scale(0,0);
	transform-origin: top;
}
.teamShort.compact .teamlid .info .contactIcons a.iHover .tooltiptext {
	opacity: 1;
	transform: scale(1,1);
}
.teamShort.compact .teamlid .info .contactIcons a .tooltiptext::after {
	content: "";
	position: absolute;
	bottom: 100%;
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: transparent transparent black transparent;
}
	/* Media Queries - Divi: 
	================================================== */
	@media all and (min-width: 981px) {
		.teamShort.compact .teamlid {
			width: calc(calc(100% / 3) - 40px);
			margin: 0 20px 40px 20px;
		}
		.teamShort.compact .teamlid .info {
			position: absolute;
			top: 0px;
			bottom: 0px;
			left: 0px;
			right: 0px;
			border-radius: 50%;
			opacity: 0;
			transform: scale(0);
			transition: all 0.3s ease, border-radius 0s ease 0.4s;
			z-index: 20;
		}
		.teamShort.compact .teamlid .info .contactIcons a p {
			text-indent: -9999px;
			height: 0;
			width: 0;
			color: #fff;
		}
		.teamShort.compact .teamlid .foto_container {
			transform: scale(1);
			transition: all 0.5s ease 0.2s;
		}
		.teamShort.compact .teamlid.clicked .foto_container {
			transform: scale(0.995);
		}
	}

	@media all and (max-width: 980px) {
		.teamShort.compact .teamlid {
			margin: 0 0 20px 0;
			background-color: #ef7c2d;
			border-radius: 25px;
		}
		.teamShort.compact .teamlid .foto_container {
			width: 70%;
			padding-top: 70%;
			margin: 10px auto;
			border: 2px solid #fff;
		}
		.teamShort.compact .teamlid .info {
			width: 100%;
			padding-bottom: 5%;
			border-radius: 0 0 25px 25px;

		}
		.teamShort.compact .teamlid .info .contactIcons{
			margin-top: 10px;
			display: flex;
			flex-direction: column;
			justify-content: center;
			align-items: center;
			gap: 10px;
		}
		.teamShort.compact .teamlid .info .contactIcons a + a {
			margin-left: 0;
		}
	}