.pt-pagination {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
}

.pt-pagination li {
  padding: 5px;
  margin: 5px;
  width: 40px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 3px;
  cursor: pointer;
  transition: all .5s ease;
}

.pt-pagination li.disabled {
  cursor: default;
}

.pt-pagination li:not(.disabled).active,
.pt-pagination li:not(.disabled):hover  {
  background-color: #F2F2F2;
  font-weight: bold;
}

.pt-pagination-search-container {
	position: relative;
}
.pt-pagination-search-container > input {
	min-width: 350px;
	border: 1px solid #ddd;
	border-radius: 5px;
	padding: 6px 25px 6px 12px;
}

.pt-pagination-search-container > button {
	background: transparent;
	border: unset;
	position: absolute;
	top: 0;
	right: 0;
	height: 100%;
}

.pt-pagination-count {
	text-align: right;
	font-size: 18px;
}

.pt-pagination-loading {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.85);
  z-index: 99999;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
	text-align: center;
}

.pt-pagination-loading > span {
  font-weight: bold;
  font-size: 18px;
  opacity: 0;
  animation: .5s linear .5s infinite alternate loadingScreen;
}

@keyframes loadingScreen {
  from {
	opacity: 0;
  }
  to {
	opacity: 1;
  }
}