/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/

.container-pagination {
  /* min-height: 100vh; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.pagination {
  text-align: center;
  margin: 30px 30px 60px;
  user-select: none;
}

.pagination li {
  display: inline-block;
  margin: 5px;
  /* box-shadow: 0 5px 25px rgb(1 1 1 / 10%); */
}

.pagination li a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  line-height: 45px;
}

.previous-page-list,
.next-page-list {
  background: #14bbb0;
  width: 80px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s ease;
}

.previous-page-list:hover {
  transform: translateX(-5px);
}

.next-page-list:hover {
  transform: translateX(5px);
}

.current-page-list,
.dots-list {
  background: #ccc;
  cursor: pointer;
  width: 45px;
  border-radius: 5px;
}

.active-list {
  background: #14bbb0;
}

.disable-list {
  background: #ccc;
}
