@media print {
    a[href]:after {
        content:"" !important;
    }
    #toTop{
        display: none !important;
    }
    input::-webkit-outer-spin-button,
    input::-webkit-inner-spin-button {
        -webkit-appearance: none !important;
    }
    header,footer {
        display: none !important;
    }
    @page
    {
        size:  auto !important;   /* auto is the initial value */
        margin: 0mm !important;  /* this affects the margin in the printer settings */
    }

    html
    {
        background-color: #FFFFFF !important;
        margin: 0px !important;  /* this affects the margin on the html before sending to printer */
    }

    body
    {
        border: solid 1px blue !important;
        margin: 10mm 15mm 10mm 15mm !important; /* margin you want for the content */
    }
    @page{
        size: auto !important;
        margin: 3mm !important;
    }
    .Footer { display:none !important;  }
    @page
    {
        size:  auto;   /* auto is the initial value */
        margin: 10mm;  /* this affects the margin in the printer settings */
    }
    .social_links{
        display: none;
    }
    #print_content{
        display: block;
    }
    html
    {
        background-color: #FFFFFF;
        margin: 10px;  /* this affects the margin on the html before sending to printer */
    }

    body
    {
        border: solid 1px blue ;
        margin: 10mm 15mm 10mm 15mm; /* margin you want for the content */
    }
}