/* new pagination buttons style start */
.nolist {
    padding: 0;
}

.btn-default.active::before {
    opacity: 1;
}

.btn-default.active {
    border-color: #a3792c;
}

.my-pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    list-style: none;
    padding-left: 0;
}

.my-pagination-btn {
    position: relative;
    display: inline-block;
    min-width: 60px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1.61px;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    border: solid 1px #fff;
    background: transparent;
    padding: 15px;
    transition: 0.4s all ease;
    cursor: pointer;
}

.my-pagination-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #a3792c, #ccb257, #a3792c);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.current-page-pagination,
.my-pagination-btn:hover {
    border-color: #a3792c;
}

.current-page-pagination::before,
.my-pagination-btn:hover::before {
    opacity: 1;
}
/* new pagination buttons style end */