/********* TABLAS *********/
.panel_header{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.panel_header .h2{
    font-weight: 600;
}
.panel_header input{
    position: relative;
    padding: 5px;
    background: rgba(10, 10, 10, 0.45);
    text-decoration: none;
    border-radius: 6px;
}

.panel_table table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    overflow: auto;
}
.panel_table table thead td{
    font-weight: 600;
    background:rgba(10, 10, 10, 0.2)
}
.panel_table table tr{
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.panel_table table tr:last-child{
    border-bottom: none;
}
.panel_table table tr:hover{
    background: rgba(76, 144, 247, 0.5);
    color:rgba(10, 10, 10, 0.45);
    cursor: pointer;
}
.panel_table table tr td{
    padding: 9px 5px;
}
.panel_table table tr td:nth-child(2),.panel_table table tr td:nth-child(2){
    text-align: center;
    padding-right: 20px;
}
.panel_table table tr td:nth-child(3),.panel_table table tr td:nth-child(3){
    text-align: left;
    padding-right: 20px;
}
.panel_table table tr td:nth-child(5),.panel_table table tr td:nth-child(5){
    text-align: right;
    padding-right: 20px;
}
.panel_table table tr td:last-child,.panel_table table tr td:last-child{
    text-align: center;
}

/********* ESTADOS *********/
.estado {
    position: relative;
    padding: 2px 2px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 1px;
}
.ACTIVO{
    margin: auto;
    background: #00A65A;
    color: white;
}
.pendiente{
    margin: auto;
    background: #F39C12;
    color: white;
}
.PROCESANDO{
    margin: auto;
    background: #F39C12;
    color: white;
}
.FACTURADO{
    margin: auto;
    background: #3C8DBC;
    color: white;
}
.error{
    margin: auto;
    background: #DF5645;
    color: white;
}

@media(max-width:768px){
    .panel_table table{
        width: 100%;
        border-collapse: collapse;
        margin-top: 10px;
        overflow: auto;
        font-size: 9px;
    }
    .estado{
        font-size: 10px;
        padding: auto;
    }
    .panel_table table tr td {
        padding: 4px 2px;
    }
    .panel_header .h2{
        font-size: 0.5em;
    }
}