/* PAGINATION */

/* .pagination {
    width: 100%;
    padding-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 25px;
  }
  
  .pagination ul {
    width: auto;
    display: flex;
    column-gap: 10px;
    row-gap: 0;
    justify-content: center;
  }
  
  .pagination ul li {
    flex: 0 1 auto;
  }
  
  .pagination ul li a {
    color: #8D8D8D;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 100%;
    font-family: 'Geist-SemiBold';
    font-size: 16px;
    transition: all .5s ease;
  }
  
  .pagination ul li a.active {
    color: #FFFFFF;
    background: #a41984;
    font-family: 'Geist-Bold';
  }
  
  .pagination ul li a.active:hover {
    color: #FFFFFF;
    background: #a41984;
  }
  
  .pagination ul li a:hover {
    color: #FFFFFF;
    background: #a41984;
  }
   */
  a.next-arw span {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/ico-pages-right.svg) no-repeat scroll right top;
    transition: all .5s ease;
  }
  
  /* a.next-arw:hover {
    opacity: 0.5;
  } */
  
  a.prev-arw span {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/ico-pages-left.svg) no-repeat scroll left top;
    transition: all .5s ease;
  }
/*   
  a.prev-arw:hover {
    opacity: 0.5;
  } */
  
  .pagination ul li a span.lft {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/ico-pages-left.svg) no-repeat scroll right top;
    transition: all .5s ease;
  }
  
  .pagination ul li a span.rgt {
    display: block;
    width: 24px;
    height: 24px;
    background: url(../images/ico-pages-right.svg) no-repeat scroll right top;
    transition: all .5s ease;
  }
  
  /* .pagination ul li a span:is(.lft, .rgt) {
    opacity: 0.5;
  } */
  
  /* .pagination ul li a.pagination__number_active {
    color: #FFFFFF;
    background: #a41984
  } */
  
  /* end PAGINATION */