@-webkit-keyframes animate-text {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes animate-text {
  0% {
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 60px 0;
}
.pagination .disabled-pagination {
  text-transform: uppercase;
  margin: 5px 5px;
  padding: 5px 10px;
  text-decoration: none;
  color: #808E9B;
}
.pagination-list {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
  list-style-type: none;
  margin: 0 60px;
  padding: 0;
}
.pagination-item {
  display: inline-block;
  font-size: 22px;
  margin: 0 5px;
  color: #616465;
}
.pagination-item:first-child {
  margin-left: 0;
}
.pagination-item:last-child {
  margin-right: 0;
}
.pagination-item label {
  margin: 0;
}
.pagination-item select {
  margin-left: 5px;
}
.pagination-item input[type=text] {
  margin-left: 5px;
  width: 30px;
  text-align: center;
}
.pagination-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #616465;
  padding: 5px 10px;
  text-decoration: none;
}
@media (max-width: 767.98px) {
  .pagination-link {
    padding: 0 5px;
  }
}
.pagination-link.previous, .pagination-link.next {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-item-align: center;
      align-self: center;
  text-transform: uppercase;
  color: #383838;
  font-weight: 700;
}
.pagination-link.previous:hover, .pagination-link.next:hover {
  color: #0077CB;
}
.pagination-link.previous {
  margin-right: 5px;
}
.pagination-link.next {
  margin-left: 5px;
}
.pagination-link:after {
  content: "";
  position: absolute;
  height: 0;
  background: #cccccc;
  left: -1px;
  right: -1px;
  bottom: 0;
}
.pagination-link.active {
  border-color: #CF7F00;
  color: #000;
  pointer-events: none;
}
.pagination-link.active:after {
  height: 5px;
  width: 20px;
  background: #CF7F00;
  z-index: 1;
  right: unset;
  left: unset;
}
.pagination-link.hidden {
  display: none;
  visibility: hidden;
}
.pagination-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pagination-container .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
}
.pagination-container .pagination:first-of-type {
  margin-right: 20px;
}
.pagination-container .pagination:last-of-type {
  margin-left: 20px;
}
@media (max-width: 767.98px) {
  .pagination-container {
    display: block;
  }
  .pagination-container .pagination {
    margin: 0;
  }
  .pagination-container .pagination:first-of-type {
    margin-right: 0;
  }
  .pagination-container .pagination:last-of-type {
    margin-left: 0;
    margin-top: 10px;
  }
}
.pagination .pagination {
  margin-top: 10px;
}
.pagination--justify-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.pagination--justify-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.pagination--justify-space {
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}