/* Banner with Buttons CSS Start */
.pagination-footer {
    max-width:100%;
    background-color: #f0f0f0;
    background-repeat: no-repeat;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 21.7rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  
  .pagination-footer .page-controls {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  
  @media screen and (min-width: 320px) and (max-width: 767px) {
    .pagination-footer .page-controls {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
    }
  }
  
  .pagination-footer .page-controls a {
    border-radius: 2.5rem;
    font-size: 1.2rem;
    background: blue;
    border: 0.1rem solid blue;
    color: #fff;
    padding: 0.2rem 2rem;
    font-weight: 700;
    display: inline-block;
    line-height: 2.5rem;
    text-decoration: none;
    margin: 0 0.4rem;
  }
  
  @media screen and (min-width: 320px) and (max-width: 767px) {
    .pagination-footer .page-controls a {
      text-align: center;
      font-size: 1.5rem;
      margin: 1rem 2rem;
    }
  }
  
  .pagination-footer .page-controls a.prev i {
    margin-right: 0.8rem;
  }
  
  .pagination-footer .page-controls a.next i {
    margin-left: 0.8rem;
  }

.btn-container-width{width:100%;}

.btns_position_left{
    justify-content:left !important;
}
.btns_position_center{
    justify-content: center !important;
}
.btns_position_right{
    justify-content:right !important;
}

.btn_icon_prev a::before {
  position: relative;
  content: '\f060';
  font-family: FontAwesome;
  margin-right: 1rem;
}

.btn_icon_next a::after {
  position: relative;
  content: '\f061';
  font-family: FontAwesome;
  margin-left: 1rem;
}

.btn_icon_prevnext div:first-child a::before {
  position: relative;
  content: '\f060';
  font-family: FontAwesome;
  margin-right: 1rem;
}
.btn_icon_prevnext div:last-child a::after {
  position: relative;
  content: '\f061';
  font-family: FontAwesome;
  margin-left: 1rem;
}
/* Banner with Buttons CSS End */