html{
    font-size: 15px !important;
}
.errorCampo {
    border: 2px solid red !important;
}
.newCssHead{
    background-color: #064573;
    color: aliceblue;
}

table thead tr {
    background-color: #19649b !important;
    color: aliceblue;
}
#toast-container{
    top: 54px !important;
    right: 1px !important;
}

#divLoading {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(254, 254, 255, 0.65);
    z-index: 9999;
    display: none;
    /*margin-left: -550px;*/
}
#divLoading img {
width: 50px;
height: 50px;
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1050;
    display: none;
    width: 100%;
    height: 100%;
    overflow: hidden;
    outline: 0;
  }
  .fade {
    transition: opacity 0.15s linear;
  }

  .modal.show .modal-dialog {
    -webkit-transform: none;
    transform: none;
  }
  .modal.fade .modal-dialog {
    transition: -webkit-transform 0.3s ease-out;
    transition: transform 0.3s ease-out;
    transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
    -webkit-transform: translate(0, -50px);
    transform: translate(0, -50px);
  }

  @keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
  }
  
  .attention-btn {
    /* background-color: #ff5722; /* Color llamativo */
    /* color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer; */ 
    font-size: 15px;
    animation: heartbeat 1.5s infinite ease-in-out;
  }
  
  .attention-btn:hover {
    background-color: #084480;
  }

  .table-responsive {
    background-color: #f5f5f5; /* Fondo gris claro para la tabla */
}
.dark .table-responsive {
    background-color: #1a2533; /* Fondo oscuro para la tabla en modo oscuro */
}

input:disabled {
  background-color: #f0f0f0; /* Color de fondo */
  color: #666; /* Color del texto */
  cursor: not-allowed; /* Cambia el cursor a "no permitido" */
  border-color: #ccc; /* Color del borde */
}