:root {
    /* Colores */
    --principal: #142444;
    --secundario: #ffffff;
    --terciario: #faf7f0;
    --gris: #464646;
    --negro-light: #242424;
    --negro: #1e1e1e;
    --error: #eb1708d8;
    /* Botones */
    --btn-principal: #1d3d7e;
    --btn-secondario: #3e4759;
}

/* Body Divs */

body {
    font-family: "Arimo", sans-serif !important;
}

#layoutSidenav_content {
    overflow: hidden;
}

/* Header */

.navbar #sidebarToggle {
    margin: 0 !important;
}

/* Buttons */

.btn-primary {
    background-color: var(--btn-principal);
}

.btn-secondary {
    background-color: var(--btn-secondario);
}

/* Inputs */
.form-switch .form-check-input {
    width: 2.5em !important;
}

/* Text */
a {
    text-decoration: none !important;
}

.text-error {
    font-family: Arial, Helvetica, sans-serif;
    font-size: .9rem;
    font-weight: bold;
    color: var(--error);
}

/* Modal */
.custom-modal {
    position: fixed;
    width: 75%;
    height: fit-content;
    min-height: 300px;
    top: 25%;
    left: 20%;
    z-index: 1;
    background-color: #f8f8f8;
    border: solid 1px #dcdcdc;
    box-shadow: 0px 0px 3px 2px rgb(0 0 0 / 5%);
}