.contain-add-stock-regul.active {
    transform: scale(1);
    transition: transform 1s ease;
}
.contain-add-stock-regul {
    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-stock-regul .form-add-operation-account-operator {
    width: 100%;
    max-width: 450px;
    background: #99bbe8;
    padding: 10px;
    transform: scale(.7);
}

.contain-add-stock-regul label {
    border: solid .8px rgba(193, 237, 245, 0.774);
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}

.contain-add-stock-regul fieldset{
    border: solid .8px rgba(193, 237, 245, 0.774);
    padding: 10px;
}

.contain-add-stock-regul legend{
    color: #fff;
    padding: 0 5px;
    font-weight: bold;
}

/* journal des regularisation */
.display-print-stock-regularisation-slog.active {
    transform: scale(1);
    transition: transform 1s ease;
    z-index: 100000;
}
.display-print-stock-regularisation-slog {
    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;
    z-index: 100000;
}

/* media queries */
@media screen and (max-width:500px){

    .display-print-stock-regularisation-slog{
        width: 1000px;
        height: 100%;
        display: flex;
        background: #fffb;
        position: absolute;
        top: 0;
        transform: scale(0);
        transition: transform 1s ease;
    }
    .display-print-stock-regularisation-slog.active {
        transform: scale(1);
        transition: transform 1s ease;
        z-index: 100000;
    }       
      
}