.category-props-list{
    display: flex;
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
    align-items: center;
    position: relative;
}

.category-props-list .horizontal-scrollable {
    gap: 10px;
    justify-content: flex-start;
}
.category-props-link-close{
    display: none;
}
.category-props-list.category-props-list-seeAll .horizontal-scrollable {
    flex-direction: row;
    flex-wrap: wrap;
}
.category-props-list.category-props-list-seeAll .horizontal-scrollable-controls{
    display: none;
}
.category-props-list.category-props-list-seeAll .category-props-link-close{
    display: block;
}

.category-props-link {
    border: 1px solid #6D6D6D;
    color: #333333;
    background-color: #ffffff;
    border-radius: 16px;
    cursor: pointer;
    display: inline-block;
    padding: 4px 14px;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    white-space: nowrap;
    text-decoration: none!important;
    transition: all .1s linear;
}
.category-props-link:hover {
    background-color: #00707a;
    border-color: #00707a;
    color: #ffffff;
    text-decoration: none;
}

.horizontal-scrollable {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap; /* Empêche les divs de passer à la ligne */
    transition: transform 0.5s ease; /* Transition en douceur pour le défilement */
    overflow: hidden;
    padding: 5px 5px 5px 0;
    width: 100%;
    align-items: center;
}

.horizontal-scrollable-controls{
    display: none;
}

.disp-arrow .horizontal-scrollable-controls {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 5px;
    align-items: center;
}
.disp-arrow .horizontal-scrollable-controls span, .category-props-link-close{
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
    text-decoration: underline;
    text-transform: uppercase;
    margin-left: 10px;
    text-wrap: nowrap;
    cursor: pointer;
}

.horizontal-scrollable-arrow.arrow-left, .horizontal-scrollable-arrow.arrow-right{
    display: none;
}

.disp-arrow .horizontal-scrollable-arrow{
    display: block;
    width: 48px;
    height: 48px;
    cursor: pointer;
    border-radius: 4px;
    transition: all linear .1s;
    text-align: center;
    padding: 12px;

    path{
        fill: #00707a;
    }
}
.disp-arrow .horizontal-scrollable-arrow:hover{
    background-color: #ddecee;
}

.horizontal-scrollable-arrow.no-scroll{
    opacity: .4;
    filter: brightness(0);
    cursor: default;
    pointer-events: none;
}

@media (max-width: 768px) {
    .category-props-list {
        flex-direction: column;
    }
    .disp-arrow .horizontal-scrollable-arrow {
        display: none;
    }
    .category-props-list .horizontal-scrollable{
        align-items: stretch;
    }
    .category-props-link{
        white-space: normal;
        min-width: calc(50% - 5px);
        width: calc(50% - 5px);
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .category-props-list.category-props-list-seeAll .category-props-link-close {
        width: 100%;
    }
}