.paginations{
    text-align:  center;
    user-select: none;
    align-items: center;
    
   
}

.paginations li {
    display: inline-block;
    margin: 5px;
    box-shadow: 0 5px 25px rgb(1 1 1 / 10%);
 
}

.paginations li a{
    color: #d3ad7f;
    text-decoration: none;
    font-size: 1.2em;
    line-height: 45px;
    font-weight: bold;

}


.previous-page, .next-page{
    width: 80px;
    border-radius: 45px;
    cursor: pointer;
    transition: 0.3s ease;
    color: #d3ad7f;
    background: #000000;

}


.previous-page:hover{
    transform: translateX(-5px);

    color: #fff;


}


.next-page:hover{
    transform: translateX(5px);

    color: #fff;

}


.current-page, .dots{
    background: #ffff;
    width: 45px;
    border-radius: 50%;
    cursor: pointer;
    color: #d3ad7f;

}


.activee{
    background: #000000;
    color: #fff;

}

.disable{

    background: #fff;
    color: #d3ad7f;
}





