.display-team-members-plugin {
	display: flex;
	/*justify-content: center;
  align-items: center;*/
	flex-wrap: wrap;
	
	/*
	-webkit-animation: fadein 2s;
       -moz-animation: fadein 2s;
        -ms-animation: fadein 2s;
         -o-animation: fadein 2s;
            animation: fadein 2s;
	*/
}
.team-members-post-container {
	flex: 1;
	flex-grow: 1;
/*	padding: 10px;
	margin: 10px; */
	/* border: 1px solid #f1f1f1; */
	transition: all .5s;
	transition-timing-function: ease-out;
}
.team-members-post-container:hover {
	transform: scale(1.05);
	/* box-shadow: 0px 0px 30px 0px rgba(200,200,200,0.2); */
}

.tm-image-container {
	min-width: 100px;
	min-height: 75px;
	margin: 0 auto;
	background-repeat: no-repeat;
  	background-size: contain;
	background-position: 50% 50%;
}

.tm-name {
	color: #000000;
    font-family: "Barlow", Sans-serif;
    font-size: 1.3em;
    font-weight: 500;
}
.tm-position {
	display: block;
	color: #007C91;
    font-family: "Barlow", Sans-serif;
    font-size: 1em;
    font-weight: 400;
    text-transform: uppercase;
}
.tm-info {
	margin-top: 10px;
}

.tm-info .fa-phone-alt,
.tm-info .fa-envelope {
	color:#007C91;
	font-size:12px;
}
.tm-info .tm-phone-number{
	display: block;
	padding-top: .5em;
}
.tm-info .tm-e-mail{
	display: block;
}

/* The overlay effect - lays on top of the container and over the image */
.overlay {
  position: relative;
  bottom: 0;
  /*background: rgb(0, 0, 0);*/
  /*background: rgba(0, 0, 0, 0.7);*/ /* Black see-through */
  background: rgb(255, 114, 0);
  background: rgba(255, 114, 0, 1);
  color: #f1f1f1;
  width: 100%;
  transition: .5s ease;
  opacity:0;
  color: white;
  font-size: 1em;
  padding: 10px;
  padding-left: 0;
  padding-top: 30px;
  text-align: left;
  z-index: 100;
  display: none;
}

/* When you mouse over the container, fade in the overlay title */
.tm-image-container:hover .overlay {
  opacity: 1;
	display: block;
}

.overlay-header {
	color: #fff;
    font-family: "Barlow", Sans-serif;
    font-size: 1em;
    font-weight: 600;
    text-transform: uppercase;
}

.team-members-list {
	list-style-type: none;
	padding-left: 0;
	max-height: 70vh;
	overflow-y: scroll;
}

.team-members-list .team-member-list-item {
	clear: both;
	height: 80px;
	margin-bottom: 20px;
	padding: 5px;
}

.team-members-list .team-member-list-item img {
	max-width: 70px;
	border-radius: 35px;
	float: left;
	margin-right: 10px;
}

.tm-name.tm-list-item {	
	padding-top: 10px;
	font-weight: 300;
	margin-bottom: 0;
}
.tm-position.tm-list-item {
	text-transform: none;
}