.all-categories-content {
    padding-bottom: 10px;
    overflow-x: auto;
    gap: 10px;
    display: flex;
    padding: 25px 0px;
}

.all-categories-content::-webkit-scrollbar {
    height: 6px;
}

.all-categories-content::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 3px;
}

.all-categories-content li {
    padding: 10px 15px;
    font-size: 16px;
    color: #555;
    background-color: #0000;
    cursor: pointer;
    text-align: center;
    flex-shrink: 0;
}

.all-categories-content li:hover {
    background-color: #f0f0f0;
    color: #7D8A9A;
}

.all-categories-content li.active {
    background-color: #EC6500;
    color: #fff !important;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.all-categories-content li.white {
    color: #7D8A9A;
}

.all-categories-content li.white:hover {
    background-color: #EC6500;
    color: #fff;
}

.all-categories-content .search-input input {
    font-size: 16px;
}

@media (min-width: 816px) {

    .all-categories-content {
        flex-wrap: wrap;
        justify-content: center;
    }

    .all-categories-content li {
        border: 1px solid rgba(0, 0, 0, 0.1)
    }
}