.table--head {
    vertical-align: middle !important;
    font-size: 0.6rem !important;
    color: #03304c !important; /* Cambiado a #03304c */
}

i {
    cursor: pointer;
}

.label--filtro--busqueda {
    font-size: 0.6rem !important;
    color: #03304c !important; /* Cambiado a #03304c */
}

.loader-bg {
    background-color: rgba(0, 128, 219, 0.5); /* Cambiado a #0080db */
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 80px;
    height: 80px;
    position: relative;
    left: 0;
    top: 0;
}

    .loader:after {
        content: " ";
        display: block;
        width: 64px;
        height: 64px;
        margin: 8px;
        border-radius: 50%;
        border: 6px solid #039fed; /* Cambiado a #039fed */
        border-color: #039fed transparent #039fed transparent; /* Cambiado a #039fed */
        animation: loader 1.2s linear infinite;
    }

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.disabled {
    pointer-events: none;
    color: #bfcbd9;
    cursor: not-allowed;
    background-image: none;
    background-color: #eef1f6;
    border-color: #d1dbe5;
}

.swal-content {
    padding: 0 80px !important;
}

input {
    text-transform: none !important;
}

.col-md-tam-5 {
    flex: 0 0 auto !important;
    width: 20% !important;
    padding: 12px !important;
}

.col-md-tam-rest-5 {
    flex: 0 0 auto !important;
    width: 80% !important;
    padding: 12px !important;
}