.add-or-remove {
    display: flex;
    align-items: center;
    gap: 10px;
}

.add-or-remove span {
    border-radius: 5px;
    border: 1px solid var(--Colors-BE-GRIS, #EAEAEA);
    background: var(--Colors-BE-BLANC, #FFF);
    display: flex;
    padding: 7px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.add-or-remove span i {
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    text-align: center;
}

.add-or-remove div {
    display: flex;
    min-width: 20px;
    height: 20px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 5px;
    background: var(--color-white);
}

.add-or-remove input {
   color: var(--Colors-BE-NOIR, #000);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 200;
    line-height: normal;
    border: none;
    width: 25px;
    text-align: center;
    /* Fix pour firefox pour les input de type number */
    -moz-appearance: textfield;
}

.add-or-remove div {
    cursor: pointer;
}

.add-or-remove div.color-blue span {
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    display: flex;
    justify-content: center;
    flex-grow: 1;
    align-items: center;
    color: var(--MAIN-COLOR);
}

/* MEDIA QUERIES */

@media (min-width: 769px) and (max-width: 1024px) {

    .add-or-remove input {
        font-weight: 200;
    }

}

@media (max-width: 768px) {

    .add-or-remove {
        display: flex;
        align-items: center;
        gap: 5px;;
    }

    .add-or-remove span {
        display: flex;
        width: 20px;
        height: 20px;
        padding: 0;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .add-or-remove input {
        width: 20px;
        height: 20px;
       color: var(--Colors-BE-NOIR, #000);
        font-family: Inter;
        font-size: 14px;
        font-style: normal;
        font-weight: 200;
        line-height: normal;
    }

    .add-or-remove span.color-blue {
        color: var(--MAIN-COLOR);
        font-family: Inter;
        font-size: 16px;
        font-style: normal;
        font-weight: 200;
        line-height: normal;
        width: 30px;
        height: 30px;
    }

}