.chip {
    background: #eef0f3 !important;
}

.table thead {
    background-color: #eef0f3;
}

#_cartelActualizarTabla table tbody {
    display: block;
    max-height: 150px;
    overflow-y: scroll;
    overflow-x: hidden;
}


#_cartelActualizarTabla table tbody tr, #_cartelActualizarTabla table thead {
    display: table;
    width: 100%;
    table-layout: fixed;
}
.max-ancho-center {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}
button[data-activo="1"] {
    opacity: 0;
}


/* SECTION - Notificaciones */
/* From Uiverse.io by Pradeepsaranbishnoi */ 
.wallet {
    --bg-color: #5c61d5;
    --bg-color-light: #97adff;
    --text-color-hover: #fff;
    --box-shadow-color: rgba(206, 178, 252, 0.48);
  }
  
  .card-wallet {
    width: 100%;
    height: 321px;
    background: #fff;
    border-top-right-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease-out;
    text-decoration: none;
  }
  
  .card-wallet:hover {
    transform: translateY(-5px) scale(1.005) translateZ(0);
    box-shadow: 0 24px 36px rgba(0, 0, 0, 0.11),
      0 24px 46px var(--box-shadow-color);
  }
  
  .card-wallet:hover .overlay {
    transform: scale(9) translate(0%,0%);
  }
  
  .card-wallet:hover .circle {
    border-color: var(--bg-color-light);
    background: var(--bg-color);
  }
  
  .card-wallet:hover .circle:after {
    background: var(--bg-color-light);
  }
  
  .card-wallet:hover p {
    color: var(--text-color-hover);
  }
  
  .card-wallet p {
    font-size: 17px;
    color: #4c5656;
    margin-top: 30px;
    z-index: 1000;
    transition: color 0.3s ease-out;
  }
  
  .circle {
    width: 131px;
    height: 131px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-out;
  }
  
  .circle:after {
    content: "";
    width: 118px;
    height: 118px;
    display: block;
    position: absolute;
    background: var(--bg-color);
    border-radius: 50%;
    top: 7px;
    left: 7px;
    transition: opacity 0.3s ease-out;
  }
  
  .circle svg {
    z-index: 10000;
    transform: translateZ(0);
  }
  
  .overlay {
    width: 118px;
    position: absolute;
    height: 118px;
    border-radius: 50%;
    background: var(--bg-color);
    top: 40%;
    left: 50%;
    z-index: 0;
    transition: transform 0.3s ease-out;
    transform: translate(-50%,-50%);
    transform-origin: center center;
  }