.contain-add-salary{
    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-add-salary.active{
    transform: scale(1);
    transition: transform 1s ease;
}

.form-close-casher {
    width: 100%;
    max-width: 400px;
    background: #99bbe8;
    padding: 10px
}
.contain-add-salary
.form-close-casher {
    width: 100%;
    max-width: 400px;
    background: #99bbe8;
    padding: 10px;
    transform: scale(0.7);
}

.contain-add-salary
  input, select{
    outline: none;
    border: none !important;
    width: 100%;
}
.contain-add-salary
  label{
    width: 150px !important;
    color: #fff;
    font-weight: bold;
}


/* =======================charge de personnel ======================= */

.contain-manager-personnel-charge{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #fffb;
    position: fixed;
    top: 0;
    transform: scale(0);
    transition: transform 1s ease;
}

.contain-manager-personnel-charge.active{
    transform: scale(1);
    transition: transform 1s ease;
}

/* ======================comptabilisation charge de personnel ==================== */

.contain-save-personnel-charge{
    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-personnel-charge.active{
    transform: scale(1);
    transition: transform 1s ease;
}

.input-personnel-charge{
    display: none;
}


.personnel-name{
    width: 150px !important;
}

.salary{
    width: 150px !important;
    text-align: center !important;
}
.salary input{
    width: 150px !important;
    text-align: center !important;
}

.contain-form-personnel-charge{
    background: #99bbe8;
    width: 1210px;
}

/* ================================paiment charge de personnel ============== */
.contain-paiement-personnel-charge{
    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-paiement-personnel-charge.active{
    transform: scale(1);
    transition: transform 1s ease;
}

/* ==============================avance sur salaire ============= */
.contain-advance-salary{
    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-advance-salary.active{
    transform: scale(1);
    transition: transform 1s ease;
}

.contain-advance-salary label{
    color: #fff;
    font-weight: bold;
    width: 120px !important;
}

.contain-advance-salary input{
    border: none;
}

#form-advance-salary{
    transform: scale(.7);
}

/* ============================== declaration impot sur salaire ============= */
.contain-tax-declaration{
    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-tax-declaration.active{
    transform: scale(1);
    transition: transform 1s ease;
}

.contain-tax-declaration label{
    color: #fff;
    font-weight: bold;
    width: 120px !important;
}

.contain-tax-declaration input{
    border: none;
}

#form-tax-declaration{
    transform: scale(.7);
}

/* media queries */
@media screen and (max-width:500px){

    /* ============AJOUT IMMOBILISATION======== */
    .contain-add-salary{
        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-tax-declaration{
        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;
    }
    .contain-advance-salary{
        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;
    }
    .contain-paiement-personnel-charge{
        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;
    }

      
}