.paging__wrapper {
    width: 100%;
    display: flex;
}
.paging {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.paging__active,
.paging__passive {
    width: 64px;
    height: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8e8e8;
    border-radius: 999px;
}
.paging__active {
    color: white;
}
.paging__passive {
    cursor: pointer;
    background-color: #ffffff;
}
.paging_dots {
    margin-right: 28px;
    margin-left: 28px;
    color: #a5a5a5 !important;
}
@media (max-width: 480px) {
    .paging__wrapper {
        display: none;
    }
}
