

.buttonCopy * {
    height: 30px;
    width: 150px;
    border-radius: 8px;
    padding: 10px;
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    height: 52px;
    cursor: pointer;
    background-color: wheat;
}

.onlyprinting {
    display: none;
}

@media print {
    .onlyprinting {
        display: block;
    }
}

p.invoice {
    width: 99.9%;
    margin: 0px;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    background: #ddd;
    border: solid 1px #afafaf;
    cursor: pointer;
    border-radius: 10px;
    line-height: 200%;
    font-weight: bold;
    -webkit-transition: all 0.7s ease 0s;
    -moz-transition: all 0.7s ease 0s;
    -o-transition: all 0.7s ease 0s;
    transition: all 0.7s ease 0s;
}

    p.invoice:hover {
        background-color: #9f9f9f;
    }


div.pnl_invoice {
    padding: 1%;
    border: dashed 1px #afafaf;
    border-radius: 10px;
    
}




