/*=========================================================
  Tabla simulacro  WatuPRO 
  ========================================================= */
.ogc-tabla-simulacro{
    width:100%;
    border-collapse:collapse;
    font-size:14px;
    background:#fff;
    border-radius:12px;
    overflow:hidden;
    box-shadow:
        0 10px 25px rgba(0,0,0,.08),
        0 3px 8px rgba(0,0,0,.05);
}

.ogc-tabla-simulacro thead th{
    background:#0f4c81;
    color:#fff;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:.5px;
    padding:12px 8px;
    text-align:center;
    border:none;
}

.ogc-tabla-simulacro tbody td{
    padding:10px 8px;
    text-align:center;
    border-bottom:1px solid #e5e7eb;
}

.ogc-tabla-simulacro tbody tr:nth-child(even){
    background:#f8fafc;
}

.ogc-tabla-simulacro tbody tr:hover{
    background:#e8f1fb;
    transition:.2s;
}

.ogc-tabla-simulacro td:nth-child(1){
    font-weight:700;
    color:#0f4c81;
    width:50px;
}

.ogc-tabla-simulacro td:nth-child(2){
    text-align:left;
    font-weight:600;
    min-width:180px;
}

.ogc-tabla-simulacro td:last-child{
    font-weight:700;
    font-size:16px;
    color:#0f4c81;
    background:#eef6ff;
}

.ogc-tabla-simulacro strong{
    color:#0f4c81;
}

@media (max-width: 768px) {

    .ogc-tabla-simulacro th,
    .ogc-tabla-simulacro td {
        display: none;
    }

	.ogc-tabla-simulacro th:nth-child(1),
    .ogc-tabla-simulacro td:nth-child(1) {
        display: table-cell;
    }

    .ogc-tabla-simulacro th:nth-child(2),
    .ogc-tabla-simulacro td:nth-child(2) {
        display: table-cell;
    }

    .ogc-tabla-simulacro th:last-child,
    .ogc-tabla-simulacro td:last-child {
        display: table-cell;
    }
}

