/* .arrow-box {
    width: 24px;
    height: 24px;
    background: #1f202e;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.total-box {
    margin: 0 10px;
    padding: 0px 10px;
    background: #1f202e;
    border-radius: 4px;
    font-size: 14px;
}
.total-box > div{
    color: #fff;
}

.flip-input {
    background: none;
    color: #999aa8;
    border: 1px solid #999aa8;
    font-size: 14px;
    cursor: pointer;
    margin: 0 10px;
    border-radius: 4px;
    width: 36px;
    text-align: center;
}

.pagination {
    margin-left: 10px;
}

.pagination-box {
    cursor: pointer;
}
.page-item {
    display: inline-block;
    margin-right: 10px;
    cursor: pointer;
}

.page-item.active {
    font-weight: bold;
}
.page-link{
    color: inherit;
    background-color: transparent;
    border: none;
    padding: .2rem .5rem;
    border-radius: 5px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    background: #1f202e;
    color: #b8babc;
}
.page-item:first-child .page-link {
    margin-left: 0;
    border-radius: 4px;
}
.page-link.active {
    background-color: #fe628e;
    color: #fff
}
.jump, .jump_page{
    color: #fff;
} */

.pagination{
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    padding: 30px 0;

    li{
        font-size: 15px;
        color: #dbdbdd;
        a{
            margin: 0 5px;
            padding: 5px 8px;
            border-radius: 5px;
            background: #1f202e;
        }
        a:hover{
            
            background: #fe628e;
        }
        span{
            margin: 0 5px;
            padding: 5px 8px;
            border-radius: 5px;
            background: #1f202e;
        }
        .pagination-jump-form{
            input::-webkit-outer-spin-button,
            input::-webkit-inner-spin-button {
                -webkit-appearance: none !important;
                margin: 0;
                color: #000;
            }
            input{
                color: #fff;
                text-align: center;
                background: #100f16;
                border: 1px solid #fff;
                border-radius: 4px;
            
            }
        }
       
    }
    /* li:first-child{
        margin: 0 5px;
        padding: 2px 8px;
        border-radius: 5px;
        background: #1f202e;
    }
    li:nth-child(2){
        margin: 0 5px;
        padding: 2px 8px;
        border-radius: 5px;
        background: #1f202e;
    } */
    .active{
        a{
            background: #fe628e !important;
        }
        span{
            background: #fe628e !important;
        }
        
    }
    .disabled{
        a{
            background: none !important;
        }
        span{
            background: none !important;
        }
    }
}

@media screen and (max-width: 768px) {
    .pagination {
        display: block;
        .active{
            text-align: center;
        }
        li {
            min-width: 2rem;
            display: inline-block;
        }
    }
}