
.right_stuff {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: fit-content;
    gap: 4vh;
    margin: auto 2vw auto 0.5vw;
}

.right_stuff.hide {
    display: none;
}

.right_stuff .devise_bloc{
    display:flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-color: #ACACAC;
    padding: 0.5vw 1vw;
    border-radius: 12px;
    gap: 0 0.5vw;
    width: 80%;
}

.right_stuff .devise_bloc select{
    border: none;
    outline: none;
    background-color: #00000015;
    color: #000;
    border-radius: 12px;
    text-align: center;
    font-size: 1em;
    padding: 0.5vw;
    cursor: pointer;
}

.modif_TVA {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 80%;
    padding: 1vh;
    box-shadow: 0 10px 15px 0 rgba(0, 0, 0, .2);
    background-color: #ACACAC;
    border-radius: 12px;
    font-size: 1.5em;
}

.modif_TVA input {
    width: 70%;
    border: none;
    outline: none;
    background-color: #00000015;
    color: #000;
    border-radius: 12px;
    text-align: center;
    font-size: 1.2em;
    margin: 0.5vw 0;
    padding: 0.5vw;
}

button.toggle_quantity {
    background-color: #535353;
    border: none;
    cursor: pointer;
    color: #ffffff;
    padding: 0.5vw 1vw;
    font-size: 1.2em;
    border-radius: 12px;
    margin: auto;
    transition: all .2s;
    width: 80%;
}

button.toggle_quantity:hover {
    background-color: #464646;
    box-shadow: 2px 2px 0px #2d2d2d,
        2px 4px 0px #1e1e1e,
        2px 6px 0px #0d0d0d,
        2px 8px 0px #000000;
}