#sticky_add_to_cart {
    max-width: 1300px;
    background-color: #fff;
    border-radius: 50px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .10);
    position: fixed;
    z-index: 999;
    bottom: 0px;
    left: 0;
    right: 0;
    transform: translateY(200%);
    transition: transform .2s linear;
    margin: 15px auto;
    padding: 5px 10px 5px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#sticky_add_to_cart.show {
    transform: translateY(0);
}

#sticky_add_to_cart div:nth-child(1) p {
    font-size: 18px;
    line-height: 18px;
    font-weight: 500;
    margin: 0;
}

.sticky_add_to_cart_flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}


.sticky_add_to_cart_flex div:nth-child(2) {
    display: flex;
    align-items: center;
}

#sticky_add_to_cart div:nth-child(2) p:nth-child(1) {
    margin: 0;
}

#sticky_add_to_cart div:nth-child(2) p:nth-child(2),
#sticky_add_to_cart div:nth-child(2) p:nth-child(3) {
    margin: 0 15px;
}

#sticky_add_to_cart .price {
    font-weight: 600;
}

#sticky_add_to_cart button {
    background-color: #FF8800;
    border-radius: 50px;
    transition: all 0.3s ease-in-out;
    margin: 0 0 0 10px;
    min-width: 220px;
    font-family: 'roc-grotesk', sans-serif;
    font-size: 16px;
    line-height: 16px;
}

#sticky_add_to_cart button:hover {
    background-color: #ff9317;
}

@media screen and (max-width: 900px) {
    #sticky_add_to_cart {
        display: block;
        justify-content: center;
        margin: 0;
        border-radius: 0;

    }

    .sticky_add_to_cart_flex_01 {
        margin: 0 5px;
    }

    .sticky_add_to_cart_flex_01 {
        width: 60%;
    }

    #sticky_add_to_cart div:nth-child(1) p {
        margin: 5px 0;
    }

    #sticky_add_to_cart div:nth-child(2) p:nth-child(2),
    #sticky_add_to_cart div:nth-child(2) p:nth-child(3) {
        margin: 0 5px;
    }

    .sticky_add_to_cart_flex_02 {
        width: 40%;
    }

    #sticky_add_to_cart .bouton_sticky_add_to_cart {
        display: flex;
        align-items: center;
        justify-content: end;
        width: 100%;
        margin-top: 5px;
    }

    #sticky_add_to_cart .ds_carte_pack_bloc_prix_graduel_reduction {
        width: inherit;
    }

    #sticky_add_to_cart button {
        width: 100%;
        margin: 0;
    }
}