/*########## * Search Pagination * ##########*/

.search-pagination-container {
  position: relative;
  background: #f9f9f9;
  color: #4a0e01;
  font-family: 'Lora', serif;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .5em 1em;
  border-radius: 4px;
}

.search-pagination-container a {
  color: #4a0e01;
}

.search-pagination-container a:hover,
.search-pagination-container a:active,
.search-pagination-container a:focus {
  color: #ff3003;
}

.prev-page,
.next-page {
  flex: 0 1 15%;
}

.next-page {
  text-align: right
}

.search-pages {
  align-self: center;
  width: 100%;
}

.page-numbers {
  text-align: center;
  margin-top: .5em;
}

.page-num {
  padding: .4em .8em;
  margin: 0 .25em;
}

.page-num.current {
  background: #4a0e01;
  color: #f9f9f9;
  border-radius: 4px;
}

.search-showing {
  flex: 0 1 100%;
  text-align: center;
  margin: .5em 0;
  font-size: .875em;
}

/*########## * Search Pagination * ##########*/

.search-pagination-container:before {
  content: '';
  position: absolute;
  background: #f9f9f9;
  top: 0;
  bottom: 0;
  left: -315px;
  margin: auto;
  width: 100%;
  z-index: -1;
  border-radius: 4px;
}

/*########## * Listing Items * ##########*/

.alumni_container {
  margin-bottom: 20px;
  padding: 10px;
  display: block;
  color: #000;
}

.alumni_container:hover {
  text-decoration: none;
  color: #000;
  background: #ccc;
}

.alumni_container .profile-link {
  color: blue;
}

.alumni_container:hover .profile-link {
  text-decoration: underline;
}

.alumni_pic {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
}