
.jcider-pagination {
  text-align: center;
  position: absolute;
  bottom:5px;
  left: 35%;
  transform: translateX(-35%);
  width: 132px;
    height: 17px;
    overflow: hidden;
}

/*Styling for pagination points*/
.jcider-pagination-point {
  position: relative;
  background: none;
  border-radius: 50%;
  margin: 8px;
  display: inline-block;
  width: 6px;
  height: 6px;
  background:#666;
  transition: all 300ms;
}
 /*Styling for active pagination point*/
.jcider-pagination-point.active {
  background: #402828;
  -webkit-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
}