.display-print-stock{
    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;
    overflow: scroll;
}

.display-print-stock.active{
    transform: scale(1);
    transition: transform 1s ease;
}

/* media queries */
@media screen and (max-width:500px){

    .display-print-stock{
        width: 1000px;
        height: 100%;
        display: flex;
        background: #fffb;
        position: absolute;
        top: 0;
        transform: scale(0);
        transition: transform 1s ease;
    } 
    
    .display-print-stock.active{
        transform: scale(1);
        transition: transform 1s ease;
    }
}