#wccDirectoryListingJumpMenu {
	display: table;
	width: 100%;
	padding:0;
	margin:0;
}

#wccDirectoryListingJumpMenu a {
	border: 1px solid #ededed;
	float: left;
	margin:2px;
	width:100%;
	border-left: 1px solid #ededed;
	height: 50px;
    line-height: 50px;
    text-align: center;
    text-transform: uppercase;
    width: 40px;
    font-weight: 200;
    font-size: 1em;
}

#wccDirectoryListingJumpMenu a:hover {
	background: #efefef;
}

#wccDirectoryListingJumpMenu a.selected {
	background: #c65c3f;
    color: white;
    font-weight: 400;
}

#wccDirectoryListing {
	margin: 30px 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

#wccDirectoryListing ul {
	padding: 0;
}

#wccDirectoryListing li:first-child {
	border-top: 1px solid #83C133;
}

#wccDirectoryListing li {
	display: flex;
	padding:20px;
	border-top: 1px solid #ededed;
	font-size: .8em;
}

#wccDirectoryListing li div.profileImage {
	display: flex;
	flex-direction: column;
}

#wccDirectoryListing li div.profileImage div  {
	position: relative;
	min-width: 50px;
	height: 50px;
	width:50px;
	overflow: hidden;
	border-radius: 175px;
	flex-grow: 0;
	margin:0 20px 0 0px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.profileImage img {
	width:100%;
	height: 100%;
	object-fit: cover;
}

.wccDirectoryPersonInfo {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
}

.wccDirectoryInfoRight {
	display: flex;
	flex-direction: column;

	max-width:200px;
	min-width: 200px;
}

.wccDirectoryInfoLeft {
	display: flex;
	flex-direction: column;
	margin-bottom: 15px;
}

.wccDirectoryInfoLeft a {
	font-size: 1.3em;	
	font-weight: 300;
}

.sortByWrapper {
	display: flex;
}

.sortByContainer {
	border: 1px solid #ccc;
    width: fit-content;
    border-radius: 3px;
    overflow: hidden;
    padding: 4px 2px;
    margin:8px 15px 8px 0;
    background: #fafafa url("images/dropdownicon.svg") no-repeat 95% 50%;
}

.sortByContainer select {
    padding: 10px;
    width: 100%;
    border: none;
    box-shadow: none;
    background: transparent;
    background-image: none;
    -webkit-appearance: none;
}

.sortByContainer select:focus {
    outline: none;
}

#wcc-directory-search {
	position: relative;
	max-width: 400px; 

}
#wcc-directory-search input {
	background-color: #fff;
    box-sizing: border-box;
    border-radius: 2px;
    color: #333;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    display: block;
    float: none;
    font-size: 16px;
    border: 1px solid #ccc;
    padding: 6px 10px;
    height: 38px;
    width: 100%;
    line-height: 1.3;
}

#wcc-directory-search button {
	border:0;
	background: 0;
	height: 38px;
}

#wcc-directory-search div.dirSearchButton {
	position: absolute;
	right: 0;
	top:0;
}

.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}

.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
  background-color: #e9e9e9; 
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
  background-color: DodgerBlue !important; 
  color: #ffffff; 
}

#directory-send-email a {
	background: #efefef;
	padding: 11px 31px;
	border-radius: 4px;
	color: black;
}

@media screen and (min-width: 750px) {
	.wccDirectoryPersonInfo {
		flex-direction: row;
	}

	.wccDirectoryInfoRight {
		margin-left:30px;
	}

	#wccDirectoryListing ul {
		padding: revert;
	}


}