
.tabla_general_contenedor
{
    display: block;
    position: relative;
    left:0;
    top:0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    user-select: none;
}

.tabla_general_carga
{
    display: block;
    position: absolute;
    bottom:0;
    left: 0;
    width: 100%;
    height: 100%;
    background:rgba(255, 255, 255, 1);
    z-index: 1;
    overflow: hidden;
    transition: height 0.4s;
    border-top:1px solid #000;
}

.tabla_general_carga > div
{
    top: 45%;
    margin: 0 auto;
    width: 35%;
}

/*Tabla general*/
.tabla_general
{
	display: flex;
    table-layout: fixed;
    border-collapse: collapse;
    box-shadow: 0px 0px 6px 1px rgba(0,0,0,0.07);
    flex-direction: column;
    height: 100%;
    white-space: nowrap;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.tabla_general thead tr th
{
	text-align: center;
	border-bottom: 1px solid #c0c0c0;
}

.tabla_general tbody
{
    display:flex;
    flex-direction:column;
    text-align: left;
    overflow-y: auto;
    overflow-x: hidden;
    width: 100%;
    height: 100%;
}

.tabla_general > tbody > tr, .tabla_general > thead > tr
{
	cursor: pointer;
    transition: background 0.3s, color 0.3s;
    box-shadow: 0px 0px 2px 0px #FFF inset;
    display: block;
}

.tabla_general tbody tr td
{
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
    text-align: left;
}

.tabla_general tbody tr:not(:last-child) td
{
	height: 36px;
}

.tabla_general > tbody > tr:last-child
{
	height:100%;
    overflow:hidden;
    cursor: default;
}

.tabla_general > tbody > tr:last-child > td
{
	height:100%;
}

.tabla_general th, .tabla_general td
{
    padding: 10px 12px;
    display: inline-block;
    width: 108px;
    font-size: 14px;
    box-sizing: border-box;
}

.tabla_general th:not(:last-child), .tabla_general td:not(:last-child)
{
	border-right:1px solid #c0c0c0;
}

.tabla_general > tbody > tr:nth-child(even)
{
    background: rgba(40, 40, 40, 0.03);
}


.tabla_general_desSeleccionar
{
    display: block;
    top:-40px;
    right: 20px;
    position: absolute;
    border-bottom:0;
    border-radius: 0px 0px 10px 10px;
    padding: 10px 15px;
    color:#FFF;
    background:red;
    transition: top 0.5s;
}



/* Clase ordenar columnas */

.tabla_general_ordenar, .tabla_general_ordenar2
{
    background: #f1f1f1;
    position: relative;
}

.tabla_general_ordenar::before
{
    content: ">";
    position: absolute;
    color:#000;
    top:11px;
    right: 5px;
    transform: rotate(90deg);
}

.tabla_general_ordenar2::before
{
    content: ">";
    position: absolute;
    color:#000;
    top:11px;
    right: 5px;
    transform: rotate(270deg);
}