/* Width para el select de los datatables (Mostrar N registros) */
div.dataTables_wrapper div.dataTables_length select {
    width: 60px;
}

/* Alinear la paginación de los datatables */
div.dataTables_wrapper div.dataTables_paginate ul.pagination li.paginate_button a {
    display: flex;
    justify-content: center; !important;
    align-items: center; !important;
}

/* Alinear los textos de los tooltips */
.tooltip .tooltip-inner {
    text-align: justify;
}

/* Background-color para los botones de seleccionar un archivo */
input[type=file]::file-selector-button {
    background-color: var(--primary) !important;
    color: var(--light-text) !important;
    transition: 1s;
}

/* Color de texto resaltado para el search */
.auto-complete-result-item mark {
    background: transparent;
    color: var(--primary) !important;
    padding: 0;
}

/* Login */
.filled .select2-container--bootstrap4 .select2-selection {
    border-radius: 0 10px 10px 0 !important;
}

.filled .select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
    padding-left: 0.75rem;
}

.my-fixed-background {
    /*background: url("./public/assets/images/wow/class-room.webp") no-repeat center center fixed;*/
    background-color: #FFEE00 !important;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.my-uppercase-input {
    text-transform: uppercase;
}

html[data-color^="light"] {
    --input-autofill-bg: #f8f8f8;
    --input-autofill-text: #4e4e4e;
    --input-autofill-border: #f8f8f8;
    --input-autofill-caret: #4e4e4e;
    --input-focus-bg: #fff;
    --input-blur-bg: #f8f8f8;
}

html[data-color^="dark"] {
    --input-autofill-bg: #292929;
    --input-autofill-text: #c1c1c1;
    --input-autofill-border: #292929;
    --input-autofill-caret: #c1c1c1;
    --input-focus-bg: #1d1d1d;
    --input-blur-bg: #292929;
}

.my-input-no-autofill-bg.filled input:-webkit-autofill,
.my-input-no-autofill-bg.filled input:-webkit-autofill:hover,
.my-input-no-autofill-bg.filled input:-webkit-autofill:focus,
.my-input-no-autofill-bg.filled input:-webkit-autofill:active,
input.my-input-no-autofill-bg:-webkit-autofill,
input.my-input-no-autofill-bg:-webkit-autofill:hover,
input.my-input-no-autofill-bg:-webkit-autofill:focus,
input.my-input-no-autofill-bg:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px var(--input-autofill-bg) inset !important;
    box-shadow: 0 0 0 1000px var(--input-autofill-bg) inset !important;
    -webkit-text-fill-color: var(--input-autofill-text) !important;
    background-color: var(--input-autofill-bg) !important;
    border-color: var(--input-autofill-border) !important;
    caret-color: var(--input-autofill-caret) !important;
}

.my-input-no-autofill-bg:focus,
input.my-input-no-autofill-bg:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--input-focus-bg) inset !important;
    box-shadow: 0 0 0 1000px var(--input-focus-bg) inset !important;
    border-color: rgba(var(--primary-rgb), 1) !important;
    outline: none !important;
    caret-color: var(--input-autofill-caret) !important;
}

.my-input-no-autofill-bg,
input.my-input-no-autofill-bg {
    -webkit-box-shadow: 0 0 0 1000px var(--input-blur-bg) inset !important;
    box-shadow: 0 0 0 1000px var(--input-blur-bg) inset !important;
    background-color: var(--input-blur-bg) !important;
}

input.my-input-no-autofill-bg:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--input-blur-bg) inset !important;
    box-shadow: 0 0 0 1000px var(--input-blur-bg) inset !important;
}

input.my-input-no-autofill-bg:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0 1000px var(--input-focus-bg) inset !important;
    box-shadow: 0 0 0 1000px var(--input-focus-bg) inset !important;
    border-color: rgba(var(--primary-rgb), 1) !important;
}