﻿/** inicia - factura **/
.div-factura {
    overflow: hidden;
    padding: 0 5% 10% 5%;
}

    .div-factura .lines {
        border-top: 3px solid #F3A803;
        border-bottom: 3px solid green;
        height: 10px;
        width: 100%;
    }

    .div-factura .image {
        margin-bottom: 10pt;
    }

    .div-factura .title {
        font-weight: bold;
        color: dimgray;
    }

    .div-factura label {
        font-weight: bold;
    }

    .div-factura pre.info-sup{
        font-size: 10px;
    }

    .div-factura pre.info-bot {
        font-weight: bold;
    }

@media print {
    .div-factura {
        display: block;
        position: relative;
        height: 100%
    }

        .div-factura .bottom-row {
            display: block;
            position: absolute;
            bottom: 0;
        }


    body {
        height: 100%
    }
}

.div-factura .bottom-row {
    width: 100%;
    background-color: white;
    color: black;
}

.div-factura table {
    width: 100%;
}

.div-factura th {
    border: 1px solid black;
    background-color: #6737f6;
}

.div-factura td {
    border: 1px solid black;
}

/** termina - factura **/
