.pagination__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center; }
  .pagination__list > li:before {
    content: none; }

.pagination__page {
  padding: 0 0.5rem; }

.pagination__previous a, .pagination__next a {
  width: 20px;
  height: 20px;
  display: flex;
  position: relative; }
  .pagination__previous a:before, .pagination__next a:before {
    content: '';
    position: absolute;
    top: 4px;
    left: 0;
    width: 8px;
    height: 8px;
    display: block;
    border: 2px solid black;
    border-left: none;
    border-bottom: none; }

.pagination__previous a[href]:before, .pagination__previous a.current:before, .pagination__next a[href]:before, .pagination__next a.current:before {
  border-color: #cf000d; }

.pagination__previous a:before {
  transform: translateX(6px) rotate(225deg); }

.pagination__next a:before {
  transform: translateX(2px) rotate(45deg); }

.pagination__link {
  text-decoration: none;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold; }
  .pagination__link[href] {
    color: #cf000d; }
  .pagination__link.current {
    color: black; }

/*# sourceMappingURL=pagination.css.map */