.paging-white_hidden-right>li:nth-child(2),
.paging-white_hidden-left>li:nth-last-child(2) {
    position: relative;
}

.paging-white_hidden-right>li:nth-child(2) {
    position: relative;
    margin-right: 15px;
}

.paging-white_hidden-left>li:nth-last-child(2) {
    position: relative;
    margin-left: 15px;
}

.paging-white_hidden-right>li:nth-child(2)::after {
    content: '...';
    position: absolute;
    right: 0;
    transform: translateX(70%);
    top: 0;
    font-size: 18px;
    color: var(--color-blue-light);
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

.paging-white_hidden-left>li:nth-last-child(2)::before {
    content: '...';
    position: absolute;
    transform: translateX(-70%);
    font-size: 18px;
    color: var(--color-blue-light);
    height: 35px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}


.paging-container {
    width: fit-content;
}