@media print {

    
    @page{
    size: 25in 35in; /* this is poker size x10 */
    }

.card {
    scale: 1000%; /* this is x10 */
    translate: calc(25in / 2 - 2.5in / 2)
    calc(35in / 2 - 3.5in / 2)
    ;
    margin-bottom: calc(35in - 3.5in);
    
    /* Cut */
    border-radius:0;
    overflow: visible;

}

    .card-container {
        width: 25in;
        height:35in;
        overflow: hidden;
        page-break-after: always;
        break-after: page;

    }

    
body,
body:after{
    background: none;
}
body>*,
body>main>*{
    display: none !important;
    padding: 0;
    margin: 0;
}
body>main,
body>main>.cards{
    display: block !important;
    padding: 0;
    margin: 0;
    background: none;
}

.card{
    page-break-after: always;
    border-radius:0;
}




}
