.print-icon {
    position: absolute;
    top: 20px;
    right: 40px;
    cursor: pointer;
    width: 200px;
    height: 269px;
    background-image: url('../images/print.png');
    background-size: cover;
    background-position: center;
}
/* Style for small screens  */
@media only screen and (max-width: 800px) {
    .print-icon {
        top: 8px;
        right: 5px;
        width: 67px;
        height: 64px;
    }
}

.print-icon2 {
    position: absolute;
    top: 20px;
    right: 40px;
    cursor: pointer;
    width: 200px;
    height: 179px;
    background-image: url('../images/print2.png');
    background-size: cover;
    background-position: center;
}
@media only screen and (max-width: 800px) {
    .print-icon2 {
        top: 8px;
        right: 5px;
        width: 67px;
        height: 64px;
    }
}

/* Ignore to print */
@media print {
    .ignore-print, .form-control {
        display: none;
    }
}