.contentContainer {
    width: 70%;
    margin-left: 25%;
    /*display: flex;
    align-items: center;
    justify-content: space-evenly;*/
    font-size: 25px;
    margin-bottom: 50px;
}
.remboursementContainer{
    width: 70%;
    margin-left: 15%;
}
.ligne{
    width: 49%;
    display: inline-block;
}
.ligne div {
    display: inline-block;
}

.center {
    text-align: center;
}

.bold {
    font-weight: 900;
}

/* MOD-LA 15.10.25 : Switch pour une méthode AJAX pour l'optention des détailes des commerçants, plutôt qu'un rechargement de page */
.fixed-button
{
    background-color: gray !important;
    color:white !important;
}
.fixed-button:hover
{
    background-color: gray !important;
    color:white !important;
    cursor: default !important;
}

.loader {
    margin-top:32px;
    width: 48px;
    height: 48px;
    border: 5px solid black;
    border-bottom-color: transparent;
    border-radius: 50%;
    display: inline-block;
    box-sizing: border-box;
    animation: rotation 1s linear infinite;
    }

    @keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
} 