.factura_titulo{
    display: flex;
    justify-content: space-between;
}

.factura_header{
    display: flex;
    flex-direction: column;
}

.factura_conceptos__item{
    display: flex;
    justify-content: space-between;
    margin-bottom: 5px;
    gap: 25px;
}
.factura_total{
    display: flex;
    justify-content: space-between;
    gap: 25px;
}
.factura_total__item{
    font-weight: 600;
}

.factura_botonera{
    display: flex;
    justify-content: space-between;
    gap: 10px;
    flex-direction: column;
    align-items: center;
}

.factura_botonera .boton{
    width: 100%;
    /* padding: 0.375rem 0.75rem; */
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: none;
    outline: none;
}

.factura_botonera .boton.boton-descarga{
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0px;
    outline: auto;
}

.factura_botonera .boton.boton-pagar{
    background-color: #28a745;
    border-color: #28a745;
    color: #fff;
}

.boton-disabled{
    background-color: #d7d7d7;
    border-color: #d7d7d7;
    color: #282828;
    cursor: not-allowed !important;
    padding: 0.375rem 0rem !important;
}

.badge2{
    display: inline-block;
    padding: 0.25em 0.4em;
    font-size: 75%;
    text-align: center;
    border-radius: 0.25rem;
    font-weight: 600;
}
.badge2-success {
    color: #fff;
    background-color: #28a745;
}
.badge2-warning {
    color: #fff;
    background-color: #28a745;
}
.badge2-warning {
    color: #212529;
    background-color: #ffc107;
}

@media (min-width: 768px){
    .factura_header{
        flex-direction: row;
        justify-content: space-between;
    }

    .factura_botonera {
        gap: 25px;
        flex-direction: row;
    }
}


