.button {
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px var(--color-info);
    padding: 1rem;
    font-size: 1.4rem;
    color: var(--color-info);
    text-align: center;
    gap: 1rem;
    cursor: pointer;
    transition: all ease-in-out 250ms;
    border-radius: 8px;
}

.button:hover {
    box-shadow: 0 1px 4px 0 #00000033;

}

.button-action {
    background-color: var(--color-secondary);
    color: #fff;
    border: none;
}

.button-parametre {
    background-color: gray;
    color: #fff;
    border: none;
    width: 100%;
}

.contribute-button {
    width: 100%;
}

.back-button {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
    background-color: var(--color-secondary);
}

.back-button img {
    height: 3.2rem;
    width: 3.2rem;
}

.send-button {
    padding: 1vh;
    border-radius: 5px;
    color: var(--color-primary);
    font-size: 2vh;
    border: 0 none;
    margin-left: auto;
    margin-right: auto;
}

.project-button {
    display: flex;
    align-items: center;
    justify-content: center;
    /*width: 100%;*/
    /*padding-inline: 1.6rem;*/
    font-size: 1.4rem;
    color: var(--color-mid-gray-1);
    font-weight: 400;
    text-align: center;
}


.button--important {
    background-color: var(--color-secondary);
    color: white;
    border: none;
}

.button--important svg {
    fill: white;
}

.button--important svg.bi-x {
    width: 1.4rem;
    height: 1.4rem;
}

.contribute-button img {
    filter: brightness(0) saturate(100%) invert(20%) sepia(52%) saturate(2711%) hue-rotate(225deg) brightness(90%) contrast(95%);;
    height: 3vh;
    width: 3vh;
    margin-right: 2vh;
}

.button-add {
    margin: 1rem;
    color: var(--color-secondary);
}

.button-add > svg {
    height: 3rem;
    width: 3rem;
}

.button-right-auto {
    margin-left: auto;
    width: max-content;
}

.button-admin-company{
    width:100%;
    background-color:darkorange;
    color:#fff;
    border:none;
}