.featured-post > div h1 a {
	color: #fff;
	text-decoration: none;
}
.pagination li.selected span {
	color: #fff;
	background: #e40079;
	border-color: #9a0052;
	text-decoration: none;
	padding: 7px 0px 6px;
	display: block;
	border: solid 1px #e40079;
	line-height: 100%;
	width: 30px;
	text-align: center;
	transition: all 0.5s ease;
}

/** Loading Icon CSS **/
.lds-ring {
  display: block;
  position: relative;
  width: 64px;
  height: 64px;
  margin: 0 auto;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 51px;
  height: 51px;
  margin: 6px;
  border: 6px solid #E40079;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #E40079 transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}