/* pages navigator */

.number-of-total-pages {
    color: gray;
   position: relative;
   
    text-align: center;
  }
  
  .number-of-total-pages span div {
    border-top: solid 2px gray;
    padding-top: 10px;
  }

  .page-total::before {
    content: "";
    width: 80%;
    margin: 0 10%;
    height: 2px;
    top: -8px;
    background-color: var(--grey-darker);
    position: absolute;
  }
  
  .number-of-current-page{
    font-size: 50px;
    text-align: center;
    cursor: pointer;
    font-family: "sofiaproregular";
  }
  
  .previous-page-arrow, .next-page-arrow{
    
    cursor: pointer;
    margin-top: 25px;
    background-color: #fff;
    border-radius: 50%;
    height: 60px;
    width: 60px;
    border: solid 20px white;
  }
  
  .dark-mode .previous-page-arrow, .dark-mode .next-page-arrow{
    background-color: #222932;
    border-color: #222932;
  }
  
  .gray-arrow{
    color: #ccc;
  }
  
  .dark-mode .gray-arrow{
    color: #555;
  }
  
  .previous-page-arrow svg, .next-page-arrow svg{
    display: block;
    margin: auto;
    height: 20px;
    width: 20px;;
  }
  
  .pages-navigation-in-table{
    display: flex;
    flex-direction: column;
    align-items: center;
    
    position: absolute;
    bottom: 50px;
    right: 10px;
    /*
    width: 50px;
    right: 25px;
    /*
    justify-content: end;
    bottom: 50px;
    right: 35px;
    position: fixed;
    */
  }
  .pages-navigation-in-table-singlerow{
    top: 190px;
  }