.contain-manager-loan{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fffb;
    position: absolute;
    top: 0;
    transform: scale(0);
    transition: transform 1s ease;
}

.contain-manager-loan.active{
    transform: scale(1);
    transition: transform 1s ease;
}
.contain-save-loan{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fffb;
    position: absolute;
    top: 0;
    transform: scale(0);
    transition: transform 1s ease;
}

.contain-save-loan.active{
    transform: scale(1);
    transition: transform 1s ease;
}
.contain-repay-loan{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fffb;
    position: absolute;
    top: 0;
    transform: scale(0);
    transition: transform 1s ease;
}

.contain-repay-loan.active{
    transform: scale(1);
    transition: transform 1s ease;
}

/* media queries */
@media screen and (max-width:500px){

    /* ============AJOUT IMMOBILISATION======== */
    .contain-repay-loan{
        width: 600px;
        height: 1000px;
        display: flex;
        justify-content:start;
        flex-direction: column;
        background: #fffb;
        position: absolute;
        top: 0;
        transform: scale(0);
        transition: transform 1s ease;
    }
    
    .contain-save-loan{
        width: 600px;
        height: 100%;
        display: block;
        justify-content:start;
        flex-direction: column;
        background: #fffb;
        position: absolute;
        top: 0;
        transform: scale(0);
        transition: transform 1s ease;
    }      
}